]>
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"
25 #include "wx/wfstream.h"
30 // ============================================================================
32 // ============================================================================
34 void gdk_pixbuf_area_updated(GdkPixbufLoader
*loader
,
38 gint
WXUNUSED(height
),
41 if (anim
&& anim
->GetPixbuf() == NULL
)
43 // we need to set the pixbuf only if this is the first time this signal
45 anim
->SetPixbuf(gdk_pixbuf_loader_get_animation(loader
));
50 //-----------------------------------------------------------------------------
52 //-----------------------------------------------------------------------------
54 IMPLEMENT_DYNAMIC_CLASS(wxAnimation
, wxAnimationBase
)
56 wxAnimation::wxAnimation(const wxAnimation
& that
)
59 m_pixbuf
= that
.m_pixbuf
;
61 g_object_ref(m_pixbuf
);
64 wxAnimation::wxAnimation(GdkPixbufAnimation
*p
)
68 g_object_ref(m_pixbuf
);
71 wxAnimation
& wxAnimation::operator=(const wxAnimation
& that
)
75 base_type::operator=(that
);
77 m_pixbuf
= that
.m_pixbuf
;
79 g_object_ref(m_pixbuf
);
84 bool wxAnimation::LoadFile(const wxString
&name
, wxAnimationType
WXUNUSED(type
))
87 m_pixbuf
= gdk_pixbuf_animation_new_from_file(name
.fn_str(), NULL
);
91 bool wxAnimation::Load(wxInputStream
&stream
, wxAnimationType type
)
98 case wxANIMATION_TYPE_GIF
:
99 strcpy(anim_type
, "gif");
102 case wxANIMATION_TYPE_ANI
:
103 strcpy(anim_type
, "ani");
111 // create a GdkPixbufLoader
112 GError
*error
= NULL
;
113 GdkPixbufLoader
*loader
;
114 if (type
!= wxANIMATION_TYPE_INVALID
&& type
!= wxANIMATION_TYPE_ANY
)
115 loader
= gdk_pixbuf_loader_new_with_type(anim_type
, &error
);
117 loader
= gdk_pixbuf_loader_new();
121 wxLogDebug(wxT("Could not create the loader for '%s' animation type: %s"),
122 anim_type
, error
->message
);
126 // connect to loader signals
127 g_signal_connect(loader
, "area-updated", G_CALLBACK(gdk_pixbuf_area_updated
), this);
130 while (stream
.IsOk())
132 // read a chunk of data
133 stream
.Read(buf
, sizeof(buf
));
135 // fetch all data into the loader
136 if (!gdk_pixbuf_loader_write(loader
, buf
, stream
.LastRead(), &error
))
138 gdk_pixbuf_loader_close(loader
, &error
);
139 wxLogDebug(wxT("Could not write to the loader: %s"), error
->message
);
145 if (!gdk_pixbuf_loader_close(loader
, &error
))
147 wxLogDebug(wxT("Could not close the loader: %s"), error
->message
);
151 // wait until we get the last area_updated signal
155 wxImage
wxAnimation::GetFrame(unsigned int WXUNUSED(frame
)) const
160 wxSize
wxAnimation::GetSize() const
162 return wxSize(gdk_pixbuf_animation_get_width(m_pixbuf
),
163 gdk_pixbuf_animation_get_height(m_pixbuf
));
166 void wxAnimation::UnRef()
169 g_object_unref(m_pixbuf
);
173 void wxAnimation::SetPixbuf(GdkPixbufAnimation
* p
)
178 g_object_ref(m_pixbuf
);
181 //-----------------------------------------------------------------------------
183 //-----------------------------------------------------------------------------
185 IMPLEMENT_DYNAMIC_CLASS(wxAnimationCtrl
, wxAnimationCtrlBase
)
186 BEGIN_EVENT_TABLE(wxAnimationCtrl
, wxAnimationCtrlBase
)
187 EVT_TIMER(wxID_ANY
, wxAnimationCtrl::OnTimer
)
190 void wxAnimationCtrl::Init()
197 bool wxAnimationCtrl::Create( wxWindow
*parent
, wxWindowID id
,
198 const wxAnimation
& anim
,
202 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 g_object_ref(m_widget
);
216 gtk_widget_show(m_widget
);
218 m_parent
->DoAddChild( this );
221 SetInitialSize(size
);
226 // init the timer used for animation
227 m_timer
.SetOwner(this);
232 wxAnimationCtrl::~wxAnimationCtrl()
238 bool wxAnimationCtrl::LoadFile(const wxString
&filename
, wxAnimationType type
)
240 wxFileInputStream
fis(filename
);
241 return Load(fis
, type
);
244 bool wxAnimationCtrl::Load(wxInputStream
& stream
, wxAnimationType type
)
247 if ( !anim
.Load(stream
, type
) || !anim
.IsOk() )
254 void wxAnimationCtrl::SetAnimation(const wxAnimation
&anim
)
262 // copy underlying GdkPixbuf object
263 m_anim
= anim
.GetPixbuf();
265 // m_anim may be null in case wxNullAnimation has been passed
268 // add a reference to the GdkPixbufAnimation
269 g_object_ref(m_anim
);
271 if (!this->HasFlag(wxAC_NO_AUTORESIZE
))
275 DisplayStaticImage();
278 void wxAnimationCtrl::FitToAnimation()
283 int w
= gdk_pixbuf_animation_get_width(m_anim
),
284 h
= gdk_pixbuf_animation_get_height(m_anim
);
286 // update our size to fit animation
290 void wxAnimationCtrl::ResetAnim()
293 g_object_unref(m_anim
);
297 void wxAnimationCtrl::ResetIter()
300 g_object_unref(m_iter
);
304 bool wxAnimationCtrl::Play()
309 // init the iterator and start a one-shot timer
311 m_iter
= gdk_pixbuf_animation_get_iter (m_anim
, NULL
);
314 // gdk_pixbuf_animation_iter_get_delay_time() may return -1 which means
315 // that the timer should not start
316 int n
= gdk_pixbuf_animation_iter_get_delay_time(m_iter
);
318 m_timer
.Start(n
, true);
323 void wxAnimationCtrl::Stop()
325 // leave current frame displayed until Play() is called again
331 DisplayStaticImage();
334 void wxAnimationCtrl::DisplayStaticImage()
336 wxASSERT(!IsPlaying());
338 // m_bmpStaticReal will be updated only if necessary...
341 if (m_bmpStaticReal
.IsOk())
343 // show inactive bitmap
344 GdkBitmap
*mask
= (GdkBitmap
*) NULL
;
345 if (m_bmpStaticReal
.GetMask())
346 mask
= m_bmpStaticReal
.GetMask()->GetBitmap();
348 if (m_bmpStaticReal
.HasPixbuf())
350 gtk_image_set_from_pixbuf(GTK_IMAGE(m_widget
),
351 m_bmpStaticReal
.GetPixbuf());
355 gtk_image_set_from_pixmap(GTK_IMAGE(m_widget
),
356 m_bmpStaticReal
.GetPixmap(), mask
);
363 // even if not clearly documented, gdk_pixbuf_animation_get_static_image()
364 // always returns the first frame of the animation
365 gtk_image_set_from_pixbuf(GTK_IMAGE(m_widget
),
366 gdk_pixbuf_animation_get_static_image(m_anim
));
370 ClearToBackgroundColour();
375 bool wxAnimationCtrl::IsPlaying() const
377 // NB: we cannot just return m_timer.IsRunning() as this would not
378 // be safe as e.g. if we are displaying a frame forever,
379 // then we are "officially" still playing the animation, but
380 // the timer is not running anymore...
384 wxSize
wxAnimationCtrl::DoGetBestSize() const
386 if (m_anim
&& !this->HasFlag(wxAC_NO_AUTORESIZE
))
388 return wxSize(gdk_pixbuf_animation_get_width(m_anim
),
389 gdk_pixbuf_animation_get_height(m_anim
));
392 return wxSize(100,100);
395 void wxAnimationCtrl::ClearToBackgroundColour()
397 wxSize sz
= GetClientSize();
398 GdkPixbuf
*newpix
= gdk_pixbuf_new(GDK_COLORSPACE_RGB
, false, 8,
399 sz
.GetWidth(), sz
.GetHeight());
403 wxColour clr
= GetBackgroundColour();
404 guint32 col
= (clr
.Red() << 24) | (clr
.Green() << 16) | (clr
.Blue() << 8);
405 gdk_pixbuf_fill(newpix
, col
);
407 gtk_image_set_from_pixbuf(GTK_IMAGE(m_widget
), newpix
);
408 g_object_unref(newpix
);
411 bool wxAnimationCtrl::SetBackgroundColour( const wxColour
&colour
)
413 // wxWindowGTK::SetBackgroundColour works but since our m_widget is a GtkImage
414 // it won't show the background colour unlike the user would expect.
415 // Thus we clear the GtkImage contents to the background colour...
416 if (!wxControl::SetBackgroundColour(colour
))
419 // if not playing the change must take place immediately but
420 // remember that the inactive bitmap has higher priority over the background
421 // colour; DisplayStaticImage() will handle that
423 DisplayStaticImage();
429 //-----------------------------------------------------------------------------
430 // wxAnimationCtrl - event handlers
431 //-----------------------------------------------------------------------------
433 void wxAnimationCtrl::OnTimer(wxTimerEvent
& WXUNUSED(ev
))
435 wxASSERT(m_iter
!= NULL
);
437 // gdk_pixbuf_animation_iter_advance() will automatically restart
438 // the animation, if necessary and we have no way to know !!
439 if (gdk_pixbuf_animation_iter_advance(m_iter
, NULL
))
441 // start a new one-shot timer
442 int n
= gdk_pixbuf_animation_iter_get_delay_time(m_iter
);
444 m_timer
.Start(n
, true);
446 gtk_image_set_from_pixbuf(GTK_IMAGE(m_widget
),
447 gdk_pixbuf_animation_iter_get_pixbuf(m_iter
));
451 // no need to update the m_widget yet
452 m_timer
.Start(10, true);
456 #endif // wxUSE_ANIMATIONCTRL