blob: 5add4bc01ed876b94a334ae50b7d39ada228f5f0 [file] [log] [blame]
// Copyright 2017 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 CHROMECAST_GRAPHICS_CAST_WINDOW_MANAGER_AURA_H_
#define CHROMECAST_GRAPHICS_CAST_WINDOW_MANAGER_AURA_H_
#include <memory>
#include "base/macros.h"
#include "chromecast/graphics/cast_window_manager.h"
#include "ui/aura/client/window_parenting_client.h"
namespace aura {
namespace client {
class DefaultCaptureClient;
class ScreenPositionClient;
} // namespace client
} // namespace aura
namespace chromecast {
class CastFocusClientAura;
class CastSystemGestureEventHandler;
class CastWindowTreeHost;
class CastWindowManagerAura : public CastWindowManager,
public aura::client::WindowParentingClient {
public:
~CastWindowManagerAura() override;
// CastWindowManager implementation:
void TearDown() override;
void AddWindow(gfx::NativeView window) override;
gfx::NativeView GetRootWindow() override;
void SetWindowId(gfx::NativeView window, WindowId window_id) override;
void InjectEvent(ui::Event* event) override;
// aura::client::WindowParentingClient implementation:
aura::Window* GetDefaultParent(aura::Window* window,
const gfx::Rect& bounds) override;
void AddSideSwipeGestureHandler(
CastSideSwipeGestureHandlerInterface* handler) override;
void RemoveSideSwipeGestureHandler(
CastSideSwipeGestureHandlerInterface* handler) override;
void SetColorInversion(bool enable) override;
private:
friend class CastWindowManager;
// This class should only be instantiated by CastWindowManager::Create.
explicit CastWindowManagerAura(bool enable_input);
void Setup();
const bool enable_input_;
std::unique_ptr<CastWindowTreeHost> window_tree_host_;
std::unique_ptr<aura::client::DefaultCaptureClient> capture_client_;
std::unique_ptr<CastFocusClientAura> focus_client_;
std::unique_ptr<aura::client::ScreenPositionClient> screen_position_client_;
std::unique_ptr<CastSystemGestureEventHandler> system_gesture_event_handler_;
DISALLOW_COPY_AND_ASSIGN(CastWindowManagerAura);
};
} // namespace chromecast
#endif // CHROMECAST_GRAPHICS_CAST_WINDOW_MANAGER_AURA_H_