diff options
author | Max <post@wickenrode.com> | 2014-10-12 22:41:36 +0200 |
---|---|---|
committer | Max <post@wickenrode.com> | 2014-10-12 22:41:36 +0200 |
commit | 0e4ad8eb9cddbbd755d55bb50f7707f1e8160121 (patch) | |
tree | 72c584ec63ee53895ffa99bc35240fa92d8f0b8c /Source/SPDatabaseDocument.h | |
parent | f9ed97815c219939e7bc05eb92da62f508210a18 (diff) | |
download | sequelpro-0e4ad8eb9cddbbd755d55bb50f7707f1e8160121.tar.gz sequelpro-0e4ad8eb9cddbbd755d55bb50f7707f1e8160121.tar.bz2 sequelpro-0e4ad8eb9cddbbd755d55bb50f7707f1e8160121.zip |
Add a "Go to Database" dialog
The dialog enables
* searching for a database by name (substring matching),
* using C&P to select databases
* navigating to databases not in the database dropdown
* faster keyboard-based navigation
Diffstat (limited to 'Source/SPDatabaseDocument.h')
-rw-r--r-- | Source/SPDatabaseDocument.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/SPDatabaseDocument.h b/Source/SPDatabaseDocument.h index 218f3bc7..a67619e8 100644 --- a/Source/SPDatabaseDocument.h +++ b/Source/SPDatabaseDocument.h @@ -55,6 +55,7 @@ @class SPDatabaseStructure; @class SPMySQLConnection; @class SPCharsetCollationHelper; +@class SPGotoDatabaseController; #import "SPDatabaseContentViewDelegate.h" #import "SPConnectionControllerDelegateProtocol.h" @@ -280,6 +281,7 @@ BOOL windowTitleStatusViewIsVisible; #endif SPDatabaseStructure *databaseStructureRetrieval; + SPGotoDatabaseController *gotoDatabaseController; } #ifdef SP_CODA /* ivars */ @@ -352,6 +354,7 @@ - (IBAction)showServerVariables:(id)sender; - (IBAction)showServerProcesses:(id)sender; - (IBAction)openCurrentConnectionInNewWindow:(id)sender; +- (IBAction)showGotoDatabase:(id)sender; #endif - (NSArray *)allDatabaseNames; - (NSArray *)allSystemDatabaseNames; |