From 84b4a01f4f2032a17e5dc93e4b4f1f37a71ab04c Mon Sep 17 00:00:00 2001 From: Sven Weidauer Date: Tue, 1 Feb 2011 08:39:35 +0000 Subject: Implemented global history window using new Tree class. svn path=/trunk/netsurf/; revision=11578 --- cocoa/NetSurfAppDelegate.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'cocoa/NetSurfAppDelegate.h') 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 -- cgit v1.2.3