aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa/ScintillaTest/AppController.h
diff options
context:
space:
mode:
authorNeil Hodgson <nyamatongwe@gmail.com>2015-10-23 23:19:42 +1100
committerNeil Hodgson <nyamatongwe@gmail.com>2015-10-23 23:19:42 +1100
commit99c9ad7ef1f1d77b713577df72eae32d3f479cf6 (patch)
treebd6a570e0fe8a976df9b1aba6a27c2333147d840 /cocoa/ScintillaTest/AppController.h
parente2dca05cbb61dbaeff984e6f2dca350c24fdaec3 (diff)
downloadscintilla-mirror-99c9ad7ef1f1d77b713577df72eae32d3f479cf6.tar.gz
Add a menu command to ScintillaTest to add or remove an extra Scintilla
view on the right of the window to allow testing deletion of a ScintillaView.
Diffstat (limited to 'cocoa/ScintillaTest/AppController.h')
-rw-r--r--cocoa/ScintillaTest/AppController.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/cocoa/ScintillaTest/AppController.h b/cocoa/ScintillaTest/AppController.h
index 6025f6a50..6fb4dac68 100644
--- a/cocoa/ScintillaTest/AppController.h
+++ b/cocoa/ScintillaTest/AppController.h
@@ -15,10 +15,13 @@
@interface AppController : NSObject {
IBOutlet NSBox *mEditHost;
ScintillaView* mEditor;
+ ScintillaView* sciExtra; // For testing Scintilla tear-down
+ NSString* sql;
}
- (void) awakeFromNib;
- (void) setupEditor;
- (IBAction) searchText: (id) sender;
+- (IBAction) addRemoveExtra: (id) sender;
@end