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
3 // found in the LICENSE file.
5 #ifndef UI_AURA_WINDOW_TREE_HOST_WIN_H_
6 #define UI_AURA_WINDOW_TREE_HOST_WIN_H_
8 #include "base/compiler_specific.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "ui/aura/aura_export.h"
11 #include "ui/aura/window_tree_host.h"
12 #include "ui/events/event_source.h"
13 #include "ui/platform_window/platform_window.h"
14 #include "ui/platform_window/platform_window_delegate.h"
18 class AURA_EXPORT WindowTreeHostWin
19 : public WindowTreeHost
,
20 public ui::EventSource
,
21 public NON_EXPORTED_BASE(ui::PlatformWindowDelegate
) {
23 explicit WindowTreeHostWin(const gfx::Rect
& bounds
);
24 ~WindowTreeHostWin() override
;
27 ui::EventSource
* GetEventSource() override
;
28 gfx::AcceleratedWidget
GetAcceleratedWidget() override
;
31 gfx::Rect
GetBounds() const override
;
32 void SetBounds(const gfx::Rect
& bounds
) override
;
33 gfx::Point
GetLocationOnNativeScreen() const override
;
34 void SetCapture() override
;
35 void ReleaseCapture() override
;
36 void SetCursorNative(gfx::NativeCursor cursor
) override
;
37 void MoveCursorToNative(const gfx::Point
& location
) override
;
38 void OnCursorVisibilityChangedNative(bool show
) override
;
41 ui::EventProcessor
* GetEventProcessor() override
;
44 gfx::AcceleratedWidget
hwnd() const { return widget_
; }
47 // ui::PlatformWindowDelegate:
48 void OnBoundsChanged(const gfx::Rect
& new_bounds
) override
;
49 void OnDamageRect(const gfx::Rect
& damaged_region
) override
;
50 void DispatchEvent(ui::Event
* event
) override
;
51 void OnCloseRequest() override
;
52 void OnClosed() override
;
53 void OnWindowStateChanged(ui::PlatformWindowState new_state
) override
;
54 void OnLostCapture() override
;
55 void OnAcceleratedWidgetAvailable(gfx::AcceleratedWidget widget
) override
;
56 void OnActivationChanged(bool active
) override
;
60 gfx::AcceleratedWidget widget_
;
61 scoped_ptr
<ui::PlatformWindow
> window_
;
63 DISALLOW_COPY_AND_ASSIGN(WindowTreeHostWin
);
68 #endif // UI_AURA_WINDOW_TREE_HOST_WIN_H_