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

Unified Diff: ui/ozone/platform/wayland/wayland_window.h

Issue 1610683003: Add initial SHM-only Wayland Ozone implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months 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/ozone/platform/wayland/wayland_surface_factory.cc ('k') | ui/ozone/platform/wayland/wayland_window.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/platform/wayland/wayland_window.h
diff --git a/ui/ozone/platform/wayland/wayland_window.h b/ui/ozone/platform/wayland/wayland_window.h
new file mode 100644
index 0000000000000000000000000000000000000000..8b8d5a20871dee01f3e7c10340940cec6a8a657f
--- /dev/null
+++ b/ui/ozone/platform/wayland/wayland_window.h
@@ -0,0 +1,76 @@
+// Copyright 2016 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 UI_OZONE_PLATFORM_WAYLAND_WAYLAND_WINDOW_H_
+#define UI_OZONE_PLATFORM_WAYLAND_WAYLAND_WINDOW_H_
+
+#include "ui/gfx/geometry/rect.h"
+#include "ui/gfx/native_widget_types.h"
+#include "ui/ozone/platform/wayland/wayland_object.h"
+#include "ui/platform_window/platform_window.h"
+
+namespace ui {
+
+class WaylandDisplay;
+
+class WaylandWindow : public PlatformWindow {
+ public:
+ WaylandWindow(PlatformWindowDelegate* delegate,
+ WaylandDisplay* display,
+ const gfx::Rect& bounds);
+ ~WaylandWindow() override;
+
+ bool Initialize();
+
+ wl_surface* GetSurface();
+ gfx::AcceleratedWidget GetWidget();
+
+ // Apply the bounds specified in the most recent configure event. This should
+ // be called after processing all pending events in the wayland connection.
+ void ApplyPendingBounds();
+
+ // PlatformWindow
+ void Show() override;
+ void Hide() override;
+ void Close() override;
+ void SetBounds(const gfx::Rect& bounds) override;
+ gfx::Rect GetBounds() override;
+ void SetTitle(const base::string16& title) override;
+ void SetCapture() override;
+ void ReleaseCapture() override;
+ void ToggleFullscreen() override;
+ void Maximize() override;
+ void Minimize() override;
+ void Restore() override;
+ void SetCursor(PlatformCursor cursor) override;
+ void MoveCursorTo(const gfx::Point& location) override;
+ void ConfineCursorToBounds(const gfx::Rect& bounds) override;
+ PlatformImeController* GetPlatformImeController() override;
+
+ // xdg_surface_listener
+ static void Configure(void* data,
+ xdg_surface* obj,
+ int32_t width,
+ int32_t height,
+ wl_array* states,
+ uint32_t serial);
+ static void Close(void* data, xdg_surface* obj);
+
+ private:
+ PlatformWindowDelegate* delegate_;
+ WaylandDisplay* display_;
+
+ wl::Object<wl_surface> surface_;
+ wl::Object<xdg_surface> xdg_surface_;
+
+ gfx::Rect bounds_;
+ gfx::Rect pending_bounds_;
+ uint32_t pending_configure_serial_;
+
+ DISALLOW_COPY_AND_ASSIGN(WaylandWindow);
+};
+
+} // namespace ui
+
+#endif // UI_OZONE_PLATFORM_WAYLAND_WAYLAND_WINDOW_H_
« no previous file with comments | « ui/ozone/platform/wayland/wayland_surface_factory.cc ('k') | ui/ozone/platform/wayland/wayland_window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698