~brandontschaefer/nux/xim-tests

« back to all changes in this revision

Viewing changes to NuxCore/Animation.h

  • Committer: Brandon Schaefer
  • Date: 2012-11-27 21:40:42 UTC
  • mfrom: (637.2.86 trunk)
  • Revision ID: brandontschaefer@gmail.com-20121127214042-6i87hha8fkgl167d
* Fixed conflict, merged trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
  virtual ~Animation();
47
47
 
48
48
  virtual int Duration() const = 0;
 
49
  virtual int CurrentTimePosition() const = 0;
49
50
 
50
51
  void Start();
51
52
  void Stop();
81
82
  AnimateValue& SetDuration(int msecs);
82
83
  AnimateValue& SetEasingCurve(EasingCurve const& curve);
83
84
 
 
85
  void Reverse();
 
86
 
84
87
  virtual int Duration() const;
 
88
  virtual int CurrentTimePosition() const;
85
89
 
86
90
  sigc::signal<void, VALUE_TYPE const&> updated;
87
91