-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWNSearchWindowController.h
40 lines (30 loc) · 1.3 KB
/
WNSearchWindowController.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//---------------------------------------------------------------------------------------
// WNSearchWindowController.h created by erik on Fri 18-Sep-1998
// This code is part of the WordNet frontend by Erik Doernenburg. For copyright details
// see GNU public license version 2 or above. No warranties implied. Use at own risk.
// More information can be found at http://www.mulle-kybernetik.com/software/WordNet/.
//---------------------------------------------------------------------------------------
#import <AppKit/AppKit.h>
@class WNController;
@interface WNSearchWindowController : NSWindowController
{
WNController *wnController;
NSMutableDictionary *popUpButtons;
NSMutableDictionary *popUpTitles;
IBOutlet NSSearchField *inputField;
IBOutlet NSPopUpButton *nounPopUp;
IBOutlet NSPopUpButton *verbPopUp;
IBOutlet NSPopUpButton *adjPopUp;
IBOutlet NSPopUpButton *advPopUp;
IBOutlet NSTextView *textView;
IBOutlet NSWindow *findPanel;
IBOutlet NSTextField *findStringField;
IBOutlet NSButton *ignoreCaseButton;
}
- (id)initWithAccessController:(WNController *)controller;
- (IBAction)runSearch:(id)sender;
- (IBAction)getDetails:(id)sender;
- (IBAction)printResult:(id)sender;
- (IBAction)findNext:(id)sender;
- (IBAction)findPrevious:(id)sender;
@end