blob: 3a29e29e0370182249e0fd6dde582256ecd38949 [file] [log] [blame]
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001// 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.
4
5#ifndef ASH_SHELL_H_
6#define ASH_SHELL_H_
7
8#include <utility>
9#include <vector>
10
11#include "ash/ash_export.h"
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +000012#include "ash/metrics/user_metrics_recorder.h"
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000013#include "ash/shelf/shelf_types.h"
Torne (Richard Coles)58218062012-11-14 11:43:16 +000014#include "ash/system/user/login_status.h"
Ben Murdochc5cede92014-04-10 11:22:14 +010015#include "ash/wm/cursor_manager_chromeos.h"
Torne (Richard Coles)58218062012-11-14 11:43:16 +000016#include "ash/wm/system_modal_container_event_filter_delegate.h"
17#include "base/basictypes.h"
18#include "base/compiler_specific.h"
19#include "base/gtest_prod_util.h"
20#include "base/memory/scoped_ptr.h"
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +000021#include "base/memory/weak_ptr.h"
Torne (Richard Coles)58218062012-11-14 11:43:16 +000022#include "base/observer_list.h"
Torne (Richard Coles)f2477e02013-11-28 11:55:43 +000023#include "ui/aura/window.h"
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +010024#include "ui/base/ui_base_types.h"
Torne (Richard Coles)d0247b12013-09-19 22:36:51 +010025#include "ui/events/event_target.h"
Torne (Richard Coles)58218062012-11-14 11:43:16 +000026#include "ui/gfx/insets.h"
27#include "ui/gfx/screen.h"
28#include "ui/gfx/size.h"
Torne (Richard Coles)a1401312014-03-18 10:20:56 +000029#include "ui/wm/core/cursor_manager.h"
Ben Murdocheffb81e2014-03-31 11:51:25 +010030#include "ui/wm/public/activation_change_observer.h"
Torne (Richard Coles)58218062012-11-14 11:43:16 +000031
Torne (Richard Coles)8bcbed82013-10-22 16:41:35 +010032namespace app_list {
33class AppListView;
34}
Torne (Richard Coles)58218062012-11-14 11:43:16 +000035namespace aura {
36class EventFilter;
Torne (Richard Coles)58218062012-11-14 11:43:16 +000037class RootWindow;
38class Window;
39namespace client {
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000040class ActivationClient;
41class FocusClient;
Torne (Richard Coles)58218062012-11-14 11:43:16 +000042}
Torne (Richard Coles)58218062012-11-14 11:43:16 +000043}
Torne (Richard Coles)58218062012-11-14 11:43:16 +000044
45namespace gfx {
46class ImageSkia;
47class Point;
48class Rect;
49}
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +010050
Torne (Richard Coles)58218062012-11-14 11:43:16 +000051namespace ui {
Ben Murdochc5cede92014-04-10 11:22:14 +010052class DisplayConfigurator;
Torne (Richard Coles)58218062012-11-14 11:43:16 +000053class Layer;
Ben Murdochc5cede92014-04-10 11:22:14 +010054class UserActivityNotifier;
Torne (Richard Coles)58218062012-11-14 11:43:16 +000055}
56namespace views {
57class NonClientFrameView;
58class Widget;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000059namespace corewm {
Torne (Richard Coles)a1401312014-03-18 10:20:56 +000060class TooltipController;
61}
62}
63
64namespace wm {
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000065class CompoundEventFilter;
66class InputMethodEventFilter;
67class ShadowController;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000068class VisibilityController;
Ben Murdochc5cede92014-04-10 11:22:14 +010069class UserActivityDetector;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000070class WindowModalityController;
71}
Torne (Richard Coles)58218062012-11-14 11:43:16 +000072
73namespace ash {
74
75class AcceleratorController;
Ben Murdochc5cede92014-04-10 11:22:14 +010076class AccelerometerController;
77class AcceleratorFilter;
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +000078class AccessibilityDelegate;
Ben Murdochc5cede92014-04-10 11:22:14 +010079class AppListController;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000080class AshNativeCursorManager;
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +010081class AutoclickController;
Torne (Richard Coles)a1401312014-03-18 10:20:56 +000082class BluetoothNotificationController;
Torne (Richard Coles)58218062012-11-14 11:43:16 +000083class CaptureController;
Ben Murdochc5cede92014-04-10 11:22:14 +010084class DesktopBackgroundController;
Torne (Richard Coles)3551c9c2013-08-23 16:39:15 +010085class DisplayChangeObserver;
Ben Murdochc5cede92014-04-10 11:22:14 +010086class DisplayController;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000087class DisplayErrorObserver;
88class DisplayManager;
Torne (Richard Coles)58218062012-11-14 11:43:16 +000089class DragDropController;
90class EventClientImpl;
91class EventRewriterEventFilter;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000092class EventTransformationHandler;
Ben Murdochc5cede92014-04-10 11:22:14 +010093class FirstRunHelper;
Torne (Richard Coles)58218062012-11-14 11:43:16 +000094class FocusCycler;
Ben Murdochc5cede92014-04-10 11:22:14 +010095class GPUSupport;
96class HighContrastController;
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +010097class KeyboardUMAEventFilter;
Torne (Richard Coles)a1401312014-03-18 10:20:56 +000098class LastWindowClosedLogoutReminder;
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +010099class LocaleNotificationController;
Ben Murdochc5cede92014-04-10 11:22:14 +0100100class LockStateController;
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000101class LogoutConfirmationController;
Ben Murdochc5cede92014-04-10 11:22:14 +0100102class MagnificationController;
103class MaximizeModeController;
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000104class MaximizeModeWindowManager;
Ben Murdochc5cede92014-04-10 11:22:14 +0100105class MediaDelegate;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000106class MouseCursorEventFilter;
Ben Murdochc5cede92014-04-10 11:22:14 +0100107class MruWindowTracker;
108class NestedDispatcherController;
109class NewWindowDelegate;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000110class OutputConfiguratorAnimation;
111class OverlayEventFilter;
Ben Murdochc5cede92014-04-10 11:22:14 +0100112class PartialMagnificationController;
113class PowerButtonController;
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +0100114class PowerEventObserver;
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000115class ProjectingObserver;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000116class ResizeShadowController;
Ben Murdochba5b9a62013-08-12 14:20:17 +0100117class ResolutionNotificationController;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000118class RootWindowController;
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +0100119class ScopedTargetRootWindow;
Ben Murdochc5cede92014-04-10 11:22:14 +0100120class ScreenAsh;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000121class ScreenPositionController;
Ben Murdochc5cede92014-04-10 11:22:14 +0100122class SessionStateDelegate;
123class Shelf;
124class ShelfDelegate;
125class ShelfItemDelegateManager;
126class ShelfModel;
Torne (Richard Coles)a3f6a492013-12-18 16:25:09 +0000127class ShelfWindowWatcher;
Ben Murdochc5cede92014-04-10 11:22:14 +0100128class ShellDelegate;
129class ShellObserver;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000130class SlowAnimationEventFilter;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000131class StatusAreaWidget;
Ben Murdochc5cede92014-04-10 11:22:14 +0100132class StickyKeysController;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000133class SystemGestureEventFilter;
134class SystemModalContainerEventFilter;
Ben Murdochc5cede92014-04-10 11:22:14 +0100135class SystemTray;
136class SystemTrayDelegate;
137class SystemTrayNotifier;
138class ToplevelWindowEventHandler;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000139class TouchObserverHUD;
Ben Murdochc5cede92014-04-10 11:22:14 +0100140class UserActivityDetector;
141class UserWallpaperDelegate;
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +0100142class VideoActivityNotifier;
Ben Murdochc5cede92014-04-10 11:22:14 +0100143class VideoDetector;
144class WebNotificationTray;
145class WindowCycleController;
146class WindowPositioner;
147class WindowSelectorController;
148class WindowTreeHostFactory;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000149
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000150namespace shell {
151class WindowWatcher;
152}
153
154namespace test {
155class ShellTestApi;
156}
157
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000158// Shell is a singleton object that presents the Shell API and implements the
159// RootWindow's delegate interface.
160//
161// Upon creation, the Shell sets itself as the RootWindow's delegate, which
162// takes ownership of the Shell.
Ben Murdochc5cede92014-04-10 11:22:14 +0100163class ASH_EXPORT Shell : public SystemModalContainerEventFilterDelegate,
164 public ui::EventTarget,
165 public aura::client::ActivationChangeObserver {
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000166 public:
Ben Murdochc5cede92014-04-10 11:22:14 +0100167 typedef std::vector<RootWindowController*> RootWindowControllerList;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000168
169 enum Direction {
170 FORWARD,
171 BACKWARD
172 };
173
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000174 // A shell must be explicitly created so that it can call |Init()| with the
175 // delegate set. |delegate| can be NULL (if not required for initialization).
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100176 // Takes ownership of |delegate|.
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000177 static Shell* CreateInstance(ShellDelegate* delegate);
178
179 // Should never be called before |CreateInstance()|.
180 static Shell* GetInstance();
181
182 // Returns true if the ash shell has been instantiated.
183 static bool HasInstance();
184
185 static void DeleteInstance();
186
187 // Returns the root window controller for the primary root window.
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000188 // TODO(oshima): move this to |RootWindowController|
Ben Murdochc5cede92014-04-10 11:22:14 +0100189 static RootWindowController* GetPrimaryRootWindowController();
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000190
191 // Returns all root window controllers.
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000192 // TODO(oshima): move this to |RootWindowController|
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000193 static RootWindowControllerList GetAllRootWindowControllers();
194
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000195 // Returns the primary root Window. The primary root Window is the one that
196 // has a launcher.
197 static aura::Window* GetPrimaryRootWindow();
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000198
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000199 // Returns a root Window when used as a target when creating a new window.
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +0100200 // The root window of the active window is used in most cases, but can
201 // be overridden by using ScopedTargetRootWindow().
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000202 // If you want to get the root Window of the active window, just use
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +0100203 // |wm::GetActiveWindow()->GetRootWindow()|.
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000204 static aura::Window* GetTargetRootWindow();
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000205
206 // Returns the global Screen object that's always active in ash.
207 static gfx::Screen* GetScreen();
208
209 // Returns all root windows.
Torne (Richard Coles)f2477e02013-11-28 11:55:43 +0000210 static aura::Window::Windows GetAllRootWindows();
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000211
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000212 static aura::Window* GetContainer(aura::Window* root_window,
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000213 int container_id);
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000214 static const aura::Window* GetContainer(const aura::Window* root_window,
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000215 int container_id);
216
217 // Returns the list of containers that match |container_id| in
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000218 // all root windows. If |priority_root| is given, the container
219 // in the |priority_root| will be inserted at the top of the list.
220 static std::vector<aura::Window*> GetContainersFromAllRootWindows(
221 int container_id,
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000222 aura::Window* priority_root);
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000223
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000224 void set_target_root_window(aura::Window* target_root_window) {
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +0100225 target_root_window_ = target_root_window;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000226 }
227
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000228 // Shows the context menu for the background and launcher at
229 // |location_in_screen| (in screen coordinates).
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100230 void ShowContextMenu(const gfx::Point& location_in_screen,
231 ui::MenuSourceType source_type);
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000232
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000233 // Toggles the app list. |window| specifies in which display the app
234 // list should be shown. If this is NULL, the active root window
235 // will be used.
236 void ToggleAppList(aura::Window* anchor);
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000237
238 // Returns app list target visibility.
239 bool GetAppListTargetVisibility() const;
240
241 // Returns app list window or NULL if it is not visible.
242 aura::Window* GetAppListWindow();
243
Torne (Richard Coles)8bcbed82013-10-22 16:41:35 +0100244 // Returns app list view or NULL if it is not visible.
245 app_list::AppListView* GetAppListView();
246
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000247 // Returns true if a system-modal dialog window is currently open.
248 bool IsSystemModalWindowOpen() const;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000249
250 // For testing only: set simulation that a modal window is open
251 void SimulateModalWindowOpenForTesting(bool modal_window_open) {
252 simulate_modal_window_open_for_testing_ = modal_window_open;
253 }
254
255 // Creates a default views::NonClientFrameView for use by windows in the
256 // Ash environment.
257 views::NonClientFrameView* CreateDefaultNonClientFrameView(
258 views::Widget* widget);
259
260 // Rotates focus through containers that can receive focus.
261 void RotateFocus(Direction direction);
262
263 // Sets the work area insets of the display that contains |window|,
264 // this notifies observers too.
265 // TODO(sky): this no longer really replicates what happens and is unreliable.
266 // Remove this.
267 void SetDisplayWorkAreaInsets(aura::Window* window,
268 const gfx::Insets& insets);
269
270 // Called when the user logs in.
271 void OnLoginStateChanged(user::LoginStatus status);
272
Torne (Richard Coles)f2477e02013-11-28 11:55:43 +0000273 // Called after the logged-in user's profile is ready.
274 void OnLoginUserProfilePrepared();
275
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000276 // Called when the login status changes.
277 // TODO(oshima): Investigate if we can merge this and |OnLoginStateChanged|.
278 void UpdateAfterLoginStatusChange(user::LoginStatus status);
279
280 // Called when the application is exiting.
281 void OnAppTerminating();
282
283 // Called when the screen is locked (after the lock window is visible) or
284 // unlocked.
285 void OnLockStateChanged(bool locked);
286
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000287 // Called when a casting session is started or stopped.
288 void OnCastingSessionStartedOrStopped(bool started);
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000289
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000290 // Called when the overview mode is about to be started (before the windows
291 // get re-arranged).
292 void OnOverviewModeStarting();
293
294 // Called before the overview mode is ending (before the windows get arranged
295 // to their final position).
296 void OnOverviewModeEnding();
297
298 // Called after maximize mode has started, windows might still animate though.
299 void OnMaximizeModeStarted();
300
301 // Called after maximize mode has ended, windows might still be returning to
302 // their original position.
303 void OnMaximizeModeEnded();
304
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000305 // Initializes |shelf_|. Does nothing if it's already initialized.
306 void CreateShelf();
307
308 // Creates a virtual keyboard. Deletes the old virtual keyboard if it already
309 // exists.
Torne (Richard Coles)f2477e02013-11-28 11:55:43 +0000310 void CreateKeyboard();
311
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000312 // Deactivates the virtual keyboard.
313 void DeactivateKeyboard();
314
Torne (Richard Coles)8bcbed82013-10-22 16:41:35 +0100315 // Show shelf view if it was created hidden (before session has started).
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000316 void ShowShelf();
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000317
318 // Adds/removes observer.
319 void AddShellObserver(ShellObserver* observer);
320 void RemoveShellObserver(ShellObserver* observer);
321
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000322 // Turn the always maximize mode window manager on or off.
323 void EnableMaximizeModeWindowManager(bool enable);
324
325 // Test if the MaximizeModeWindowManager is enabled or not.
326 bool IsMaximizeModeWindowManagerEnabled();
327
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000328 AcceleratorController* accelerator_controller() {
329 return accelerator_controller_.get();
330 }
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000331
Ben Murdochc5cede92014-04-10 11:22:14 +0100332 DisplayManager* display_manager() { return display_manager_.get(); }
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000333 ::wm::InputMethodEventFilter* input_method_filter() {
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100334 return input_method_filter_.get();
335 }
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000336 ::wm::CompoundEventFilter* env_filter() {
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000337 return env_filter_.get();
338 }
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000339 views::corewm::TooltipController* tooltip_controller() {
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000340 return tooltip_controller_.get();
341 }
Ben Murdochc5cede92014-04-10 11:22:14 +0100342 OverlayEventFilter* overlay_filter() { return overlay_filter_.get(); }
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000343 DesktopBackgroundController* desktop_background_controller() {
344 return desktop_background_controller_.get();
345 }
346 PowerButtonController* power_button_controller() {
347 return power_button_controller_.get();
348 }
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100349 LockStateController* lock_state_controller() {
350 return lock_state_controller_.get();
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000351 }
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +0100352 MruWindowTracker* mru_window_tracker() {
353 return mru_window_tracker_.get();
354 }
Ben Murdochc5cede92014-04-10 11:22:14 +0100355 ::wm::UserActivityDetector* user_activity_detector() {
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000356 return user_activity_detector_.get();
357 }
358 VideoDetector* video_detector() {
359 return video_detector_.get();
360 }
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +0100361 WindowSelectorController* window_selector_controller() {
362 return window_selector_controller_.get();
363 }
Ben Murdochc5cede92014-04-10 11:22:14 +0100364 FocusCycler* focus_cycler() { return focus_cycler_.get(); }
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000365 DisplayController* display_controller() {
366 return display_controller_.get();
367 }
Ben Murdochc5cede92014-04-10 11:22:14 +0100368 MouseCursorEventFilter* mouse_cursor_filter() {
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000369 return mouse_cursor_filter_.get();
370 }
Ben Murdochc5cede92014-04-10 11:22:14 +0100371 EventTransformationHandler* event_transformation_handler() {
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000372 return event_transformation_handler_.get();
373 }
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000374 ::wm::CursorManager* cursor_manager() { return &cursor_manager_; }
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000375
376 ShellDelegate* delegate() { return delegate_.get(); }
377
378 UserWallpaperDelegate* user_wallpaper_delegate() {
379 return user_wallpaper_delegate_.get();
380 }
381
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100382 SessionStateDelegate* session_state_delegate() {
383 return session_state_delegate_.get();
384 }
385
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000386 AccessibilityDelegate* accessibility_delegate() {
387 return accessibility_delegate_.get();
388 }
389
390 NewWindowDelegate* new_window_delegate() {
391 return new_window_delegate_.get();
392 }
393
Torne (Richard Coles)0f1bc082013-11-06 12:27:47 +0000394 MediaDelegate* media_delegate() {
395 return media_delegate_.get();
396 }
397
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000398 HighContrastController* high_contrast_controller() {
399 return high_contrast_controller_.get();
400 }
401
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000402 MagnificationController* magnification_controller() {
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000403 return magnification_controller_.get();
404 }
405
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000406 PartialMagnificationController* partial_magnification_controller() {
407 return partial_magnification_controller_.get();
408 }
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +0100409
410 AutoclickController* autoclick_controller() {
411 return autoclick_controller_.get();
412 }
413
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000414 aura::client::ActivationClient* activation_client() {
415 return activation_client_;
416 }
417
Torne (Richard Coles)a3f6a492013-12-18 16:25:09 +0000418 ShelfItemDelegateManager* shelf_item_delegate_manager() {
419 return shelf_item_delegate_manager_.get();
Torne (Richard Coles)424c4d72013-08-30 15:14:49 +0100420 }
421
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000422 // Force the shelf to query for it's current visibility state.
423 void UpdateShelfVisibility();
424
425 // TODO(oshima): Define an interface to access shelf/launcher
426 // state, or just use Launcher.
427
428 // Sets/gets the shelf auto-hide behavior on |root_window|.
429 void SetShelfAutoHideBehavior(ShelfAutoHideBehavior behavior,
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000430 aura::Window* root_window);
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000431 ShelfAutoHideBehavior GetShelfAutoHideBehavior(
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000432 aura::Window* root_window) const;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000433
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000434 // Sets/gets shelf's alignment on |root_window|.
435 void SetShelfAlignment(ShelfAlignment alignment,
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000436 aura::Window* root_window);
437 ShelfAlignment GetShelfAlignment(aura::Window* root_window);
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000438
439 // Dims or undims the screen.
440 void SetDimming(bool should_dim);
441
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +0100442 // Notifies |observers_| when entering or exiting fullscreen mode in
443 // |root_window|.
444 void NotifyFullscreenStateChange(bool is_fullscreen,
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000445 aura::Window* root_window);
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +0100446
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000447 // Creates a modal background (a partially-opaque fullscreen window)
448 // on all displays for |window|.
449 void CreateModalBackground(aura::Window* window);
450
451 // Called when a modal window is removed. It will activate
452 // another modal window if any, or remove modal screens
453 // on all displays.
454 void OnModalWindowRemoved(aura::Window* removed);
455
456 // Returns WebNotificationTray on the primary root window.
457 WebNotificationTray* GetWebNotificationTray();
458
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000459 // Does the primary display have status area?
460 bool HasPrimaryStatusArea();
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000461
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000462 // Returns the system tray on primary display.
463 SystemTray* GetPrimarySystemTray();
464
465 SystemTrayDelegate* system_tray_delegate() {
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000466 return system_tray_delegate_.get();
467 }
468
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000469 SystemTrayNotifier* system_tray_notifier() {
470 return system_tray_notifier_.get();
471 }
472
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000473 static void set_initially_hide_cursor(bool hide) {
474 initially_hide_cursor_ = hide;
475 }
476
Ben Murdochc5cede92014-04-10 11:22:14 +0100477 ResizeShadowController* resize_shadow_controller() {
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000478 return resize_shadow_controller_.get();
479 }
480
481 // Made available for tests.
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000482 ::wm::ShadowController* shadow_controller() {
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000483 return shadow_controller_.get();
484 }
485
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000486 // Starts the animation that occurs on first login.
487 void DoInitialWorkspaceAnimation();
488
Ben Murdochc5cede92014-04-10 11:22:14 +0100489 AccelerometerController* accelerometer_controller() {
490 return accelerometer_controller_.get();
491 }
492
493 MaximizeModeController* maximize_mode_controller() {
494 return maximize_mode_controller_.get();
495 }
496
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000497#if defined(OS_CHROMEOS)
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000498 // TODO(oshima): Move these objects to DisplayController.
Ben Murdochc5cede92014-04-10 11:22:14 +0100499 ui::DisplayConfigurator* display_configurator() {
500 return display_configurator_.get();
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000501 }
Ben Murdochc5cede92014-04-10 11:22:14 +0100502 OutputConfiguratorAnimation* output_configurator_animation() {
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000503 return output_configurator_animation_.get();
504 }
Ben Murdochc5cede92014-04-10 11:22:14 +0100505 DisplayErrorObserver* display_error_observer() {
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000506 return display_error_observer_.get();
507 }
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000508
Ben Murdochc5cede92014-04-10 11:22:14 +0100509 ResolutionNotificationController* resolution_notification_controller() {
Ben Murdochba5b9a62013-08-12 14:20:17 +0100510 return resolution_notification_controller_.get();
511 }
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000512
Ben Murdochc5cede92014-04-10 11:22:14 +0100513 LogoutConfirmationController* logout_confirmation_controller() {
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000514 return logout_confirmation_controller_.get();
515 }
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000516#endif // defined(OS_CHROMEOS)
Ben Murdochba5b9a62013-08-12 14:20:17 +0100517
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000518 WindowTreeHostFactory* window_tree_host_factory() {
519 return window_tree_host_factory_.get();
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000520 }
521
Torne (Richard Coles)f2477e02013-11-28 11:55:43 +0000522 ShelfModel* shelf_model() {
523 return shelf_model_.get();
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000524 }
525
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +0100526 WindowPositioner* window_positioner() {
527 return window_positioner_.get();
528 }
529
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000530 // Returns the launcher delegate, creating if necesary.
Torne (Richard Coles)a3f6a492013-12-18 16:25:09 +0000531 ShelfDelegate* GetShelfDelegate();
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000532
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000533 UserMetricsRecorder* metrics() {
534 return user_metrics_recorder_.get();
535 }
536
Ben Murdocheb525c52013-07-10 11:40:50 +0100537 void SetTouchHudProjectionEnabled(bool enabled);
538
539 bool is_touch_hud_projection_enabled() const {
540 return is_touch_hud_projection_enabled_;
541 }
542
Torne (Richard Coles)8bcbed82013-10-22 16:41:35 +0100543#if defined(OS_CHROMEOS)
544 // Creates instance of FirstRunHelper. Caller is responsible for deleting
545 // returned object.
546 ash::FirstRunHelper* CreateFirstRunHelper();
Torne (Richard Coles)f2477e02013-11-28 11:55:43 +0000547
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000548 // Toggles cursor compositing on/off. Native cursor is disabled when cursor
549 // compositing is enabled, and vice versa.
550 void SetCursorCompositingEnabled(bool enabled);
551
552 StickyKeysController* sticky_keys_controller() {
553 return sticky_keys_controller_.get();
Torne (Richard Coles)f2477e02013-11-28 11:55:43 +0000554 }
Torne (Richard Coles)8bcbed82013-10-22 16:41:35 +0100555#endif // defined(OS_CHROMEOS)
556
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000557 GPUSupport* gpu_support() { return gpu_support_.get(); }
558
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000559 private:
560 FRIEND_TEST_ALL_PREFIXES(ExtendedDesktopTest, TestCursor);
561 FRIEND_TEST_ALL_PREFIXES(WindowManagerTest, MouseEventCursors);
562 FRIEND_TEST_ALL_PREFIXES(WindowManagerTest, TransformActivate);
Ben Murdochc5cede92014-04-10 11:22:14 +0100563 friend class RootWindowController;
564 friend class ScopedTargetRootWindow;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000565 friend class test::ShellTestApi;
566 friend class shell::WindowWatcher;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000567
568 typedef std::pair<aura::Window*, gfx::Rect> WindowAndBoundsPair;
569
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100570 // Takes ownership of |delegate|.
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000571 explicit Shell(ShellDelegate* delegate);
572 virtual ~Shell();
573
574 void Init();
575
Torne (Richard Coles)f2477e02013-11-28 11:55:43 +0000576 // Initializes virtual keyboard controller.
577 void InitKeyboard();
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +0100578
Torne (Richard Coles)8bcbed82013-10-22 16:41:35 +0100579 // Initializes the root window so that it can host browser windows.
Torne (Richard Coles)f2477e02013-11-28 11:55:43 +0000580 void InitRootWindow(aura::Window* root_window);
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000581
Ben Murdochc5cede92014-04-10 11:22:14 +0100582 // ash::SystemModalContainerEventFilterDelegate overrides:
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000583 virtual bool CanWindowReceiveEvents(aura::Window* window) OVERRIDE;
584
585 // Overridden from ui::EventTarget:
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000586 virtual bool CanAcceptEvent(const ui::Event& event) OVERRIDE;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000587 virtual EventTarget* GetParentTarget() OVERRIDE;
Torne (Richard Coles)a3f6a492013-12-18 16:25:09 +0000588 virtual scoped_ptr<ui::EventTargetIterator> GetChildIterator() const OVERRIDE;
589 virtual ui::EventTargeter* GetEventTargeter() OVERRIDE;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000590 virtual void OnEvent(ui::Event* event) OVERRIDE;
591
592 // Overridden from aura::client::ActivationChangeObserver:
593 virtual void OnWindowActivated(aura::Window* gained_active,
594 aura::Window* lost_active) OVERRIDE;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000595
596 static Shell* instance_;
597
598 // If set before the Shell is initialized, the mouse cursor will be hidden
599 // when the screen is initially created.
600 static bool initially_hide_cursor_;
601
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +0100602 // When no explicit target display/RootWindow is given, new windows are
603 // created on |scoped_target_root_window_| , unless NULL in
604 // which case they are created on |target_root_window_|.
605 // |target_root_window_| never becomes NULL during the session.
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000606 aura::Window* target_root_window_;
607 aura::Window* scoped_target_root_window_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000608
609 // The CompoundEventFilter owned by aura::Env object.
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000610 scoped_ptr< ::wm::CompoundEventFilter> env_filter_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000611
612 std::vector<WindowAndBoundsPair> to_restore_;
613
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000614 scoped_ptr<UserMetricsRecorder> user_metrics_recorder_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000615 scoped_ptr<NestedDispatcherController> nested_dispatcher_controller_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000616 scoped_ptr<AcceleratorController> accelerator_controller_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000617 scoped_ptr<ShellDelegate> delegate_;
618 scoped_ptr<SystemTrayDelegate> system_tray_delegate_;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000619 scoped_ptr<SystemTrayNotifier> system_tray_notifier_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000620 scoped_ptr<UserWallpaperDelegate> user_wallpaper_delegate_;
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100621 scoped_ptr<SessionStateDelegate> session_state_delegate_;
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000622 scoped_ptr<AccessibilityDelegate> accessibility_delegate_;
623 scoped_ptr<NewWindowDelegate> new_window_delegate_;
Torne (Richard Coles)0f1bc082013-11-06 12:27:47 +0000624 scoped_ptr<MediaDelegate> media_delegate_;
Torne (Richard Coles)a3f6a492013-12-18 16:25:09 +0000625 scoped_ptr<ShelfDelegate> shelf_delegate_;
626 scoped_ptr<ShelfItemDelegateManager> shelf_item_delegate_manager_;
Ben Murdochc5cede92014-04-10 11:22:14 +0100627 scoped_ptr<ShelfWindowWatcher> shelf_window_watcher_;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000628
Torne (Richard Coles)f2477e02013-11-28 11:55:43 +0000629 scoped_ptr<ShelfModel> shelf_model_;
630 scoped_ptr<WindowPositioner> window_positioner_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000631
Ben Murdochc5cede92014-04-10 11:22:14 +0100632 scoped_ptr<AppListController> app_list_controller_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000633
Ben Murdochc5cede92014-04-10 11:22:14 +0100634 scoped_ptr<DragDropController> drag_drop_controller_;
635 scoped_ptr<ResizeShadowController> resize_shadow_controller_;
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000636 scoped_ptr< ::wm::ShadowController> shadow_controller_;
637 scoped_ptr< ::wm::VisibilityController> visibility_controller_;
638 scoped_ptr< ::wm::WindowModalityController> window_modality_controller_;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000639 scoped_ptr<views::corewm::TooltipController> tooltip_controller_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000640 scoped_ptr<DesktopBackgroundController> desktop_background_controller_;
641 scoped_ptr<PowerButtonController> power_button_controller_;
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100642 scoped_ptr<LockStateController> lock_state_controller_;
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +0100643 scoped_ptr<MruWindowTracker> mru_window_tracker_;
Ben Murdochc5cede92014-04-10 11:22:14 +0100644 scoped_ptr< ::wm::UserActivityDetector> user_activity_detector_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000645 scoped_ptr<VideoDetector> video_detector_;
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +0100646 scoped_ptr<WindowSelectorController> window_selector_controller_;
Ben Murdochc5cede92014-04-10 11:22:14 +0100647 scoped_ptr<FocusCycler> focus_cycler_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000648 scoped_ptr<DisplayController> display_controller_;
649 scoped_ptr<HighContrastController> high_contrast_controller_;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000650 scoped_ptr<MagnificationController> magnification_controller_;
651 scoped_ptr<PartialMagnificationController> partial_magnification_controller_;
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +0100652 scoped_ptr<AutoclickController> autoclick_controller_;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000653 scoped_ptr<aura::client::FocusClient> focus_client_;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000654 aura::client::ActivationClient* activation_client_;
Ben Murdochc5cede92014-04-10 11:22:14 +0100655 scoped_ptr<MouseCursorEventFilter> mouse_cursor_filter_;
656 scoped_ptr<ScreenPositionController> screen_position_controller_;
657 scoped_ptr<SystemModalContainerEventFilter> modality_filter_;
658 scoped_ptr<EventClientImpl> event_client_;
659 scoped_ptr<EventTransformationHandler> event_transformation_handler_;
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000660 scoped_ptr<WindowTreeHostFactory> window_tree_host_factory_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000661
662 // An event filter that pre-handles key events while the partial
663 // screenshot UI or the keyboard overlay is active.
Ben Murdochc5cede92014-04-10 11:22:14 +0100664 scoped_ptr<OverlayEventFilter> overlay_filter_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000665
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +0100666 // An event filter for logging keyboard-related metrics.
Ben Murdochc5cede92014-04-10 11:22:14 +0100667 scoped_ptr<KeyboardUMAEventFilter> keyboard_metrics_filter_;
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +0100668
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000669 // An event filter which handles moving and resizing windows.
670 scoped_ptr<ToplevelWindowEventHandler> toplevel_window_event_handler_;
671
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000672 // An event filter which handles system level gestures
Ben Murdochc5cede92014-04-10 11:22:14 +0100673 scoped_ptr<SystemGestureEventFilter> system_gesture_filter_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000674
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000675 // An event filter that pre-handles global accelerators.
Ben Murdochc5cede92014-04-10 11:22:14 +0100676 scoped_ptr<AcceleratorFilter> accelerator_filter_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000677
678 // An event filter that pre-handles all key events to send them to an IME.
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000679 scoped_ptr< ::wm::InputMethodEventFilter> input_method_filter_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000680
Ben Murdochc5cede92014-04-10 11:22:14 +0100681 scoped_ptr<DisplayManager> display_manager_;
682 scoped_ptr<base::WeakPtrFactory<DisplayManager> >
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000683 weak_display_manager_factory_;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000684
Ben Murdochc5cede92014-04-10 11:22:14 +0100685 scoped_ptr<LocaleNotificationController> locale_notification_controller_;
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +0100686
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000687 // The maximized window manager (if enabled).
Ben Murdochc5cede92014-04-10 11:22:14 +0100688 scoped_ptr<MaximizeModeWindowManager> maximize_mode_window_manager_;
689
690 scoped_ptr<AccelerometerController> accelerometer_controller_;
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000691
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +0100692#if defined(OS_CHROMEOS)
Ben Murdochc5cede92014-04-10 11:22:14 +0100693 scoped_ptr<PowerEventObserver> power_event_observer_;
694 scoped_ptr<ui::UserActivityNotifier> user_activity_notifier_;
695 scoped_ptr<VideoActivityNotifier> video_activity_notifier_;
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000696 scoped_ptr<StickyKeysController> sticky_keys_controller_;
Ben Murdochc5cede92014-04-10 11:22:14 +0100697 scoped_ptr<ResolutionNotificationController>
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000698 resolution_notification_controller_;
Ben Murdochc5cede92014-04-10 11:22:14 +0100699 scoped_ptr<BluetoothNotificationController>
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000700 bluetooth_notification_controller_;
Ben Murdochc5cede92014-04-10 11:22:14 +0100701 scoped_ptr<LogoutConfirmationController> logout_confirmation_controller_;
702 scoped_ptr<LastWindowClosedLogoutReminder>
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000703 last_window_closed_logout_reminder_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000704 // Controls video output device state.
Ben Murdochc5cede92014-04-10 11:22:14 +0100705 scoped_ptr<ui::DisplayConfigurator> display_configurator_;
706 scoped_ptr<OutputConfiguratorAnimation> output_configurator_animation_;
707 scoped_ptr<DisplayErrorObserver> display_error_observer_;
708 scoped_ptr<ProjectingObserver> projecting_observer_;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000709
Torne (Richard Coles)3551c9c2013-08-23 16:39:15 +0100710 // Listens for output changes and updates the display manager.
Ben Murdochc5cede92014-04-10 11:22:14 +0100711 scoped_ptr<DisplayChangeObserver> display_change_observer_;
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000712
Ben Murdocheffb81e2014-03-31 11:51:25 +0100713#if defined(USE_X11)
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000714 scoped_ptr<ui::EventHandler> magnifier_key_scroll_handler_;
715 scoped_ptr<ui::EventHandler> speech_feedback_handler_;
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +0100716#endif // defined(USE_X11)
717#endif // defined(OS_CHROMEOS)
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000718
Ben Murdochc5cede92014-04-10 11:22:14 +0100719 scoped_ptr<MaximizeModeController> maximize_mode_controller_;
720
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000721 // |native_cursor_manager_| is owned by |cursor_manager_|, but we keep a
722 // pointer to vend to test code.
723 AshNativeCursorManager* native_cursor_manager_;
Ben Murdochc5cede92014-04-10 11:22:14 +0100724
725// Cursor may be hidden on certain key events in ChromeOS, whereas we never hide
726// the cursor on Windows.
727#if defined(OS_CHROMEOS)
728 CursorManager cursor_manager_;
729#else // !defined(OS_CHROMEOS)
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000730 ::wm::CursorManager cursor_manager_;
Ben Murdochc5cede92014-04-10 11:22:14 +0100731#endif // defined(OS_CHROMEOS)
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000732
733 ObserverList<ShellObserver> observers_;
734
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000735 // For testing only: simulate that a modal window is open
736 bool simulate_modal_window_open_for_testing_;
737
Ben Murdocheb525c52013-07-10 11:40:50 +0100738 bool is_touch_hud_projection_enabled_;
739
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000740 // Injected content::GPUDataManager support.
741 scoped_ptr<GPUSupport> gpu_support_;
742
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000743 DISALLOW_COPY_AND_ASSIGN(Shell);
744};
745
746} // namespace ash
747
748#endif // ASH_SHELL_H_