blob: c0437311ca5060206e51cfcb80e83eb835bf1ad8 [file] [log] [blame]
// Copyright 2015 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_SCREEN_H_
#define CHROMECAST_GRAPHICS_CAST_SCREEN_H_
#include "base/macros.h"
#include "base/optional.h"
#include "chromecast/public/graphics_types.h"
#include "ui/display/display.h"
#include "ui/display/screen_base.h"
namespace chromecast {
namespace shell {
class CastBrowserMainParts;
} // namespace shell
// CastScreen is Chromecast's own minimal implementation of display::Screen.
// Right now, it almost exactly duplicates the behavior of aura's TestScreen
// class for necessary methods. The instantiation of CastScreen occurs in
// CastBrowserMainParts, where its ownership is assigned to CastBrowserProcess.
// To then subsequently access CastScreen, see CastBrowerProcess.
class CastScreen : public display::ScreenBase {
public:
CastScreen();
~CastScreen() override;
// display::Screen overrides:
gfx::Point GetCursorScreenPoint() override;
bool IsWindowUnderCursor(gfx::NativeWindow window) override;
gfx::NativeWindow GetWindowAtScreenPoint(const gfx::Point& point) override;
display::Display GetDisplayNearestWindow(
gfx::NativeWindow window) const override;
void OnDisplayChanged(int64_t display_id,
float scale_factor,
display::Display::Rotation rotation,
const gfx::Rect& bounds);
// Temporarily override the primary display settings with new bounds, scale
// factor, and rotation.
// The original display settings are stashed for later retrieval.
void OverridePrimaryDisplaySettings(const gfx::Rect& bounds,
float scale_factor,
display::Display::Rotation rotation);
// Restore stashed display settings stored by OverridePrimaryDisplaySettings.
// Returns true if stashed settings were applied. False if none were
// available.
bool RestorePrimaryDisplaySettings();
private:
base::Optional<display::Display> stashed_display_settings_;
DISALLOW_COPY_AND_ASSIGN(CastScreen);
};
} // namespace chromecast
#endif // CHROMECAST_GRAPHICS_CAST_SCREEN_H_