| 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 ATHENA_HOME_HOME_CARD_GESTURE_MANAGER_H_ | 5 #ifndef ATHENA_HOME_HOME_CARD_GESTURE_MANAGER_H_ |
| 6 #define ATHENA_HOME_HOME_CARD_GESTURE_MANAGER_H_ | 6 #define ATHENA_HOME_HOME_CARD_GESTURE_MANAGER_H_ |
| 7 | 7 |
| 8 #include "athena/home/public/home_card.h" | 8 #include "athena/home/public/home_card.h" |
| 9 #include "athena/athena_export.h" | 9 #include "athena/athena_export.h" |
| 10 #include "ui/gfx/geometry/rect.h" | 10 #include "ui/gfx/geometry/rect.h" |
| 11 | 11 |
| 12 namespace ui { | 12 namespace ui { |
| 13 class GestureEvent; | 13 class GestureEvent; |
| 14 } | 14 } |
| 15 | 15 |
| 16 namespace athena { | 16 namespace athena { |
| 17 | 17 |
| 18 // Handles the touch gestures over the home card. | 18 // Handles the touch gestures over the home card. |
| 19 class ATHENA_EXPORT HomeCardGestureManager { | 19 class ATHENA_EXPORT HomeCardGestureManager { |
| 20 public: | 20 public: |
| 21 class Delegate { | 21 class Delegate { |
| 22 public: | 22 public: |
| 23 // Called when the gesture has ended. The state of the home card will | 23 // Called when the gesture has ended. The state of the home card will |
| 24 // end up with |final_state|. | 24 // end up with |final_state|. |
| 25 virtual void OnGestureEnded(HomeCard::State final_state) = 0; | 25 virtual void OnGestureEnded(HomeCard::State final_state) = 0; |
| 26 | 26 |
| 27 // Called when the gesture position is updated so that |delegate| should | 27 // Called when the gesture position is updated so that |delegate| updates |
| 28 // update the visual. The arguments represent the state of the current | 28 // the visual. The arguments indicate that the gesture is switching from |
| 29 // gesture position is switching from |from_state| to |to_state|, and | 29 // |from_state| to |to_state|, and that the level of progress is at |
| 30 // the level of the progress is at |progress|, which is 0 to 1. | 30 // |progress|, which is 0 to 1. |
| 31 // |from_state| and |to_state| could be same. For example, if the user moves | 31 // |from_state| is never equal to |to_state|. |
| 32 // the finger down to the bottom of the screen, both states are MINIMIZED. | |
| 33 // In that case |progress| is 0. | |
| 34 virtual void OnGestureProgressed( | 32 virtual void OnGestureProgressed( |
| 35 HomeCard::State from_state, | 33 HomeCard::State from_state, |
| 36 HomeCard::State to_state, | 34 HomeCard::State to_state, |
| 37 float progress) = 0; | 35 float progress) = 0; |
| 38 }; | 36 }; |
| 39 | 37 |
| 40 HomeCardGestureManager(Delegate* delegate, | 38 HomeCardGestureManager(Delegate* delegate, |
| 41 const gfx::Rect& screen_bounds); | 39 const gfx::Rect& screen_bounds); |
| 42 ~HomeCardGestureManager(); | 40 ~HomeCardGestureManager(); |
| 43 | 41 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 62 | 60 |
| 63 // The bounds of the screen to compute the home card bounds. | 61 // The bounds of the screen to compute the home card bounds. |
| 64 gfx::Rect screen_bounds_; | 62 gfx::Rect screen_bounds_; |
| 65 | 63 |
| 66 DISALLOW_COPY_AND_ASSIGN(HomeCardGestureManager); | 64 DISALLOW_COPY_AND_ASSIGN(HomeCardGestureManager); |
| 67 }; | 65 }; |
| 68 | 66 |
| 69 } // namespace athena | 67 } // namespace athena |
| 70 | 68 |
| 71 #endif // ATHENA_HOME_HOME_CARD_GESTURE_MANAGER_H_ | 69 #endif // ATHENA_HOME_HOME_CARD_GESTURE_MANAGER_H_ |
| OLD | NEW |