OLD | NEW |
1 // Copyright (c) 2011 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 UI_BASE_ANIMATION_THROB_ANIMATION_H_ | 5 #ifndef UI_BASE_ANIMATION_THROB_ANIMATION_H_ |
6 #define UI_BASE_ANIMATION_THROB_ANIMATION_H_ | 6 #define UI_BASE_ANIMATION_THROB_ANIMATION_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "ui/base/animation/slide_animation.h" | 9 #include "ui/base/animation/slide_animation.h" |
10 | 10 |
11 namespace ui { | 11 namespace ui { |
(...skipping 12 matching lines...) Expand all Loading... |
24 | 24 |
25 // Starts throbbing. cycles_til_stop gives the number of cycles to do before | 25 // Starts throbbing. cycles_til_stop gives the number of cycles to do before |
26 // stopping. A negative value means "throb indefinitely". | 26 // stopping. A negative value means "throb indefinitely". |
27 void StartThrobbing(int cycles_til_stop); | 27 void StartThrobbing(int cycles_til_stop); |
28 | 28 |
29 // Sets the duration of the slide animation when throbbing. | 29 // Sets the duration of the slide animation when throbbing. |
30 void SetThrobDuration(int duration) { throb_duration_ = duration; } | 30 void SetThrobDuration(int duration) { throb_duration_ = duration; } |
31 | 31 |
32 // Overridden to reset to the slide duration. | 32 // Overridden to reset to the slide duration. |
33 virtual void Reset() OVERRIDE; | 33 virtual void Reset() OVERRIDE; |
| 34 virtual void Reset(double value) OVERRIDE; |
34 virtual void Show() OVERRIDE; | 35 virtual void Show() OVERRIDE; |
35 virtual void Hide() OVERRIDE; | 36 virtual void Hide() OVERRIDE; |
36 | 37 |
37 // Overridden to maintain the slide duration. | 38 // Overridden to maintain the slide duration. |
38 virtual void SetSlideDuration(int duration) OVERRIDE; | 39 virtual void SetSlideDuration(int duration) OVERRIDE; |
39 | 40 |
40 // The number of cycles remaining until the animation stops. | 41 // The number of cycles remaining until the animation stops. |
41 void set_cycles_remaining(int value) { cycles_remaining_ = value; } | 42 void set_cycles_remaining(int value) { cycles_remaining_ = value; } |
42 int cycles_remaining() const { return cycles_remaining_; } | 43 int cycles_remaining() const { return cycles_remaining_; } |
43 | 44 |
(...skipping 16 matching lines...) Expand all Loading... |
60 | 61 |
61 // Are we throbbing? | 62 // Are we throbbing? |
62 bool throbbing_; | 63 bool throbbing_; |
63 | 64 |
64 DISALLOW_COPY_AND_ASSIGN(ThrobAnimation); | 65 DISALLOW_COPY_AND_ASSIGN(ThrobAnimation); |
65 }; | 66 }; |
66 | 67 |
67 } // namespace ui | 68 } // namespace ui |
68 | 69 |
69 #endif // UI_BASE_ANIMATION_THROB_ANIMATION_H_ | 70 #endif // UI_BASE_ANIMATION_THROB_ANIMATION_H_ |
OLD | NEW |