blob: cb92a3b77c996c3263b2c017f612d5113a842e64 (
plain)
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
|
// 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 "ash/launcher/launcher_context_menu.h"
#include "ash/root_window_controller.h"
#include "ash/shell.h"
#include "ash/wm/shelf_auto_hide_behavior.h"
#include "grit/ash_strings.h"
#include "ui/base/l10n/l10n_util.h"
namespace ash {
LauncherContextMenu::LauncherContextMenu() : ui::SimpleMenuModel(NULL) {
set_delegate(this);
AddCheckItemWithStringId(MENU_AUTO_HIDE, GetAutoHideResourceStringId());
AddSubMenuWithStringId(MENU_ALIGNMENT_MENU,
IDS_AURA_LAUNCHER_CONTEXT_MENU_POSITION,
&alignment_menu_);
}
LauncherContextMenu::~LauncherContextMenu() {
}
// static
bool LauncherContextMenu::IsAutoHideMenuHideChecked() {
internal::RootWindowController* controller =
Shell::GetPrimaryRootWindowController();
ash::ShelfAutoHideBehavior auto_hide_behavior =
Shell::GetInstance()->GetShelfAutoHideBehavior();
return (controller->IsInMaximizedMode() &&
(auto_hide_behavior == ash::SHELF_AUTO_HIDE_BEHAVIOR_DEFAULT ||
auto_hide_behavior == ash::SHELF_AUTO_HIDE_BEHAVIOR_ALWAYS)) ||
(!controller->IsInMaximizedMode() &&
auto_hide_behavior == ash::SHELF_AUTO_HIDE_BEHAVIOR_ALWAYS);
}
// static
ShelfAutoHideBehavior LauncherContextMenu::GetToggledAutoHideBehavior() {
ash::ShelfAutoHideBehavior auto_hide_behavior;
if (Shell::GetPrimaryRootWindowController()->IsInMaximizedMode()) {
if (IsAutoHideMenuHideChecked())
auto_hide_behavior = ash::SHELF_AUTO_HIDE_BEHAVIOR_NEVER;
else
auto_hide_behavior = ash::SHELF_AUTO_HIDE_BEHAVIOR_DEFAULT;
} else if (IsAutoHideMenuHideChecked()) {
auto_hide_behavior = ash::SHELF_AUTO_HIDE_BEHAVIOR_DEFAULT;
} else {
auto_hide_behavior = ash::SHELF_AUTO_HIDE_BEHAVIOR_ALWAYS;
}
return auto_hide_behavior;
}
// static
int LauncherContextMenu::GetAutoHideResourceStringId() {
return Shell::GetPrimaryRootWindowController()->IsInMaximizedMode() ?
IDS_AURA_LAUNCHER_CONTEXT_MENU_AUTO_HIDE_MAXIMIZED :
IDS_AURA_LAUNCHER_CONTEXT_MENU_AUTO_HIDE_NOT_MAXIMIZED;
}
bool LauncherContextMenu::IsCommandIdChecked(int command_id) const {
switch (command_id) {
case MENU_AUTO_HIDE:
return IsAutoHideMenuHideChecked();
default:
return false;
}
}
bool LauncherContextMenu::IsCommandIdEnabled(int command_id) const {
return true;
}
bool LauncherContextMenu::GetAcceleratorForCommandId(
int command_id,
ui::Accelerator* accelerator) {
return false;
}
void LauncherContextMenu::ExecuteCommand(int command_id) {
switch (static_cast<MenuItem>(command_id)) {
case MENU_AUTO_HIDE:
ash::Shell::GetInstance()->SetShelfAutoHideBehavior(
GetToggledAutoHideBehavior());
break;
case MENU_ALIGNMENT_MENU:
break;
}
}
} // namespace ash
|