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
|
// Copyright (c) 2012 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 "ui/views/controls/menu/menu_config.h"
#include "build/build_config.h"
#include "ui/base/layout.h"
#include "ui/native_theme/native_theme.h"
namespace views {
MenuConfig::MenuConfig(const ui::NativeTheme* theme)
: text_color(SK_ColorBLACK),
arrow_color(SK_ColorBLACK),
menu_vertical_border_size(3),
menu_horizontal_border_size(3),
submenu_horizontal_inset(3),
item_top_margin(3),
item_bottom_margin(4),
item_no_icon_top_margin(1),
item_no_icon_bottom_margin(3),
item_left_margin(4),
label_to_arrow_padding(10),
arrow_to_edge_padding(5),
icon_to_label_padding(8),
gutter_to_label(5),
check_width(16),
check_height(16),
radio_width(16),
radio_height(16),
arrow_height(9),
arrow_width(9),
gutter_width(0),
separator_height(6),
separator_upper_height(3),
separator_lower_height(4),
separator_spacing_height(3),
render_gutter(false),
show_mnemonics(false),
scroll_arrow_height(3),
label_to_accelerator_padding(10),
item_min_height(0),
show_accelerators(true),
always_use_icon_to_label_padding(false),
align_arrow_and_shortcut(false),
offset_context_menus(false),
native_theme(theme),
show_delay(400),
corner_radius(0) {
// Use 40px tall menu items when running in touch optimized mode.
// For Windows use 40px tall menu items when running in touch optimized mode.
if (ui::GetDisplayLayout() == ui::LAYOUT_TOUCH) {
item_top_margin = item_no_icon_top_margin = 12;
item_bottom_margin = item_no_icon_bottom_margin = 13;
}
Init(theme);
}
MenuConfig::~MenuConfig() {}
void MenuConfig::AdjustForCommonTheme() {
render_gutter = false;
item_top_margin = 6;
item_bottom_margin = 6;
separator_height = 15;
menu_horizontal_border_size = 2;
menu_vertical_border_size = 8;
}
} // namespace views
|