]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/animate.h
Override SetLogicalOrigin and SetDeviceOrigin in GNOME
[wxWidgets.git] / include / wx / animate.h
index 583b1afc74eab829baa1f5844bdfde3a8e282500..5a0a5ad6324825efc6782199d252c53d5e18c39c 100644 (file)
@@ -83,12 +83,25 @@ public:     // public API
     virtual bool IsPlaying() const = 0;
 
     virtual void SetInactiveBitmap(const wxBitmap &bmp);
+
+    // always return the original bitmap set in this control
     wxBitmap GetInactiveBitmap() const
         { return m_bmpStatic; }
 
 protected:
+    // the inactive bitmap as it was set by the user
     wxBitmap m_bmpStatic;
 
+    // the inactive bitmap currently shown in the control
+    // (may differ in the size from m_bmpStatic)
+    wxBitmap m_bmpStaticReal;
+
+    // updates m_bmpStaticReal from m_bmpStatic if needed
+    virtual void UpdateStaticImage();
+
+    // called by SetInactiveBitmap
+    virtual void DisplayStaticImage() = 0;
+
 private:
     DECLARE_ABSTRACT_CLASS(wxAnimationCtrlBase)
 };