1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ash/shell/context_menu.h"
7 #include "ash/root_window_controller.h"
8 #include "ash/shelf/shelf.h"
9 #include "ash/shelf/shelf_types.h"
10 #include "ash/shell.h"
11 #include "grit/ash_strings.h"
12 #include "ui/base/l10n/l10n_util.h"
17 ContextMenu::ContextMenu(aura::Window
* root
)
18 : ui::SimpleMenuModel(NULL
),
20 alignment_menu_(root
) {
23 AddCheckItemWithStringId(MENU_AUTO_HIDE
,
24 IDS_ASH_SHELF_CONTEXT_MENU_AUTO_HIDE
);
25 AddSubMenuWithStringId(MENU_ALIGNMENT_MENU
,
26 IDS_ASH_SHELF_CONTEXT_MENU_POSITION
,
30 ContextMenu::~ContextMenu() {
33 bool ContextMenu::IsCommandIdChecked(int command_id
) const {
36 return Shell::GetInstance()->GetShelfAutoHideBehavior(root_window_
) ==
37 ash::SHELF_AUTO_HIDE_BEHAVIOR_ALWAYS
;
43 bool ContextMenu::IsCommandIdEnabled(int command_id
) const {
47 bool ContextMenu::GetAcceleratorForCommandId(
49 ui::Accelerator
* accelerator
) {
53 void ContextMenu::ExecuteCommand(int command_id
, int event_flags
) {
54 Shell
* shell
= Shell::GetInstance();
55 switch (static_cast<MenuItem
>(command_id
)) {
57 shell
->SetShelfAutoHideBehavior(
58 shell
->GetShelfAutoHideBehavior(root_window_
) ==
59 SHELF_AUTO_HIDE_BEHAVIOR_ALWAYS
?
60 SHELF_AUTO_HIDE_BEHAVIOR_NEVER
:
61 SHELF_AUTO_HIDE_BEHAVIOR_ALWAYS
,
64 case MENU_ALIGNMENT_MENU
: