diff options
author | Bibiko <bibiko@eva.mpg.de> | 2009-04-30 12:47:01 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2009-04-30 12:47:01 +0000 |
commit | 373af7d28f55328a0d004ddd106ccbaafdd782d4 (patch) | |
tree | b3aba55c6bfd4ac45a56ec0bfb7dca5c167653fa /Source/CMTextView.h | |
parent | 40dc576b30ec1da22ae58c1daaae86a6d1020b2c (diff) | |
download | sequelpro-373af7d28f55328a0d004ddd106ccbaafdd782d4.tar.gz sequelpro-373af7d28f55328a0d004ddd106ccbaafdd782d4.tar.bz2 sequelpro-373af7d28f55328a0d004ddd106ccbaafdd782d4.zip |
• changed context menu item in CQ's textview to support "MySQL Help"
• prepared code to work with autoHelp
• improved getRangeForCurrentWord (fix for " |a")
Diffstat (limited to 'Source/CMTextView.h')
-rw-r--r-- | Source/CMTextView.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/CMTextView.h b/Source/CMTextView.h index 88b7a995..7abc2ef1 100644 --- a/Source/CMTextView.h +++ b/Source/CMTextView.h @@ -33,13 +33,16 @@ BOOL autohelpEnabled; NoodleLineNumberView *lineNumberView; - NSString *lookupInDocumentationTitle; + NSString *showMySQLHelpFor; BOOL sqlStringIsTooLarge; IBOutlet NSScrollView *scrollView; + } +- (IBAction)showMySQLHelpForCurrentWord:(id)sender; + - (BOOL) isNextCharMarkedBy:(id)attribute; - (BOOL) areAdjacentCharsLinked; - (BOOL) wrapSelectionWithPrefix:(NSString *)prefix suffix:(NSString *)suffix; |