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
|
// Copyright (c) 2011 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/ui/gtk/avatar_menu_bubble_gtk.h"
#include "base/i18n/rtl.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/profiles/avatar_menu_model.h"
#include "chrome/browser/profiles/profile_info_cache.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/gtk/avatar_menu_item_gtk.h"
#include "chrome/browser/ui/gtk/browser_toolbar_gtk.h"
#include "chrome/browser/ui/gtk/browser_window_gtk.h"
#include "chrome/browser/ui/gtk/gtk_chrome_link_button.h"
#include "chrome/browser/ui/gtk/gtk_theme_service.h"
#include "chrome/browser/ui/gtk/location_bar_view_gtk.h"
#include "chrome/common/chrome_notification_types.h"
#include "content/public/browser/notification_source.h"
#include "grit/generated_resources.h"
#include "ui/base/gtk/gtk_hig_constants.h"
#include "ui/base/l10n/l10n_util.h"
namespace {
// The minimum width in pixels of the bubble.
const int kBubbleMinWidth = 175;
// The number of pixels of padding on the left of the 'New Profile' link at the
// bottom of the bubble.
const int kNewProfileLinkLeftPadding = 40;
} // namespace
AvatarMenuBubbleGtk::AvatarMenuBubbleGtk(Browser* browser,
GtkWidget* anchor,
BubbleGtk::ArrowLocationGtk arrow,
const gfx::Rect* rect)
: contents_(NULL),
theme_service_(GtkThemeService::GetFrom(browser->profile())),
new_profile_link_(NULL),
minimum_width_(kBubbleMinWidth) {
avatar_menu_model_.reset(new AvatarMenuModel(
&g_browser_process->profile_manager()->GetProfileInfoCache(),
this, browser));
InitContents();
OnAvatarMenuModelChanged(avatar_menu_model_.get());
bubble_ = BubbleGtk::Show(anchor,
rect,
contents_,
arrow,
true, // |match_system_theme|
true, // |grab_input|
theme_service_,
this); // |delegate|
g_signal_connect(contents_, "destroy",
G_CALLBACK(&OnDestroyThunk), this);
registrar_.Add(this, chrome::NOTIFICATION_BROWSER_THEME_CHANGED,
content::Source<ThemeService>(theme_service_));
theme_service_->InitThemesFor(this);
}
AvatarMenuBubbleGtk::~AvatarMenuBubbleGtk() {
STLDeleteContainerPointers(items_.begin(), items_.end());
}
void AvatarMenuBubbleGtk::OnDestroy(GtkWidget* widget) {
// We are self deleting, we have a destroy signal setup to catch when we
// destroyed (via the BubbleGtk being destroyed), and delete ourself.
MessageLoop::current()->DeleteSoon(FROM_HERE, this);
}
void AvatarMenuBubbleGtk::BubbleClosing(BubbleGtk* bubble,
bool closed_by_escape) {
}
void AvatarMenuBubbleGtk::OnAvatarMenuModelChanged(
AvatarMenuModel* avatar_menu_model) {
STLDeleteContainerPointers(items_.begin(), items_.end());
items_.clear();
minimum_width_ = kBubbleMinWidth;
InitContents();
}
void AvatarMenuBubbleGtk::OpenProfile(size_t profile_index) {
avatar_menu_model_->SwitchToProfile(profile_index);
bubble_->Close();
}
void AvatarMenuBubbleGtk::EditProfile(size_t profile_index) {
avatar_menu_model_->EditProfile(profile_index);
bubble_->Close();
}
void AvatarMenuBubbleGtk::Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) {
DCHECK_EQ(type, chrome::NOTIFICATION_BROWSER_THEME_CHANGED);
gtk_chrome_link_button_set_use_gtk_theme(
GTK_CHROME_LINK_BUTTON(new_profile_link_),
theme_service_->UsingNativeTheme());
}
void AvatarMenuBubbleGtk::OnSizeRequest(GtkWidget* widget,
GtkRequisition* req) {
// Always use the maximum width ever requested.
if (req->width < minimum_width_)
req->width = minimum_width_;
else
minimum_width_ = req->width;
}
void AvatarMenuBubbleGtk::OnNewProfileLinkClicked(GtkWidget* link) {
avatar_menu_model_->AddNewProfile();
bubble_->Close();
}
void AvatarMenuBubbleGtk::InitContents() {
size_t profile_count = avatar_menu_model_->GetNumberOfItems();
contents_ = gtk_vbox_new(FALSE, ui::kControlSpacing);
gtk_container_set_border_width(GTK_CONTAINER(contents_),
ui::kContentAreaBorder);
g_signal_connect(contents_, "size-request",
G_CALLBACK(OnSizeRequestThunk), this);
GtkWidget* items_vbox = gtk_vbox_new(FALSE, ui::kContentAreaSpacing);
for (size_t i = 0; i < profile_count; ++i) {
AvatarMenuModel::Item menu_item = avatar_menu_model_->GetItemAt(i);
AvatarMenuItemGtk* item = new AvatarMenuItemGtk(
this, menu_item, i, theme_service_);
items_.push_back(item);
gtk_box_pack_start(GTK_BOX(items_vbox), item->widget(), TRUE, TRUE, 0);
gtk_widget_set_can_focus(item->widget(), TRUE);
if (menu_item.active)
gtk_container_set_focus_child(GTK_CONTAINER(items_vbox), item->widget());
}
gtk_box_pack_start(GTK_BOX(contents_), items_vbox, TRUE, TRUE, 0);
gtk_box_pack_start(GTK_BOX(contents_), gtk_hseparator_new(), TRUE, TRUE, 0);
// The new profile link.
new_profile_link_ = gtk_chrome_link_button_new(
l10n_util::GetStringUTF8(IDS_PROFILES_CREATE_NEW_PROFILE_LINK).c_str());
g_signal_connect(new_profile_link_, "clicked",
G_CALLBACK(OnNewProfileLinkClickedThunk), this);
GtkWidget* link_align = gtk_alignment_new(0, 0, 0, 0);
gtk_alignment_set_padding(GTK_ALIGNMENT(link_align),
0, 0, kNewProfileLinkLeftPadding, 0);
gtk_container_add(GTK_CONTAINER(link_align), new_profile_link_);
gtk_box_pack_start(GTK_BOX(contents_), link_align, FALSE, FALSE, 0);
}
|