summaryrefslogtreecommitdiff
path: root/cocoa/NetSurfAppDelegate.h
diff options
context:
space:
mode:
Diffstat (limited to 'cocoa/NetSurfAppDelegate.h')
-rw-r--r--cocoa/NetSurfAppDelegate.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/cocoa/NetSurfAppDelegate.h b/cocoa/NetSurfAppDelegate.h
index b4ea15e8f..a22c4ceee 100644
--- a/cocoa/NetSurfAppDelegate.h
+++ b/cocoa/NetSurfAppDelegate.h
@@ -20,21 +20,23 @@
@class SearchWindowController;
@class PreferencesWindowController;
+@class HistoryWindowController;
@interface NetSurfAppDelegate : NSObject {
- NSWindow *historyWindow;
SearchWindowController *search;
PreferencesWindowController *preferences;
+ HistoryWindowController *history;
}
-@property (readwrite, retain, nonatomic) IBOutlet NSWindow *historyWindow;
@property (readwrite, retain, nonatomic) SearchWindowController *search;
@property (readwrite, retain, nonatomic) PreferencesWindowController *preferences;
+@property (readwrite, retain, nonatomic) HistoryWindowController *history;
- (IBAction) showSearchWindow: (id) sender;
- (IBAction) searchForward: (id) sender;
- (IBAction) searchBackward: (id) sender;
- (IBAction) showPreferences: (id) sender;
+- (IBAction) showGlobalHistory: (id) sender;
@end