1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/cocoa/bookmark_menu_bridge.h"
#import <AppKit/AppKit.h>
#include "base/sys_string_conversions.h"
#include "chrome/app/chrome_dll_resource.h" // IDC_BOOKMARK_MENU
#import "chrome/browser/app_controller_mac.h"
#include "chrome/browser/browser.h"
#include "chrome/browser/browser_list.h"
#import "chrome/browser/cocoa/bookmark_menu_cocoa_controller.h"
#include "chrome/browser/profile.h"
#include "chrome/browser/profile_manager.h"
BookmarkMenuBridge::BookmarkMenuBridge()
: controller_([[BookmarkMenuCocoaController alloc] initWithBridge:this]),
observing_(true) {
BrowserList::AddObserver(this);
}
BookmarkMenuBridge::~BookmarkMenuBridge() {
if (observing_)
BrowserList::RemoveObserver(this);
BookmarkModel *model = GetBookmarkModel();
if (model)
model->RemoveObserver(this);
[controller_ release];
}
NSMenu* BookmarkMenuBridge::BookmarkMenu() {
NSMenu* bookmark_menu = [[[NSApp mainMenu] itemWithTag:IDC_BOOKMARK_MENU]
submenu];
return bookmark_menu;
}
void BookmarkMenuBridge::Loaded(BookmarkModel* model) {
NSMenu* bookmark_menu = BookmarkMenu();
if (bookmark_menu == nil)
return;
ClearBookmarkMenu(bookmark_menu);
// TODO(jrg): limit the number of bookmarks in the menubar?
AddNodeToMenu(model->GetBookmarkBarNode(), bookmark_menu);
}
void BookmarkMenuBridge::BookmarkModelBeingDeleted(BookmarkModel* model) {
NSMenu* bookmark_menu = BookmarkMenu();
if (bookmark_menu == nil)
return;
ClearBookmarkMenu(bookmark_menu);
}
void BookmarkMenuBridge::BookmarkNodeMoved(BookmarkModel* model,
BookmarkNode* old_parent,
int old_index,
BookmarkNode* new_parent,
int new_index) {
// TODO(jrg): this is brute force; perhaps we should be nicer.
Loaded(model);
}
void BookmarkMenuBridge::BookmarkNodeAdded(BookmarkModel* model,
BookmarkNode* parent,
int index) {
// TODO(jrg): this is brute force; perhaps we should be nicer.
Loaded(model);
}
void BookmarkMenuBridge::BookmarkNodeChanged(BookmarkModel* model,
BookmarkNode* node) {
// TODO(jrg): this is brute force; perhaps we should be nicer.
Loaded(model);
}
void BookmarkMenuBridge::BookmarkNodeFavIconLoaded(BookmarkModel* model,
BookmarkNode* node) {
// Nothing to do here -- no icons in the menubar menus yet.
// TODO(jrg):
// Both Safari and FireFox have icons in their menubars for bookmarks.
}
void BookmarkMenuBridge::BookmarkNodeChildrenReordered(BookmarkModel* model,
BookmarkNode* node) {
// TODO(jrg): this is brute force; perhaps we should be nicer.
Loaded(model);
}
void BookmarkMenuBridge::OnBrowserAdded(const Browser* browser) {
// Intentionally empty -- we don't care, but pure virtual so we must
// implement.
}
void BookmarkMenuBridge::OnBrowserRemoving(const Browser* browser) {
// Intentionally empty -- we don't care, but pure virtual so we must
// implement.
}
// The current browser has changed; update the bookmark menus. For
// our use, we only care about the first one to know when a profile is
// complete.
void BookmarkMenuBridge::OnBrowserSetLastActive(const Browser* browser) {
BrowserList::RemoveObserver(this);
observing_ = false;
BookmarkModel* model = GetBookmarkModel();
model->AddObserver(this);
if (model->IsLoaded())
Loaded(model);
}
BookmarkModel* BookmarkMenuBridge::GetBookmarkModel() {
// In incognito mode we use the main profile's bookmarks.
// Thus, we don't return browser_->profile()->GetBookmarkModel().
Profile* profile = GetDefaultProfile();
// In unit tests, there is no default profile.
// TODO(jrg): refactor so we don't "allow" NULLs in non-test environments.
return profile ? profile->GetBookmarkModel() : NULL;
}
Profile* BookmarkMenuBridge::GetDefaultProfile() {
// The delegate of the main application is an AppController
return [[NSApp delegate] defaultProfile];
}
void BookmarkMenuBridge::ClearBookmarkMenu(NSMenu* menu) {
// Recursively delete all menus that look like a bookmark. Assume
// all items with submenus contain only bookmarks. This typically
// deletes everything except the first two items ("Add Bookmark..."
// and separator)
NSArray* items = [menu itemArray];
for (NSMenuItem* item in items) {
// Convention: items in the bookmark list which are bookmarks have
// an action of openBookmarkMenuItem:. Also, assume all items
// with submenus are submenus of bookmarks.
if (([item action] == @selector(openBookmarkMenuItem:)) ||
([item hasSubmenu])) {
// This will eventually [obj release] all its kids, if it has
// any.
[menu removeItem:item];
} else {
// Not a bookmark or item with submenu, so leave it alone.
}
}
}
void BookmarkMenuBridge::AddNodeToMenu(BookmarkNode* node, NSMenu* menu) {
for (int i = 0; i < node->GetChildCount(); i++) {
BookmarkNode* child = node->GetChild(i);
// TODO(jrg): Should we limit the title length?
// For the Bookmark Bar under windows, items appear trimmed to ~19
// chars (looks like a pixel width limit).
NSString* title = base::SysWideToNSString(child->GetTitle());
NSMenuItem* item = [[[NSMenuItem alloc] initWithTitle:title
action:nil
keyEquivalent:@""] autorelease];
[item setTarget:controller_];
[item setAction:@selector(openBookmarkMenuItem:)];
[item setTag:child->id()];
[menu addItem:item];
if (child->is_folder()) {
NSMenu* submenu = [[[NSMenu alloc] initWithTitle:title] autorelease];
[menu setSubmenu:submenu forItem:item];
AddNodeToMenu(child, submenu); // recursive call
}
}
}
|