diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-11-30 00:16:06 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-11-30 00:16:06 +0000 |
commit | cc2e00c656a34d4c472a25f929282c8fc63d0174 (patch) | |
tree | 34d4f213f4efc4ddd73625e5941d002b6e3bd92f /Source/SPTableInfo.h | |
parent | c1cb48f6afa93b8ed26baa434d66d1ca3e0afca7 (diff) | |
download | sequelpro-cc2e00c656a34d4c472a25f929282c8fc63d0174.tar.gz sequelpro-cc2e00c656a34d4c472a25f929282c8fc63d0174.tar.bz2 sequelpro-cc2e00c656a34d4c472a25f929282c8fc63d0174.zip |
• Bundle commands
- before closing a db doc window kill all commands associated to this doc
- suppress an error message if a bash command was killed via code 9
- added a temporary and preliminary table view to display command activities (double-click at TABLE INFO header to toggle and refresh it - only for testing purposes - it shows all commands started from that db doc and a General command names)
Diffstat (limited to 'Source/SPTableInfo.h')
-rw-r--r-- | Source/SPTableInfo.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Source/SPTableInfo.h b/Source/SPTableInfo.h index 041f9173..bae3da4e 100644 --- a/Source/SPTableInfo.h +++ b/Source/SPTableInfo.h @@ -29,10 +29,18 @@ IBOutlet id tableListInstance; IBOutlet id tableDataInstance; IBOutlet id tableDocumentInstance; - + + IBOutlet NSTableView *activitiesTable; + + IBOutlet NSScrollView *tableInfoScrollView; + IBOutlet NSScrollView *activitiesScrollView; + IBOutlet NSView *containerView; + NSMutableArray *info; + NSMutableArray *activities; } - (void)tableChanged:(NSNotification *)notification; +- (void)updateActivities; @end |