class WXDLLIMPEXP_ADV wxAnimation : public wxAnimationBase
{
public:
- wxAnimation(GdkPixbufAnimation *p = NULL) { m_pixbuf = p; }
+ wxAnimation(GdkPixbufAnimation *p = NULL);
wxAnimation(const wxAnimation&);
~wxAnimation() { UnRef(); }
wxAnimation& operator= (const wxAnimation&);
- bool operator == (const wxAnimation& anim) const
- { return m_pixbuf == anim.m_pixbuf; }
- bool operator != (const wxAnimation& anim) const
- { return m_pixbuf != anim.m_pixbuf; }
-
virtual bool IsOk() const
{ return m_pixbuf != NULL; }
virtual bool IsPlaying() const;
bool SetBackgroundColour( const wxColour &colour );
- void SetInactiveBitmap(const wxBitmap &bmp);
protected:
+ virtual void DisplayStaticImage();
virtual wxSize DoGetBestSize() const;
void FitToAnimation();
void ClearToBackgroundColour();
- void DisplayStaticImage();
void ResetAnim();
void ResetIter();