]>
git.saurik.com Git - wxWidgets.git/blob - src/gtk/animate.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/animate.cpp
3 // Purpose: wxAnimation and wxAnimationCtrl
4 // Author: Francesco Montorsi
8 // Copyright: (c) Francesco Montorsi
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
15 #if wxUSE_ANIMATIONCTRL && !defined(__WXUNIVERSAL__)
17 #include "wx/animate.h"
22 #include "wx/stream.h"
28 // ============================================================================
30 // ============================================================================
32 void gdk_pixbuf_area_updated(GdkPixbufLoader
*loader
,
39 if (anim
&& anim
->GetPixbuf() == NULL
)
41 // we need to set the pixbuf only if this is the first time this signal
43 anim
->SetPixbuf(gdk_pixbuf_loader_get_animation(loader
));
48 //-----------------------------------------------------------------------------
50 //-----------------------------------------------------------------------------
52 IMPLEMENT_DYNAMIC_CLASS(wxAnimation
, wxAnimationBase
)
54 wxAnimation::wxAnimation(const wxAnimation
& that
)
57 m_pixbuf
= that
.m_pixbuf
;
59 g_object_ref(m_pixbuf
);
62 wxAnimation::wxAnimation(GdkPixbufAnimation
*p
)
66 g_object_ref(m_pixbuf
);
69 wxAnimation
& wxAnimation::operator=(const wxAnimation
& that
)
73 base_type::operator=(that
);
75 m_pixbuf
= that
.m_pixbuf
;
77 g_object_ref(m_pixbuf
);
82 bool wxAnimation::LoadFile(const wxString
&name
, wxAnimationType
WXUNUSED(type
))
85 m_pixbuf
= gdk_pixbuf_animation_new_from_file(
86 wxConvFileName
->cWX2MB(name
), NULL
);
90 bool wxAnimation::Load(wxInputStream
&stream
, wxAnimationType type
)
97 case wxANIMATION_TYPE_GIF
:
98 strcpy(anim_type
, "gif");
101 case wxANIMATION_TYPE_ANI
:
102 strcpy(anim_type
, "ani");
110 // create a GdkPixbufLoader
111 GError
*error
= NULL
;
112 GdkPixbufLoader
*loader
;
113 if (type
!= wxANIMATION_TYPE_INVALID
&& type
!= wxANIMATION_TYPE_ANY
)
114 loader
= gdk_pixbuf_loader_new_with_type(anim_type
, &error
);
116 loader
= gdk_pixbuf_loader_new();
120 wxLogDebug(wxT("Could not create the loader for '%s' animation type"), anim_type
);
124 // connect to loader signals
125 g_signal_connect(loader
, "area-updated", G_CALLBACK(gdk_pixbuf_area_updated
), this);
128 while (stream
.IsOk())
130 // read a chunk of data
131 stream
.Read(buf
, sizeof(buf
));
133 // fetch all data into the loader
134 if (!gdk_pixbuf_loader_write(loader
, buf
, stream
.LastRead(), &error
))
136 gdk_pixbuf_loader_close(loader
, &error
);
137 wxLogDebug(wxT("Could not write to the loader"));
143 if (!gdk_pixbuf_loader_close(loader
, &error
))
145 wxLogDebug(wxT("Could not close the loader"));
149 // wait until we get the last area_updated signal
153 wxImage
wxAnimation::GetFrame(unsigned int WXUNUSED(frame
)) const
158 wxSize
wxAnimation::GetSize() const
160 return wxSize(gdk_pixbuf_animation_get_width(m_pixbuf
),
161 gdk_pixbuf_animation_get_height(m_pixbuf
));
164 void wxAnimation::UnRef()
167 g_object_unref(m_pixbuf
);
171 void wxAnimation::SetPixbuf(GdkPixbufAnimation
* p
)
176 g_object_ref(m_pixbuf
);
179 //-----------------------------------------------------------------------------
181 //-----------------------------------------------------------------------------
183 IMPLEMENT_DYNAMIC_CLASS(wxAnimationCtrl
, wxAnimationCtrlBase
)
184 BEGIN_EVENT_TABLE(wxAnimationCtrl
, wxAnimationCtrlBase
)
185 EVT_TIMER(wxID_ANY
, wxAnimationCtrl::OnTimer
)
188 void wxAnimationCtrl::Init()
195 bool wxAnimationCtrl::Create( wxWindow
*parent
, wxWindowID id
,
196 const wxAnimation
& anim
,
200 const wxString
& name
)
204 if (!PreCreation( parent
, pos
, size
) ||
205 !base_type::CreateBase(parent
, id
, pos
, size
, style
& wxWINDOW_STYLE_MASK
,
206 wxDefaultValidator
, name
))
208 wxFAIL_MSG( wxT("wxAnimationCtrl creation failed") );
212 SetWindowStyle(style
);
214 m_widget
= gtk_image_new();
215 gtk_widget_show( GTK_WIDGET(m_widget
) );
217 m_parent
->DoAddChild( this );
220 SetInitialSize(size
);
225 // init the timer used for animation
226 m_timer
.SetOwner(this);
231 wxAnimationCtrl::~wxAnimationCtrl()
237 bool wxAnimationCtrl::LoadFile(const wxString
&filename
, wxAnimationType type
)
240 if (!anim
.LoadFile(filename
, type
))
247 void wxAnimationCtrl::SetAnimation(const wxAnimation
&anim
)
255 // copy underlying GdkPixbuf object
256 m_anim
= anim
.GetPixbuf();
258 // m_anim may be null in case wxNullAnimation has been passed
261 // add a reference to the GdkPixbufAnimation
262 g_object_ref(m_anim
);
264 if (!this->HasFlag(wxAC_NO_AUTORESIZE
))
268 DisplayStaticImage();
271 void wxAnimationCtrl::FitToAnimation()
276 int w
= gdk_pixbuf_animation_get_width(m_anim
),
277 h
= gdk_pixbuf_animation_get_height(m_anim
);
279 // update our size to fit animation
283 void wxAnimationCtrl::ResetAnim()
286 g_object_unref(m_anim
);
290 void wxAnimationCtrl::ResetIter()
293 g_object_unref(m_iter
);
297 bool wxAnimationCtrl::Play()
302 // init the iterator and start a one-shot timer
304 m_iter
= gdk_pixbuf_animation_get_iter (m_anim
, NULL
);
307 // gdk_pixbuf_animation_iter_get_delay_time() may return -1 which means
308 // that the timer should not start
309 int n
= gdk_pixbuf_animation_iter_get_delay_time(m_iter
);
311 m_timer
.Start(n
, true);
316 void wxAnimationCtrl::Stop()
318 // leave current frame displayed until Play() is called again
324 DisplayStaticImage();
327 void wxAnimationCtrl::DisplayStaticImage()
329 wxASSERT(!IsPlaying());
331 // m_bmpStaticReal will be updated only if necessary...
334 if (m_bmpStaticReal
.IsOk())
336 // show inactive bitmap
337 GdkBitmap
*mask
= (GdkBitmap
*) NULL
;
338 if (m_bmpStaticReal
.GetMask())
339 mask
= m_bmpStaticReal
.GetMask()->GetBitmap();
341 if (m_bmpStaticReal
.HasPixbuf())
343 gtk_image_set_from_pixbuf(GTK_IMAGE(m_widget
),
344 m_bmpStaticReal
.GetPixbuf());
348 gtk_image_set_from_pixmap(GTK_IMAGE(m_widget
),
349 m_bmpStaticReal
.GetPixmap(), mask
);
356 // even if not clearly documented, gdk_pixbuf_animation_get_static_image()
357 // always returns the first frame of the animation
358 gtk_image_set_from_pixbuf(GTK_IMAGE(m_widget
),
359 gdk_pixbuf_animation_get_static_image(m_anim
));
363 ClearToBackgroundColour();
368 bool wxAnimationCtrl::IsPlaying() const
370 // NB: we cannot just return m_timer.IsRunning() as this would not
371 // be safe as e.g. if we are displaying a frame forever,
372 // then we are "officially" still playing the animation, but
373 // the timer is not running anymore...
377 wxSize
wxAnimationCtrl::DoGetBestSize() const
379 if (m_anim
&& !this->HasFlag(wxAC_NO_AUTORESIZE
))
381 return wxSize(gdk_pixbuf_animation_get_width(m_anim
),
382 gdk_pixbuf_animation_get_height(m_anim
));
385 return wxSize(100,100);
388 void wxAnimationCtrl::ClearToBackgroundColour()
390 wxSize sz
= GetClientSize();
391 GdkPixbuf
*newpix
= gdk_pixbuf_new(GDK_COLORSPACE_RGB
, false, 8,
392 sz
.GetWidth(), sz
.GetHeight());
396 wxColour clr
= GetBackgroundColour();
397 guint32 col
= (clr
.Red() << 24) | (clr
.Green() << 16) | (clr
.Blue() << 8);
398 gdk_pixbuf_fill(newpix
, col
);
400 gtk_image_set_from_pixbuf(GTK_IMAGE(m_widget
), newpix
);
401 g_object_unref(newpix
);
404 bool wxAnimationCtrl::SetBackgroundColour( const wxColour
&colour
)
406 // wxWindowGTK::SetBackgroundColour works but since our m_widget is a GtkImage
407 // it won't show the background colour unlike the user would expect.
408 // Thus we clear the GtkImage contents to the background colour...
409 if (!wxControl::SetBackgroundColour(colour
))
412 // if not playing the change must take place immediately but
413 // remember that the inactive bitmap has higher priority over the background
414 // colour; DisplayStaticImage() will handle that
416 DisplayStaticImage();
422 //-----------------------------------------------------------------------------
423 // wxAnimationCtrl - event handlers
424 //-----------------------------------------------------------------------------
426 void wxAnimationCtrl::OnTimer(wxTimerEvent
&ev
)
428 wxASSERT(m_iter
!= NULL
);
430 // gdk_pixbuf_animation_iter_advance() will automatically restart
431 // the animation, if necessary and we have no way to know !!
432 if (gdk_pixbuf_animation_iter_advance(m_iter
, NULL
))
434 // start a new one-shot timer
435 int n
= gdk_pixbuf_animation_iter_get_delay_time(m_iter
);
437 m_timer
.Start(n
, true);
439 gtk_image_set_from_pixbuf(GTK_IMAGE(m_widget
),
440 gdk_pixbuf_animation_iter_get_pixbuf(m_iter
));
444 // no need to update the m_widget yet
445 m_timer
.Start(10, true);
449 #endif // wxUSE_ANIMATIONCTRL