summaryrefslogtreecommitdiff
path: root/cocoa/BrowserWindowController.h
diff options
context:
space:
mode:
authorSven Weidauer <sven.weidauer@gmail.com>2011-01-24 09:12:22 +0000
committerSven Weidauer <sven.weidauer@gmail.com>2011-01-24 09:12:22 +0000
commit8cc6b55981e808576d32c37f374716015fafe55b (patch)
treeb8005288f48ee42c7a5d34050893119c32d91282 /cocoa/BrowserWindowController.h
parent4dda0f02044a189fa8eac3900d96260c5851271f (diff)
downloadnetsurf-8cc6b55981e808576d32c37f374716015fafe55b.tar.gz
netsurf-8cc6b55981e808576d32c37f374716015fafe55b.tar.bz2
Nice back/forward buttons and moved refresh button into URL field (like Safari)
svn path=/trunk/netsurf/; revision=11477
Diffstat (limited to 'cocoa/BrowserWindowController.h')
-rw-r--r--cocoa/BrowserWindowController.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/cocoa/BrowserWindowController.h b/cocoa/BrowserWindowController.h
index 42a75930a..25482bbfa 100644
--- a/cocoa/BrowserWindowController.h
+++ b/cocoa/BrowserWindowController.h
@@ -20,15 +20,20 @@
@class PSMTabBarControl;
@class BrowserViewController;
+@class URLFieldCell;
@interface BrowserWindowController : NSWindowController {
PSMTabBarControl *tabBar;
NSTabView *tabView;
+ URLFieldCell *urlField;
+
BrowserViewController *activeBrowser;
}
@property (readwrite, retain, nonatomic) IBOutlet PSMTabBarControl *tabBar;
@property (readwrite, retain, nonatomic) IBOutlet NSTabView *tabView;
+@property (readwrite, retain, nonatomic) IBOutlet URLFieldCell *urlField;
+
@property (readwrite, assign, nonatomic) BrowserViewController *activeBrowser;
- (IBAction) newTab: (id) sender;