summaryrefslogtreecommitdiff
path: root/cocoa/HistoryView.h
diff options
context:
space:
mode:
authorSven Weidauer <sven.weidauer@gmail.com>2011-01-25 09:53:39 +0000
committerSven Weidauer <sven.weidauer@gmail.com>2011-01-25 09:53:39 +0000
commit15e7b87caca8759c1d5b629955d688c05f4b7004 (patch)
tree717bed173d6edc7c96ed938ab6e731e843c285dd /cocoa/HistoryView.h
parent7ff51a93d5f622bd24ff359128a83c49e09f8bb8 (diff)
downloadnetsurf-15e7b87caca8759c1d5b629955d688c05f4b7004.tar.gz
netsurf-15e7b87caca8759c1d5b629955d688c05f4b7004.tar.bz2
Nicer button for local history, fading history view, more readable blue for active item
svn path=/trunk/netsurf/; revision=11481
Diffstat (limited to 'cocoa/HistoryView.h')
-rw-r--r--cocoa/HistoryView.h12
1 files changed, 3 insertions, 9 deletions
diff --git a/cocoa/HistoryView.h b/cocoa/HistoryView.h
index 974b649d5..7b5ef80b9 100644
--- a/cocoa/HistoryView.h
+++ b/cocoa/HistoryView.h
@@ -20,22 +20,16 @@
@class HistoryView;
-@protocol HistoryViewDelegate
-
-- (void) historyViewDidSelectItem: (HistoryView *) history;
-
-@end
-
-
@interface HistoryView : NSView {
struct browser_window *browser;
- id <HistoryViewDelegate> delegate;
}
@property (readwrite, assign, nonatomic) struct browser_window *browser;
-@property (readwrite, assign, nonatomic) id <HistoryViewDelegate> delegate;
- (id) initWithBrowser: (struct browser_window *)bw;
- (void) updateHistory;
+- (void) fadeIntoView: (NSView *) superView;
+- (void) fadeOut;
+
@end