| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ash/mus/context_menu_mus.h" | 5 #include "ash/mus/context_menu_mus.h" |
| 6 | 6 |
| 7 #include "ash/public/cpp/shelf_types.h" | 7 #include "ash/public/cpp/shelf_types.h" |
| 8 #include "ash/shelf/wm_shelf.h" | 8 #include "ash/shelf/shelf.h" |
| 9 #include "ash/shell.h" | 9 #include "ash/shell.h" |
| 10 #include "ash/strings/grit/ash_strings.h" | 10 #include "ash/strings/grit/ash_strings.h" |
| 11 #include "ash/wallpaper/wallpaper_controller.h" | 11 #include "ash/wallpaper/wallpaper_controller.h" |
| 12 #include "ash/wallpaper/wallpaper_delegate.h" | 12 #include "ash/wallpaper/wallpaper_delegate.h" |
| 13 | 13 |
| 14 namespace ash { | 14 namespace ash { |
| 15 | 15 |
| 16 ContextMenuMus::ContextMenuMus(WmShelf* wm_shelf) | 16 ContextMenuMus::ContextMenuMus(Shelf* shelf) |
| 17 : ui::SimpleMenuModel(nullptr), | 17 : ui::SimpleMenuModel(nullptr), shelf_(shelf), alignment_menu_(shelf) { |
| 18 wm_shelf_(wm_shelf), | |
| 19 alignment_menu_(wm_shelf) { | |
| 20 set_delegate(this); | 18 set_delegate(this); |
| 21 AddCheckItemWithStringId(MENU_AUTO_HIDE, | 19 AddCheckItemWithStringId(MENU_AUTO_HIDE, |
| 22 IDS_ASH_SHELF_CONTEXT_MENU_AUTO_HIDE); | 20 IDS_ASH_SHELF_CONTEXT_MENU_AUTO_HIDE); |
| 23 AddSubMenuWithStringId(MENU_ALIGNMENT_MENU, | 21 AddSubMenuWithStringId(MENU_ALIGNMENT_MENU, |
| 24 IDS_ASH_SHELF_CONTEXT_MENU_POSITION, &alignment_menu_); | 22 IDS_ASH_SHELF_CONTEXT_MENU_POSITION, &alignment_menu_); |
| 25 AddItemWithStringId(MENU_CHANGE_WALLPAPER, IDS_AURA_SET_DESKTOP_WALLPAPER); | 23 AddItemWithStringId(MENU_CHANGE_WALLPAPER, IDS_AURA_SET_DESKTOP_WALLPAPER); |
| 26 } | 24 } |
| 27 | 25 |
| 28 ContextMenuMus::~ContextMenuMus() {} | 26 ContextMenuMus::~ContextMenuMus() {} |
| 29 | 27 |
| 30 bool ContextMenuMus::IsCommandIdChecked(int command_id) const { | 28 bool ContextMenuMus::IsCommandIdChecked(int command_id) const { |
| 31 if (command_id == MENU_AUTO_HIDE) | 29 if (command_id == MENU_AUTO_HIDE) |
| 32 return wm_shelf_->auto_hide_behavior() == SHELF_AUTO_HIDE_BEHAVIOR_ALWAYS; | 30 return shelf_->auto_hide_behavior() == SHELF_AUTO_HIDE_BEHAVIOR_ALWAYS; |
| 33 return false; | 31 return false; |
| 34 } | 32 } |
| 35 | 33 |
| 36 bool ContextMenuMus::IsCommandIdEnabled(int command_id) const { | 34 bool ContextMenuMus::IsCommandIdEnabled(int command_id) const { |
| 37 if (command_id == MENU_CHANGE_WALLPAPER) | 35 if (command_id == MENU_CHANGE_WALLPAPER) |
| 38 return Shell::Get()->wallpaper_delegate()->CanOpenSetWallpaperPage(); | 36 return Shell::Get()->wallpaper_delegate()->CanOpenSetWallpaperPage(); |
| 39 return true; | 37 return true; |
| 40 } | 38 } |
| 41 | 39 |
| 42 void ContextMenuMus::ExecuteCommand(int command_id, int event_flags) { | 40 void ContextMenuMus::ExecuteCommand(int command_id, int event_flags) { |
| 43 if (command_id == MENU_AUTO_HIDE) { | 41 if (command_id == MENU_AUTO_HIDE) { |
| 44 wm_shelf_->SetAutoHideBehavior(wm_shelf_->auto_hide_behavior() == | 42 shelf_->SetAutoHideBehavior(shelf_->auto_hide_behavior() == |
| 45 SHELF_AUTO_HIDE_BEHAVIOR_ALWAYS | 43 SHELF_AUTO_HIDE_BEHAVIOR_ALWAYS |
| 46 ? SHELF_AUTO_HIDE_BEHAVIOR_NEVER | 44 ? SHELF_AUTO_HIDE_BEHAVIOR_NEVER |
| 47 : SHELF_AUTO_HIDE_BEHAVIOR_ALWAYS); | 45 : SHELF_AUTO_HIDE_BEHAVIOR_ALWAYS); |
| 48 } else if (command_id == MENU_CHANGE_WALLPAPER) { | 46 } else if (command_id == MENU_CHANGE_WALLPAPER) { |
| 49 Shell::Get()->wallpaper_controller()->OpenSetWallpaperPage(); | 47 Shell::Get()->wallpaper_controller()->OpenSetWallpaperPage(); |
| 50 } | 48 } |
| 51 } | 49 } |
| 52 | 50 |
| 53 } // namespace ash | 51 } // namespace ash |
| OLD | NEW |