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

Side by Side Diff: ash/devtools/widget_element.cc

Issue 2776543002: Create a unified UIElement interface for Widget, View and Window. (Closed)
Patch Set: nits Created 3 years, 7 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 #include "ash/devtools/widget_element.h"
6
7 #include "ash/devtools/ui_element_delegate.h"
8
9 namespace ash {
10 namespace devtools {
11
12 WidgetElement::WidgetElement(views::Widget* widget,
13 UIElementDelegate* ui_element_delegate,
14 UIElement* parent)
15 : UIElement(UIElementType::WIDGET, ui_element_delegate, parent),
16 widget_(widget) {
17 widget_->AddRemovalsObserver(this);
18 }
19
20 WidgetElement::~WidgetElement() {
21 widget_->RemoveRemovalsObserver(this);
22 }
23
24 views::Widget* WidgetElement::widget() const {
25 return widget_;
26 }
27
28 void WidgetElement::OnWillRemoveView(views::Widget* widget, views::View* view) {
29 if (view == widget->GetRootView() &&
30 delegate()->OnUIElementRemoved(GetChildren()[0])) {
31 RemoveChild(GetChildren()[0]);
32 GetChildren()[0]->Destroy();
33 }
34 }
35
36 void WidgetElement::OnWidgetBoundsChanged(views::Widget* widget,
37 const gfx::Rect& new_bounds) {
38 DCHECK(widget == widget_);
39 delegate()->OnUIElementBoundsChanged(this);
40 }
41
42 void WidgetElement::Destroy() {
43 delete this;
44 }
45
46 void WidgetElement::GetBounds(gfx::Rect* bounds) const {
47 *bounds = widget_->GetRestoredBounds();
48 }
49
50 void WidgetElement::SetBounds(const gfx::Rect& bounds) {
51 widget_->SetBounds(bounds);
52 }
53
54 void WidgetElement::GetVisible(bool* visible) const {
55 *visible = widget_->IsVisible();
56 }
57
58 void WidgetElement::SetVisible(bool visible) {
59 if (visible != widget_->IsVisible()) {
60 if (visible)
61 widget_->Show();
62 else
63 widget_->Hide();
64 }
65 }
66
67 std::pair<aura::Window*, gfx::Rect> WidgetElement::GetNodeWindowAndBounds()
68 const {
69 return std::make_pair(widget_->GetNativeWindow(),
70 widget_->GetWindowBoundsInScreen());
71 }
72
73 // static
74 views::Widget* WidgetElement::From(UIElement* element) {
75 DCHECK_EQ(UIElementType::WIDGET, element->GetType());
76 return static_cast<WidgetElement*>(element)->widget_;
77 }
78
79 } // namespace devtools
80 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698