]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/animate.h
Ensure Cairo is installed before setting wxUSE_GRAPHICS_CONTEXT for
[wxWidgets.git] / include / wx / gtk / animate.h
index 6e43a643c9b78937cc8ae32ddbc531966f598d16..fcd39a378413297d863624745003e16472210c87 100644 (file)
@@ -24,7 +24,7 @@ typedef struct _GdkPixbufAnimationIter GdkPixbufAnimationIter;
 // refcounted so that assignment is very fast
 // ----------------------------------------------------------------------------
 
-class WXDLLEXPORT wxAnimation : public wxAnimationBase
+class WXDLLIMPEXP_ADV wxAnimation : public wxAnimationBase
 {
 public:
     wxAnimation(GdkPixbufAnimation *p = NULL) { m_pixbuf = p; }
@@ -89,7 +89,7 @@ private:
 class WXDLLIMPEXP_ADV wxAnimationCtrl: public wxAnimationCtrlBase
 {
 public:
-    wxAnimationCtrl();
+    wxAnimationCtrl() { Init(); }
     wxAnimationCtrl(wxWindow *parent,
                         wxWindowID id,
                         const wxAnimation& anim = wxNullAnimation,
@@ -98,9 +98,13 @@ public:
                         long style = wxAC_DEFAULT_STYLE,
                         const wxString& name = wxAnimationCtrlNameStr)
     {
+        Init();
+
         Create(parent, id, anim, pos, size, style, name);
     }
 
+    void Init();
+
     bool Create(wxWindow *parent, wxWindowID id,
                 const wxAnimation& anim = wxNullAnimation,
                 const wxPoint& pos = wxDefaultPosition,