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"
16 ContextMenu::ContextMenu(aura::Window
* root
)
17 : ui::SimpleMenuModel(NULL
),
19 alignment_menu_(root
) {
22 AddCheckItemWithStringId(MENU_AUTO_HIDE
,
23 IDS_ASH_SHELF_CONTEXT_MENU_AUTO_HIDE
);
24 AddSubMenuWithStringId(MENU_ALIGNMENT_MENU
,
25 IDS_ASH_SHELF_CONTEXT_MENU_POSITION
,
29 ContextMenu::~ContextMenu() {
32 bool ContextMenu::IsCommandIdChecked(int command_id
) const {
35 return Shell::GetInstance()->GetShelfAutoHideBehavior(root_window_
) ==
36 ash::SHELF_AUTO_HIDE_BEHAVIOR_ALWAYS
;
42 bool ContextMenu::IsCommandIdEnabled(int command_id
) const {
46 bool ContextMenu::GetAcceleratorForCommandId(
48 ui::Accelerator
* accelerator
) {
52 void ContextMenu::ExecuteCommand(int command_id
, int event_flags
) {
53 Shell
* shell
= Shell::GetInstance();
54 switch (static_cast<MenuItem
>(command_id
)) {
56 shell
->SetShelfAutoHideBehavior(
57 shell
->GetShelfAutoHideBehavior(root_window_
) ==
58 SHELF_AUTO_HIDE_BEHAVIOR_ALWAYS
?
59 SHELF_AUTO_HIDE_BEHAVIOR_NEVER
:
60 SHELF_AUTO_HIDE_BEHAVIOR_ALWAYS
,
63 case MENU_ALIGNMENT_MENU
: