summaryrefslogtreecommitdiff
path: root/cocoa/HistoryView.h
diff options
context:
space:
mode:
authorSven Weidauer <sven.weidauer@gmail.com>2011-02-27 09:46:54 +0000
committerSven Weidauer <sven.weidauer@gmail.com>2011-02-27 09:46:54 +0000
commite1901889698454018150bfc58f469708837dfd7a (patch)
tree68cbf63380769e92d56f9adfbe522087766c5f27 /cocoa/HistoryView.h
parent1842be491dffdbc0b0d2dc8e3891d13369824887 (diff)
downloadnetsurf-e1901889698454018150bfc58f469708837dfd7a.tar.gz
netsurf-e1901889698454018150bfc58f469708837dfd7a.tar.bz2
Local history view now is responsible for hiding itself after selecting a web page. Also gets redrawn when selecting other pages using the back/forward buttons.
svn path=/trunk/netsurf/; revision=11837
Diffstat (limited to 'cocoa/HistoryView.h')
-rw-r--r--cocoa/HistoryView.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/cocoa/HistoryView.h b/cocoa/HistoryView.h
index 20806363f..d3062b6f1 100644
--- a/cocoa/HistoryView.h
+++ b/cocoa/HistoryView.h
@@ -19,12 +19,14 @@
#import <Cocoa/Cocoa.h>
@class HistoryView;
+@class BrowserView;
@interface HistoryView : NSView {
struct browser_window *browser;
+ BrowserView *browserView;
}
-@property (readwrite, assign, nonatomic) struct browser_window *browser;
+@property (readwrite, assign, nonatomic) BrowserView *browser;
- (void) updateHistory;
- (NSSize) size;