#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
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; }
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; }
void SetHENHMETAFILE(WXHANDLE hMF) { Free(); m_hMF = hMF; }
protected:
- void Init() { m_hMF = 0; }
+ void Init();
void Free();
void Assign(const wxEnhMetaFile& mf);
// 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)
};