]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/animate.i
Compilation fixes
[wxWidgets.git] / wxPython / src / animate.i
index 94149e1cacf70b2aa8985b5585e17de9cbc9e5d5..450d0ef3f5af3ef334db5da877a8e486ef0690f4 100644 (file)
@@ -113,12 +113,16 @@ public:     // extended interface used by the generic implementation of wxAnimat
 
 #ifndef __WXGTK__
     wxPoint GetFramePosition(size_t frame) const;
+    wxSize GetFrameSize(size_t frame) const;
     wxAnimationDisposal GetDisposalMethod(size_t frame) const;
+    wxColour GetTransparentColour(size_t frame) const;
     wxColour GetBackgroundColour() const;
 #else
     %extend {
         wxPoint GetFramePosition(size_t frame) const { return wxDefaultPosition; }
+        wxSize GetFrameSize(size_t frame) const { return wxDefaultSize; }
         wxAnimationDisposal GetDisposalMethod(size_t frame) const { return wxANIM_UNSPECIFIED; }
+        wxColour GetTransparentColour(size_t frame) const { return wxNullColour; }
         wxColour GetBackgroundColour() const { return wxNullColour; }
     }
 #endif
@@ -174,6 +178,10 @@ public:
     virtual void Stop();
 
     virtual bool IsPlaying() const;
+    virtual void SetInactiveBitmap(const wxBitmap &bmp);
+    wxBitmap GetInactiveBitmap() const;
+
+    %property(InactiveBitmap, GetInactiveBitmap, SetInactiveBitmap);
 };