Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(254)

Unified Diff: ui/views/mus/platform_window_mus.cc

Issue 1405373005: views/mus: Move PlatformWindowMus into its own file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mus-example-focus-close
Patch Set: tot.merge Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/views/mus/platform_window_mus.h ('k') | ui/views/mus/window_tree_host_mus.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/mus/platform_window_mus.cc
diff --git a/ui/views/mus/platform_window_mus.cc b/ui/views/mus/platform_window_mus.cc
new file mode 100644
index 0000000000000000000000000000000000000000..5bc464788ac32396d1da8ec1d6e601f16e971498
--- /dev/null
+++ b/ui/views/mus/platform_window_mus.cc
@@ -0,0 +1,169 @@
+// 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/views/mus/platform_window_mus.h"
+
+#include "components/mus/public/cpp/property_type_converters.h"
+#include "components/mus/public/cpp/window_property.h"
+#include "components/mus/public/interfaces/window_manager.mojom.h"
+#include "mojo/converters/input_events/input_events_type_converters.h"
+#include "ui/platform_window/platform_window_delegate.h"
+#include "ui/views/mus/window_manager_connection.h"
+
+namespace views {
+
+namespace {
+void WindowManagerCallback(mus::mojom::WindowManagerErrorCode error_code) {}
+} // namespace
+
+PlatformWindowMus::PlatformWindowMus(ui::PlatformWindowDelegate* delegate,
+ mus::Window* mus_window)
+ : delegate_(delegate),
+ mus_window_(mus_window),
+ show_state_(mus::mojom::SHOW_STATE_RESTORED) {
+ DCHECK(delegate_);
+ DCHECK(mus_window_);
+ mus_window_->AddObserver(this);
+
+ delegate_->OnAcceleratedWidgetAvailable(
+ gfx::kNullAcceleratedWidget,
+ mus_window_->viewport_metrics().device_pixel_ratio);
+}
+
+PlatformWindowMus::~PlatformWindowMus() {
+ if (!mus_window_)
+ return;
+ mus_window_->RemoveObserver(this);
+ mus_window_->Destroy();
+}
+
+void PlatformWindowMus::SetShowState(mus::mojom::ShowState show_state) {
+ WindowManagerConnection::Get()->window_manager()->SetShowState(
+ mus_window_->id(), show_state, base::Bind(&WindowManagerCallback));
+}
+
+void PlatformWindowMus::Show() {
+ mus_window_->SetVisible(true);
+}
+
+void PlatformWindowMus::Hide() {
+ mus_window_->SetVisible(false);
+}
+
+void PlatformWindowMus::Close() {
+ NOTIMPLEMENTED();
+}
+
+void PlatformWindowMus::SetBounds(const gfx::Rect& bounds) {
+ mus_window_->SetBounds(bounds);
+}
+
+gfx::Rect PlatformWindowMus::GetBounds() {
+ return mus_window_->bounds();
+}
+
+void PlatformWindowMus::SetTitle(const base::string16& title) {
+ NOTIMPLEMENTED();
+}
+
+void PlatformWindowMus::SetCapture() {
+ NOTIMPLEMENTED();
+}
+
+void PlatformWindowMus::ReleaseCapture() {
+ NOTIMPLEMENTED();
+}
+
+void PlatformWindowMus::ToggleFullscreen() {
+ NOTIMPLEMENTED();
+}
+
+void PlatformWindowMus::Maximize() {
+ SetShowState(mus::mojom::SHOW_STATE_MAXIMIZED);
+}
+
+void PlatformWindowMus::Minimize() {
+ SetShowState(mus::mojom::SHOW_STATE_MINIMIZED);
+}
+
+void PlatformWindowMus::Restore() {
+ SetShowState(mus::mojom::SHOW_STATE_RESTORED);
+}
+
+void PlatformWindowMus::SetCursor(ui::PlatformCursor cursor) {
+ NOTIMPLEMENTED();
+}
+
+void PlatformWindowMus::MoveCursorTo(const gfx::Point& location) {
+ NOTIMPLEMENTED();
+}
+
+void PlatformWindowMus::ConfineCursorToBounds(const gfx::Rect& bounds) {
+ NOTIMPLEMENTED();
+}
+
+ui::PlatformImeController* PlatformWindowMus::GetPlatformImeController() {
+ return nullptr;
+}
+
+void PlatformWindowMus::OnWindowDestroyed(mus::Window* window) {
+ DCHECK_EQ(mus_window_, window);
+ delegate_->OnClosed();
+ mus_window_ = nullptr;
+}
+
+void PlatformWindowMus::OnWindowBoundsChanged(mus::Window* window,
+ const gfx::Rect& old_bounds,
+ const gfx::Rect& new_bounds) {
+ delegate_->OnBoundsChanged(new_bounds);
+}
+
+void PlatformWindowMus::OnWindowFocusChanged(mus::Window* gained_focus,
+ mus::Window* lost_focus) {
+ if (gained_focus == mus_window_)
+ delegate_->OnActivationChanged(true);
+ else if (lost_focus == mus_window_)
+ delegate_->OnActivationChanged(false);
+}
+
+void PlatformWindowMus::OnWindowInputEvent(mus::Window* view,
+ const mus::mojom::EventPtr& event) {
+ scoped_ptr<ui::Event> ui_event(event.To<scoped_ptr<ui::Event>>());
+ delegate_->DispatchEvent(ui_event.get());
+}
+
+void PlatformWindowMus::OnWindowSharedPropertyChanged(
+ mus::Window* window,
+ const std::string& name,
+ const std::vector<uint8_t>* old_data,
+ const std::vector<uint8_t>* new_data) {
+ if (name != mus::mojom::WindowManager::kShowState_Property)
+ return;
+ mus::mojom::ShowState show_state =
+ static_cast<mus::mojom::ShowState>(window->GetSharedProperty<int32_t>(
+ mus::mojom::WindowManager::kShowState_Property));
+ if (show_state == show_state_)
+ return;
+ show_state_ = show_state;
+ ui::PlatformWindowState state = ui::PLATFORM_WINDOW_STATE_UNKNOWN;
+ switch (show_state_) {
+ case mus::mojom::SHOW_STATE_MINIMIZED:
+ state = ui::PLATFORM_WINDOW_STATE_MINIMIZED;
+ break;
+ case mus::mojom::SHOW_STATE_MAXIMIZED:
+ state = ui::PLATFORM_WINDOW_STATE_MAXIMIZED;
+ break;
+ case mus::mojom::SHOW_STATE_RESTORED:
+ state = ui::PLATFORM_WINDOW_STATE_NORMAL;
+ break;
+ case mus::mojom::SHOW_STATE_IMMERSIVE:
+ case mus::mojom::SHOW_STATE_PRESENTATION:
+ // This may not be sufficient.
+ state = ui::PLATFORM_WINDOW_STATE_FULLSCREEN;
+ break;
+ }
+ delegate_->OnWindowStateChanged(state);
+}
+
+} // namespace views
« no previous file with comments | « ui/views/mus/platform_window_mus.h ('k') | ui/views/mus/window_tree_host_mus.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698