| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_FRAME_CAPTION_BUTTONS_FRAME_SIZE_BUTTON_H_ | 5 #ifndef ASH_FRAME_CAPTION_BUTTONS_FRAME_SIZE_BUTTON_H_ |
| 6 #define ASH_FRAME_CAPTION_BUTTONS_FRAME_SIZE_BUTTON_H_ | 6 #define ASH_FRAME_CAPTION_BUTTONS_FRAME_SIZE_BUTTON_H_ |
| 7 | 7 |
| 8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 #include "ash/frame/caption_buttons/frame_caption_button.h" | 9 #include "ash/frame/caption_buttons/frame_caption_button.h" |
| 10 #include "ash/frame/caption_buttons/frame_size_button_delegate.h" | 10 #include "ash/frame/caption_buttons/frame_size_button_delegate.h" |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 // left and to snap right. The button underneath the mouse is hovered. | 26 // left and to snap right. The button underneath the mouse is hovered. |
| 27 // When the drag terminates, the action for the button underneath the mouse | 27 // When the drag terminates, the action for the button underneath the mouse |
| 28 // is executed. For the sake of simplicity, the size button is the event | 28 // is executed. For the sake of simplicity, the size button is the event |
| 29 // handler for a click starting on the size button and the entire drag. | 29 // handler for a click starting on the size button and the entire drag. |
| 30 class ASH_EXPORT FrameSizeButton : public FrameCaptionButton { | 30 class ASH_EXPORT FrameSizeButton : public FrameCaptionButton { |
| 31 public: | 31 public: |
| 32 FrameSizeButton(views::ButtonListener* listener, | 32 FrameSizeButton(views::ButtonListener* listener, |
| 33 views::Widget* frame, | 33 views::Widget* frame, |
| 34 FrameSizeButtonDelegate* delegate); | 34 FrameSizeButtonDelegate* delegate); |
| 35 | 35 |
| 36 virtual ~FrameSizeButton(); | 36 ~FrameSizeButton() override; |
| 37 | 37 |
| 38 // views::CustomButton overrides: | 38 // views::CustomButton overrides: |
| 39 virtual bool OnMousePressed(const ui::MouseEvent& event) override; | 39 bool OnMousePressed(const ui::MouseEvent& event) override; |
| 40 virtual bool OnMouseDragged(const ui::MouseEvent& event) override; | 40 bool OnMouseDragged(const ui::MouseEvent& event) override; |
| 41 virtual void OnMouseReleased(const ui::MouseEvent& event) override; | 41 void OnMouseReleased(const ui::MouseEvent& event) override; |
| 42 virtual void OnMouseCaptureLost() override; | 42 void OnMouseCaptureLost() override; |
| 43 virtual void OnMouseMoved(const ui::MouseEvent& event) override; | 43 void OnMouseMoved(const ui::MouseEvent& event) override; |
| 44 virtual void OnGestureEvent(ui::GestureEvent* event) override; | 44 void OnGestureEvent(ui::GestureEvent* event) override; |
| 45 | 45 |
| 46 void set_delay_to_set_buttons_to_snap_mode(int delay_ms) { | 46 void set_delay_to_set_buttons_to_snap_mode(int delay_ms) { |
| 47 set_buttons_to_snap_mode_delay_ms_ = delay_ms; | 47 set_buttons_to_snap_mode_delay_ms_ = delay_ms; |
| 48 } | 48 } |
| 49 | 49 |
| 50 private: | 50 private: |
| 51 enum SnapType { | 51 enum SnapType { |
| 52 SNAP_LEFT, | 52 SNAP_LEFT, |
| 53 SNAP_RIGHT, | 53 SNAP_RIGHT, |
| 54 SNAP_NONE | 54 SNAP_NONE |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 // snapping the window left or right. The preview is only visible if the snap | 112 // snapping the window left or right. The preview is only visible if the snap |
| 113 // left or snap right button is pressed. | 113 // left or snap right button is pressed. |
| 114 scoped_ptr<PhantomWindowController> phantom_window_controller_; | 114 scoped_ptr<PhantomWindowController> phantom_window_controller_; |
| 115 | 115 |
| 116 DISALLOW_COPY_AND_ASSIGN(FrameSizeButton); | 116 DISALLOW_COPY_AND_ASSIGN(FrameSizeButton); |
| 117 }; | 117 }; |
| 118 | 118 |
| 119 } // namespace ash | 119 } // namespace ash |
| 120 | 120 |
| 121 #endif // ASH_FRAME_CAPTION_BUTTONS_FRAME_SIZE_BUTTON_H_ | 121 #endif // ASH_FRAME_CAPTION_BUTTONS_FRAME_SIZE_BUTTON_H_ |
| OLD | NEW |