// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef APPS_SHELL_BROWSER_SHELL_DESKTOP_CONTROLLER_H_ #define APPS_SHELL_BROWSER_SHELL_DESKTOP_CONTROLLER_H_ #include "base/basictypes.h" #include "base/compiler_specific.h" #include "base/memory/scoped_ptr.h" #include "ui/aura/client/window_tree_client.h" #include "ui/aura/window_tree_host_observer.h" #if defined(OS_CHROMEOS) #include "ui/display/chromeos/display_configurator.h" #endif namespace aura { class TestScreen; class Window; class WindowTreeHost; namespace client { class DefaultCaptureClient; class FocusClient; } } namespace content { class BrowserContext; } namespace gfx { class Size; } #if defined(OS_CHROMEOS) namespace ui { class UserActivityPowerManagerNotifier; } #endif namespace wm { class CompoundEventFilter; class CursorManager; class InputMethodEventFilter; class UserActivityDetector; } namespace apps { class ShellAppWindow; // Handles desktop-related tasks for app_shell. class ShellDesktopController : public aura::client::WindowTreeClient, public aura::WindowTreeHostObserver #if defined(OS_CHROMEOS) , public ui::DisplayConfigurator::Observer #endif { public: ShellDesktopController(); virtual ~ShellDesktopController(); // Returns the single instance of the desktop. (Stateless functions like // ShellAppWindowCreateFunction need to be able to access the desktop, so // we need a singleton somewhere). static ShellDesktopController* instance(); aura::WindowTreeHost* host() { return host_.get(); } // Creates the window that hosts the app. void CreateRootWindow(); // Creates a new app window and adds it to the desktop. The desktop maintains // ownership of the window. ShellAppWindow* CreateAppWindow(content::BrowserContext* context); // Closes and destroys the app window. void CloseAppWindow(); // Overridden from aura::client::WindowTreeClient: virtual aura::Window* GetDefaultParent(aura::Window* context, aura::Window* window, const gfx::Rect& bounds) OVERRIDE; #if defined(OS_CHROMEOS) // ui::DisplayConfigurator::Observer overrides. virtual void OnDisplayModeChanged(const std::vector< ui::DisplayConfigurator::DisplayState>& displays) OVERRIDE; #endif // aura::WindowTreeHostObserver overrides: virtual void OnHostCloseRequested(const aura::WindowTreeHost* host) OVERRIDE; protected: // Creates and sets the aura clients and window manager stuff. Subclass may // initialize different sets of the clients. virtual void InitWindowManager(); private: // Closes and destroys the root window hosting the app. void DestroyRootWindow(); // Returns the dimensions (in pixels) of the primary display, or an empty size // if the dimensions can't be determined or no display is connected. gfx::Size GetPrimaryDisplaySize(); #if defined(OS_CHROMEOS) scoped_ptr display_configurator_; #endif scoped_ptr test_screen_; scoped_ptr host_; scoped_ptr root_window_event_filter_; scoped_ptr capture_client_; scoped_ptr input_method_filter_; scoped_ptr focus_client_; scoped_ptr cursor_manager_; scoped_ptr user_activity_detector_; #if defined(OS_CHROMEOS) scoped_ptr user_activity_notifier_; #endif // The desktop supports a single app window. scoped_ptr app_window_; DISALLOW_COPY_AND_ASSIGN(ShellDesktopController); }; } // namespace apps #endif // APPS_SHELL_BROWSER_SHELL_DESKTOP_CONTROLLER_H_