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

Side by Side Diff: ui/aura/window_tree_host_ozone.h

Issue 657603002: ash: ozone: apply transformation to events outside the root window (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change GetBounds() visibility from public to protected Created 6 years, 1 month 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_OZONE_H_ 5 #ifndef UI_AURA_WINDOW_TREE_HOST_OZONE_H_
6 #define UI_AURA_WINDOW_TREE_HOST_OZONE_H_ 6 #define UI_AURA_WINDOW_TREE_HOST_OZONE_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "ui/aura/window_tree_host.h" 9 #include "ui/aura/window_tree_host.h"
10 #include "ui/events/event_source.h" 10 #include "ui/events/event_source.h"
11 #include "ui/gfx/rect.h" 11 #include "ui/gfx/rect.h"
12 #include "ui/platform_window/platform_window_delegate.h" 12 #include "ui/platform_window/platform_window_delegate.h"
13 13
14 namespace ui { 14 namespace ui {
15 class PlatformWindow; 15 class PlatformWindow;
16 } 16 }
17 17
18 namespace aura { 18 namespace aura {
19 19
20 class AURA_EXPORT WindowTreeHostOzone : public WindowTreeHost, 20 class AURA_EXPORT WindowTreeHostOzone : public WindowTreeHost,
21 public ui::EventSource, 21 public ui::EventSource,
22 public ui::PlatformWindowDelegate { 22 public ui::PlatformWindowDelegate {
23 public: 23 public:
24 explicit WindowTreeHostOzone(const gfx::Rect& bounds); 24 explicit WindowTreeHostOzone(const gfx::Rect& bounds);
25 virtual ~WindowTreeHostOzone(); 25 virtual ~WindowTreeHostOzone();
26 26
27 protected:
28 virtual gfx::Rect GetBounds() const override;
sadrul 2014/11/11 14:41:14 + // WindowTreeHost: (you should update the .cc
llandwerlin-old 2014/11/11 18:29:17 Done.
29
27 private: 30 private:
28 // ui::PlatformWindowDelegate: 31 // ui::PlatformWindowDelegate:
29 virtual void OnBoundsChanged(const gfx::Rect&) override; 32 virtual void OnBoundsChanged(const gfx::Rect&) override;
30 virtual void OnDamageRect(const gfx::Rect& damaged_region) override; 33 virtual void OnDamageRect(const gfx::Rect& damaged_region) override;
31 virtual void DispatchEvent(ui::Event* event) override; 34 virtual void DispatchEvent(ui::Event* event) override;
32 virtual void OnCloseRequest() override; 35 virtual void OnCloseRequest() override;
33 virtual void OnClosed() override; 36 virtual void OnClosed() override;
34 virtual void OnWindowStateChanged(ui::PlatformWindowState new_state) override; 37 virtual void OnWindowStateChanged(ui::PlatformWindowState new_state) override;
35 virtual void OnLostCapture() override; 38 virtual void OnLostCapture() override;
36 virtual void OnAcceleratedWidgetAvailable( 39 virtual void OnAcceleratedWidgetAvailable(
37 gfx::AcceleratedWidget widget) override; 40 gfx::AcceleratedWidget widget) override;
38 virtual void OnActivationChanged(bool active) override; 41 virtual void OnActivationChanged(bool active) override;
39 42
40 // WindowTreeHost: 43 // WindowTreeHost:
41 virtual ui::EventSource* GetEventSource() override; 44 virtual ui::EventSource* GetEventSource() override;
42 virtual gfx::AcceleratedWidget GetAcceleratedWidget() override; 45 virtual gfx::AcceleratedWidget GetAcceleratedWidget() override;
43 virtual void Show() override; 46 virtual void Show() override;
44 virtual void Hide() override; 47 virtual void Hide() override;
45 virtual gfx::Rect GetBounds() const override;
46 virtual void SetBounds(const gfx::Rect& bounds) override; 48 virtual void SetBounds(const gfx::Rect& bounds) override;
47 virtual gfx::Point GetLocationOnNativeScreen() const override; 49 virtual gfx::Point GetLocationOnNativeScreen() const override;
48 virtual void SetCapture() override; 50 virtual void SetCapture() override;
49 virtual void ReleaseCapture() override; 51 virtual void ReleaseCapture() override;
50 virtual void SetCursorNative(gfx::NativeCursor cursor_type) override; 52 virtual void SetCursorNative(gfx::NativeCursor cursor_type) override;
51 virtual void MoveCursorToNative(const gfx::Point& location) override; 53 virtual void MoveCursorToNative(const gfx::Point& location) override;
52 virtual void OnCursorVisibilityChangedNative(bool show) override; 54 virtual void OnCursorVisibilityChangedNative(bool show) override;
53 55
54 // ui::EventSource overrides. 56 // ui::EventSource overrides.
55 virtual ui::EventProcessor* GetEventProcessor() override; 57 virtual ui::EventProcessor* GetEventProcessor() override;
56 58
57 // Platform-specific part of this WindowTreeHost. 59 // Platform-specific part of this WindowTreeHost.
58 scoped_ptr<ui::PlatformWindow> platform_window_; 60 scoped_ptr<ui::PlatformWindow> platform_window_;
59 61
60 // The identifier used to create a compositing surface. 62 // The identifier used to create a compositing surface.
61 gfx::AcceleratedWidget widget_; 63 gfx::AcceleratedWidget widget_;
62 64
63 DISALLOW_COPY_AND_ASSIGN(WindowTreeHostOzone); 65 DISALLOW_COPY_AND_ASSIGN(WindowTreeHostOzone);
64 }; 66 };
65 67
66 } // namespace aura 68 } // namespace aura
67 69
68 #endif // UI_AURA_WINDOW_TREE_HOST_OZONE_H_ 70 #endif // UI_AURA_WINDOW_TREE_HOST_OZONE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698