// ========================================================================
// A mask is a 1-bit alpha bitmap used for drawing bitmaps transparently.
-class WXDLLEXPORT wxMask: public wxObject
+class WXDLLIMPEXP_CORE wxMask: public wxObject
{
DECLARE_DYNAMIC_CLASS(wxMask)
public:
// ========================================================================
// wxBitmap
// ========================================================================
-class WXDLLEXPORT wxBitmap: public wxGDIObject
+class WXDLLIMPEXP_CORE wxBitmap: public wxGDIObject
{
- DECLARE_DYNAMIC_CLASS(wxBitmap)
// ------------------------------------------------------------------------
// initialization
// ------------------------------------------------------------------------
bool CreateFromImage(const wxImage& image, int depth=-1);
virtual bool Create(int width, int height, int depth = -1);
- virtual bool Create(NSImage* cocoaNSImage);
- virtual bool Create(NSBitmapImageRep* cocoaNSBitmapImageRep);
+ bool Create(NSImage* cocoaNSImage);
+ bool Create(NSBitmapImageRep* cocoaNSBitmapImageRep);
virtual bool Create(const void* data, wxBitmapType type, int width, int height, int depth = 1);
virtual bool LoadFile(const wxString& name, wxBitmapType type = wxBITMAP_TYPE_BMP_RESOURCE);
virtual bool SaveFile(const wxString& name, wxBitmapType type, const wxPalette *cmap = NULL) const;
// get the given part of bitmap
wxBitmap GetSubBitmap( const wxRect& rect ) const;
- bool Ok() const { return IsOk(); }
- bool IsOk() const;
int GetWidth() const;
int GetHeight() const;
int GetDepth() const;
wxMask *GetMask() const;
void SetMask(wxMask *mask) ;
- int GetBitmapType() const;
-
- // wxObjectRefData
- wxObjectRefData *CreateRefData() const;
- wxObjectRefData *CloneRefData(const wxObjectRefData *data) const;
+ wxBitmapType GetBitmapType() const;
// wxCocoa
WX_NSBitmapImageRep GetNSBitmapImageRep();
static void InitStandardHandlers() { }
static void CleanUpHandlers() { }
-};
-class WXDLLIMPEXP_CORE wxBitmapHandler: public wxBitmapHandlerBase
-{
- DECLARE_ABSTRACT_CLASS(wxBitmapHandler)
+protected:
+ wxGDIRefData *CreateGDIRefData() const;
+ wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;
+
+ DECLARE_DYNAMIC_CLASS(wxBitmap)
};
-#endif
- // __WX_COCOA_BITMAP_H__
+
+#endif // __WX_COCOA_BITMAP_H__