X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7a295dfa5c619bfbde7a74c9c78693c5bf0eaed2..9d52aad39a4e3b52c5baa50b9cc55caaf91bb026:/include/wx/msw/enhmeta.h diff --git a/include/wx/msw/enhmeta.h b/include/wx/msw/enhmeta.h index 7778969adc..fa5389b1d0 100644 --- a/include/wx/msw/enhmeta.h +++ b/include/wx/msw/enhmeta.h @@ -12,10 +12,6 @@ #ifndef _WX_MSW_ENHMETA_H_ #define _WX_MSW_ENHMETA_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma interface "enhmeta.h" -#endif - #include "wx/dc.h" #if wxUSE_DRAG_AND_DROP @@ -31,7 +27,7 @@ class WXDLLEXPORT wxEnhMetaFile : public wxObject public: wxEnhMetaFile(const wxString& file = wxEmptyString) : m_filename(file) { Init(); } - wxEnhMetaFile(const wxEnhMetaFile& metafile) + wxEnhMetaFile(const wxEnhMetaFile& metafile) : wxObject() { Init(); Assign(metafile); } wxEnhMetaFile& operator=(const wxEnhMetaFile& metafile) { Free(); Assign(metafile); return *this; } @@ -43,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; } @@ -90,7 +87,14 @@ public: // obtain a pointer to the new metafile (caller should delete it) wxEnhMetaFile *Close(); +protected: + virtual void DoGetSize(int *width, int *height) const; + private: + // size passed to ctor and returned by DoGetSize() + int m_width, + m_height; + DECLARE_DYNAMIC_CLASS_NO_COPY(wxEnhMetaFileDC) };