OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_VIEWS_WIDGET_DESKTOP_AURA_X11_DESKTOP_HANDLER_H_ | 5 #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_X11_DESKTOP_HANDLER_H_ |
6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_X11_DESKTOP_HANDLER_H_ | 6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_X11_DESKTOP_HANDLER_H_ |
7 | 7 |
8 #include <X11/Xlib.h> | 8 #include <X11/Xlib.h> |
9 // Get rid of a macro from Xlib.h that conflicts with Aura's RootWindow class. | 9 // Get rid of a macro from Xlib.h that conflicts with Aura's RootWindow class. |
10 #undef RootWindow | 10 #undef RootWindow |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 | 50 |
51 // Checks if the current active window is |window|. | 51 // Checks if the current active window is |window|. |
52 bool IsActiveWindow(::Window window) const; | 52 bool IsActiveWindow(::Window window) const; |
53 | 53 |
54 // Processes activation/focus related events. Some of these events are | 54 // Processes activation/focus related events. Some of these events are |
55 // dispatched to the X11 window dispatcher, and not to the X11 root-window | 55 // dispatched to the X11 window dispatcher, and not to the X11 root-window |
56 // dispatcher. The window dispatcher sends these events to here. | 56 // dispatcher. The window dispatcher sends these events to here. |
57 void ProcessXEvent(XEvent* event); | 57 void ProcessXEvent(XEvent* event); |
58 | 58 |
59 // ui::PlatformEventDispatcher | 59 // ui::PlatformEventDispatcher |
60 virtual bool CanDispatchEvent(const ui::PlatformEvent& event) override; | 60 bool CanDispatchEvent(const ui::PlatformEvent& event) override; |
61 virtual uint32_t DispatchEvent(const ui::PlatformEvent& event) override; | 61 uint32_t DispatchEvent(const ui::PlatformEvent& event) override; |
62 | 62 |
63 // Overridden from aura::EnvObserver: | 63 // Overridden from aura::EnvObserver: |
64 virtual void OnWindowInitialized(aura::Window* window) override; | 64 void OnWindowInitialized(aura::Window* window) override; |
65 virtual void OnWillDestroyEnv() override; | 65 void OnWillDestroyEnv() override; |
66 | 66 |
67 private: | 67 private: |
68 enum ActiveState { | 68 enum ActiveState { |
69 ACTIVE, | 69 ACTIVE, |
70 NOT_ACTIVE | 70 NOT_ACTIVE |
71 }; | 71 }; |
72 | 72 |
73 X11DesktopHandler(); | 73 X11DesktopHandler(); |
74 virtual ~X11DesktopHandler(); | 74 ~X11DesktopHandler() override; |
75 | 75 |
76 // Handles changes in activation. | 76 // Handles changes in activation. |
77 void OnActiveWindowChanged(::Window window, ActiveState active_state); | 77 void OnActiveWindowChanged(::Window window, ActiveState active_state); |
78 | 78 |
79 // Called when |window| has been created or destroyed. |window| may not be | 79 // Called when |window| has been created or destroyed. |window| may not be |
80 // managed by Chrome. | 80 // managed by Chrome. |
81 void OnWindowCreatedOrDestroyed(int event_type, XID window); | 81 void OnWindowCreatedOrDestroyed(int event_type, XID window); |
82 | 82 |
83 // The display and the native X window hosting the root window. | 83 // The display and the native X window hosting the root window. |
84 XDisplay* xdisplay_; | 84 XDisplay* xdisplay_; |
(...skipping 15 matching lines...) Expand all Loading... |
100 ui::X11AtomCache atom_cache_; | 100 ui::X11AtomCache atom_cache_; |
101 | 101 |
102 bool wm_supports_active_window_; | 102 bool wm_supports_active_window_; |
103 | 103 |
104 DISALLOW_COPY_AND_ASSIGN(X11DesktopHandler); | 104 DISALLOW_COPY_AND_ASSIGN(X11DesktopHandler); |
105 }; | 105 }; |
106 | 106 |
107 } // namespace views | 107 } // namespace views |
108 | 108 |
109 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_X11_DESKTOP_HANDLER_H_ | 109 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_X11_DESKTOP_HANDLER_H_ |
OLD | NEW |