Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Side by Side Diff: ui/base/animation/throb_animation.h

Issue 10392173: Flash window by pulsing their launcher icon state indicator (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: copyright Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/aura/client/aura_constants.cc ('k') | ui/base/animation/throb_animation.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « ui/aura/client/aura_constants.cc ('k') | ui/base/animation/throb_animation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698