summaryrefslogtreecommitdiff
path: root/cocoa/NetSurfAppDelegate.h
diff options
context:
space:
mode:
Diffstat (limited to 'cocoa/NetSurfAppDelegate.h')
-rw-r--r--cocoa/NetSurfAppDelegate.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/cocoa/NetSurfAppDelegate.h b/cocoa/NetSurfAppDelegate.h
index e070b3fa9..4852f6fd5 100644
--- a/cocoa/NetSurfAppDelegate.h
+++ b/cocoa/NetSurfAppDelegate.h
@@ -18,11 +18,18 @@
#import <Cocoa/Cocoa.h>
+@class SearchWindowController;
@interface NetSurfAppDelegate : NSObject {
NSWindow *historyWindow;
+ SearchWindowController *search;
}
@property (readwrite, retain, nonatomic) IBOutlet NSWindow *historyWindow;
+@property (readwrite, retain, nonatomic) SearchWindowController *search;
+
+- (IBAction) showSearchWindow: (id) sender;
+- (IBAction) searchForward: (id) sender;
+- (IBAction) searchBackward: (id) sender;
@end