diff options
author | Bibiko <bibiko@eva.mpg.de> | 2009-04-28 09:00:15 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2009-04-28 09:00:15 +0000 |
commit | af81a0dfbad3e68ae0a5e6cb40e86303d6bd744c (patch) | |
tree | e571635812ea707913c96ea1e9a4e066f26637eb /Source/SPQueryConsole.h | |
parent | a26da55e75166b2fad38f64548363ed1a6fa6462 (diff) | |
download | sequelpro-af81a0dfbad3e68ae0a5e6cb40e86303d6bd744c.tar.gz sequelpro-af81a0dfbad3e68ae0a5e6cb40e86303d6bd744c.tar.bz2 sequelpro-af81a0dfbad3e68ae0a5e6cb40e86303d6bd744c.zip |
• added "Show HELP statements" to MySQL Console
Diffstat (limited to 'Source/SPQueryConsole.h')
-rw-r--r-- | Source/SPQueryConsole.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/SPQueryConsole.h b/Source/SPQueryConsole.h index 8b1d912d..c3211f18 100644 --- a/Source/SPQueryConsole.h +++ b/Source/SPQueryConsole.h @@ -29,11 +29,12 @@ IBOutlet NSSearchField *consoleSearchField; IBOutlet NSProgressIndicator *progressIndicator; IBOutlet NSButton *includeTimeStampsButton, *saveConsoleButton, *clearConsoleButton; - IBOutlet NSMenuItem *showTimeStampsMenuItem, *showSelectShowStatementsMenuItem; + IBOutlet NSMenuItem *showTimeStampsMenuItem, *showSelectShowStatementsMenuItem, *showHelpMenuItem; NSFont *consoleFont; NSMutableArray *messagesFullSet, *messagesFilteredSet, *messagesVisibleSet; BOOL showSelectStatementsAreDisabled; + BOOL showHelpStatementsAreDisabled; BOOL filterIsActive; NSMutableString *activeFilterString; } @@ -47,6 +48,8 @@ - (IBAction)saveConsoleAs:(id)sender; - (IBAction)toggleShowTimeStamps:(id)sender; - (IBAction)toggleShowSelectShowStatements:(id)sender; +- (IBAction)toggleShowHelpStatements:(id)sender; + - (void)showMessageInConsole:(NSString *)message; - (void)showErrorInConsole:(NSString *)error; |