diff options
author | stuconnolly <stuart02@gmail.com> | 2009-11-12 23:44:09 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2009-11-12 23:44:09 +0000 |
commit | a5af1bc73e296ff0b545310782a446259d896389 (patch) | |
tree | 82165af1afe69187bafd3e96c8b6e9bb41b4700b /Source/TableDocument.h | |
parent | 64010e52c3f4bcec585b7fb2494ccf38a481b5f6 (diff) | |
download | sequelpro-a5af1bc73e296ff0b545310782a446259d896389.tar.gz sequelpro-a5af1bc73e296ff0b545310782a446259d896389.tar.bz2 sequelpro-a5af1bc73e296ff0b545310782a446259d896389.zip |
- New server processes panel, accessible via the 'Database' menu and alt+cmd+P. Includes the ability to kill queries and connections as well as live filtering support and the ability to save all processes or the current filtered set to a file. Implements issue #458.
- Reorganise 'Database' menu.
- Give 'Flush Privileges' key equivalent of shift+cmd+F.
Diffstat (limited to 'Source/TableDocument.h')
-rw-r--r-- | Source/TableDocument.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/TableDocument.h b/Source/TableDocument.h index 843bb9c3..ab36ffb3 100644 --- a/Source/TableDocument.h +++ b/Source/TableDocument.h @@ -29,7 +29,7 @@ #import <MCPKit/MCPKit.h> #import <WebKit/WebKit.h> -@class SPConnectionController, SPUserManager; +@class SPConnectionController, SPProcessListController, SPUserManager; enum sp_current_query_mode { @@ -120,6 +120,7 @@ enum sp_current_query_mode int passwordSheetReturnCode; SPConnectionController *connectionController; + SPProcessListController *processListController; MCPConnection *mySQLConnection; @@ -183,6 +184,7 @@ enum sp_current_query_mode - (IBAction)removeDatabase:(id)sender; - (IBAction)showMySQLHelp:(id)sender; - (IBAction)saveServerVariables:(id)sender; +- (IBAction)showDatabaseProcessList:(id)sender; - (IBAction)openCurrentConnectionInNewWindow:(id)sender; - (NSArray *)allDatabaseNames; |