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

Side by Side Diff: ash/wm/caption_buttons/frame_maximize_button.h

Issue 24048003: [Refactor] Cache the views::Widget* that the FrameMaximizeButton acts on (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Nits per jamescook@ Created 7 years, 3 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
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 ASH_WM_CAPTION_BUTTONS_FRAME_MAXIMIZE_BUTTON_H_ 5 #ifndef ASH_WM_CAPTION_BUTTONS_FRAME_MAXIMIZE_BUTTON_H_
6 #define ASH_WM_CAPTION_BUTTONS_FRAME_MAXIMIZE_BUTTON_H_ 6 #define ASH_WM_CAPTION_BUTTONS_FRAME_MAXIMIZE_BUTTON_H_
7 7
8 #include "ash/ash_export.h" 8 #include "ash/ash_export.h"
9 #include "ash/wm/caption_buttons/maximize_bubble_frame_state.h" 9 #include "ash/wm/caption_buttons/maximize_bubble_frame_state.h"
10 #include "ash/wm/workspace/snap_types.h" 10 #include "ash/wm/workspace/snap_types.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "base/timer/timer.h" 12 #include "base/timer/timer.h"
13 #include "ui/aura/window_observer.h" 13 #include "ui/aura/window_observer.h"
14 #include "ui/views/controls/button/image_button.h" 14 #include "ui/views/controls/button/image_button.h"
15 #include "ui/views/widget/widget_observer.h" 15 #include "ui/views/widget/widget_observer.h"
16 16
17 namespace views { 17 namespace views {
18 class NonClientFrameView; 18 class Widget;
19 } 19 }
20 20
21 namespace ash { 21 namespace ash {
22 22
23 namespace internal { 23 namespace internal {
24 class PhantomWindowController; 24 class PhantomWindowController;
25 class SnapSizer; 25 class SnapSizer;
26 } 26 }
27 27
28 class MaximizeBubbleController; 28 class MaximizeBubbleController;
29 29
30 // Button used for the maximize control on the frame. Handles snapping logic. 30 // Button used for the maximize control on the frame. Handles snapping logic.
31 class ASH_EXPORT FrameMaximizeButton : public views::ImageButton, 31 class ASH_EXPORT FrameMaximizeButton : public views::ImageButton,
32 public views::WidgetObserver, 32 public views::WidgetObserver,
33 public aura::WindowObserver { 33 public aura::WindowObserver {
34 public: 34 public:
35 FrameMaximizeButton(views::ButtonListener* listener, 35 FrameMaximizeButton(views::ButtonListener* listener,
36 views::NonClientFrameView* frame); 36 views::Widget* frame);
37 virtual ~FrameMaximizeButton(); 37 virtual ~FrameMaximizeButton();
38 38
39 // Updates |snap_type_| based on a a given snap type. This is used by 39 // Updates |snap_type_| based on a a given snap type. This is used by
40 // external hover events from the button menu. 40 // external hover events from the button menu.
41 void SnapButtonHovered(SnapType type); 41 void SnapButtonHovered(SnapType type);
42 42
43 // The user clicked the |type| button and the action needs to be performed, 43 // The user clicked the |type| button and the action needs to be performed,
44 // which will at the same time close the window. 44 // which will at the same time close the window.
45 void ExecuteSnapAndCloseMenu(SnapType type); 45 void ExecuteSnapAndCloseMenu(SnapType type);
46 46
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 // Converts location to screen coordinates and returns it. These are the 131 // Converts location to screen coordinates and returns it. These are the
132 // coordinates used by the SnapSizer. 132 // coordinates used by the SnapSizer.
133 gfx::Point LocationForSnapSizer(const gfx::Point& location) const; 133 gfx::Point LocationForSnapSizer(const gfx::Point& location) const;
134 134
135 // Snaps the window to the current snap position. 135 // Snaps the window to the current snap position.
136 void Snap(const internal::SnapSizer& snap_sizer); 136 void Snap(const internal::SnapSizer& snap_sizer);
137 137
138 // Determine the maximize type of this window. 138 // Determine the maximize type of this window.
139 MaximizeBubbleFrameState GetMaximizeBubbleFrameState() const; 139 MaximizeBubbleFrameState GetMaximizeBubbleFrameState() const;
140 140
141 // Frame that the maximize button acts on. 141 // Widget that the maximize button acts on. This is different than the widget
142 views::NonClientFrameView* frame_; 142 // which contains the button in the case of AppNonClientFrameViewAsh.
143 views::Widget* frame_;
144
145 // True if we have put observers on |frame_|.
146 bool observing_frame_;
143 147
144 // Renders the snap position. 148 // Renders the snap position.
145 scoped_ptr<internal::PhantomWindowController> phantom_window_; 149 scoped_ptr<internal::PhantomWindowController> phantom_window_;
146 150
147 // Is snapping enabled? Set on press so that in drag we know whether we 151 // Is snapping enabled? Set on press so that in drag we know whether we
148 // should show the snap locations. 152 // should show the snap locations.
149 bool is_snap_enabled_; 153 bool is_snap_enabled_;
150 154
151 // Did the user drag far enough to trigger snapping? 155 // Did the user drag far enough to trigger snapping?
152 bool exceeded_drag_threshold_; 156 bool exceeded_drag_threshold_;
153 157
154 // Remember the widget on which we have put some an observers,
155 // so that we can remove it upon destruction.
156 views::Widget* widget_;
157
158 // Location of the press. 158 // Location of the press.
159 gfx::Point press_location_; 159 gfx::Point press_location_;
160 160
161 // True if the press was triggered by a gesture/touch. 161 // True if the press was triggered by a gesture/touch.
162 bool press_is_gesture_; 162 bool press_is_gesture_;
163 163
164 // Current snap type. 164 // Current snap type.
165 SnapType snap_type_; 165 SnapType snap_type_;
166 166
167 scoped_ptr<internal::SnapSizer> snap_sizer_; 167 scoped_ptr<internal::SnapSizer> snap_sizer_;
168 168
169 scoped_ptr<EscapeEventFilter> escape_event_filter_; 169 scoped_ptr<EscapeEventFilter> escape_event_filter_;
170 170
171 base::OneShotTimer<FrameMaximizeButton> update_timer_; 171 base::OneShotTimer<FrameMaximizeButton> update_timer_;
172 172
173 scoped_ptr<MaximizeBubbleController> maximizer_; 173 scoped_ptr<MaximizeBubbleController> maximizer_;
174 174
175 // The delay of the bubble appearance. 175 // The delay of the bubble appearance.
176 int bubble_appearance_delay_ms_; 176 int bubble_appearance_delay_ms_;
177 177
178 DISALLOW_COPY_AND_ASSIGN(FrameMaximizeButton); 178 DISALLOW_COPY_AND_ASSIGN(FrameMaximizeButton);
179 }; 179 };
180 180
181 } // namespace ash 181 } // namespace ash
182 182
183 #endif // ASH_WM_CAPTION_BUTTONS_FRAME_MAXIMIZE_BUTTON_H_ 183 #endif // ASH_WM_CAPTION_BUTTONS_FRAME_MAXIMIZE_BUTTON_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698