diff options
author | stuconnolly <stuart02@gmail.com> | 2009-08-03 12:14:14 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2009-08-03 12:14:14 +0000 |
commit | 336c2653429f6a060913a8e68b70c3f44b8d7286 (patch) | |
tree | a4c2e7d0d9276191569c98b6ba6f80c440b3da15 /Source/TableDocument.h | |
parent | 63323b1d133fe3c7ed6c6c9d37d1a28608014938 (diff) | |
download | sequelpro-336c2653429f6a060913a8e68b70c3f44b8d7286.tar.gz sequelpro-336c2653429f6a060913a8e68b70c3f44b8d7286.tar.bz2 sequelpro-336c2653429f6a060913a8e68b70c3f44b8d7286.zip |
- Implement live filtering of the server variables table view
- Update the save variables button to save the current filtered variables if necessary
- Remove old/unused NSSplitView code
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 97da96f9..b3327198 100644 --- a/Source/TableDocument.h +++ b/Source/TableDocument.h @@ -68,6 +68,8 @@ IBOutlet id historyControl; IBOutlet id variablesTableView; IBOutlet NSTabView *tableTabView; + IBOutlet NSButton *saveVariablesButton; + IBOutlet NSSearchField *variablesSearchField; IBOutlet NSTableView *tableInfoTable; IBOutlet NSButton *tableInfoCollapseButton; @@ -88,7 +90,7 @@ MCPConnection *mySQLConnection; - NSArray *variables; + NSMutableArray *variables, *variablesFiltered; NSString *selectedDatabase; NSString *mySQLVersion; NSUserDefaults *prefs; |