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

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

Issue 23471004: Only support left/right maximizing at 50% width when the --ash-enable-alternate-caption-button (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 (c) 2012 The Chromium Authors. All rights reserved. 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 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_WORKSPACE_FRAME_MAXIMIZE_BUTTON_H_ 5 #ifndef ASH_WM_WORKSPACE_FRAME_MAXIMIZE_BUTTON_H_
6 #define ASH_WM_WORKSPACE_FRAME_MAXIMIZE_BUTTON_H_ 6 #define ASH_WM_WORKSPACE_FRAME_MAXIMIZE_BUTTON_H_
7 7
8 #include "ash/ash_export.h" 8 #include "ash/ash_export.h"
9 #include "ash/wm/workspace/maximize_bubble_frame_state.h" 9 #include "ash/wm/workspace/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 NonClientFrameView;
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;
26 } 25 }
27 26
28 class MaximizeBubbleController; 27 class MaximizeBubbleController;
29 28
30 // Button used for the maximize control on the frame. Handles snapping logic. 29 // Button used for the maximize control on the frame. Handles snapping logic.
31 class ASH_EXPORT FrameMaximizeButton : public views::ImageButton, 30 class ASH_EXPORT FrameMaximizeButton : public views::ImageButton,
32 public views::WidgetObserver, 31 public views::WidgetObserver,
33 public aura::WindowObserver { 32 public aura::WindowObserver {
34 public: 33 public:
35 FrameMaximizeButton(views::ButtonListener* listener, 34 FrameMaximizeButton(views::ButtonListener* listener,
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 void Cancel(bool keep_menu_open); 106 void Cancel(bool keep_menu_open);
108 107
109 // Installs/uninstalls an EventFilter to track when escape is pressed. 108 // Installs/uninstalls an EventFilter to track when escape is pressed.
110 void InstallEventFilter(); 109 void InstallEventFilter();
111 void UninstallEventFilter(); 110 void UninstallEventFilter();
112 111
113 // Updates the snap position from the event location. This is invoked by 112 // Updates the snap position from the event location. This is invoked by
114 // |update_timer_|. 113 // |update_timer_|.
115 void UpdateSnapFromEventLocation(); 114 void UpdateSnapFromEventLocation();
116 115
117 // Updates |snap_type_| based on a mouse drag. If |select_default| is set, 116 // Updates |snap_type_| based on a mouse drag.
118 // the single button click default setting of the snap sizer should be used. 117 void UpdateSnap(const gfx::Point& location);
119 // Set |is_touch| to true to make touch snapping at the corners possible.
120 void UpdateSnap(const gfx::Point& location,
121 bool select_default,
122 bool is_touch);
123 118
124 // Returns the type of snap based on the specified location. 119 // Returns the type of snap based on the specified location.
125 SnapType SnapTypeForLocation(const gfx::Point& location) const; 120 SnapType SnapTypeForLocation(const gfx::Point& location) const;
126 121
127 // Returns the bounds of the resulting window for the specified type. 122 // Returns the bounds of the resulting window for the specified type.
128 gfx::Rect ScreenBoundsForType(SnapType type, 123 gfx::Rect ScreenBoundsForType(SnapType type) const;
129 const internal::SnapSizer& snap_sizer) const;
130
131 // Converts location to screen coordinates and returns it. These are the
132 // coordinates used by the SnapSizer.
133 gfx::Point LocationForSnapSizer(const gfx::Point& location) const;
134 124
135 // Snaps the window to the current snap position. 125 // Snaps the window to the current snap position.
136 void Snap(const internal::SnapSizer& snap_sizer); 126 void Snap();
137 127
138 // Determine the maximize type of this window. 128 // Determine the maximize type of this window.
139 MaximizeBubbleFrameState GetMaximizeBubbleFrameState() const; 129 MaximizeBubbleFrameState GetMaximizeBubbleFrameState() const;
140 130
141 // Frame that the maximize button acts on. 131 // Frame that the maximize button acts on.
142 views::NonClientFrameView* frame_; 132 views::NonClientFrameView* frame_;
143 133
144 // Renders the snap position. 134 // Renders the snap position.
145 scoped_ptr<internal::PhantomWindowController> phantom_window_; 135 scoped_ptr<internal::PhantomWindowController> phantom_window_;
146 136
(...skipping 10 matching lines...) Expand all
157 147
158 // Location of the press. 148 // Location of the press.
159 gfx::Point press_location_; 149 gfx::Point press_location_;
160 150
161 // True if the press was triggered by a gesture/touch. 151 // True if the press was triggered by a gesture/touch.
162 bool press_is_gesture_; 152 bool press_is_gesture_;
163 153
164 // Current snap type. 154 // Current snap type.
165 SnapType snap_type_; 155 SnapType snap_type_;
166 156
167 scoped_ptr<internal::SnapSizer> snap_sizer_;
168
169 scoped_ptr<EscapeEventFilter> escape_event_filter_; 157 scoped_ptr<EscapeEventFilter> escape_event_filter_;
170 158
171 base::OneShotTimer<FrameMaximizeButton> update_timer_; 159 base::OneShotTimer<FrameMaximizeButton> update_timer_;
172 160
173 scoped_ptr<MaximizeBubbleController> maximizer_; 161 scoped_ptr<MaximizeBubbleController> maximizer_;
174 162
175 // The delay of the bubble appearance. 163 // The delay of the bubble appearance.
176 int bubble_appearance_delay_ms_; 164 int bubble_appearance_delay_ms_;
177 165
178 DISALLOW_COPY_AND_ASSIGN(FrameMaximizeButton); 166 DISALLOW_COPY_AND_ASSIGN(FrameMaximizeButton);
179 }; 167 };
180 168
181 } // namespace ash 169 } // namespace ash
182 170
183 #endif // ASH_WM_WORKSPACE_FRAME_MAXIMIZE_BUTTON_H_ 171 #endif // ASH_WM_WORKSPACE_FRAME_MAXIMIZE_BUTTON_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698