From fac17d747b50712a42d1bc4b79576feac67fd2db Mon Sep 17 00:00:00 2001 From: Sven Weidauer Date: Tue, 1 Feb 2011 10:27:54 +0000 Subject: Implemented bookmarks menu. svn path=/trunk/netsurf/; revision=11579 --- cocoa/BookmarksController.h | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 cocoa/BookmarksController.h (limited to 'cocoa/BookmarksController.h') diff --git a/cocoa/BookmarksController.h b/cocoa/BookmarksController.h new file mode 100644 index 000000000..0e43d207a --- /dev/null +++ b/cocoa/BookmarksController.h @@ -0,0 +1,35 @@ +/* + * Copyright 2011 Sven Weidauer + * + * This file is part of NetSurf, http://www.netsurf-browser.org/ + * + * NetSurf is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; version 2 of the License. + * + * NetSurf is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#import + +@class Tree; + +@interface BookmarksController : NSObject { + Tree *tree; + NSMapTable *nodeForMenu; + NSMenu *defaultMenu; +} + +@property (readwrite, retain, nonatomic) IBOutlet NSMenu *defaultMenu; + +- (IBAction) openBookmarkURL: (id) sender; +- (IBAction) showBookmarksWindow: (id) sender; +- (IBAction) addBookmark: (id) sender; + +@end -- cgit v1.2.3