diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-03-20 16:58:14 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-03-20 16:58:14 +0000 |
commit | 57d35fbecd2517fe8b1914d1f2335be06e2a8b17 (patch) | |
tree | 56f622121b65d87b671ebe0d898078f14b503d16 /Source/SPNavigatorController.h | |
parent | b1d22ab0eaf73b6c1cd73faabee4e592e6731814 (diff) | |
download | sequelpro-57d35fbecd2517fe8b1914d1f2335be06e2a8b17.tar.gz sequelpro-57d35fbecd2517fe8b1914d1f2335be06e2a8b17.tar.bz2 sequelpro-57d35fbecd2517fe8b1914d1f2335be06e2a8b17.zip |
• Navigator progress
- made expand status persistent for current SP session
- added draft to display additional information about selected fields
- tried the minimize the jittering while resizing outline views (test)
Note: to test it simply unhide menu item in MainMenu.xib
Diffstat (limited to 'Source/SPNavigatorController.h')
-rw-r--r-- | Source/SPNavigatorController.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/SPNavigatorController.h b/Source/SPNavigatorController.h index 50f84cac..43b7a1a8 100644 --- a/Source/SPNavigatorController.h +++ b/Source/SPNavigatorController.h @@ -31,10 +31,16 @@ IBOutlet id outlineSchema1; IBOutlet id outlineSchema2; IBOutlet id navigatorWindow; + IBOutlet id infoTable; + IBOutlet id quickAccessTable; + IBOutlet id searchField; NSUserDefaults *prefs; NSMutableDictionary *schemaData; + NSMutableArray *infoArray; + NSMutableDictionary *expandStatus1; + NSMutableDictionary *expandStatus2; } @@ -42,5 +48,8 @@ - (IBAction)outlineViewAction:(id)sender; - (IBAction)updateEntries:(id)sender; +- (IBAction)reloadAllStructures:(id)sender; +- (IBAction)filterTree:(id)sender; +- (NSString*)tableInfoLabelForIndex:(NSInteger)index; @end |