aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPBundleEditorController.h
diff options
context:
space:
mode:
authorBibiko <bibiko@eva.mpg.de>2010-11-19 12:26:45 +0000
committerBibiko <bibiko@eva.mpg.de>2010-11-19 12:26:45 +0000
commit823ce1e87ff4d2a333ff64c17ef818a3afbffca7 (patch)
tree301d4f517f273a22c6e0388e050b572730ad9f96 /Source/SPBundleEditorController.h
parentb5c4f326fb175499d0b837cb325b9eeea676fb4f (diff)
downloadsequelpro-823ce1e87ff4d2a333ff64c17ef818a3afbffca7.tar.gz
sequelpro-823ce1e87ff4d2a333ff64c17ef818a3afbffca7.tar.bz2
sequelpro-823ce1e87ff4d2a333ff64c17ef818a3afbffca7.zip
• Bundle Editor
- minor fixes - command textView is now a SPEditSheetTextView for better undo behaviour and font storing in the Prefs if changed - if Bundle Editor is already opened ^⌥⌘B brings it to the front • the installation of spTheme and spBundle files (via eg double-clicking at them in Finder) now moves the files to SP's application folder (if successful)
Diffstat (limited to 'Source/SPBundleEditorController.h')
-rw-r--r--Source/SPBundleEditorController.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/Source/SPBundleEditorController.h b/Source/SPBundleEditorController.h
index 90ed03f1..5ab3a534 100644
--- a/Source/SPBundleEditorController.h
+++ b/Source/SPBundleEditorController.h
@@ -24,12 +24,13 @@
#import <Cocoa/Cocoa.h>
#import <ShortcutRecorder/ShortcutRecorder.h>
+#import "SPEditSheetTextView.h"
@class SRRecorderControl;
@interface SPBundleEditorController : NSWindowController {
- IBOutlet NSTextView* commandTextView;
+ IBOutlet id commandTextView;
IBOutlet NSTableView* commandsTableView;
IBOutlet NSTextField* nameTextField;
IBOutlet NSTextField* tootlipTextField;
@@ -74,6 +75,11 @@
NSArray *inputFallbackEditorScopeArray;
NSArray *inputFallbackInputFieldScopeArray;
+ BOOL doGroupDueToChars;
+ BOOL allowUndo;
+ BOOL wasCutPaste;
+ BOOL selectionChanged;
+ NSUndoManager *esUndoManager;
}
@@ -91,4 +97,7 @@
- (BOOL)saveBundle:(NSDictionary*)bundle atPath:(NSString*)aPath;
+- (void)setWasCutPaste;
+- (void)setDoGroupDueToChars;
+
@end