]> git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk/animate.h
Factor out text measurement from wxDC and wxWindow into wxTextMeasure.
[wxWidgets.git] / include / wx / gtk / animate.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk/animate.h
3 // Purpose: Animation classes
4 // Author: Julian Smart and Guillermo Rodriguez Garcia
5 // Modified by: Francesco Montorsi
6 // Created: 13/8/99
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart and Guillermo Rodriguez Garcia
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_GTKANIMATEH__
13 #define _WX_GTKANIMATEH__
14
15 typedef struct _GdkPixbufAnimation GdkPixbufAnimation;
16 typedef struct _GdkPixbufAnimationIter GdkPixbufAnimationIter;
17
18 // ----------------------------------------------------------------------------
19 // wxAnimation
20 // Unlike the generic wxAnimation object (see generic\animate.cpp), we won't
21 // use directly wxAnimationHandlers as gdk-pixbuf already provides the
22 // concept of handler and will automatically use the available handlers.
23 // Like generic wxAnimation object, this implementation of wxAnimation is
24 // refcounted so that assignment is very fast
25 // ----------------------------------------------------------------------------
26
27 class WXDLLIMPEXP_ADV wxAnimation : public wxAnimationBase
28 {
29 public:
30 wxAnimation(const wxString &name, wxAnimationType type = wxANIMATION_TYPE_ANY)
31 : m_pixbuf(NULL) { LoadFile(name, type); }
32 wxAnimation(GdkPixbufAnimation *p = NULL);
33 wxAnimation(const wxAnimation&);
34 ~wxAnimation() { UnRef(); }
35
36 wxAnimation& operator= (const wxAnimation&);
37
38 virtual bool IsOk() const
39 { return m_pixbuf != NULL; }
40
41
42 // unfortunately GdkPixbufAnimation does not expose these info:
43
44 virtual unsigned int GetFrameCount() const { return 0; }
45 virtual wxImage GetFrame(unsigned int frame) const;
46
47 // we can retrieve the delay for a frame only after building
48 // a GdkPixbufAnimationIter...
49 virtual int GetDelay(unsigned int WXUNUSED(frame)) const { return 0; }
50
51 virtual wxSize GetSize() const;
52
53 virtual bool LoadFile(const wxString &name, wxAnimationType type = wxANIMATION_TYPE_ANY);
54 virtual bool Load(wxInputStream &stream, wxAnimationType type = wxANIMATION_TYPE_ANY);
55
56 // Implementation
57 public: // used by GTK callbacks
58
59 GdkPixbufAnimation *GetPixbuf() const
60 { return m_pixbuf; }
61 void SetPixbuf(GdkPixbufAnimation* p);
62
63 protected:
64 GdkPixbufAnimation *m_pixbuf;
65
66 private:
67 void UnRef();
68
69 typedef wxAnimationBase base_type;
70 DECLARE_DYNAMIC_CLASS(wxAnimation)
71 };
72
73
74 // ----------------------------------------------------------------------------
75 // wxAnimationCtrl
76 // ----------------------------------------------------------------------------
77
78 // Resize to animation size if this is set
79 #define wxAN_FIT_ANIMATION 0x0010
80
81 class WXDLLIMPEXP_ADV wxAnimationCtrl: public wxAnimationCtrlBase
82 {
83 public:
84 wxAnimationCtrl() { Init(); }
85 wxAnimationCtrl(wxWindow *parent,
86 wxWindowID id,
87 const wxAnimation& anim = wxNullAnimation,
88 const wxPoint& pos = wxDefaultPosition,
89 const wxSize& size = wxDefaultSize,
90 long style = wxAC_DEFAULT_STYLE,
91 const wxString& name = wxAnimationCtrlNameStr)
92 {
93 Init();
94
95 Create(parent, id, anim, pos, size, style, name);
96 }
97
98 bool Create(wxWindow *parent, wxWindowID id,
99 const wxAnimation& anim = wxNullAnimation,
100 const wxPoint& pos = wxDefaultPosition,
101 const wxSize& size = wxDefaultSize,
102 long style = wxAC_DEFAULT_STYLE,
103 const wxString& name = wxAnimationCtrlNameStr);
104
105 ~wxAnimationCtrl();
106
107 public: // event handler
108
109 void OnTimer(wxTimerEvent &);
110
111 public: // public API
112
113 virtual bool LoadFile(const wxString& filename, wxAnimationType type = wxANIMATION_TYPE_ANY);
114 virtual bool Load(wxInputStream& stream, wxAnimationType type = wxANIMATION_TYPE_ANY);
115
116 virtual void SetAnimation(const wxAnimation &anim);
117 virtual wxAnimation GetAnimation() const
118 { return wxAnimation(m_anim); }
119
120 virtual bool Play();
121 virtual void Stop();
122
123 virtual bool IsPlaying() const;
124
125 bool SetBackgroundColour( const wxColour &colour );
126
127 protected:
128
129 virtual void DisplayStaticImage();
130 virtual wxSize DoGetBestSize() const;
131 void FitToAnimation();
132 void ClearToBackgroundColour();
133
134 void ResetAnim();
135 void ResetIter();
136
137 protected: // internal vars
138
139 GdkPixbufAnimation *m_anim;
140 GdkPixbufAnimationIter *m_iter;
141
142 wxTimer m_timer;
143 bool m_bPlaying;
144
145 private:
146 typedef wxAnimationCtrlBase base_type;
147
148 void Init();
149
150 DECLARE_DYNAMIC_CLASS(wxAnimationCtrl)
151 DECLARE_EVENT_TABLE()
152 };
153
154 #endif // _WX_GTKANIMATEH__