| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_TWEEN_H_ | 5 #ifndef UI_BASE_ANIMATION_TWEEN_H_ |
| 6 #define UI_BASE_ANIMATION_TWEEN_H_ | 6 #define UI_BASE_ANIMATION_TWEEN_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "ui/base/ui_export.h" | 10 #include "ui/base/ui_export.h" |
| 11 | 11 |
| 12 namespace gfx { | 12 namespace gfx { |
| 13 class Rect; | 13 class Rect; |
| 14 } | 14 } |
| 15 | 15 |
| 16 namespace ui { | 16 namespace ui { |
| 17 | 17 |
| 18 class Transform; |
| 19 |
| 18 class UI_EXPORT Tween { | 20 class UI_EXPORT Tween { |
| 19 public: | 21 public: |
| 20 enum Type { | 22 enum Type { |
| 21 LINEAR, // Linear. | 23 LINEAR, // Linear. |
| 22 EASE_OUT, // Fast in, slow out (default). | 24 EASE_OUT, // Fast in, slow out (default). |
| 23 EASE_IN, // Slow in, fast out. | 25 EASE_IN, // Slow in, fast out. |
| 24 EASE_IN_OUT, // Slow in and out, fast in the middle. | 26 EASE_IN_OUT, // Slow in and out, fast in the middle. |
| 25 FAST_IN_OUT, // Fast in and out, slow in the middle. | 27 FAST_IN_OUT, // Fast in and out, slow in the middle. |
| 26 EASE_OUT_SNAP, // Fast in, slow out, snap to final value. | 28 EASE_OUT_SNAP, // Fast in, slow out, snap to final value. |
| 27 ZERO, // Returns a value of 0 always. | 29 ZERO, // Returns a value of 0 always. |
| 28 }; | 30 }; |
| 29 | 31 |
| 30 // Returns the value based on the tween type. |state| is from 0-1. | 32 // Returns the value based on the tween type. |state| is from 0-1. |
| 31 static double CalculateValue(Type type, double state); | 33 static double CalculateValue(Type type, double state); |
| 32 | 34 |
| 33 // Conveniences for getting a value between a start and end point. | 35 // Conveniences for getting a value between a start and end point. |
| 34 static double ValueBetween(double value, double start, double target); | 36 static double ValueBetween(double value, double start, double target); |
| 35 static int ValueBetween(double value, int start, int target); | 37 static int ValueBetween(double value, int start, int target); |
| 36 static gfx::Rect ValueBetween(double value, | 38 static gfx::Rect ValueBetween(double value, |
| 37 const gfx::Rect& start_bounds, | 39 const gfx::Rect& start_bounds, |
| 38 const gfx::Rect& target_bounds); | 40 const gfx::Rect& target_bounds); |
| 41 static Transform ValueBetween(double value, |
| 42 const Transform& start_transform, |
| 43 const Transform& target_transform); |
| 39 | 44 |
| 40 private: | 45 private: |
| 41 Tween(); | 46 Tween(); |
| 42 ~Tween(); | 47 ~Tween(); |
| 43 | 48 |
| 44 DISALLOW_COPY_AND_ASSIGN(Tween); | 49 DISALLOW_COPY_AND_ASSIGN(Tween); |
| 45 }; | 50 }; |
| 46 | 51 |
| 47 } // namespace ui | 52 } // namespace ui |
| 48 | 53 |
| 49 #endif // UI_BASE_ANIMATION_TWEEN_H_ | 54 #endif // UI_BASE_ANIMATION_TWEEN_H_ |
| OLD | NEW |