aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPTextView.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/SPTextView.h')
-rw-r--r--Source/SPTextView.h148
1 files changed, 148 insertions, 0 deletions
diff --git a/Source/SPTextView.h b/Source/SPTextView.h
new file mode 100644
index 00000000..2964845a
--- /dev/null
+++ b/Source/SPTextView.h
@@ -0,0 +1,148 @@
+//
+// $Id: CMTextView.h 2240 2010-05-23 21:44:59Z rowanb $
+//
+// SPTextView.h
+// sequel-pro
+//
+// Created by Carsten Blüm.
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+//
+// More info at <http://code.google.com/p/sequel-pro/>
+
+#import <Cocoa/Cocoa.h>
+#import <MCPKit/MCPKit.h>
+
+#import "NoodleLineNumberView.h"
+#import "CMCopyTable.h"
+
+#define SP_TEXT_SIZE_TRIGGER_FOR_PARTLY_PARSING 10000
+
+@class SPNarrowDownCompletion, TableDocument, TablesList, CustomQuery;
+
+@interface SPTextView : NSTextView
+{
+ IBOutlet TableDocument *tableDocumentInstance;
+ IBOutlet TablesList *tablesListInstance;
+ IBOutlet CustomQuery *customQueryInstance;
+
+ BOOL autoindentEnabled;
+ BOOL autopairEnabled;
+ BOOL autoindentIgnoresEnter;
+ BOOL autouppercaseKeywordsEnabled;
+ BOOL delBackwardsWasPressed;
+ BOOL autohelpEnabled;
+ NoodleLineNumberView *lineNumberView;
+
+ BOOL startListeningToBoundChanges;
+ BOOL textBufferSizeIncreased;
+
+ NSString *showMySQLHelpFor;
+
+ IBOutlet NSScrollView *scrollView;
+ SPNarrowDownCompletion *completionPopup;
+
+ NSUserDefaults *prefs;
+
+ MCPConnection *mySQLConnection;
+ NSInteger mySQLmajorVersion;
+
+ NSInteger snippetControlArray[20][3];
+ NSInteger snippetMirroredControlArray[20][3];
+ NSInteger snippetControlCounter;
+ NSInteger snippetControlMax;
+ NSInteger currentSnippetIndex;
+ NSInteger mirroredCounter;
+ BOOL snippetWasJustInserted;
+ BOOL isProcessingMirroredSnippets;
+
+ BOOL completionIsOpen;
+ BOOL completionWasReinvokedAutomatically;
+ BOOL completionWasRefreshed;
+ BOOL completionFuzzyMode;
+ NSUInteger completionParseRangeLocation;
+
+ NSColor *queryHiliteColor;
+ NSColor *queryEditorBackgroundColor;
+ NSColor *commentColor;
+ NSColor *quoteColor;
+ NSColor *keywordColor;
+ NSColor *backtickColor;
+ NSColor *numericColor;
+ NSColor *variableColor;
+ NSColor *otherTextColor;
+ NSRange queryRange;
+ BOOL shouldHiliteQuery;
+}
+
+@property(retain) NSColor* queryHiliteColor;
+@property(retain) NSColor* queryEditorBackgroundColor;
+@property(retain) NSColor* commentColor;
+@property(retain) NSColor* quoteColor;
+@property(retain) NSColor* keywordColor;
+@property(retain) NSColor* backtickColor;
+@property(retain) NSColor* numericColor;
+@property(retain) NSColor* variableColor;
+@property(retain) NSColor* otherTextColor;
+@property(assign) NSRange queryRange;
+@property(assign) BOOL shouldHiliteQuery;
+@property(assign) BOOL completionIsOpen;
+@property(assign) BOOL completionWasReinvokedAutomatically;
+
+- (IBAction)showMySQLHelpForCurrentWord:(id)sender;
+
+- (BOOL) isNextCharMarkedBy:(id)attribute withValue:(id)aValue;
+- (BOOL) areAdjacentCharsLinked;
+- (BOOL) isCaretAdjacentToAlphanumCharWithInsertionOf:(unichar)aChar;
+- (BOOL) wrapSelectionWithPrefix:(NSString *)prefix suffix:(NSString *)suffix;
+- (BOOL) shiftSelectionRight;
+- (BOOL) shiftSelectionLeft;
+- (void) setAutoindent:(BOOL)enableAutoindent;
+- (BOOL) autoindent;
+- (void) setAutoindentIgnoresEnter:(BOOL)enableAutoindentIgnoresEnter;
+- (BOOL) autoindentIgnoresEnter;
+- (void) setAutopair:(BOOL)enableAutopair;
+- (BOOL) autopair;
+- (void) setAutouppercaseKeywords:(BOOL)enableAutouppercaseKeywords;
+- (BOOL) autouppercaseKeywords;
+- (void) setAutohelp:(BOOL)enableAutohelp;
+- (BOOL) autohelp;
+- (void) setTabStops;
+- (void) selectLineNumber:(NSUInteger)lineNumber ignoreLeadingNewLines:(BOOL)ignLeadingNewLines;
+- (NSUInteger) getLineNumberForCharacterIndex:(NSUInteger)anIndex;
+- (void) autoHelp;
+- (void) doSyntaxHighlighting;
+- (NSBezierPath*)roundedBezierPathAroundRange:(NSRange)aRange;
+- (void) setConnection:(MCPConnection *)theConnection withVersion:(NSInteger)majorVersion;
+- (void) doCompletionByUsingSpellChecker:(BOOL)isDictMode fuzzyMode:(BOOL)fuzzySearch autoCompleteMode:(BOOL)autoCompleteMode;
+- (void) doAutoCompletion;
+- (void) refreshCompletion;
+- (NSArray *)suggestionsForSQLCompletionWith:(NSString *)currentWord dictMode:(BOOL)isDictMode browseMode:(BOOL)dbBrowseMode withTableName:(NSString*)aTableName withDbName:(NSString*)aDbName;
+- (void) selectCurrentQuery;
+- (void) processMirroredSnippets;
+
+- (BOOL)checkForCaretInsideSnippet;
+- (void)insertAsSnippet:(NSString*)theSnippet atRange:(NSRange)targetRange;
+
+- (void)showCompletionListFor:(NSString*)kind atRange:(NSRange)aRange fuzzySearch:(BOOL)fuzzySearchMode;
+
+- (NSUInteger)characterIndexOfPoint:(NSPoint)aPoint;
+- (void)insertFileContentOfFile:(NSString *)aPath;
+
+- (BOOL)isSnippetMode;
+
+- (NSString *)runBashCommand:(NSString *)command;
+
+@end