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_AURA_WINDOW_TREE_HOST_X11_H_ | 5 #ifndef UI_AURA_WINDOW_TREE_HOST_X11_H_ |
6 #define UI_AURA_WINDOW_TREE_HOST_X11_H_ | 6 #define UI_AURA_WINDOW_TREE_HOST_X11_H_ |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "ui/aura/aura_export.h" | 9 #include "ui/aura/aura_export.h" |
10 #include "ui/aura/window_tree_host.h" | 10 #include "ui/aura/window_tree_host.h" |
(...skipping 21 matching lines...) Expand all Loading... |
32 class AURA_EXPORT WindowTreeHostX11 : public WindowTreeHost, | 32 class AURA_EXPORT WindowTreeHostX11 : public WindowTreeHost, |
33 public ui::EventSource, | 33 public ui::EventSource, |
34 public ui::PlatformEventDispatcher { | 34 public ui::PlatformEventDispatcher { |
35 | 35 |
36 public: | 36 public: |
37 explicit WindowTreeHostX11(const gfx::Rect& bounds); | 37 explicit WindowTreeHostX11(const gfx::Rect& bounds); |
38 virtual ~WindowTreeHostX11(); | 38 virtual ~WindowTreeHostX11(); |
39 | 39 |
40 // ui::PlatformEventDispatcher: | 40 // ui::PlatformEventDispatcher: |
41 virtual bool CanDispatchEvent(const ui::PlatformEvent& event) override; | 41 virtual bool CanDispatchEvent(const ui::PlatformEvent& event) override; |
42 virtual uint32_t DispatchEvent(const ui::PlatformEvent& event) override; | 42 virtual ui::PostDispatchAction DispatchEvent( |
| 43 const ui::PlatformEvent& event) override; |
43 | 44 |
44 // WindowTreeHost: | 45 // WindowTreeHost: |
45 virtual ui::EventSource* GetEventSource() override; | 46 virtual ui::EventSource* GetEventSource() override; |
46 virtual gfx::AcceleratedWidget GetAcceleratedWidget() override; | 47 virtual gfx::AcceleratedWidget GetAcceleratedWidget() override; |
47 virtual void Show() override; | 48 virtual void Show() override; |
48 virtual void Hide() override; | 49 virtual void Hide() override; |
49 virtual gfx::Rect GetBounds() const override; | 50 virtual gfx::Rect GetBounds() const override; |
50 virtual void SetBounds(const gfx::Rect& bounds) override; | 51 virtual void SetBounds(const gfx::Rect& bounds) override; |
51 virtual gfx::Point GetLocationOnNativeScreen() const override; | 52 virtual gfx::Point GetLocationOnNativeScreen() const override; |
52 virtual void SetCapture() override; | 53 virtual void SetCapture() override; |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 namespace test { | 109 namespace test { |
109 | 110 |
110 // Set the default value of the override redirect flag used to | 111 // Set the default value of the override redirect flag used to |
111 // create a X window for WindowTreeHostX11. | 112 // create a X window for WindowTreeHostX11. |
112 AURA_EXPORT void SetUseOverrideRedirectWindowByDefault(bool override_redirect); | 113 AURA_EXPORT void SetUseOverrideRedirectWindowByDefault(bool override_redirect); |
113 | 114 |
114 } // namespace test | 115 } // namespace test |
115 } // namespace aura | 116 } // namespace aura |
116 | 117 |
117 #endif // UI_AURA_WINDOW_TREE_HOST_X11_H_ | 118 #endif // UI_AURA_WINDOW_TREE_HOST_X11_H_ |
OLD | NEW |