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