| OLD | NEW |
| 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 Loading... |
| 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 |
| 147 // Is snapping enabled? Set on press so that in drag we know whether we | 137 // Is snapping enabled? Set on press so that in drag we know whether we |
| 148 // should show the snap locations. | 138 // should show the snap locations. |
| 149 bool is_snap_enabled_; | 139 bool is_snap_enabled_; |
| 150 | 140 |
| 151 // Did the user drag far enough to trigger snapping? | 141 // Did the user drag far enough to trigger snapping? |
| 152 bool exceeded_drag_threshold_; | 142 bool exceeded_drag_threshold_; |
| 153 | 143 |
| 154 // Remember the widget on which we have put some an observers, | 144 // Remember the widget on which we have put some an observers, |
| 155 // so that we can remove it upon destruction. | 145 // so that we can remove it upon destruction. |
| 156 views::Widget* widget_; | 146 views::Widget* widget_; |
| 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. | |
| 162 bool press_is_gesture_; | |
| 163 | |
| 164 // Current snap type. | 151 // Current snap type. |
| 165 SnapType snap_type_; | 152 SnapType snap_type_; |
| 166 | 153 |
| 167 scoped_ptr<internal::SnapSizer> snap_sizer_; | |
| 168 | |
| 169 scoped_ptr<EscapeEventFilter> escape_event_filter_; | 154 scoped_ptr<EscapeEventFilter> escape_event_filter_; |
| 170 | 155 |
| 171 base::OneShotTimer<FrameMaximizeButton> update_timer_; | 156 base::OneShotTimer<FrameMaximizeButton> update_timer_; |
| 172 | 157 |
| 173 scoped_ptr<MaximizeBubbleController> maximizer_; | 158 scoped_ptr<MaximizeBubbleController> maximizer_; |
| 174 | 159 |
| 175 // The delay of the bubble appearance. | 160 // The delay of the bubble appearance. |
| 176 int bubble_appearance_delay_ms_; | 161 int bubble_appearance_delay_ms_; |
| 177 | 162 |
| 178 DISALLOW_COPY_AND_ASSIGN(FrameMaximizeButton); | 163 DISALLOW_COPY_AND_ASSIGN(FrameMaximizeButton); |
| 179 }; | 164 }; |
| 180 | 165 |
| 181 } // namespace ash | 166 } // namespace ash |
| 182 | 167 |
| 183 #endif // ASH_WM_WORKSPACE_FRAME_MAXIMIZE_BUTTON_H_ | 168 #endif // ASH_WM_WORKSPACE_FRAME_MAXIMIZE_BUTTON_H_ |
| OLD | NEW |