summaryrefslogtreecommitdiff
path: root/cocoa/BrowserWindowController.h
diff options
context:
space:
mode:
Diffstat (limited to 'cocoa/BrowserWindowController.h')
-rw-r--r--cocoa/BrowserWindowController.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/cocoa/BrowserWindowController.h b/cocoa/BrowserWindowController.h
index 333a50429..96157e71f 100644
--- a/cocoa/BrowserWindowController.h
+++ b/cocoa/BrowserWindowController.h
@@ -27,7 +27,8 @@
NSTabView *tabView;
URLFieldCell *urlField;
NSObjectController *activeBrowserController;
-
+ NSSegmentedControl *navigationControl;
+
BrowserViewController *activeBrowser;
}
@@ -35,9 +36,13 @@
@property (readwrite, retain, nonatomic) IBOutlet NSTabView *tabView;
@property (readwrite, retain, nonatomic) IBOutlet URLFieldCell *urlField;
@property (readwrite, retain, nonatomic) IBOutlet NSObjectController *activeBrowserController;
+@property (readwrite, retain, nonatomic) IBOutlet NSSegmentedControl *navigationControl;
@property (readwrite, assign, nonatomic) BrowserViewController *activeBrowser;
+@property (readwrite, assign, nonatomic) BOOL canGoBack;
+@property (readwrite, assign, nonatomic) BOOL canGoForward;
+
- (IBAction) newTab: (id) sender;
- (void) addTab: (BrowserViewController *)browser;