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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 virtual ui::EventSource* GetEventSource() OVERRIDE; | 45 virtual ui::EventSource* GetEventSource() OVERRIDE; |
46 virtual gfx::AcceleratedWidget GetAcceleratedWidget() OVERRIDE; | 46 virtual gfx::AcceleratedWidget GetAcceleratedWidget() OVERRIDE; |
47 virtual void Show() OVERRIDE; | 47 virtual void Show() OVERRIDE; |
48 virtual void Hide() OVERRIDE; | 48 virtual void Hide() OVERRIDE; |
49 virtual gfx::Rect GetBounds() const OVERRIDE; | 49 virtual gfx::Rect GetBounds() const OVERRIDE; |
50 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; | 50 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; |
51 virtual gfx::Point GetLocationOnNativeScreen() const OVERRIDE; | 51 virtual gfx::Point GetLocationOnNativeScreen() const OVERRIDE; |
52 virtual void SetCapture() OVERRIDE; | 52 virtual void SetCapture() OVERRIDE; |
53 virtual void ReleaseCapture() OVERRIDE; | 53 virtual void ReleaseCapture() OVERRIDE; |
54 virtual void PostNativeEvent(const base::NativeEvent& event) OVERRIDE; | 54 virtual void PostNativeEvent(const base::NativeEvent& event) OVERRIDE; |
55 virtual void OnDeviceScaleFactorChanged(float device_scale_factor) OVERRIDE; | |
56 virtual void SetCursorNative(gfx::NativeCursor cursor_type) OVERRIDE; | 55 virtual void SetCursorNative(gfx::NativeCursor cursor_type) OVERRIDE; |
57 virtual void MoveCursorToNative(const gfx::Point& location) OVERRIDE; | 56 virtual void MoveCursorToNative(const gfx::Point& location) OVERRIDE; |
58 virtual void OnCursorVisibilityChangedNative(bool show) OVERRIDE; | 57 virtual void OnCursorVisibilityChangedNative(bool show) OVERRIDE; |
59 | 58 |
60 // ui::EventSource overrides. | 59 // ui::EventSource overrides. |
61 virtual ui::EventProcessor* GetEventProcessor() OVERRIDE; | 60 virtual ui::EventProcessor* GetEventProcessor() OVERRIDE; |
62 | 61 |
63 protected: | 62 protected: |
64 // Called when X Configure Notify event is recevied. | 63 // Called when X Configure Notify event is recevied. |
65 virtual void OnConfigureNotify(); | 64 virtual void OnConfigureNotify(); |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 namespace test { | 108 namespace test { |
110 | 109 |
111 // Set the default value of the override redirect flag used to | 110 // Set the default value of the override redirect flag used to |
112 // create a X window for WindowTreeHostX11. | 111 // create a X window for WindowTreeHostX11. |
113 AURA_EXPORT void SetUseOverrideRedirectWindowByDefault(bool override_redirect); | 112 AURA_EXPORT void SetUseOverrideRedirectWindowByDefault(bool override_redirect); |
114 | 113 |
115 } // namespace test | 114 } // namespace test |
116 } // namespace aura | 115 } // namespace aura |
117 | 116 |
118 #endif // UI_AURA_WINDOW_TREE_HOST_X11_H_ | 117 #endif // UI_AURA_WINDOW_TREE_HOST_X11_H_ |
OLD | NEW |