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

Side by Side Diff: ui/ozone/common/window/platform_window_compat.h

Issue 375053002: ozone: Port WindowTreeHostOzone on top of PlatformWindow (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 5 months 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 | Annotate | Revision Log
« no previous file with comments | « ui/ozone/DEPS ('k') | ui/ozone/common/window/platform_window_compat.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2014 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.
4
5 #ifndef UI_OZONE_COMMON_WINDOW_PLATFORM_WINDOW_COMPAT_H_
6 #define UI_OZONE_COMMON_WINDOW_PLATFORM_WINDOW_COMPAT_H_
7
8 #include "ui/base/cursor/cursor.h"
9 #include "ui/events/platform/platform_event_dispatcher.h"
10 #include "ui/gfx/geometry/rect.h"
11 #include "ui/gfx/native_widget_types.h"
12 #include "ui/ozone/ozone_export.h"
13 #include "ui/platform_window/platform_window.h"
14
15 namespace gfx {
16 class Point;
17 class Rect;
18 }
19
20 namespace ui {
21
22 class PlatformWindowDelegate;
23
24 // This is just transitional code. Will be removed shortly.
25 class OZONE_EXPORT PlatformWindowCompat : public PlatformWindow,
26 public ui::PlatformEventDispatcher {
27 public:
28 PlatformWindowCompat(PlatformWindowDelegate* delegate,
29 const gfx::Rect& bounds);
30 virtual ~PlatformWindowCompat();
31
32 // ui::PlatformEventDispatcher:
33 virtual bool CanDispatchEvent(const ui::PlatformEvent& event) OVERRIDE;
34 virtual uint32_t DispatchEvent(const ui::PlatformEvent& event) OVERRIDE;
35
36 // PlatformWindow:
37 virtual gfx::Rect GetBounds() OVERRIDE;
38 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE;
39 virtual void Show() OVERRIDE;
40 virtual void Hide() OVERRIDE;
41 virtual void Close() OVERRIDE;
42 virtual void SetCapture() OVERRIDE;
43 virtual void ReleaseCapture() OVERRIDE;
44 virtual void ToggleFullscreen() OVERRIDE;
45 virtual void Maximize() OVERRIDE;
46 virtual void Minimize() OVERRIDE;
47 virtual void Restore() OVERRIDE;
48
49 private:
50 PlatformWindowDelegate* delegate_;
51 gfx::AcceleratedWidget widget_;
52 gfx::Rect bounds_;
53
54 DISALLOW_COPY_AND_ASSIGN(PlatformWindowCompat);
55 };
56
57 } // namespace ui
58
59 #endif // UI_OZONE_COMMON_WINDOW_PLATFORM_WINDOW_COMPAT_H_
OLDNEW
« no previous file with comments | « ui/ozone/DEPS ('k') | ui/ozone/common/window/platform_window_compat.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698