]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/enhmeta.h
removed SetVirtualSizeHints() and related code
[wxWidgets.git] / include / wx / msw / enhmeta.h
index 4fa8d1c8d0cac3dfde4c475f2cc2ee8e0bb0e80b..f03827e52b8ab8ebfba76cccca195ce1fc42d22b 100644 (file)
@@ -39,7 +39,8 @@ public:
     bool Play(wxDC *dc, wxRect *rectBound = (wxRect *)NULL);
 
     // accessors
-    bool Ok() const { return m_hMF != 0; }
+    bool Ok() const { return IsOk(); }
+    bool IsOk() const { return m_hMF != 0; }
 
     wxSize GetSize() const;
     int GetWidth() const { return GetSize().x; }
@@ -81,18 +82,6 @@ public:
                     int width = 0, int height = 0,
                     const wxString& description = wxEmptyString);
 
-    virtual ~wxEnhMetaFileDC();
-
-    // obtain a pointer to the new metafile (caller should delete it)
-    wxEnhMetaFile *Close();
-
-private:
-    virtual void DoGetSize(int *width, int *height) const;
-
-    // size passed to ctor and returned by DoGetSize()
-    int m_width,
-        m_height;
-
     DECLARE_DYNAMIC_CLASS_NO_COPY(wxEnhMetaFileDC)
 };