summaryrefslogtreecommitdiff
path: root/cocoa/BrowserView.h
diff options
context:
space:
mode:
Diffstat (limited to 'cocoa/BrowserView.h')
-rw-r--r--cocoa/BrowserView.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/cocoa/BrowserView.h b/cocoa/BrowserView.h
index 3a6be0604..947825b24 100644
--- a/cocoa/BrowserView.h
+++ b/cocoa/BrowserView.h
@@ -19,6 +19,7 @@
#import <Cocoa/Cocoa.h>
#import "ScrollableView.h"
+@class HistoryView;
@interface BrowserView : ScrollableView {
struct browser_window *browser;
@@ -33,6 +34,9 @@
NSPoint dragStart;
BOOL isResizing;
+
+ HistoryView *history;
+ BOOL historyVisible;
}
@property (readwrite, assign, nonatomic) struct browser_window *browser;
@@ -42,4 +46,6 @@
- (void) removeCaret;
- (void) addCaretAt: (NSPoint) point height: (CGFloat) height;
+- (void) toggleHistory;
+
@end