mirror of
https://github.com/notepad-plus-plus/notepad-plus-plus.git
synced 2025-11-22 14:39:41 +01:00
25 lines
557 B
Objective-C
25 lines
557 B
Objective-C
/**
|
|
* AppController.h
|
|
* SciTest
|
|
*
|
|
* Created by Mike Lischke on 01.04.09.
|
|
* Copyright 2009 Sun Microsystems, Inc. All rights reserved.
|
|
* This file is dual licensed under LGPL v2.1 and the Scintilla license (http://www.scintilla.org/License.txt).
|
|
*/
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "Scintilla/ScintillaView.h"
|
|
#import "Scintilla/InfoBar.h"
|
|
|
|
@interface AppController : NSObject {
|
|
IBOutlet NSBox *mEditHost;
|
|
ScintillaView* mEditor;
|
|
}
|
|
|
|
- (void) awakeFromNib;
|
|
- (void) setupEditor;
|
|
- (IBAction) searchText: (id) sender;
|
|
|
|
@end
|