aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPBundleCommandTextView.h
diff options
context:
space:
mode:
authorBibiko <bibiko@eva.mpg.de>2010-11-21 19:42:42 +0000
committerBibiko <bibiko@eva.mpg.de>2010-11-21 19:42:42 +0000
commit79bf97de1dc30afb75a07958ff99b6f95473383e (patch)
treef789a43c40c6ff3f4c7868ba0115fc90926f8aea /Source/SPBundleCommandTextView.h
parentecba7ac8da8f0f2728bf23815e9103b42ec81729 (diff)
downloadsequelpro-79bf97de1dc30afb75a07958ff99b6f95473383e.tar.gz
sequelpro-79bf97de1dc30afb75a07958ff99b6f95473383e.tar.bz2
sequelpro-79bf97de1dc30afb75a07958ff99b6f95473383e.zip
• added line numbering and current line highlighting to Bundle Editor's command text view
• made each Bundle in/ouptut file name unique to allow to run different Bundle commands at the same time • fixed minor issues for Bundle Editor
Diffstat (limited to 'Source/SPBundleCommandTextView.h')
-rw-r--r--Source/SPBundleCommandTextView.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/SPBundleCommandTextView.h b/Source/SPBundleCommandTextView.h
index e39ec1dd..fb9cef62 100644
--- a/Source/SPBundleCommandTextView.h
+++ b/Source/SPBundleCommandTextView.h
@@ -22,13 +22,22 @@
//
// More info at <http://code.google.com/p/sequel-pro/>
+#import "NoodleLineNumberView.h"
+
@interface SPBundleCommandTextView : NSTextView
{
+
+ IBOutlet NSScrollView *commandScrollView;
+
+ NSUserDefaults *prefs;
+
BOOL textWasChanged;
+ NoodleLineNumberView *lineNumberView;
}
- (NSUInteger)characterIndexOfPoint:(NSPoint)aPoint;
- (void)insertFileContentOfFile:(NSString *)aPath;
- (void)saveChangedFontInUserDefaults;
+- (void) setTabStops;
@end