| // 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. |
| |
| #include "ui/platform_window/stub/stub_window.h" |
| |
| #include "base/logging.h" |
| #include "ui/platform_window/platform_window_delegate.h" |
| |
| namespace ui { |
| |
| StubWindow::StubWindow(PlatformWindowDelegate* delegate, |
| bool use_default_accelerated_widget, |
| const gfx::Rect& bounds) |
| : delegate_(delegate), bounds_(bounds) { |
| DCHECK(delegate); |
| if (use_default_accelerated_widget) |
| delegate_->OnAcceleratedWidgetAvailable(gfx::kNullAcceleratedWidget); |
| } |
| |
| StubWindow::~StubWindow() {} |
| |
| void StubWindow::Show() {} |
| |
| void StubWindow::Hide() {} |
| |
| void StubWindow::Close() { |
| delegate_->OnClosed(); |
| } |
| |
| void StubWindow::PrepareForShutdown() {} |
| |
| void StubWindow::SetBounds(const gfx::Rect& bounds) { |
| // Even if the pixel bounds didn't change this call to the delegate should |
| // still happen. The device scale factor may have changed which effectively |
| // changes the bounds. |
| bounds_ = bounds; |
| delegate_->OnBoundsChanged(bounds); |
| } |
| |
| gfx::Rect StubWindow::GetBounds() { |
| return bounds_; |
| } |
| |
| void StubWindow::SetTitle(const base::string16& title) {} |
| |
| void StubWindow::SetCapture() {} |
| |
| void StubWindow::ReleaseCapture() {} |
| |
| bool StubWindow::HasCapture() const { |
| return false; |
| } |
| |
| void StubWindow::ToggleFullscreen() {} |
| |
| void StubWindow::Maximize() {} |
| |
| void StubWindow::Minimize() {} |
| |
| void StubWindow::Restore() {} |
| |
| PlatformWindowState StubWindow::GetPlatformWindowState() const { |
| return PlatformWindowState::PLATFORM_WINDOW_STATE_UNKNOWN; |
| } |
| |
| void StubWindow::SetCursor(PlatformCursor cursor) {} |
| |
| void StubWindow::MoveCursorTo(const gfx::Point& location) {} |
| |
| void StubWindow::ConfineCursorToBounds(const gfx::Rect& bounds) {} |
| |
| PlatformImeController* StubWindow::GetPlatformImeController() { |
| return nullptr; |
| } |
| |
| void StubWindow::SetRestoredBoundsInPixels(const gfx::Rect& bounds) {} |
| |
| gfx::Rect StubWindow::GetRestoredBoundsInPixels() const { |
| return gfx::Rect(); |
| } |
| |
| } // namespace ui |