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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
|
// Copyright 2013 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/views/toolbar/app_menu.h"
#include <stdint.h>
#include <algorithm>
#include <cmath>
#include <set>
#include "base/macros.h"
#include "base/metrics/histogram.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/utf_string_conversions.h"
#include "build/build_config.h"
#include "chrome/app/chrome_command_ids.h"
#include "chrome/browser/bookmarks/bookmark_model_factory.h"
#include "chrome/browser/bookmarks/bookmark_stats.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/search/search.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/browser/ui/toolbar/app_menu_model.h"
#include "chrome/browser/ui/views/bookmarks/bookmark_menu_delegate.h"
#include "chrome/browser/ui/views/toolbar/app_menu_observer.h"
#include "chrome/browser/ui/views/toolbar/extension_toolbar_menu_view.h"
#include "chrome/grit/generated_resources.h"
#include "components/bookmarks/browser/bookmark_model.h"
#include "components/ui/zoom/page_zoom.h"
#include "components/ui/zoom/zoom_controller.h"
#include "components/ui/zoom/zoom_event_manager.h"
#include "content/public/browser/host_zoom_map.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
#include "content/public/browser/notification_source.h"
#include "content/public/browser/notification_types.h"
#include "content/public/browser/user_metrics.h"
#include "content/public/browser/web_contents.h"
#include "extensions/common/feature_switch.h"
#include "grit/theme_resources.h"
#include "third_party/skia/include/core/SkCanvas.h"
#include "third_party/skia/include/core/SkPaint.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/layout.h"
#include "ui/base/material_design/material_design_controller.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/gfx/canvas.h"
#include "ui/gfx/font_list.h"
#include "ui/gfx/image/image.h"
#include "ui/gfx/image/image_skia_source.h"
#include "ui/gfx/skia_util.h"
#include "ui/gfx/text_utils.h"
#include "ui/views/background.h"
#include "ui/views/controls/button/image_button.h"
#include "ui/views/controls/button/label_button.h"
#include "ui/views/controls/button/menu_button.h"
#include "ui/views/controls/label.h"
#include "ui/views/controls/menu/menu_config.h"
#include "ui/views/controls/menu/menu_item_view.h"
#include "ui/views/controls/menu/menu_model_adapter.h"
#include "ui/views/controls/menu/menu_runner.h"
#include "ui/views/controls/menu/menu_scroll_view_container.h"
#include "ui/views/controls/menu/submenu_view.h"
#include "ui/views/widget/widget.h"
using base::UserMetricsAction;
using bookmarks::BookmarkModel;
using content::WebContents;
using ui::ButtonMenuItemModel;
using ui::MenuModel;
using views::CustomButton;
using views::ImageButton;
using views::Label;
using views::LabelButton;
using views::MenuConfig;
using views::MenuItemView;
using views::View;
namespace {
// Horizontal padding on the edges of the in-menu buttons.
const int kHorizontalPadding = 15;
#if defined(OS_CHROMEOS)
// Extra horizontal space to reserve for the fullscreen button.
const int kFullscreenPadding = 74;
// Padding to left and right of the XX% label.
const int kZoomLabelHorizontalPadding = kHorizontalPadding;
#else
const int kFullscreenPadding = 38;
const int kZoomLabelHorizontalPadding = 2;
#endif
// Returns true if |command_id| identifies a bookmark menu item.
bool IsBookmarkCommand(int command_id) {
return command_id >= IDC_FIRST_BOOKMARK_MENU;
}
// Returns true if |command_id| identifies a recent tabs menu item.
bool IsRecentTabsCommand(int command_id) {
return command_id >= AppMenuModel::kMinRecentTabsCommandId &&
command_id <= AppMenuModel::kMaxRecentTabsCommandId;
}
// Subclass of ImageButton whose preferred size includes the size of the border.
class FullscreenButton : public ImageButton {
public:
explicit FullscreenButton(views::ButtonListener* listener)
: ImageButton(listener) { }
// Overridden from ImageButton.
gfx::Size GetPreferredSize() const override {
gfx::Size pref = ImageButton::GetPreferredSize();
if (border()) {
gfx::Insets insets = border()->GetInsets();
pref.Enlarge(insets.width(), insets.height());
}
return pref;
}
private:
DISALLOW_COPY_AND_ASSIGN(FullscreenButton);
};
// Combination border/background for the buttons contained in the menu. The
// painting of the border/background is done here as LabelButton does not always
// paint the border.
class InMenuButtonBackground : public views::Background {
public:
enum ButtonType {
// A rectangular button with no neighbor on the left.
LEFT_BUTTON,
// A rectangular button with neighbors on both sides.
CENTER_BUTTON,
// A rectangular button with no neighbor on the right.
RIGHT_BUTTON,
// A rectangular button that is not a member in a group.
SINGLE_BUTTON,
// A button with no group neighbors and a rounded background.
ROUNDED_BUTTON,
};
explicit InMenuButtonBackground(ButtonType type)
: type_(type), left_button_(NULL), right_button_(NULL) {}
// Used when the type is CENTER_BUTTON to determine if the left/right edge
// needs to be rendered selected.
void SetOtherButtons(const CustomButton* left_button,
const CustomButton* right_button) {
if (base::i18n::IsRTL()) {
left_button_ = right_button;
right_button_ = left_button;
} else {
left_button_ = left_button;
right_button_ = right_button;
}
}
// Overridden from views::Background.
void Paint(gfx::Canvas* canvas, View* view) const override {
CustomButton* button = CustomButton::AsCustomButton(view);
views::Button::ButtonState state =
button ? button->state() : views::Button::STATE_NORMAL;
int h = view->height();
// Normal buttons get a border drawn on the right side and the rest gets
// filled in. The left or rounded buttons however do not get a line to
// combine buttons.
gfx::Rect bounds(view->GetLocalBounds());
if (type_ != RIGHT_BUTTON && type_ != ROUNDED_BUTTON) {
canvas->FillRect(gfx::Rect(0, 0, 1, h),
BorderColor(view, views::Button::STATE_NORMAL));
bounds.Inset(gfx::Insets(0, 1, 0, 0));
}
bounds.set_x(view->GetMirroredXForRect(bounds));
DrawBackground(canvas, view, bounds, state);
}
private:
static SkColor BorderColor(View* view, views::Button::ButtonState state) {
ui::NativeTheme* theme = view->GetNativeTheme();
switch (state) {
case views::Button::STATE_HOVERED:
return theme->GetSystemColor(
ui::NativeTheme::kColorId_HoverMenuButtonBorderColor);
case views::Button::STATE_PRESSED:
return theme->GetSystemColor(
ui::NativeTheme::kColorId_FocusedMenuButtonBorderColor);
default:
return theme->GetSystemColor(
ui::NativeTheme::kColorId_EnabledMenuButtonBorderColor);
}
}
static SkColor BackgroundColor(const View* view,
views::Button::ButtonState state) {
const ui::NativeTheme* theme = view->GetNativeTheme();
switch (state) {
case views::Button::STATE_HOVERED:
// Hovered should be handled in DrawBackground.
NOTREACHED();
return theme->GetSystemColor(
ui::NativeTheme::kColorId_HoverMenuItemBackgroundColor);
case views::Button::STATE_PRESSED:
return theme->GetSystemColor(
ui::NativeTheme::kColorId_FocusedMenuItemBackgroundColor);
default:
return theme->GetSystemColor(
ui::NativeTheme::kColorId_MenuBackgroundColor);
}
}
void DrawBackground(gfx::Canvas* canvas,
const views::View* view,
const gfx::Rect& bounds,
views::Button::ButtonState state) const {
if (state == views::Button::STATE_HOVERED ||
state == views::Button::STATE_PRESSED) {
ui::NativeTheme::ExtraParams params;
if (type_ == ROUNDED_BUTTON) {
// Consistent with a hover corner radius (kInkDropSmallCornerRadius).
const int kBackgroundCornerRadius = 2;
params.menu_item.corner_radius = kBackgroundCornerRadius;
}
view->GetNativeTheme()->Paint(canvas->sk_canvas(),
ui::NativeTheme::kMenuItemBackground,
ui::NativeTheme::kHovered, bounds, params);
}
}
ButtonType TypeAdjustedForRTL() const {
if (!base::i18n::IsRTL())
return type_;
switch (type_) {
case LEFT_BUTTON: return RIGHT_BUTTON;
case RIGHT_BUTTON: return LEFT_BUTTON;
default: break;
}
return type_;
}
const ButtonType type_;
// See description above setter for details.
const CustomButton* left_button_;
const CustomButton* right_button_;
DISALLOW_COPY_AND_ASSIGN(InMenuButtonBackground);
};
base::string16 GetAccessibleNameForAppMenuItem(ButtonMenuItemModel* model,
int item_index,
int accessible_string_id) {
base::string16 accessible_name =
l10n_util::GetStringUTF16(accessible_string_id);
base::string16 accelerator_text;
ui::Accelerator menu_accelerator;
if (model->GetAcceleratorAt(item_index, &menu_accelerator)) {
accelerator_text =
ui::Accelerator(menu_accelerator.key_code(),
menu_accelerator.modifiers()).GetShortcutText();
}
return MenuItemView::GetAccessibleNameForMenuItem(
accessible_name, accelerator_text);
}
// A button that lives inside a menu item.
class InMenuButton : public LabelButton {
public:
InMenuButton(views::ButtonListener* listener, const base::string16& text)
: LabelButton(listener, text), in_menu_background_(NULL) {}
~InMenuButton() override {}
void Init(InMenuButtonBackground::ButtonType type) {
SetFocusable(true);
set_request_focus_on_press(false);
SetHorizontalAlignment(gfx::ALIGN_CENTER);
in_menu_background_ = new InMenuButtonBackground(type);
set_background(in_menu_background_);
SetBorder(views::Border::CreateEmptyBorder(0, kHorizontalPadding, 0,
kHorizontalPadding));
SetFontList(MenuConfig::instance().font_list);
}
void SetOtherButtons(const InMenuButton* left, const InMenuButton* right) {
in_menu_background_->SetOtherButtons(left, right);
}
// views::LabelButton
void OnNativeThemeChanged(const ui::NativeTheme* theme) override {
if (theme) {
SetTextColor(
views::Button::STATE_DISABLED,
theme->GetSystemColor(
ui::NativeTheme::kColorId_DisabledMenuItemForegroundColor));
SetTextColor(
views::Button::STATE_HOVERED,
theme->GetSystemColor(
ui::NativeTheme::kColorId_SelectedMenuItemForegroundColor));
SetTextColor(
views::Button::STATE_PRESSED,
theme->GetSystemColor(
ui::NativeTheme::kColorId_SelectedMenuItemForegroundColor));
SetTextColor(
views::Button::STATE_NORMAL,
theme->GetSystemColor(
ui::NativeTheme::kColorId_EnabledMenuItemForegroundColor));
}
}
private:
InMenuButtonBackground* in_menu_background_;
DISALLOW_COPY_AND_ASSIGN(InMenuButton);
};
// AppMenuView is a view that can contain label buttons.
class AppMenuView : public views::View,
public views::ButtonListener,
public AppMenuObserver {
public:
AppMenuView(AppMenu* menu, ButtonMenuItemModel* menu_model)
: menu_(menu),
menu_model_(menu_model) {
menu_->AddObserver(this);
}
~AppMenuView() override {
if (menu_)
menu_->RemoveObserver(this);
}
// Overridden from views::View.
void SchedulePaintInRect(const gfx::Rect& r) override {
// Normally when the mouse enters/exits a button the buttons invokes
// SchedulePaint. As part of the button border (InMenuButtonBackground) is
// rendered by the button to the left/right of it SchedulePaint on the the
// button may not be enough, so this forces a paint all.
View::SchedulePaintInRect(gfx::Rect(size()));
}
InMenuButton* CreateAndConfigureButton(
int string_id,
InMenuButtonBackground::ButtonType type,
int index) {
return CreateButtonWithAccName(string_id, type, index, string_id);
}
InMenuButton* CreateButtonWithAccName(int string_id,
InMenuButtonBackground::ButtonType type,
int index,
int acc_string_id) {
// Should only be invoked during construction when |menu_| is valid.
DCHECK(menu_);
InMenuButton* button = new InMenuButton(
this,
gfx::RemoveAcceleratorChar(
l10n_util::GetStringUTF16(string_id), '&', NULL, NULL));
button->Init(type);
button->SetAccessibleName(
GetAccessibleNameForAppMenuItem(menu_model_, index, acc_string_id));
button->set_tag(index);
button->SetEnabled(menu_model_->IsEnabledAt(index));
AddChildView(button);
// all buttons on menu should must be a custom button in order for
// the keyboard nativigation work.
DCHECK(CustomButton::AsCustomButton(button));
return button;
}
// Overridden from AppMenuObserver:
void AppMenuDestroyed() override {
menu_->RemoveObserver(this);
menu_ = NULL;
menu_model_ = NULL;
}
protected:
AppMenu* menu() { return menu_; }
const AppMenu* menu() const { return menu_; }
ButtonMenuItemModel* menu_model() { return menu_model_; }
private:
// Hosting AppMenu.
// WARNING: this may be NULL during shutdown.
AppMenu* menu_;
// The menu model containing the increment/decrement/reset items.
// WARNING: this may be NULL during shutdown.
ButtonMenuItemModel* menu_model_;
DISALLOW_COPY_AND_ASSIGN(AppMenuView);
};
// Generate the button image for hover state.
class HoveredImageSource : public gfx::ImageSkiaSource {
public:
HoveredImageSource(const gfx::ImageSkia& image, SkColor color)
: image_(image),
color_(color) {
}
~HoveredImageSource() override {}
gfx::ImageSkiaRep GetImageForScale(float scale) override {
const gfx::ImageSkiaRep& rep = image_.GetRepresentation(scale);
SkBitmap bitmap = rep.sk_bitmap();
SkBitmap white;
white.allocN32Pixels(bitmap.width(), bitmap.height());
white.eraseARGB(0, 0, 0, 0);
bitmap.lockPixels();
for (int y = 0; y < bitmap.height(); ++y) {
uint32_t* image_row = bitmap.getAddr32(0, y);
uint32_t* dst_row = white.getAddr32(0, y);
for (int x = 0; x < bitmap.width(); ++x) {
uint32_t image_pixel = image_row[x];
// Fill the non transparent pixels with |color_|.
dst_row[x] = (image_pixel & 0xFF000000) == 0x0 ? 0x0 : color_;
}
}
bitmap.unlockPixels();
return gfx::ImageSkiaRep(white, scale);
}
private:
const gfx::ImageSkia image_;
const SkColor color_;
DISALLOW_COPY_AND_ASSIGN(HoveredImageSource);
};
} // namespace
// CutCopyPasteView ------------------------------------------------------------
// CutCopyPasteView is the view containing the cut/copy/paste buttons.
class AppMenu::CutCopyPasteView : public AppMenuView {
public:
CutCopyPasteView(AppMenu* menu,
ButtonMenuItemModel* menu_model,
int cut_index,
int copy_index,
int paste_index)
: AppMenuView(menu, menu_model) {
InMenuButton* cut = CreateAndConfigureButton(
IDS_CUT, InMenuButtonBackground::LEFT_BUTTON, cut_index);
InMenuButton* copy = CreateAndConfigureButton(
IDS_COPY, InMenuButtonBackground::CENTER_BUTTON, copy_index);
InMenuButton* paste = CreateAndConfigureButton(
IDS_PASTE, InMenuButtonBackground::CENTER_BUTTON, paste_index);
copy->SetOtherButtons(cut, paste);
}
// Overridden from View.
gfx::Size GetPreferredSize() const override {
// Returned height doesn't matter as MenuItemView forces everything to the
// height of the menuitemview.
return gfx::Size(GetMaxChildViewPreferredWidth() * child_count(), 0);
}
void Layout() override {
// All buttons are given the same width.
int width = GetMaxChildViewPreferredWidth();
for (int i = 0; i < child_count(); ++i)
child_at(i)->SetBounds(i * width, 0, width, height());
}
// Overridden from ButtonListener.
void ButtonPressed(views::Button* sender, const ui::Event& event) override {
menu()->CancelAndEvaluate(menu_model(), sender->tag());
}
private:
// Returns the max preferred width of all the children.
int GetMaxChildViewPreferredWidth() const {
int width = 0;
for (int i = 0; i < child_count(); ++i)
width = std::max(width, child_at(i)->GetPreferredSize().width());
return width;
}
DISALLOW_COPY_AND_ASSIGN(CutCopyPasteView);
};
// ZoomView --------------------------------------------------------------------
// ZoomView contains the various zoom controls: two buttons to increase/decrease
// the zoom, a label showing the current zoom percent, and a button to go
// full-screen.
class AppMenu::ZoomView : public AppMenuView {
public:
ZoomView(AppMenu* menu,
ButtonMenuItemModel* menu_model,
int decrement_index,
int increment_index,
int fullscreen_index)
: AppMenuView(menu, menu_model),
fullscreen_index_(fullscreen_index),
increment_button_(NULL),
zoom_label_(NULL),
decrement_button_(NULL),
fullscreen_button_(NULL),
zoom_label_max_width_(0),
zoom_label_max_width_valid_(false) {
browser_zoom_subscription_ =
ui_zoom::ZoomEventManager::GetForBrowserContext(
menu->browser_->profile())
->AddZoomLevelChangedCallback(
base::Bind(&AppMenu::ZoomView::OnZoomLevelChanged,
base::Unretained(this)));
decrement_button_ = CreateButtonWithAccName(
IDS_ZOOM_MINUS2, InMenuButtonBackground::LEFT_BUTTON,
decrement_index, IDS_ACCNAME_ZOOM_MINUS2);
zoom_label_ = new Label(
l10n_util::GetStringFUTF16Int(IDS_ZOOM_PERCENT, 100));
zoom_label_->SetAutoColorReadabilityEnabled(false);
zoom_label_->SetHorizontalAlignment(gfx::ALIGN_RIGHT);
InMenuButtonBackground* center_bg =
new InMenuButtonBackground(InMenuButtonBackground::RIGHT_BUTTON);
zoom_label_->set_background(center_bg);
AddChildView(zoom_label_);
zoom_label_max_width_valid_ = false;
increment_button_ = CreateButtonWithAccName(
IDS_ZOOM_PLUS2, InMenuButtonBackground::RIGHT_BUTTON,
increment_index, IDS_ACCNAME_ZOOM_PLUS2);
center_bg->SetOtherButtons(decrement_button_, increment_button_);
fullscreen_button_ = new FullscreenButton(this);
// all buttons on menu should must be a custom button in order for
// the keyboard nativigation work.
DCHECK(CustomButton::AsCustomButton(fullscreen_button_));
gfx::ImageSkia* full_screen_image =
ui::ResourceBundle::GetSharedInstance().GetImageSkiaNamed(
IDR_FULLSCREEN_MENU_BUTTON);
fullscreen_button_->SetImage(ImageButton::STATE_NORMAL, full_screen_image);
fullscreen_button_->SetFocusable(true);
fullscreen_button_->set_request_focus_on_press(false);
fullscreen_button_->set_tag(fullscreen_index);
fullscreen_button_->SetImageAlignment(
ImageButton::ALIGN_CENTER, ImageButton::ALIGN_MIDDLE);
fullscreen_button_->set_background(
new InMenuButtonBackground(InMenuButtonBackground::SINGLE_BUTTON));
fullscreen_button_->SetAccessibleName(GetAccessibleNameForAppMenuItem(
menu_model, fullscreen_index, IDS_ACCNAME_FULLSCREEN));
AddChildView(fullscreen_button_);
// Need to set a font list for the zoom label width calculations.
OnNativeThemeChanged(NULL);
UpdateZoomControls();
}
~ZoomView() override {}
// Overridden from View.
gfx::Size GetPreferredSize() const override {
// The increment/decrement button are forced to the same width.
int button_width = std::max(increment_button_->GetPreferredSize().width(),
decrement_button_->GetPreferredSize().width());
int fullscreen_width =
fullscreen_button_->GetPreferredSize().width() + kFullscreenPadding;
// Returned height doesn't matter as MenuItemView forces everything to the
// height of the menuitemview. Note that we have overridden the height when
// constructing the menu.
return gfx::Size(
button_width + ZoomLabelMaxWidth() + button_width + fullscreen_width,
0);
}
void Layout() override {
int x = 0;
int button_width = std::max(increment_button_->GetPreferredSize().width(),
decrement_button_->GetPreferredSize().width());
gfx::Rect bounds(0, 0, button_width, height());
decrement_button_->SetBoundsRect(bounds);
x += bounds.width();
bounds.set_x(x);
bounds.set_width(ZoomLabelMaxWidth());
zoom_label_->SetBoundsRect(bounds);
x += bounds.width();
bounds.set_x(x);
bounds.set_width(button_width);
increment_button_->SetBoundsRect(bounds);
x += bounds.width();
bounds.set_x(x);
bounds.set_width(fullscreen_button_->GetPreferredSize().width() +
kFullscreenPadding);
fullscreen_button_->SetBoundsRect(bounds);
}
void OnNativeThemeChanged(const ui::NativeTheme* theme) override {
AppMenuView::OnNativeThemeChanged(theme);
zoom_label_->SetBorder(views::Border::CreateEmptyBorder(
0, kZoomLabelHorizontalPadding, 0, kZoomLabelHorizontalPadding));
zoom_label_->SetFontList(MenuConfig::instance().font_list);
zoom_label_max_width_valid_ = false;
if (theme) {
zoom_label_->SetEnabledColor(theme->GetSystemColor(
ui::NativeTheme::kColorId_EnabledMenuItemForegroundColor));
gfx::ImageSkia* full_screen_image =
ui::ResourceBundle::GetSharedInstance().GetImageSkiaNamed(
IDR_FULLSCREEN_MENU_BUTTON);
SkColor fg_color = theme->GetSystemColor(
ui::NativeTheme::kColorId_SelectedMenuItemForegroundColor);
gfx::ImageSkia hovered_fullscreen_image(
new HoveredImageSource(*full_screen_image, fg_color),
full_screen_image->size());
fullscreen_button_->SetImage(
ImageButton::STATE_HOVERED, &hovered_fullscreen_image);
fullscreen_button_->SetImage(
ImageButton::STATE_PRESSED, &hovered_fullscreen_image);
}
}
// Overridden from ButtonListener.
void ButtonPressed(views::Button* sender, const ui::Event& event) override {
if (sender->tag() == fullscreen_index_) {
menu()->CancelAndEvaluate(menu_model(), sender->tag());
} else {
// Zoom buttons don't close the menu.
menu_model()->ActivatedAt(sender->tag());
}
}
private:
content::WebContents* GetActiveWebContents() const {
return menu() ?
menu()->browser_->tab_strip_model()->GetActiveWebContents() :
nullptr;
}
void OnZoomLevelChanged(const content::HostZoomMap::ZoomLevelChange& change) {
UpdateZoomControls();
}
void UpdateZoomControls() {
WebContents* selected_tab = GetActiveWebContents();
int zoom = 100;
if (selected_tab) {
auto zoom_controller =
ui_zoom::ZoomController::FromWebContents(selected_tab);
if (zoom_controller)
zoom = zoom_controller->GetZoomPercent();
increment_button_->SetEnabled(zoom <
selected_tab->GetMaximumZoomPercent());
decrement_button_->SetEnabled(zoom >
selected_tab->GetMinimumZoomPercent());
}
zoom_label_->SetText(
l10n_util::GetStringFUTF16Int(IDS_ZOOM_PERCENT, zoom));
zoom_label_max_width_valid_ = false;
}
// Returns the max width the zoom string can be.
int ZoomLabelMaxWidth() const {
if (!zoom_label_max_width_valid_) {
const gfx::FontList& font_list = zoom_label_->font_list();
int border_width = zoom_label_->border()
? zoom_label_->border()->GetInsets().width()
: 0;
int max_w = 0;
WebContents* selected_tab = GetActiveWebContents();
if (selected_tab) {
auto zoom_controller =
ui_zoom::ZoomController::FromWebContents(selected_tab);
DCHECK(zoom_controller);
// Enumerate all zoom factors that can be used in PageZoom::Zoom.
std::vector<double> zoom_factors = ui_zoom::PageZoom::PresetZoomFactors(
zoom_controller->GetZoomPercent());
for (auto zoom : zoom_factors) {
int w = gfx::GetStringWidth(
l10n_util::GetStringFUTF16Int(IDS_ZOOM_PERCENT,
static_cast<int>(zoom * 100 + 0.5)),
font_list);
max_w = std::max(w, max_w);
}
} else {
max_w = gfx::GetStringWidth(
l10n_util::GetStringFUTF16Int(IDS_ZOOM_PERCENT, 100), font_list);
}
zoom_label_max_width_ = max_w + border_width;
zoom_label_max_width_valid_ = true;
}
return zoom_label_max_width_;
}
// Index of the fullscreen menu item in the model.
const int fullscreen_index_;
scoped_ptr<content::HostZoomMap::Subscription> browser_zoom_subscription_;
content::NotificationRegistrar registrar_;
// Button for incrementing the zoom.
LabelButton* increment_button_;
// Label showing zoom as a percent.
Label* zoom_label_;
// Button for decrementing the zoom.
LabelButton* decrement_button_;
ImageButton* fullscreen_button_;
// Cached width of how wide the zoom label string can be. This is the width at
// 100%. This should not be accessed directly, use ZoomLabelMaxWidth()
// instead. This value is cached because is depends on multiple calls to
// gfx::GetStringWidth(...) which are expensive.
mutable int zoom_label_max_width_;
// Flag tracking whether calls to ZoomLabelMaxWidth() need to re-calculate
// the label width, because the cached value may no longer be correct.
mutable bool zoom_label_max_width_valid_;
DISALLOW_COPY_AND_ASSIGN(ZoomView);
};
// RecentTabsMenuModelDelegate ------------------------------------------------
// Provides the ui::MenuModelDelegate implementation for RecentTabsSubMenuModel
// items.
class AppMenu::RecentTabsMenuModelDelegate : public ui::MenuModelDelegate {
public:
RecentTabsMenuModelDelegate(AppMenu* app_menu,
ui::MenuModel* model,
views::MenuItemView* menu_item)
: app_menu_(app_menu), model_(model), menu_item_(menu_item) {
model_->SetMenuModelDelegate(this);
}
~RecentTabsMenuModelDelegate() override {
model_->SetMenuModelDelegate(NULL);
}
const gfx::FontList* GetLabelFontListAt(int index) const {
return model_->GetLabelFontListAt(index);
}
bool GetShouldUseDisabledEmphasizedForegroundColor(int index) const {
// The items for which we get a font list, should be shown in the bolded
// color.
return GetLabelFontListAt(index) ? true : false;
}
// ui::MenuModelDelegate implementation:
void OnIconChanged(int index) override {
int command_id = model_->GetCommandIdAt(index);
views::MenuItemView* item = menu_item_->GetMenuItemByID(command_id);
DCHECK(item);
gfx::Image icon;
model_->GetIconAt(index, &icon);
item->SetIcon(*icon.ToImageSkia());
}
void OnMenuStructureChanged() override {
if (menu_item_->HasSubmenu()) {
// Remove all menu items from submenu.
views::SubmenuView* submenu = menu_item_->GetSubmenu();
while (submenu->child_count() > 0)
menu_item_->RemoveMenuItemAt(submenu->child_count() - 1);
// Remove all elements in |AppMenu::command_id_to_entry_| that map to
// |model_|.
AppMenu::CommandIDToEntry::iterator iter =
app_menu_->command_id_to_entry_.begin();
while (iter != app_menu_->command_id_to_entry_.end()) {
if (iter->second.first == model_)
app_menu_->command_id_to_entry_.erase(iter++);
else
++iter;
}
}
// Add all menu items from |model| to submenu.
for (int i = 0; i < model_->GetItemCount(); ++i) {
app_menu_->AddMenuItem(menu_item_, i, model_, i, model_->GetTypeAt(i));
}
// In case recent tabs submenu was open when items were changing, force a
// ChildrenChanged().
menu_item_->ChildrenChanged();
}
private:
AppMenu* app_menu_;
ui::MenuModel* model_;
views::MenuItemView* menu_item_;
DISALLOW_COPY_AND_ASSIGN(RecentTabsMenuModelDelegate);
};
// AppMenu ------------------------------------------------------------------
AppMenu::AppMenu(Browser* browser, int run_flags)
: root_(nullptr),
browser_(browser),
selected_menu_model_(nullptr),
selected_index_(0),
bookmark_menu_(nullptr),
feedback_menu_item_(nullptr),
screenshot_menu_item_(nullptr),
extension_toolbar_(nullptr),
run_flags_(run_flags) {
registrar_.Add(this, chrome::NOTIFICATION_GLOBAL_ERRORS_CHANGED,
content::Source<Profile>(browser_->profile()));
}
AppMenu::~AppMenu() {
if (bookmark_menu_delegate_.get()) {
BookmarkModel* model = BookmarkModelFactory::GetForProfile(
browser_->profile());
if (model)
model->RemoveObserver(this);
}
FOR_EACH_OBSERVER(AppMenuObserver, observer_list_, AppMenuDestroyed());
}
void AppMenu::Init(ui::MenuModel* model) {
DCHECK(!root_);
root_ = new MenuItemView(this);
root_->set_has_icons(true); // We have checks, radios and icons, set this
// so we get the taller menu style.
PopulateMenu(root_, model);
int32_t types = views::MenuRunner::HAS_MNEMONICS;
if (for_drop()) {
// We add NESTED_DRAG since currently the only operation to open the app
// menu for is an extension action drag, which is controlled by the child
// BrowserActionsContainer view.
types |= views::MenuRunner::FOR_DROP | views::MenuRunner::NESTED_DRAG;
}
menu_runner_.reset(new views::MenuRunner(root_, types));
}
void AppMenu::RunMenu(views::MenuButton* host) {
gfx::Point screen_loc;
views::View::ConvertPointToScreen(host, &screen_loc);
gfx::Rect bounds(screen_loc, host->size());
content::RecordAction(UserMetricsAction("ShowAppMenu"));
if (menu_runner_->RunMenuAt(host->GetWidget(),
host,
bounds,
views::MENU_ANCHOR_TOPRIGHT,
ui::MENU_SOURCE_NONE) ==
views::MenuRunner::MENU_DELETED)
return;
if (bookmark_menu_delegate_.get()) {
BookmarkModel* model = BookmarkModelFactory::GetForProfile(
browser_->profile());
if (model)
model->RemoveObserver(this);
}
if (selected_menu_model_) {
selected_menu_model_->ActivatedAt(selected_index_);
}
}
void AppMenu::CloseMenu() {
if (menu_runner_.get())
menu_runner_->Cancel();
}
bool AppMenu::IsShowing() {
return menu_runner_.get() && menu_runner_->IsRunning();
}
void AppMenu::AddObserver(AppMenuObserver* observer) {
observer_list_.AddObserver(observer);
}
void AppMenu::RemoveObserver(AppMenuObserver* observer) {
observer_list_.RemoveObserver(observer);
}
const gfx::FontList* AppMenu::GetLabelFontList(int command_id) const {
if (IsRecentTabsCommand(command_id)) {
return recent_tabs_menu_model_delegate_->GetLabelFontListAt(
ModelIndexFromCommandId(command_id));
}
return NULL;
}
bool AppMenu::GetShouldUseDisabledEmphasizedForegroundColor(
int command_id) const {
if (IsRecentTabsCommand(command_id)) {
return recent_tabs_menu_model_delegate_->
GetShouldUseDisabledEmphasizedForegroundColor(
ModelIndexFromCommandId(command_id));
}
return false;
}
base::string16 AppMenu::GetTooltipText(int command_id,
const gfx::Point& p) const {
return IsBookmarkCommand(command_id) ?
bookmark_menu_delegate_->GetTooltipText(command_id, p) : base::string16();
}
bool AppMenu::IsTriggerableEvent(views::MenuItemView* menu,
const ui::Event& e) {
return IsBookmarkCommand(menu->GetCommand()) ?
bookmark_menu_delegate_->IsTriggerableEvent(menu, e) :
MenuDelegate::IsTriggerableEvent(menu, e);
}
bool AppMenu::GetDropFormats(
MenuItemView* menu,
int* formats,
std::set<ui::Clipboard::FormatType>* format_types) {
CreateBookmarkMenu();
return bookmark_menu_delegate_.get() &&
bookmark_menu_delegate_->GetDropFormats(menu, formats, format_types);
}
bool AppMenu::AreDropTypesRequired(MenuItemView* menu) {
CreateBookmarkMenu();
return bookmark_menu_delegate_.get() &&
bookmark_menu_delegate_->AreDropTypesRequired(menu);
}
bool AppMenu::CanDrop(MenuItemView* menu, const ui::OSExchangeData& data) {
CreateBookmarkMenu();
return bookmark_menu_delegate_.get() &&
bookmark_menu_delegate_->CanDrop(menu, data);
}
int AppMenu::GetDropOperation(MenuItemView* item,
const ui::DropTargetEvent& event,
DropPosition* position) {
return IsBookmarkCommand(item->GetCommand()) ?
bookmark_menu_delegate_->GetDropOperation(item, event, position) :
ui::DragDropTypes::DRAG_NONE;
}
int AppMenu::OnPerformDrop(MenuItemView* menu,
DropPosition position,
const ui::DropTargetEvent& event) {
if (!IsBookmarkCommand(menu->GetCommand()))
return ui::DragDropTypes::DRAG_NONE;
int result = bookmark_menu_delegate_->OnPerformDrop(menu, position, event);
return result;
}
bool AppMenu::ShowContextMenu(MenuItemView* source,
int command_id,
const gfx::Point& p,
ui::MenuSourceType source_type) {
return IsBookmarkCommand(command_id) ?
bookmark_menu_delegate_->ShowContextMenu(source, command_id, p,
source_type) :
false;
}
bool AppMenu::CanDrag(MenuItemView* menu) {
return IsBookmarkCommand(menu->GetCommand()) ?
bookmark_menu_delegate_->CanDrag(menu) : false;
}
void AppMenu::WriteDragData(MenuItemView* sender, ui::OSExchangeData* data) {
DCHECK(IsBookmarkCommand(sender->GetCommand()));
return bookmark_menu_delegate_->WriteDragData(sender, data);
}
int AppMenu::GetDragOperations(MenuItemView* sender) {
return IsBookmarkCommand(sender->GetCommand()) ?
bookmark_menu_delegate_->GetDragOperations(sender) :
MenuDelegate::GetDragOperations(sender);
}
int AppMenu::GetMaxWidthForMenu(MenuItemView* menu) {
if (IsBookmarkCommand(menu->GetCommand()))
return bookmark_menu_delegate_->GetMaxWidthForMenu(menu);
return MenuDelegate::GetMaxWidthForMenu(menu);
}
bool AppMenu::IsItemChecked(int command_id) const {
if (IsBookmarkCommand(command_id))
return false;
const Entry& entry = command_id_to_entry_.find(command_id)->second;
return entry.first->IsItemCheckedAt(entry.second);
}
bool AppMenu::IsCommandEnabled(int command_id) const {
if (IsBookmarkCommand(command_id))
return true;
if (command_id == 0)
return false; // The root item.
if (command_id == IDC_MORE_TOOLS_MENU)
return true;
// The items representing the cut menu (cut/copy/paste), zoom menu
// (increment/decrement/reset) and extension toolbar view are always enabled.
// The child views of these items enabled state updates appropriately.
if (command_id == IDC_EDIT_MENU || command_id == IDC_ZOOM_MENU ||
command_id == IDC_EXTENSIONS_OVERFLOW_MENU)
return true;
const Entry& entry = command_id_to_entry_.find(command_id)->second;
return entry.first->IsEnabledAt(entry.second);
}
void AppMenu::ExecuteCommand(int command_id, int mouse_event_flags) {
if (IsBookmarkCommand(command_id)) {
UMA_HISTOGRAM_MEDIUM_TIMES("WrenchMenu.TimeToAction.OpenBookmark",
menu_opened_timer_.Elapsed());
UMA_HISTOGRAM_ENUMERATION("WrenchMenu.MenuAction",
MENU_ACTION_BOOKMARK_OPEN, LIMIT_MENU_ACTION);
bookmark_menu_delegate_->ExecuteCommand(command_id, mouse_event_flags);
return;
}
if (command_id == IDC_EDIT_MENU || command_id == IDC_ZOOM_MENU ||
command_id == IDC_EXTENSIONS_OVERFLOW_MENU) {
// These items are represented by child views. If ExecuteCommand is invoked
// it means the user clicked on the area around the buttons and we should
// not do anyting.
return;
}
const Entry& entry = command_id_to_entry_.find(command_id)->second;
return entry.first->ActivatedAt(entry.second, mouse_event_flags);
}
bool AppMenu::GetAccelerator(int command_id,
ui::Accelerator* accelerator) const {
if (IsBookmarkCommand(command_id))
return false;
if (command_id == IDC_EDIT_MENU || command_id == IDC_ZOOM_MENU ||
command_id == IDC_EXTENSIONS_OVERFLOW_MENU) {
// These have special child views; don't show the accelerator for them.
return false;
}
CommandIDToEntry::const_iterator ix = command_id_to_entry_.find(command_id);
const Entry& entry = ix->second;
ui::Accelerator menu_accelerator;
if (!entry.first->GetAcceleratorAt(entry.second, &menu_accelerator))
return false;
*accelerator = ui::Accelerator(menu_accelerator.key_code(),
menu_accelerator.modifiers());
return true;
}
void AppMenu::WillShowMenu(MenuItemView* menu) {
if (menu == bookmark_menu_)
CreateBookmarkMenu();
else if (bookmark_menu_delegate_)
bookmark_menu_delegate_->WillShowMenu(menu);
}
void AppMenu::WillHideMenu(MenuItemView* menu) {
// Turns off the fade out animation of the app menus if |feedback_menu_item_|
// or |screenshot_menu_item_| is selected. This excludes the app menu itself
// from the screenshot.
if (menu->HasSubmenu() &&
((feedback_menu_item_ && feedback_menu_item_->IsSelected()) ||
(screenshot_menu_item_ && screenshot_menu_item_->IsSelected()))) {
// It's okay to just turn off the animation and not turn it back on because
// the menu widget will be recreated next time it's opened. See
// ToolbarView::RunMenu() and Init() of this class.
menu->GetSubmenu()->GetWidget()->
SetVisibilityChangedAnimationsEnabled(false);
}
}
bool AppMenu::ShouldCloseOnDragComplete() {
return false;
}
void AppMenu::BookmarkModelChanged() {
DCHECK(bookmark_menu_delegate_.get());
if (!bookmark_menu_delegate_->is_mutating_model())
root_->Cancel();
}
void AppMenu::Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) {
switch (type) {
case chrome::NOTIFICATION_GLOBAL_ERRORS_CHANGED:
// A change in the global errors list can add or remove items from the
// menu. Close the menu to avoid have a stale menu on-screen.
if (root_)
root_->Cancel();
break;
default:
NOTREACHED();
}
}
void AppMenu::PopulateMenu(MenuItemView* parent, MenuModel* model) {
for (int i = 0, max = model->GetItemCount(); i < max; ++i) {
// Add the menu item at the end.
int menu_index = parent->HasSubmenu() ?
parent->GetSubmenu()->child_count() : 0;
MenuItemView* item =
AddMenuItem(parent, menu_index, model, i, model->GetTypeAt(i));
if (model->GetCommandIdAt(i) == IDC_EDIT_MENU ||
model->GetCommandIdAt(i) == IDC_ZOOM_MENU) {
const MenuConfig& config = views::MenuConfig::instance();
int top_margin = config.item_top_margin + config.separator_height / 2;
int bottom_margin =
config.item_bottom_margin + config.separator_height / 2;
// Chromeos adds extra vertical space for the menu buttons.
#if defined(OS_CHROMEOS)
top_margin += 4;
bottom_margin += 5;
#endif
item->SetMargins(top_margin, bottom_margin);
}
if (model->GetTypeAt(i) == MenuModel::TYPE_SUBMENU)
PopulateMenu(item, model->GetSubmenuModelAt(i));
switch (model->GetCommandIdAt(i)) {
case IDC_EXTENSIONS_OVERFLOW_MENU: {
scoped_ptr<ExtensionToolbarMenuView> extension_toolbar(
new ExtensionToolbarMenuView(browser_, this, item));
if (ui::MaterialDesignController::IsModeMaterial()) {
for (int i = 0; i < extension_toolbar->contents()->child_count();
++i) {
View* action_view = extension_toolbar->contents()->child_at(i);
action_view->set_background(new InMenuButtonBackground(
InMenuButtonBackground::ROUNDED_BUTTON));
}
}
extension_toolbar_ = extension_toolbar.get();
item->AddChildView(extension_toolbar.release());
break;
}
case IDC_EDIT_MENU: {
ui::ButtonMenuItemModel* submodel = model->GetButtonMenuItemAt(i);
DCHECK_EQ(IDC_CUT, submodel->GetCommandIdAt(0));
DCHECK_EQ(IDC_COPY, submodel->GetCommandIdAt(1));
DCHECK_EQ(IDC_PASTE, submodel->GetCommandIdAt(2));
item->SetTitle(l10n_util::GetStringUTF16(IDS_EDIT2));
item->AddChildView(new CutCopyPasteView(this, submodel, 0, 1, 2));
break;
}
case IDC_ZOOM_MENU: {
ui::ButtonMenuItemModel* submodel = model->GetButtonMenuItemAt(i);
DCHECK_EQ(IDC_ZOOM_MINUS, submodel->GetCommandIdAt(0));
DCHECK_EQ(IDC_ZOOM_PLUS, submodel->GetCommandIdAt(1));
DCHECK_EQ(IDC_FULLSCREEN, submodel->GetCommandIdAt(2));
item->SetTitle(l10n_util::GetStringUTF16(IDS_ZOOM_MENU2));
item->AddChildView(new ZoomView(this, submodel, 0, 1, 2));
break;
}
case IDC_BOOKMARKS_MENU:
DCHECK(!bookmark_menu_);
bookmark_menu_ = item;
break;
#if defined(GOOGLE_CHROME_BUILD)
case IDC_FEEDBACK:
DCHECK(!feedback_menu_item_);
feedback_menu_item_ = item;
break;
#endif
#if defined(OS_CHROMEOS)
case IDC_TAKE_SCREENSHOT:
DCHECK(!screenshot_menu_item_);
screenshot_menu_item_ = item;
break;
#endif
case IDC_RECENT_TABS_MENU:
DCHECK(!recent_tabs_menu_model_delegate_.get());
recent_tabs_menu_model_delegate_.reset(
new RecentTabsMenuModelDelegate(this, model->GetSubmenuModelAt(i),
item));
break;
default:
break;
}
}
}
MenuItemView* AppMenu::AddMenuItem(MenuItemView* parent,
int menu_index,
MenuModel* model,
int model_index,
MenuModel::ItemType menu_type) {
int command_id = model->GetCommandIdAt(model_index);
DCHECK(command_id > -1 ||
(command_id == -1 &&
model->GetTypeAt(model_index) == MenuModel::TYPE_SEPARATOR));
DCHECK_LT(command_id, IDC_FIRST_BOOKMARK_MENU);
if (command_id > -1) { // Don't add separators to |command_id_to_entry_|.
// All command ID's should be unique except for IDC_SHOW_HISTORY which is
// in both app menu and RecentTabs submenu,
if (command_id != IDC_SHOW_HISTORY) {
DCHECK(command_id_to_entry_.find(command_id) ==
command_id_to_entry_.end())
<< "command ID " << command_id << " already exists!";
}
command_id_to_entry_[command_id].first = model;
command_id_to_entry_[command_id].second = model_index;
}
MenuItemView* menu_item = views::MenuModelAdapter::AddMenuItemFromModelAt(
model, model_index, parent, menu_index, command_id);
if (menu_item) {
// Flush all buttons to the right side of the menu for the new menu type.
menu_item->set_use_right_margin(false);
menu_item->SetVisible(model->IsVisibleAt(model_index));
if (menu_type == MenuModel::TYPE_COMMAND && model->HasIcons()) {
gfx::Image icon;
if (model->GetIconAt(model_index, &icon))
menu_item->SetIcon(*icon.ToImageSkia());
}
}
return menu_item;
}
void AppMenu::CancelAndEvaluate(ButtonMenuItemModel* model, int index) {
selected_menu_model_ = model;
selected_index_ = index;
root_->Cancel();
}
void AppMenu::CreateBookmarkMenu() {
if (bookmark_menu_delegate_.get())
return; // Already created the menu.
BookmarkModel* model =
BookmarkModelFactory::GetForProfile(browser_->profile());
if (!model->loaded())
return;
model->AddObserver(this);
// TODO(oshima): Replace with views only API.
views::Widget* parent = views::Widget::GetWidgetForNativeWindow(
browser_->window()->GetNativeWindow());
bookmark_menu_delegate_.reset(
new BookmarkMenuDelegate(browser_, browser_, parent));
bookmark_menu_delegate_->Init(this,
bookmark_menu_,
model->bookmark_bar_node(),
0,
BookmarkMenuDelegate::SHOW_PERMANENT_FOLDERS,
BOOKMARK_LAUNCH_LOCATION_APP_MENU);
}
int AppMenu::ModelIndexFromCommandId(int command_id) const {
CommandIDToEntry::const_iterator ix = command_id_to_entry_.find(command_id);
DCHECK(ix != command_id_to_entry_.end());
return ix->second.second;
}
|