added Info.plist
[TestXSLT.git] / FindPanelController.h
1 //
2 //  FindPanelController.h
3 //  TestXSLT
4 //
5 //  Created by Marc Liyanage on Tue Aug 20 2002.
6 //  Copyright (c) 2002 __MyCompanyName__. All rights reserved.
7 //
8
9 #import <AppKit/AppKit.h>
10
11 @interface FindPanelController : NSWindowController {
12
13         IBOutlet NSTextField *findField;
14         IBOutlet NSButton *caseInsensitiveCheckbox;
15         IBOutlet NSButton *nextButton;
16         IBOutlet NSButton *previousButton;
17         unsigned int searchFlags;
18         BOOL aborted;
19         
20 }
21
22 - (unsigned int)caseInsensitiveFlag;
23 - (unsigned int)searchFlags;
24 - (void)setFindString:(id)string;
25 - (void)setSearchFlags:(unsigned int)flags;
26 - (NSString *)findString;
27 - (IBAction)find:(id)sender;
28 - (IBAction)findPrevious:(id)sender;
29 - (IBAction)abortFind:(id)sender;
30 - (IBAction)keyUp:(NSEvent *)event;
31 - (void)refresh;
32 - (BOOL)aborted;
33
34 @end