aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPBundleEditorController.h
diff options
context:
space:
mode:
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