blob: 1518ea620045d03c1b83137d95f6db657d005ae0 [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 Murdoch0529e5d2014-04-24 10:50:13 +010054class UserActivityPowerManagerNotifier;
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)cedac222014-06-03 10:58:34 +010065class AcceleratorFilter;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000066class CompoundEventFilter;
67class InputMethodEventFilter;
Torne (Richard Coles)cedac222014-06-03 10:58:34 +010068class NestedAcceleratorController;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000069class ShadowController;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000070class VisibilityController;
Ben Murdochc5cede92014-04-10 11:22:14 +010071class UserActivityDetector;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000072class WindowModalityController;
73}
Torne (Richard Coles)58218062012-11-14 11:43:16 +000074
75namespace ash {
76
77class AcceleratorController;
Ben Murdochc5cede92014-04-10 11:22:14 +010078class AccelerometerController;
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +000079class AccessibilityDelegate;
Ben Murdochc5cede92014-04-10 11:22:14 +010080class AppListController;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000081class AshNativeCursorManager;
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +010082class AutoclickController;
Torne (Richard Coles)a1401312014-03-18 10:20:56 +000083class BluetoothNotificationController;
Torne (Richard Coles)58218062012-11-14 11:43:16 +000084class CaptureController;
Ben Murdochc5cede92014-04-10 11:22:14 +010085class DesktopBackgroundController;
Torne (Richard Coles)3551c9c2013-08-23 16:39:15 +010086class DisplayChangeObserver;
Bo Liu5c02ac12014-05-01 10:37:37 -070087class DisplayConfiguratorAnimation;
Ben Murdochc5cede92014-04-10 11:22:14 +010088class DisplayController;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000089class DisplayErrorObserver;
90class DisplayManager;
Torne (Richard Coles)58218062012-11-14 11:43:16 +000091class DragDropController;
92class EventClientImpl;
93class EventRewriterEventFilter;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000094class EventTransformationHandler;
Ben Murdochc5cede92014-04-10 11:22:14 +010095class FirstRunHelper;
Torne (Richard Coles)58218062012-11-14 11:43:16 +000096class FocusCycler;
Ben Murdochc5cede92014-04-10 11:22:14 +010097class GPUSupport;
98class HighContrastController;
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +010099class KeyboardUMAEventFilter;
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000100class LastWindowClosedLogoutReminder;
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +0100101class LocaleNotificationController;
Ben Murdochc5cede92014-04-10 11:22:14 +0100102class LockStateController;
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000103class LogoutConfirmationController;
Ben Murdochc5cede92014-04-10 11:22:14 +0100104class MagnificationController;
105class MaximizeModeController;
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000106class MaximizeModeWindowManager;
Ben Murdochc5cede92014-04-10 11:22:14 +0100107class MediaDelegate;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000108class MouseCursorEventFilter;
Ben Murdochc5cede92014-04-10 11:22:14 +0100109class MruWindowTracker;
Ben Murdochc5cede92014-04-10 11:22:14 +0100110class NewWindowDelegate;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000111class 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;
Torne (Richard Coles)cedac222014-06-03 10:58:34 +0100129struct ShellInitParams;
Ben Murdochc5cede92014-04-10 11:22:14 +0100130class ShellObserver;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000131class SlowAnimationEventFilter;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000132class StatusAreaWidget;
Ben Murdochc5cede92014-04-10 11:22:14 +0100133class StickyKeysController;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000134class SystemGestureEventFilter;
135class SystemModalContainerEventFilter;
Ben Murdochc5cede92014-04-10 11:22:14 +0100136class SystemTray;
137class SystemTrayDelegate;
138class SystemTrayNotifier;
139class ToplevelWindowEventHandler;
Torne (Richard Coles)cedac222014-06-03 10:58:34 +0100140class TouchTransformerController;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000141class TouchObserverHUD;
Ben Murdochc5cede92014-04-10 11:22:14 +0100142class UserActivityDetector;
143class UserWallpaperDelegate;
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +0100144class VideoActivityNotifier;
Ben Murdochc5cede92014-04-10 11:22:14 +0100145class VideoDetector;
146class WebNotificationTray;
147class WindowCycleController;
148class WindowPositioner;
149class WindowSelectorController;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000150
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000151namespace shell {
152class WindowWatcher;
153}
154
155namespace test {
156class ShellTestApi;
157}
158
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000159// Shell is a singleton object that presents the Shell API and implements the
160// RootWindow's delegate interface.
161//
162// Upon creation, the Shell sets itself as the RootWindow's delegate, which
163// takes ownership of the Shell.
Ben Murdochc5cede92014-04-10 11:22:14 +0100164class ASH_EXPORT Shell : public SystemModalContainerEventFilterDelegate,
165 public ui::EventTarget,
166 public aura::client::ActivationChangeObserver {
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000167 public:
Ben Murdochc5cede92014-04-10 11:22:14 +0100168 typedef std::vector<RootWindowController*> RootWindowControllerList;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000169
170 enum Direction {
171 FORWARD,
172 BACKWARD
173 };
174
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000175 // A shell must be explicitly created so that it can call |Init()| with the
176 // delegate set. |delegate| can be NULL (if not required for initialization).
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100177 // Takes ownership of |delegate|.
Torne (Richard Coles)cedac222014-06-03 10:58:34 +0100178 static Shell* CreateInstance(const ShellInitParams& init_params);
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000179
180 // Should never be called before |CreateInstance()|.
181 static Shell* GetInstance();
182
183 // Returns true if the ash shell has been instantiated.
184 static bool HasInstance();
185
186 static void DeleteInstance();
187
188 // Returns the root window controller for the primary root window.
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000189 // TODO(oshima): move this to |RootWindowController|
Ben Murdochc5cede92014-04-10 11:22:14 +0100190 static RootWindowController* GetPrimaryRootWindowController();
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000191
192 // Returns all root window controllers.
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000193 // TODO(oshima): move this to |RootWindowController|
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000194 static RootWindowControllerList GetAllRootWindowControllers();
195
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000196 // Returns the primary root Window. The primary root Window is the one that
197 // has a launcher.
198 static aura::Window* GetPrimaryRootWindow();
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000199
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000200 // Returns a root Window when used as a target when creating a new window.
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +0100201 // The root window of the active window is used in most cases, but can
202 // be overridden by using ScopedTargetRootWindow().
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000203 // If you want to get the root Window of the active window, just use
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +0100204 // |wm::GetActiveWindow()->GetRootWindow()|.
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000205 static aura::Window* GetTargetRootWindow();
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000206
207 // Returns the global Screen object that's always active in ash.
208 static gfx::Screen* GetScreen();
209
210 // Returns all root windows.
Torne (Richard Coles)f2477e02013-11-28 11:55:43 +0000211 static aura::Window::Windows GetAllRootWindows();
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000212
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000213 static aura::Window* GetContainer(aura::Window* root_window,
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000214 int container_id);
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000215 static const aura::Window* GetContainer(const aura::Window* root_window,
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000216 int container_id);
217
218 // Returns the list of containers that match |container_id| in
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000219 // all root windows. If |priority_root| is given, the container
220 // in the |priority_root| will be inserted at the top of the list.
221 static std::vector<aura::Window*> GetContainersFromAllRootWindows(
222 int container_id,
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000223 aura::Window* priority_root);
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000224
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000225 void set_target_root_window(aura::Window* target_root_window) {
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +0100226 target_root_window_ = target_root_window;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000227 }
228
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000229 // Shows the context menu for the background and launcher at
230 // |location_in_screen| (in screen coordinates).
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100231 void ShowContextMenu(const gfx::Point& location_in_screen,
232 ui::MenuSourceType source_type);
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000233
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000234 // Toggles the app list. |window| specifies in which display the app
235 // list should be shown. If this is NULL, the active root window
236 // will be used.
237 void ToggleAppList(aura::Window* anchor);
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000238
239 // Returns app list target visibility.
240 bool GetAppListTargetVisibility() const;
241
242 // Returns app list window or NULL if it is not visible.
243 aura::Window* GetAppListWindow();
244
Torne (Richard Coles)8bcbed82013-10-22 16:41:35 +0100245 // Returns app list view or NULL if it is not visible.
246 app_list::AppListView* GetAppListView();
247
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000248 // Returns true if a system-modal dialog window is currently open.
249 bool IsSystemModalWindowOpen() const;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000250
251 // For testing only: set simulation that a modal window is open
252 void SimulateModalWindowOpenForTesting(bool modal_window_open) {
253 simulate_modal_window_open_for_testing_ = modal_window_open;
254 }
255
256 // Creates a default views::NonClientFrameView for use by windows in the
257 // Ash environment.
258 views::NonClientFrameView* CreateDefaultNonClientFrameView(
259 views::Widget* widget);
260
261 // Rotates focus through containers that can receive focus.
262 void RotateFocus(Direction direction);
263
264 // Sets the work area insets of the display that contains |window|,
265 // this notifies observers too.
266 // TODO(sky): this no longer really replicates what happens and is unreliable.
267 // Remove this.
268 void SetDisplayWorkAreaInsets(aura::Window* window,
269 const gfx::Insets& insets);
270
271 // Called when the user logs in.
272 void OnLoginStateChanged(user::LoginStatus status);
273
Torne (Richard Coles)f2477e02013-11-28 11:55:43 +0000274 // Called after the logged-in user's profile is ready.
275 void OnLoginUserProfilePrepared();
276
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000277 // Called when the login status changes.
278 // TODO(oshima): Investigate if we can merge this and |OnLoginStateChanged|.
279 void UpdateAfterLoginStatusChange(user::LoginStatus status);
280
281 // Called when the application is exiting.
282 void OnAppTerminating();
283
284 // Called when the screen is locked (after the lock window is visible) or
285 // unlocked.
286 void OnLockStateChanged(bool locked);
287
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000288 // Called when a casting session is started or stopped.
289 void OnCastingSessionStartedOrStopped(bool started);
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000290
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000291 // Called when the overview mode is about to be started (before the windows
292 // get re-arranged).
293 void OnOverviewModeStarting();
294
295 // Called before the overview mode is ending (before the windows get arranged
296 // to their final position).
297 void OnOverviewModeEnding();
298
299 // Called after maximize mode has started, windows might still animate though.
300 void OnMaximizeModeStarted();
301
302 // Called after maximize mode has ended, windows might still be returning to
303 // their original position.
304 void OnMaximizeModeEnded();
305
Ben Murdocha02191e2014-04-16 11:17:03 +0100306 // Called when a root window is created.
307 void OnRootWindowAdded(aura::Window* root_window);
308
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000309 // Initializes |shelf_|. Does nothing if it's already initialized.
310 void CreateShelf();
311
Ben Murdoch0529e5d2014-04-24 10:50:13 +0100312 // Called when the shelf is created for |root_window|.
313 void OnShelfCreatedForRootWindow(aura::Window* root_window);
314
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000315 // Creates a virtual keyboard. Deletes the old virtual keyboard if it already
316 // exists.
Torne (Richard Coles)f2477e02013-11-28 11:55:43 +0000317 void CreateKeyboard();
318
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000319 // Deactivates the virtual keyboard.
320 void DeactivateKeyboard();
321
Torne (Richard Coles)8bcbed82013-10-22 16:41:35 +0100322 // Show shelf view if it was created hidden (before session has started).
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000323 void ShowShelf();
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000324
325 // Adds/removes observer.
326 void AddShellObserver(ShellObserver* observer);
327 void RemoveShellObserver(ShellObserver* observer);
328
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000329 // Turn the always maximize mode window manager on or off.
330 void EnableMaximizeModeWindowManager(bool enable);
331
332 // Test if the MaximizeModeWindowManager is enabled or not.
333 bool IsMaximizeModeWindowManagerEnabled();
334
Torne (Richard Coles)cedac222014-06-03 10:58:34 +0100335#if defined(OS_CHROMEOS)
336 // Test if MaximizeModeWindowManager is not enabled, and if
337 // MaximizeModeController is not currently setting a display rotation. Or if
338 // the |resolution_notification_controller_| is not showing its confirmation
339 // dialog. If true then changes to display settings can be saved.
340 bool ShouldSaveDisplaySettings();
341#endif
342
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000343 AcceleratorController* accelerator_controller() {
344 return accelerator_controller_.get();
345 }
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000346
Ben Murdochc5cede92014-04-10 11:22:14 +0100347 DisplayManager* display_manager() { return display_manager_.get(); }
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000348 ::wm::InputMethodEventFilter* input_method_filter() {
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100349 return input_method_filter_.get();
350 }
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000351 ::wm::CompoundEventFilter* env_filter() {
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000352 return env_filter_.get();
353 }
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000354 views::corewm::TooltipController* tooltip_controller() {
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000355 return tooltip_controller_.get();
356 }
Ben Murdochc5cede92014-04-10 11:22:14 +0100357 OverlayEventFilter* overlay_filter() { return overlay_filter_.get(); }
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000358 DesktopBackgroundController* desktop_background_controller() {
359 return desktop_background_controller_.get();
360 }
361 PowerButtonController* power_button_controller() {
362 return power_button_controller_.get();
363 }
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100364 LockStateController* lock_state_controller() {
365 return lock_state_controller_.get();
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000366 }
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +0100367 MruWindowTracker* mru_window_tracker() {
368 return mru_window_tracker_.get();
369 }
Ben Murdochc5cede92014-04-10 11:22:14 +0100370 ::wm::UserActivityDetector* user_activity_detector() {
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000371 return user_activity_detector_.get();
372 }
373 VideoDetector* video_detector() {
374 return video_detector_.get();
375 }
Torne (Richard Coles)cedac222014-06-03 10:58:34 +0100376 WindowCycleController* window_cycle_controller() {
377 return window_cycle_controller_.get();
378 }
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +0100379 WindowSelectorController* window_selector_controller() {
380 return window_selector_controller_.get();
381 }
Ben Murdochc5cede92014-04-10 11:22:14 +0100382 FocusCycler* focus_cycler() { return focus_cycler_.get(); }
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000383 DisplayController* display_controller() {
384 return display_controller_.get();
385 }
Torne (Richard Coles)cedac222014-06-03 10:58:34 +0100386#if defined(OS_CHROMEOS) && defined(USE_X11)
387 TouchTransformerController* touch_transformer_controller() {
388 return touch_transformer_controller_.get();
389 }
390#endif // defined(OS_CHROMEOS) && defined(USE_X11)
Ben Murdochc5cede92014-04-10 11:22:14 +0100391 MouseCursorEventFilter* mouse_cursor_filter() {
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000392 return mouse_cursor_filter_.get();
393 }
Ben Murdochc5cede92014-04-10 11:22:14 +0100394 EventTransformationHandler* event_transformation_handler() {
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000395 return event_transformation_handler_.get();
396 }
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000397 ::wm::CursorManager* cursor_manager() { return &cursor_manager_; }
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000398
399 ShellDelegate* delegate() { return delegate_.get(); }
400
401 UserWallpaperDelegate* user_wallpaper_delegate() {
402 return user_wallpaper_delegate_.get();
403 }
404
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100405 SessionStateDelegate* session_state_delegate() {
406 return session_state_delegate_.get();
407 }
408
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000409 AccessibilityDelegate* accessibility_delegate() {
410 return accessibility_delegate_.get();
411 }
412
413 NewWindowDelegate* new_window_delegate() {
414 return new_window_delegate_.get();
415 }
416
Torne (Richard Coles)0f1bc082013-11-06 12:27:47 +0000417 MediaDelegate* media_delegate() {
418 return media_delegate_.get();
419 }
420
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000421 HighContrastController* high_contrast_controller() {
422 return high_contrast_controller_.get();
423 }
424
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000425 MagnificationController* magnification_controller() {
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000426 return magnification_controller_.get();
427 }
428
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000429 PartialMagnificationController* partial_magnification_controller() {
430 return partial_magnification_controller_.get();
431 }
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +0100432
433 AutoclickController* autoclick_controller() {
434 return autoclick_controller_.get();
435 }
436
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000437 aura::client::ActivationClient* activation_client() {
438 return activation_client_;
439 }
440
Torne (Richard Coles)a3f6a492013-12-18 16:25:09 +0000441 ShelfItemDelegateManager* shelf_item_delegate_manager() {
442 return shelf_item_delegate_manager_.get();
Torne (Richard Coles)424c4d72013-08-30 15:14:49 +0100443 }
444
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000445 // Force the shelf to query for it's current visibility state.
446 void UpdateShelfVisibility();
447
448 // TODO(oshima): Define an interface to access shelf/launcher
449 // state, or just use Launcher.
450
451 // Sets/gets the shelf auto-hide behavior on |root_window|.
452 void SetShelfAutoHideBehavior(ShelfAutoHideBehavior behavior,
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000453 aura::Window* root_window);
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000454 ShelfAutoHideBehavior GetShelfAutoHideBehavior(
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000455 aura::Window* root_window) const;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000456
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000457 // Sets/gets shelf's alignment on |root_window|.
458 void SetShelfAlignment(ShelfAlignment alignment,
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000459 aura::Window* root_window);
460 ShelfAlignment GetShelfAlignment(aura::Window* root_window);
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000461
462 // Dims or undims the screen.
463 void SetDimming(bool should_dim);
464
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +0100465 // Notifies |observers_| when entering or exiting fullscreen mode in
466 // |root_window|.
467 void NotifyFullscreenStateChange(bool is_fullscreen,
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000468 aura::Window* root_window);
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +0100469
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000470 // Creates a modal background (a partially-opaque fullscreen window)
471 // on all displays for |window|.
472 void CreateModalBackground(aura::Window* window);
473
474 // Called when a modal window is removed. It will activate
475 // another modal window if any, or remove modal screens
476 // on all displays.
477 void OnModalWindowRemoved(aura::Window* removed);
478
479 // Returns WebNotificationTray on the primary root window.
480 WebNotificationTray* GetWebNotificationTray();
481
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000482 // Does the primary display have status area?
483 bool HasPrimaryStatusArea();
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000484
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000485 // Returns the system tray on primary display.
486 SystemTray* GetPrimarySystemTray();
487
488 SystemTrayDelegate* system_tray_delegate() {
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000489 return system_tray_delegate_.get();
490 }
491
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000492 SystemTrayNotifier* system_tray_notifier() {
493 return system_tray_notifier_.get();
494 }
495
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000496 static void set_initially_hide_cursor(bool hide) {
497 initially_hide_cursor_ = hide;
498 }
499
Ben Murdochc5cede92014-04-10 11:22:14 +0100500 ResizeShadowController* resize_shadow_controller() {
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000501 return resize_shadow_controller_.get();
502 }
503
504 // Made available for tests.
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000505 ::wm::ShadowController* shadow_controller() {
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000506 return shadow_controller_.get();
507 }
508
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000509 // Starts the animation that occurs on first login.
510 void DoInitialWorkspaceAnimation();
511
Ben Murdochc5cede92014-04-10 11:22:14 +0100512 AccelerometerController* accelerometer_controller() {
513 return accelerometer_controller_.get();
514 }
515
516 MaximizeModeController* maximize_mode_controller() {
517 return maximize_mode_controller_.get();
518 }
519
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000520#if defined(OS_CHROMEOS)
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000521 // TODO(oshima): Move these objects to DisplayController.
Ben Murdochc5cede92014-04-10 11:22:14 +0100522 ui::DisplayConfigurator* display_configurator() {
523 return display_configurator_.get();
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000524 }
Bo Liu5c02ac12014-05-01 10:37:37 -0700525 DisplayConfiguratorAnimation* display_configurator_animation() {
526 return display_configurator_animation_.get();
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000527 }
Ben Murdochc5cede92014-04-10 11:22:14 +0100528 DisplayErrorObserver* display_error_observer() {
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000529 return display_error_observer_.get();
530 }
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000531
Ben Murdochc5cede92014-04-10 11:22:14 +0100532 ResolutionNotificationController* resolution_notification_controller() {
Ben Murdochba5b9a62013-08-12 14:20:17 +0100533 return resolution_notification_controller_.get();
534 }
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000535
Ben Murdochc5cede92014-04-10 11:22:14 +0100536 LogoutConfirmationController* logout_confirmation_controller() {
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000537 return logout_confirmation_controller_.get();
538 }
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000539#endif // defined(OS_CHROMEOS)
Ben Murdochba5b9a62013-08-12 14:20:17 +0100540
Torne (Richard Coles)f2477e02013-11-28 11:55:43 +0000541 ShelfModel* shelf_model() {
542 return shelf_model_.get();
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000543 }
544
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +0100545 WindowPositioner* window_positioner() {
546 return window_positioner_.get();
547 }
548
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000549 // Returns the launcher delegate, creating if necesary.
Torne (Richard Coles)a3f6a492013-12-18 16:25:09 +0000550 ShelfDelegate* GetShelfDelegate();
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000551
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000552 UserMetricsRecorder* metrics() {
553 return user_metrics_recorder_.get();
554 }
555
Ben Murdocheb525c52013-07-10 11:40:50 +0100556 void SetTouchHudProjectionEnabled(bool enabled);
557
558 bool is_touch_hud_projection_enabled() const {
559 return is_touch_hud_projection_enabled_;
560 }
561
Torne (Richard Coles)8bcbed82013-10-22 16:41:35 +0100562#if defined(OS_CHROMEOS)
563 // Creates instance of FirstRunHelper. Caller is responsible for deleting
564 // returned object.
565 ash::FirstRunHelper* CreateFirstRunHelper();
Torne (Richard Coles)f2477e02013-11-28 11:55:43 +0000566
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000567 // Toggles cursor compositing on/off. Native cursor is disabled when cursor
568 // compositing is enabled, and vice versa.
569 void SetCursorCompositingEnabled(bool enabled);
570
571 StickyKeysController* sticky_keys_controller() {
572 return sticky_keys_controller_.get();
Torne (Richard Coles)f2477e02013-11-28 11:55:43 +0000573 }
Torne (Richard Coles)8bcbed82013-10-22 16:41:35 +0100574#endif // defined(OS_CHROMEOS)
575
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000576 GPUSupport* gpu_support() { return gpu_support_.get(); }
577
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000578 private:
579 FRIEND_TEST_ALL_PREFIXES(ExtendedDesktopTest, TestCursor);
580 FRIEND_TEST_ALL_PREFIXES(WindowManagerTest, MouseEventCursors);
581 FRIEND_TEST_ALL_PREFIXES(WindowManagerTest, TransformActivate);
Ben Murdochc5cede92014-04-10 11:22:14 +0100582 friend class RootWindowController;
583 friend class ScopedTargetRootWindow;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000584 friend class test::ShellTestApi;
585 friend class shell::WindowWatcher;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000586
587 typedef std::pair<aura::Window*, gfx::Rect> WindowAndBoundsPair;
588
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100589 // Takes ownership of |delegate|.
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000590 explicit Shell(ShellDelegate* delegate);
591 virtual ~Shell();
592
Torne (Richard Coles)cedac222014-06-03 10:58:34 +0100593 void Init(const ShellInitParams& init_params);
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000594
Torne (Richard Coles)f2477e02013-11-28 11:55:43 +0000595 // Initializes virtual keyboard controller.
596 void InitKeyboard();
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +0100597
Torne (Richard Coles)8bcbed82013-10-22 16:41:35 +0100598 // Initializes the root window so that it can host browser windows.
Torne (Richard Coles)f2477e02013-11-28 11:55:43 +0000599 void InitRootWindow(aura::Window* root_window);
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000600
Ben Murdochc5cede92014-04-10 11:22:14 +0100601 // ash::SystemModalContainerEventFilterDelegate overrides:
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000602 virtual bool CanWindowReceiveEvents(aura::Window* window) OVERRIDE;
603
604 // Overridden from ui::EventTarget:
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000605 virtual bool CanAcceptEvent(const ui::Event& event) OVERRIDE;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000606 virtual EventTarget* GetParentTarget() OVERRIDE;
Torne (Richard Coles)a3f6a492013-12-18 16:25:09 +0000607 virtual scoped_ptr<ui::EventTargetIterator> GetChildIterator() const OVERRIDE;
608 virtual ui::EventTargeter* GetEventTargeter() OVERRIDE;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000609 virtual void OnEvent(ui::Event* event) OVERRIDE;
610
611 // Overridden from aura::client::ActivationChangeObserver:
612 virtual void OnWindowActivated(aura::Window* gained_active,
613 aura::Window* lost_active) OVERRIDE;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000614
615 static Shell* instance_;
616
617 // If set before the Shell is initialized, the mouse cursor will be hidden
618 // when the screen is initially created.
619 static bool initially_hide_cursor_;
620
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +0100621 // When no explicit target display/RootWindow is given, new windows are
622 // created on |scoped_target_root_window_| , unless NULL in
623 // which case they are created on |target_root_window_|.
624 // |target_root_window_| never becomes NULL during the session.
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000625 aura::Window* target_root_window_;
626 aura::Window* scoped_target_root_window_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000627
628 // The CompoundEventFilter owned by aura::Env object.
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000629 scoped_ptr< ::wm::CompoundEventFilter> env_filter_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000630
631 std::vector<WindowAndBoundsPair> to_restore_;
632
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000633 scoped_ptr<UserMetricsRecorder> user_metrics_recorder_;
Torne (Richard Coles)cedac222014-06-03 10:58:34 +0100634 scoped_ptr< ::wm::NestedAcceleratorController> nested_accelerator_controller_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000635 scoped_ptr<AcceleratorController> accelerator_controller_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000636 scoped_ptr<ShellDelegate> delegate_;
637 scoped_ptr<SystemTrayDelegate> system_tray_delegate_;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000638 scoped_ptr<SystemTrayNotifier> system_tray_notifier_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000639 scoped_ptr<UserWallpaperDelegate> user_wallpaper_delegate_;
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100640 scoped_ptr<SessionStateDelegate> session_state_delegate_;
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000641 scoped_ptr<AccessibilityDelegate> accessibility_delegate_;
642 scoped_ptr<NewWindowDelegate> new_window_delegate_;
Torne (Richard Coles)0f1bc082013-11-06 12:27:47 +0000643 scoped_ptr<MediaDelegate> media_delegate_;
Torne (Richard Coles)a3f6a492013-12-18 16:25:09 +0000644 scoped_ptr<ShelfDelegate> shelf_delegate_;
645 scoped_ptr<ShelfItemDelegateManager> shelf_item_delegate_manager_;
Ben Murdochc5cede92014-04-10 11:22:14 +0100646 scoped_ptr<ShelfWindowWatcher> shelf_window_watcher_;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000647
Torne (Richard Coles)f2477e02013-11-28 11:55:43 +0000648 scoped_ptr<ShelfModel> shelf_model_;
649 scoped_ptr<WindowPositioner> window_positioner_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000650
Ben Murdochc5cede92014-04-10 11:22:14 +0100651 scoped_ptr<AppListController> app_list_controller_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000652
Ben Murdochc5cede92014-04-10 11:22:14 +0100653 scoped_ptr<DragDropController> drag_drop_controller_;
654 scoped_ptr<ResizeShadowController> resize_shadow_controller_;
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000655 scoped_ptr< ::wm::ShadowController> shadow_controller_;
656 scoped_ptr< ::wm::VisibilityController> visibility_controller_;
657 scoped_ptr< ::wm::WindowModalityController> window_modality_controller_;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000658 scoped_ptr<views::corewm::TooltipController> tooltip_controller_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000659 scoped_ptr<DesktopBackgroundController> desktop_background_controller_;
660 scoped_ptr<PowerButtonController> power_button_controller_;
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100661 scoped_ptr<LockStateController> lock_state_controller_;
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +0100662 scoped_ptr<MruWindowTracker> mru_window_tracker_;
Ben Murdochc5cede92014-04-10 11:22:14 +0100663 scoped_ptr< ::wm::UserActivityDetector> user_activity_detector_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000664 scoped_ptr<VideoDetector> video_detector_;
Torne (Richard Coles)cedac222014-06-03 10:58:34 +0100665 scoped_ptr<WindowCycleController> window_cycle_controller_;
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +0100666 scoped_ptr<WindowSelectorController> window_selector_controller_;
Ben Murdochc5cede92014-04-10 11:22:14 +0100667 scoped_ptr<FocusCycler> focus_cycler_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000668 scoped_ptr<DisplayController> display_controller_;
669 scoped_ptr<HighContrastController> high_contrast_controller_;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000670 scoped_ptr<MagnificationController> magnification_controller_;
671 scoped_ptr<PartialMagnificationController> partial_magnification_controller_;
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +0100672 scoped_ptr<AutoclickController> autoclick_controller_;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000673 scoped_ptr<aura::client::FocusClient> focus_client_;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000674 aura::client::ActivationClient* activation_client_;
Ben Murdocha02191e2014-04-16 11:17:03 +0100675
Ben Murdochc5cede92014-04-10 11:22:14 +0100676 scoped_ptr<MouseCursorEventFilter> mouse_cursor_filter_;
677 scoped_ptr<ScreenPositionController> screen_position_controller_;
678 scoped_ptr<SystemModalContainerEventFilter> modality_filter_;
679 scoped_ptr<EventClientImpl> event_client_;
680 scoped_ptr<EventTransformationHandler> event_transformation_handler_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000681
682 // An event filter that pre-handles key events while the partial
683 // screenshot UI or the keyboard overlay is active.
Ben Murdochc5cede92014-04-10 11:22:14 +0100684 scoped_ptr<OverlayEventFilter> overlay_filter_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000685
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +0100686 // An event filter for logging keyboard-related metrics.
Ben Murdochc5cede92014-04-10 11:22:14 +0100687 scoped_ptr<KeyboardUMAEventFilter> keyboard_metrics_filter_;
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +0100688
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000689 // An event filter which handles moving and resizing windows.
690 scoped_ptr<ToplevelWindowEventHandler> toplevel_window_event_handler_;
691
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000692 // An event filter which handles system level gestures
Ben Murdochc5cede92014-04-10 11:22:14 +0100693 scoped_ptr<SystemGestureEventFilter> system_gesture_filter_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000694
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000695 // An event filter that pre-handles global accelerators.
Torne (Richard Coles)cedac222014-06-03 10:58:34 +0100696 scoped_ptr< ::wm::AcceleratorFilter> accelerator_filter_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000697
698 // An event filter that pre-handles all key events to send them to an IME.
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000699 scoped_ptr< ::wm::InputMethodEventFilter> input_method_filter_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000700
Ben Murdochc5cede92014-04-10 11:22:14 +0100701 scoped_ptr<DisplayManager> display_manager_;
702 scoped_ptr<base::WeakPtrFactory<DisplayManager> >
Torne (Richard Coles)1e9bf3e2013-10-31 11:16:26 +0000703 weak_display_manager_factory_;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000704
Ben Murdochc5cede92014-04-10 11:22:14 +0100705 scoped_ptr<LocaleNotificationController> locale_notification_controller_;
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +0100706
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000707 // The maximized window manager (if enabled).
Ben Murdochc5cede92014-04-10 11:22:14 +0100708 scoped_ptr<MaximizeModeWindowManager> maximize_mode_window_manager_;
709
710 scoped_ptr<AccelerometerController> accelerometer_controller_;
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000711
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +0100712#if defined(OS_CHROMEOS)
Ben Murdochc5cede92014-04-10 11:22:14 +0100713 scoped_ptr<PowerEventObserver> power_event_observer_;
Ben Murdoch0529e5d2014-04-24 10:50:13 +0100714 scoped_ptr<ui::UserActivityPowerManagerNotifier> user_activity_notifier_;
Ben Murdochc5cede92014-04-10 11:22:14 +0100715 scoped_ptr<VideoActivityNotifier> video_activity_notifier_;
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000716 scoped_ptr<StickyKeysController> sticky_keys_controller_;
Ben Murdochc5cede92014-04-10 11:22:14 +0100717 scoped_ptr<ResolutionNotificationController>
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000718 resolution_notification_controller_;
Ben Murdochc5cede92014-04-10 11:22:14 +0100719 scoped_ptr<BluetoothNotificationController>
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000720 bluetooth_notification_controller_;
Ben Murdochc5cede92014-04-10 11:22:14 +0100721 scoped_ptr<LogoutConfirmationController> logout_confirmation_controller_;
722 scoped_ptr<LastWindowClosedLogoutReminder>
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000723 last_window_closed_logout_reminder_;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000724 // Controls video output device state.
Ben Murdochc5cede92014-04-10 11:22:14 +0100725 scoped_ptr<ui::DisplayConfigurator> display_configurator_;
Bo Liu5c02ac12014-05-01 10:37:37 -0700726 scoped_ptr<DisplayConfiguratorAnimation> display_configurator_animation_;
Ben Murdochc5cede92014-04-10 11:22:14 +0100727 scoped_ptr<DisplayErrorObserver> display_error_observer_;
728 scoped_ptr<ProjectingObserver> projecting_observer_;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000729
Torne (Richard Coles)3551c9c2013-08-23 16:39:15 +0100730 // Listens for output changes and updates the display manager.
Ben Murdochc5cede92014-04-10 11:22:14 +0100731 scoped_ptr<DisplayChangeObserver> display_change_observer_;
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000732
Ben Murdocheffb81e2014-03-31 11:51:25 +0100733#if defined(USE_X11)
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000734 scoped_ptr<ui::EventHandler> magnifier_key_scroll_handler_;
735 scoped_ptr<ui::EventHandler> speech_feedback_handler_;
Torne (Richard Coles)cedac222014-06-03 10:58:34 +0100736 scoped_ptr<TouchTransformerController> touch_transformer_controller_;
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +0100737#endif // defined(USE_X11)
738#endif // defined(OS_CHROMEOS)
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000739
Ben Murdochc5cede92014-04-10 11:22:14 +0100740 scoped_ptr<MaximizeModeController> maximize_mode_controller_;
741
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000742 // |native_cursor_manager_| is owned by |cursor_manager_|, but we keep a
743 // pointer to vend to test code.
744 AshNativeCursorManager* native_cursor_manager_;
Ben Murdochc5cede92014-04-10 11:22:14 +0100745
746// Cursor may be hidden on certain key events in ChromeOS, whereas we never hide
747// the cursor on Windows.
748#if defined(OS_CHROMEOS)
749 CursorManager cursor_manager_;
750#else // !defined(OS_CHROMEOS)
Torne (Richard Coles)a1401312014-03-18 10:20:56 +0000751 ::wm::CursorManager cursor_manager_;
Ben Murdochc5cede92014-04-10 11:22:14 +0100752#endif // defined(OS_CHROMEOS)
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000753
754 ObserverList<ShellObserver> observers_;
755
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000756 // For testing only: simulate that a modal window is open
757 bool simulate_modal_window_open_for_testing_;
758
Ben Murdocheb525c52013-07-10 11:40:50 +0100759 bool is_touch_hud_projection_enabled_;
760
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +0000761 // Injected content::GPUDataManager support.
762 scoped_ptr<GPUSupport> gpu_support_;
763
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000764 DISALLOW_COPY_AND_ASSIGN(Shell);
765};
766
767} // namespace ash
768
769#endif // ASH_SHELL_H_