2011-02-01 13:27:54 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2011 Sven Weidauer <sven.weidauer@gmail.com>
|
|
|
|
*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#import "cocoa/BookmarksController.h"
|
|
|
|
#import "cocoa/Tree.h"
|
2011-02-01 17:52:20 +03:00
|
|
|
#import "cocoa/TreeView.h"
|
2011-02-01 13:27:54 +03:00
|
|
|
#import "cocoa/NetsurfApp.h"
|
|
|
|
#import "cocoa/BrowserViewController.h"
|
2011-02-01 13:37:13 +03:00
|
|
|
#import "cocoa/gui.h"
|
2011-02-01 13:27:54 +03:00
|
|
|
|
|
|
|
#import "desktop/hotlist.h"
|
|
|
|
#import "desktop/tree.h"
|
|
|
|
#import "desktop/tree_url_node.h"
|
|
|
|
|
2011-02-25 18:31:48 +03:00
|
|
|
@interface BookmarksController ()
|
|
|
|
- (void) noteAppWillTerminate: (NSNotification *) note;
|
|
|
|
- (void) save;
|
|
|
|
@end
|
|
|
|
|
2011-02-01 13:27:54 +03:00
|
|
|
@implementation BookmarksController
|
|
|
|
|
|
|
|
@synthesize defaultMenu;
|
2011-02-01 17:52:20 +03:00
|
|
|
@synthesize view;
|
2011-02-01 13:27:54 +03:00
|
|
|
|
2011-02-01 13:37:13 +03:00
|
|
|
static const char *cocoa_hotlist_path( void )
|
|
|
|
{
|
|
|
|
NSString *path = [[NSUserDefaults standardUserDefaults] stringForKey: kHotlistFileOption];
|
|
|
|
return [path UTF8String];
|
|
|
|
}
|
|
|
|
|
2011-02-01 13:27:54 +03:00
|
|
|
- init;
|
|
|
|
{
|
2011-02-01 17:52:20 +03:00
|
|
|
if ((self = [super initWithWindowNibName: @"BookmarksWindow"]) == nil) return nil;
|
2011-02-01 13:27:54 +03:00
|
|
|
|
|
|
|
tree = [[Tree alloc] initWithFlags: hotlist_get_tree_flags()];
|
2011-02-27 16:21:46 +03:00
|
|
|
hotlist_initialise( [tree tree], cocoa_hotlist_path(), "directory.png" );
|
2011-02-01 13:27:54 +03:00
|
|
|
nodeForMenu = NSCreateMapTable( NSNonOwnedPointerMapKeyCallBacks, NSNonOwnedPointerMapValueCallBacks, 0 );
|
|
|
|
|
2011-02-25 18:31:48 +03:00
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
|
|
|
selector:@selector( noteAppWillTerminate: )
|
|
|
|
name:NSApplicationWillTerminateNotification
|
|
|
|
object:NSApp];
|
|
|
|
|
2011-02-01 13:27:54 +03:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2011-02-25 18:31:48 +03:00
|
|
|
- (void) noteAppWillTerminate: (NSNotification *) note;
|
|
|
|
{
|
|
|
|
[self save];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) save;
|
|
|
|
{
|
|
|
|
hotlist_export( cocoa_hotlist_path() );
|
|
|
|
}
|
|
|
|
|
2011-02-01 13:27:54 +03:00
|
|
|
- (void) dealloc;
|
|
|
|
{
|
2011-02-01 17:52:20 +03:00
|
|
|
[self setView: nil];
|
2011-02-01 13:27:54 +03:00
|
|
|
NSFreeMapTable( nodeForMenu );
|
2011-02-01 13:37:13 +03:00
|
|
|
hotlist_cleanup( cocoa_hotlist_path() );
|
2011-02-01 13:27:54 +03:00
|
|
|
[tree release];
|
2011-02-01 17:52:20 +03:00
|
|
|
|
2011-02-25 18:31:48 +03:00
|
|
|
[[NSNotificationCenter defaultCenter] removeObserver: self];
|
|
|
|
|
2011-02-01 13:27:54 +03:00
|
|
|
[super dealloc];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) menuNeedsUpdate: (NSMenu *)menu
|
|
|
|
{
|
|
|
|
for (NSMenuItem *item in [menu itemArray]) {
|
|
|
|
if ([item hasSubmenu]) NSMapRemove( nodeForMenu, [item submenu] );
|
|
|
|
[menu removeItem: item];
|
|
|
|
}
|
|
|
|
|
|
|
|
bool hasSeparator = true;
|
|
|
|
struct node *node = (struct node *)NSMapGet( nodeForMenu, menu );
|
|
|
|
if (node == NULL) {
|
|
|
|
for (NSMenuItem *item in [defaultMenu itemArray]) {
|
|
|
|
[menu addItem: [[item copy] autorelease]];
|
|
|
|
}
|
|
|
|
hasSeparator = false;
|
|
|
|
node = [tree rootNode];
|
|
|
|
}
|
|
|
|
|
|
|
|
for (struct node *child = tree_node_get_child( node );
|
|
|
|
child != NULL;
|
|
|
|
child = tree_node_get_next( child )) {
|
|
|
|
|
|
|
|
if (tree_node_is_deleted( child )) continue;
|
|
|
|
|
|
|
|
if (!hasSeparator) {
|
|
|
|
[menu addItem: [NSMenuItem separatorItem]];
|
|
|
|
hasSeparator = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
NSString *title = [NSString stringWithUTF8String: tree_url_node_get_title( child )];
|
|
|
|
|
|
|
|
NSMenuItem *item = [menu addItemWithTitle: title action: NULL keyEquivalent: @""];
|
|
|
|
if (tree_node_is_folder( child )) {
|
|
|
|
NSMenu *subMenu = [[[NSMenu alloc] initWithTitle: title] autorelease];
|
|
|
|
NSMapInsert( nodeForMenu, subMenu, child );
|
|
|
|
[subMenu setDelegate: self];
|
|
|
|
[menu setSubmenu: subMenu forItem: item];
|
|
|
|
} else {
|
|
|
|
[item setRepresentedObject: [NSString stringWithUTF8String: tree_url_node_get_url( child )]];
|
|
|
|
[item setTarget: self];
|
|
|
|
[item setAction: @selector( openBookmarkURL: )];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction) openBookmarkURL: (id) sender;
|
|
|
|
{
|
|
|
|
const char *url = [[sender representedObject] UTF8String];
|
|
|
|
NSParameterAssert( url != NULL );
|
|
|
|
|
|
|
|
BrowserViewController *tab = [(NetSurfApp *)NSApp frontTab];
|
|
|
|
if (tab != nil) {
|
|
|
|
browser_window_go( [tab browser], url, NULL, true );
|
|
|
|
} else {
|
|
|
|
browser_window_create( url, NULL, NULL, true, false );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction) addBookmark: (id) sender;
|
|
|
|
{
|
2011-02-02 15:25:31 +03:00
|
|
|
struct browser_window *bw = [[(NetSurfApp *)NSApp frontTab] browser];
|
|
|
|
if (bw && bw->current_content) {
|
|
|
|
const char *url = content_get_url( bw->current_content );
|
|
|
|
hotlist_add_page( url );
|
|
|
|
}
|
2011-02-01 13:27:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL) validateUserInterfaceItem: (id) item;
|
|
|
|
{
|
|
|
|
SEL action = [item action];
|
|
|
|
|
|
|
|
if (action == @selector( addBookmark: )) {
|
|
|
|
return [(NetSurfApp *)NSApp frontTab] != nil;
|
|
|
|
}
|
|
|
|
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
2011-02-01 17:52:20 +03:00
|
|
|
- (void) windowDidLoad;
|
|
|
|
{
|
2011-02-01 18:52:19 +03:00
|
|
|
hotlist_expand_all();
|
|
|
|
hotlist_collapse_all();
|
|
|
|
|
2011-02-01 17:52:20 +03:00
|
|
|
[view setTree: tree];
|
|
|
|
}
|
|
|
|
|
2011-02-01 13:37:13 +03:00
|
|
|
|
|
|
|
+ (void) initialize;
|
|
|
|
{
|
|
|
|
[[NSUserDefaults standardUserDefaults] registerDefaults: [NSDictionary dictionaryWithObjectsAndKeys:
|
|
|
|
cocoa_get_user_path( @"Bookmarks.html" ), kHotlistFileOption,
|
|
|
|
nil]];
|
|
|
|
}
|
|
|
|
|
2011-02-02 15:25:31 +03:00
|
|
|
- (IBAction) editSelected: (id) sender;
|
|
|
|
{
|
|
|
|
hotlist_edit_selected();
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction) deleteSelected: (id) sender;
|
|
|
|
{
|
|
|
|
hotlist_delete_selected();
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction) addFolder: (id) sender;
|
|
|
|
{
|
|
|
|
hotlist_add_folder();
|
|
|
|
}
|
|
|
|
|
2011-02-01 13:27:54 +03:00
|
|
|
@end
|