OLD | NEW |
---|---|
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 UI_VIEWS_ANIMATION_INK_DROP_ANIMATION_CONTROLLER_H_ | 5 #ifndef UI_VIEWS_ANIMATION_INK_DROP_ANIMATION_CONTROLLER_H_ |
6 #define UI_VIEWS_ANIMATION_INK_DROP_ANIMATION_CONTROLLER_H_ | 6 #define UI_VIEWS_ANIMATION_INK_DROP_ANIMATION_CONTROLLER_H_ |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "base/time/time.h" | 9 #include "base/time/time.h" |
10 #include "ui/compositor/layer_tree_owner.h" | 10 #include "ui/compositor/layer_tree_owner.h" |
(...skipping 11 matching lines...) Expand all Loading... | |
22 | 22 |
23 // Pure virtual base class that manages an ink drop animation's lifetime and | 23 // Pure virtual base class that manages an ink drop animation's lifetime and |
24 // state. | 24 // state. |
25 class VIEWS_EXPORT InkDropAnimationController { | 25 class VIEWS_EXPORT InkDropAnimationController { |
26 public: | 26 public: |
27 virtual ~InkDropAnimationController() {} | 27 virtual ~InkDropAnimationController() {} |
28 | 28 |
29 // Gets the current state of the ink drop. | 29 // Gets the current state of the ink drop. |
30 virtual InkDropState GetInkDropState() const = 0; | 30 virtual InkDropState GetInkDropState() const = 0; |
31 | 31 |
32 // Animates from the current InkDropState to |state|. | 32 // Animates from the current InkDropState to |state|. |
varkha
2015/10/06 20:58:38
nit: s/state/ink_drop_state?
bruthig
2015/10/08 21:42:55
Done.
| |
33 virtual void AnimateToState(InkDropState state) = 0; | 33 virtual void AnimateToState(InkDropState ink_drop_state) = 0; |
34 | 34 |
35 virtual gfx::Size GetInkDropLargeSize() const = 0; | 35 virtual gfx::Size GetInkDropLargeSize() const = 0; |
36 | 36 |
37 // Sets the different sizes of the ink drop. | 37 // Sets the different sizes of the ink drop. |
38 virtual void SetInkDropSize(const gfx::Size& large_size, | 38 virtual void SetInkDropSize(const gfx::Size& large_size, |
39 int large_corner_radius, | 39 int large_corner_radius, |
40 const gfx::Size& small_size, | 40 const gfx::Size& small_size, |
41 int small_corner_radius) = 0; | 41 int small_corner_radius) = 0; |
42 | 42 |
43 // Sets the |center_point| of the ink drop relative to its parent Layer. | 43 // Sets the |center_point| of the ink drop relative to its parent Layer. |
44 virtual void SetInkDropCenter(const gfx::Point& center_point) = 0; | 44 virtual void SetInkDropCenter(const gfx::Point& center_point) = 0; |
45 | 45 |
46 protected: | 46 protected: |
47 InkDropAnimationController() {} | 47 InkDropAnimationController() {} |
48 | 48 |
49 private: | 49 private: |
50 DISALLOW_COPY_AND_ASSIGN(InkDropAnimationController); | 50 DISALLOW_COPY_AND_ASSIGN(InkDropAnimationController); |
51 }; | 51 }; |
52 | 52 |
53 } // namespace views | 53 } // namespace views |
54 | 54 |
55 #endif // UI_VIEWS_ANIMATION_INK_DROP_ANIMATION_CONTROLLER_H_ | 55 #endif // UI_VIEWS_ANIMATION_INK_DROP_ANIMATION_CONTROLLER_H_ |
OLD | NEW |