summaryrefslogtreecommitdiff
path: root/cocoa/NetSurfAppDelegate.h
diff options
context:
space:
mode:
authorSven Weidauer <sven.weidauer@gmail.com>2011-01-31 15:13:38 +0000
committerSven Weidauer <sven.weidauer@gmail.com>2011-01-31 15:13:38 +0000
commit66b9d5476ed7c47fd31b4e175d2752165894226a (patch)
tree2e7cbcca135f6764d5f5dab3fdf56f68330de129 /cocoa/NetSurfAppDelegate.h
parentcf561c8a6e16031ec60c10f2faad6c80e73c211d (diff)
downloadnetsurf-66b9d5476ed7c47fd31b4e175d2752165894226a.tar.gz
netsurf-66b9d5476ed7c47fd31b4e175d2752165894226a.tar.bz2
Implemented search window.
svn path=/trunk/netsurf/; revision=11563
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