aboutsummaryrefslogtreecommitdiffstats
path: root/Source/CMTextView.h
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2010-05-27 17:35:20 +0000
committerstuconnolly <stuart02@gmail.com>2010-05-27 17:35:20 +0000
commitc06ad0189beb544710b6d47b2978a5614d036cdc (patch)
tree421a234a435e7fb8ca4bb6983e285e333457698d /Source/CMTextView.h
parent60ff002c794bc409c6c4db208cfbe1fe1c9fbe9f (diff)
downloadsequelpro-c06ad0189beb544710b6d47b2978a5614d036cdc.tar.gz
sequelpro-c06ad0189beb544710b6d47b2978a5614d036cdc.tar.bz2
sequelpro-c06ad0189beb544710b6d47b2978a5614d036cdc.zip
Rename CMTextView to SPTextView.
Diffstat (limited to 'Source/CMTextView.h')
-rw-r--r--Source/CMTextView.h149
1 files changed, 0 insertions, 149 deletions
diff --git a/Source/CMTextView.h b/Source/CMTextView.h
deleted file mode 100644
index 51f2153d..00000000
--- a/Source/CMTextView.h
+++ /dev/null
@@ -1,149 +0,0 @@
-//
-// $Id$
-//
-// CMTextView.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"
-#import "CMTextView.h"
-
-#define SP_TEXT_SIZE_TRIGGER_FOR_PARTLY_PARSING 10000
-
-@class SPNarrowDownCompletion, TableDocument, TablesList, CustomQuery;
-
-@interface CMTextView : 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