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

Side by Side Diff: ash/devtools/window_element.h

Issue 2776543002: Create a unified UIElement interface for Widget, View and Window. (Closed)
Patch Set: nits Created 3 years, 8 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
OLDNEW
(Empty)
1 // Copyright 2017 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 ASH_COMMON_DEVTOOLS_WINDOW_ELEMENT_H_
6 #define ASH_COMMON_DEVTOOLS_WINDOW_ELEMENT_H_
7
8 #include "ash/ash_export.h"
9 #include "ash/devtools/ui_element.h"
10 #include "base/macros.h"
11 #include "ui/aura/window.h"
12 #include "ui/aura/window_observer.h"
13 #include "ui/gfx/geometry/rect.h"
14
15 namespace ash {
16 namespace devtools {
17
18 class ASH_EXPORT WindowElement : public aura::WindowObserver, public UIElement {
19 public:
20 WindowElement(aura::Window* window,
21 UIElementDelegate* ui_element_delegate,
22 UIElement* parent);
23 ~WindowElement() override;
24 aura::Window* window();
25
26 // WindowObserver:
27 void OnWindowHierarchyChanging(
28 const aura::WindowObserver::HierarchyChangeParams& params) override;
29 void OnWindowHierarchyChanged(
30 const aura::WindowObserver::HierarchyChangeParams& params) override;
31 void OnWindowStackingChanged(aura::Window* window) override;
32 void OnWindowBoundsChanged(aura::Window* window,
33 const gfx::Rect& old_bounds,
34 const gfx::Rect& new_bounds) override;
35
36 // UIElement:
37 void Destroy() override;
38 bool GetBounds(gfx::Rect* bounds) override;
39 bool SetBounds(const gfx::Rect& bounds) override;
40 bool GetVisible(bool* visible) override;
41 bool SetVisible(bool visible) override;
42 std::pair<aura::Window*, gfx::Rect> GetNodeWindowAndBounds() override;
43
44 static aura::Window* From(UIElement* element);
45
46 private:
47 aura::Window* window_;
48
49 DISALLOW_COPY_AND_ASSIGN(WindowElement);
50 };
51
52 } // namespace devtools
53 } // namespace ash
54
55 #endif // ASH_COMMON_DEVTOOLS_WINDOW_ELEMENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698