1 /**
2  * AppController.h
3  * SciTest
4  *
5  * Created by Mike Lischke on 01.04.09.
6  * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
7  * This file is dual licensed under LGPL v2.1 and the Scintilla license (http://www.scintilla.org/License.txt).
8  */
9 
10 #import <Cocoa/Cocoa.h>
11 
12 #import "Scintilla/ScintillaView.h"
13 #import "Scintilla/InfoBar.h"
14 
15 @interface AppController : NSObject {
16   IBOutlet NSBox *mEditHost;
17   ScintillaView* mEditor;
18 }
19 
20 - (void) awakeFromNib;
21 - (void) setupEditor;
22 - (IBAction) searchText: (id) sender;
23 
24 @end
25