Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef UI_OZONE_PLATFORM_WAYLAND_WAYLAND_DISPLAY_H_ | 5 #ifndef UI_OZONE_PLATFORM_WAYLAND_WAYLAND_DISPLAY_H_ |
| 6 #define UI_OZONE_PLATFORM_WAYLAND_WAYLAND_DISPLAY_H_ | 6 #define UI_OZONE_PLATFORM_WAYLAND_WAYLAND_DISPLAY_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "base/message_loop/message_pump_libevent.h" | 10 #include "base/message_loop/message_pump_libevent.h" |
| 11 #include "ui/events/platform/platform_event_source.h" | 11 #include "ui/events/platform/platform_event_source.h" |
| 12 #include "ui/gfx/native_widget_types.h" | 12 #include "ui/gfx/native_widget_types.h" |
| 13 #include "ui/ozone/platform/wayland/wayland_object.h" | 13 #include "ui/ozone/platform/wayland/wayland_object.h" |
| 14 #include "ui/ozone/platform/wayland/wayland_pointer.h" | 14 #include "ui/ozone/platform/wayland/wayland_pointer.h" |
| 15 #include "ui/ozone/platform/wayland/wayland_screen.h" | |
| 15 | 16 |
| 16 namespace ui { | 17 namespace ui { |
| 17 | 18 |
| 18 class WaylandWindow; | 19 class WaylandWindow; |
| 19 | 20 |
| 20 class WaylandDisplay : public PlatformEventSource, | 21 class WaylandDisplay : public PlatformEventSource, |
| 21 public base::MessagePumpLibevent::Watcher { | 22 public base::MessagePumpLibevent::Watcher { |
| 22 public: | 23 public: |
| 23 WaylandDisplay(); | 24 WaylandDisplay(); |
| 24 ~WaylandDisplay() override; | 25 ~WaylandDisplay() override; |
| 25 | 26 |
| 26 bool Initialize(); | 27 bool Initialize(); |
| 27 bool StartProcessingEvents(); | 28 bool StartProcessingEvents(); |
| 28 | 29 |
| 29 // Schedules a flush of the Wayland connection. | 30 // Schedules a flush of the Wayland connection. |
| 30 void ScheduleFlush(); | 31 void ScheduleFlush(); |
| 31 | 32 |
| 32 wl_display* display() { return display_.get(); } | 33 wl_display* display() { return display_.get(); } |
| 33 wl_compositor* compositor() { return compositor_.get(); } | 34 wl_compositor* compositor() { return compositor_.get(); } |
| 34 wl_shm* shm() { return shm_.get(); } | 35 wl_shm* shm() { return shm_.get(); } |
| 35 xdg_shell* shell() { return shell_.get(); } | 36 xdg_shell* shell() { return shell_.get(); } |
| 36 | 37 |
| 37 WaylandWindow* GetWindow(gfx::AcceleratedWidget widget); | 38 WaylandWindow* GetWindow(gfx::AcceleratedWidget widget); |
| 38 void AddWindow(gfx::AcceleratedWidget widget, WaylandWindow* window); | 39 void AddWindow(gfx::AcceleratedWidget widget, WaylandWindow* window); |
| 39 void RemoveWindow(gfx::AcceleratedWidget widget); | 40 void RemoveWindow(gfx::AcceleratedWidget widget); |
| 40 | 41 |
| 42 const std::vector<WaylandScreen*>& GetScreenList() const; | |
|
rjkroege
2016/06/14 23:29:48
you need method comments
| |
| 43 WaylandScreen* PrimaryScreen() const; | |
| 44 | |
| 41 private: | 45 private: |
| 42 void Flush(); | 46 void Flush(); |
| 43 void DispatchUiEvent(Event* event); | 47 void DispatchUiEvent(Event* event); |
| 44 | 48 |
| 45 // PlatformEventSource | 49 // PlatformEventSource |
| 46 void OnDispatcherListChanged() override; | 50 void OnDispatcherListChanged() override; |
| 47 | 51 |
| 48 // base::MessagePumpLibevent::Watcher | 52 // base::MessagePumpLibevent::Watcher |
| 49 void OnFileCanReadWithoutBlocking(int fd) override; | 53 void OnFileCanReadWithoutBlocking(int fd) override; |
| 50 void OnFileCanWriteWithoutBlocking(int fd) override; | 54 void OnFileCanWriteWithoutBlocking(int fd) override; |
| 51 | 55 |
| 52 // wl_registry_listener | 56 // wl_registry_listener |
| 53 static void Global(void* data, | 57 static void Global(void* data, |
| 54 wl_registry* registry, | 58 wl_registry* registry, |
| 55 uint32_t name, | 59 uint32_t name, |
| 56 const char* interface, | 60 const char* interface, |
| 57 uint32_t version); | 61 uint32_t version); |
| 58 static void GlobalRemove(void* data, wl_registry* registry, uint32_t name); | 62 static void GlobalRemove(void* data, wl_registry* registry, uint32_t name); |
| 59 | 63 |
| 60 // wl_seat_listener | 64 // wl_seat_listener |
| 61 static void Capabilities(void* data, wl_seat* seat, uint32_t capabilities); | 65 static void Capabilities(void* data, wl_seat* seat, uint32_t capabilities); |
| 62 static void Name(void* data, wl_seat* seat, const char* name); | 66 static void Name(void* data, wl_seat* seat, const char* name); |
| 63 | 67 |
| 64 // xdg_shell_listener | 68 // xdg_shell_listener |
| 65 static void Ping(void* data, xdg_shell* shell, uint32_t serial); | 69 static void Ping(void* data, xdg_shell* shell, uint32_t serial); |
| 66 | 70 |
| 67 std::map<gfx::AcceleratedWidget, WaylandWindow*> window_map_; | 71 std::map<gfx::AcceleratedWidget, WaylandWindow*> window_map_; |
| 72 static WaylandDisplay* instance_; | |
| 68 | 73 |
| 69 wl::Object<wl_display> display_; | 74 wl::Object<wl_display> display_; |
| 70 wl::Object<wl_registry> registry_; | 75 wl::Object<wl_registry> registry_; |
| 71 wl::Object<wl_compositor> compositor_; | 76 wl::Object<wl_compositor> compositor_; |
| 72 wl::Object<wl_seat> seat_; | 77 wl::Object<wl_seat> seat_; |
| 73 wl::Object<wl_shm> shm_; | 78 wl::Object<wl_shm> shm_; |
| 74 wl::Object<xdg_shell> shell_; | 79 wl::Object<xdg_shell> shell_; |
| 75 | 80 |
| 76 std::unique_ptr<WaylandPointer> pointer_; | 81 std::unique_ptr<WaylandPointer> pointer_; |
| 77 | 82 |
| 78 bool scheduled_flush_ = false; | 83 bool scheduled_flush_ = false; |
| 79 bool watching_ = false; | 84 bool watching_ = false; |
| 80 base::MessagePumpLibevent::FileDescriptorWatcher controller_; | 85 base::MessagePumpLibevent::FileDescriptorWatcher controller_; |
| 81 | 86 |
| 87 std::vector<WaylandScreen*> screen_list_; | |
| 88 | |
| 82 DISALLOW_COPY_AND_ASSIGN(WaylandDisplay); | 89 DISALLOW_COPY_AND_ASSIGN(WaylandDisplay); |
| 83 }; | 90 }; |
| 84 | 91 |
| 85 } // namespace ui | 92 } // namespace ui |
| 86 | 93 |
| 87 #endif // UI_OZONE_PLATFORM_WAYLAND_WAYLAND_DISPLAY_H_ | 94 #endif // UI_OZONE_PLATFORM_WAYLAND_WAYLAND_DISPLAY_H_ |
| OLD | NEW |