~canonical-dx-team/unity/unity.fix-ql-losing-focus

« back to all changes in this revision

Viewing changes to src/LauncherDragWindow.h

  • Committer: Michael Terry
  • Date: 2010-12-17 14:07:11 UTC
  • mfrom: (724 unity)
  • mto: This revision was merged to the branch mainline in revision 743.
  • Revision ID: mike@mterry.name-20101217140711-qlij3bxdjuq1xoph
mergeĀ fromĀ upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
  ~LauncherDragWindow ();
36
36
 
37
 
  void Draw (nux::GraphicsEngine& gfxContext,
38
 
    bool             forceDraw);
39
 
 
40
 
  void DrawContent (nux::GraphicsEngine& gfxContext,
41
 
    bool             forceDraw);
 
37
  void DrawContent (nux::GraphicsEngine& gfxContext, bool forceDraw);
 
38
  
 
39
  void SetAnimationTarget (int x, int y);
 
40
  void StartAnimation ();
 
41
  
 
42
  bool Animating ();
 
43
  
 
44
  sigc::signal<void> anim_completed;
42
45
 
43
46
private:
44
47
  
 
48
  static gboolean OnAnimationTimeout (gpointer data);
 
49
  
45
50
  nux::IntrusiveSP<nux::IOpenGLBaseTexture> _icon;
46
 
  
 
51
  nux::Point2 _animation_target;
 
52
  guint32 _anim_handle;
47
53
 
48
54
};
49
55