aboutsummaryrefslogtreecommitdiffstats
path: root/Source/CustomQuery.h
diff options
context:
space:
mode:
authorBibiko <bibiko@eva.mpg.de>2009-04-27 13:31:44 +0000
committerBibiko <bibiko@eva.mpg.de>2009-04-27 13:31:44 +0000
commit494226553237e2e19d882339180f8be26153eea4 (patch)
tree2c24fcc2fb46707864616989c3e876e94f67d117 /Source/CustomQuery.h
parent88c964159c602ea2562a7a70451f1cf7667ad06f (diff)
downloadsequelpro-494226553237e2e19d882339180f8be26153eea4.tar.gz
sequelpro-494226553237e2e19d882339180f8be26153eea4.tar.bz2
sequelpro-494226553237e2e19d882339180f8be26153eea4.zip
• MySQL Help improved
- better HTML view, list topics for multi-matching keywords - for test cases invoke it by CTRL+H in the Custom Query textView - GUI is really tentative!
Diffstat (limited to 'Source/CustomQuery.h')
-rw-r--r--Source/CustomQuery.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/Source/CustomQuery.h b/Source/CustomQuery.h
index e1906fd1..4f8fd468 100644
--- a/Source/CustomQuery.h
+++ b/Source/CustomQuery.h
@@ -60,6 +60,8 @@
IBOutlet NSWindow *helpWebViewWindow;
IBOutlet id helpWebView;
+ IBOutlet NSSearchField *helpSearchField;
+ NSString *lastHelpString;
NSArray *queryResult;
NSUserDefaults *prefs;
@@ -80,6 +82,10 @@
- (IBAction)closeSheet:(id)sender;
- (IBAction)gearMenuItemSelected:(id)sender;
- (IBAction)getHelpForCurrentWord:(id)sender;
+- (IBAction)showHelpForSearchString:(id)sender;
+- (IBAction)showHelpContent:(id)sender;
+- (IBAction)showLastHelp:(id)sender;
+
// queryFavoritesSheet methods
- (IBAction)addQueryFavorite:(id)sender;
@@ -96,10 +102,15 @@
// Accessors
- (NSArray *)currentResult;
+// MySQL Help
+- (void)showHelpFor:(NSString *)aString;
+- (NSString *)getHTMLHelpFor:(NSString *)aString;
+
// Other
- (void)setConnection:(CMMCPConnection *)theConnection;
- (void)setFavorites;
- (void)doPerformQueryService:(NSString *)query;
- (NSString *)usedQuery;
+
@end