1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxBitmap class
8 // Copyright: (c) AUTHOR
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "bitmap.h"
19 #include "wx/gdiobj.h"
20 #include "wx/gdicmn.h"
21 #include "wx/palette.h"
24 class WXDLLEXPORT wxDC
;
25 class WXDLLEXPORT wxControl
;
26 class WXDLLEXPORT wxBitmap
;
27 class WXDLLEXPORT wxBitmapHandler
;
28 class WXDLLEXPORT wxIcon
;
29 class WXDLLEXPORT wxCursor
;
31 // A mask is a mono bitmap used for drawing bitmaps
33 class WXDLLEXPORT wxMask
: public wxObject
35 DECLARE_DYNAMIC_CLASS(wxMask
)
40 // Construct a mask from a bitmap and a colour indicating
41 // the transparent area
42 wxMask(const wxBitmap
& bitmap
, const wxColour
& colour
);
44 // Construct a mask from a bitmap and a palette index indicating
45 // the transparent area
46 wxMask(const wxBitmap
& bitmap
, int paletteIndex
);
48 // Construct a mask from a mono bitmap (copies the bitmap).
49 wxMask(const wxBitmap
& bitmap
);
53 bool Create(const wxBitmap
& bitmap
, const wxColour
& colour
);
54 bool Create(const wxBitmap
& bitmap
, int paletteIndex
);
55 bool Create(const wxBitmap
& bitmap
);
57 /* TODO: platform-specific data access
59 inline WXHBITMAP GetMaskBitmap() const { return m_maskBitmap; }
60 inline void SetMaskBitmap(WXHBITMAP bmp) { m_maskBitmap = bmp; }
62 WXHBITMAP m_maskBitmap;
66 class WXDLLEXPORT wxBitmapRefData
: public wxGDIRefData
68 friend class WXDLLEXPORT wxBitmap
;
69 friend class WXDLLEXPORT wxIcon
;
70 friend class WXDLLEXPORT wxCursor
;
81 wxPalette m_bitmapPalette
;
84 /* WXHBITMAP m_hBitmap; TODO: platform-specific handle */
85 wxMask
* m_bitmapMask
; // Optional mask
88 #define M_BITMAPDATA ((wxBitmapRefData *)m_refData)
90 class WXDLLEXPORT wxBitmapHandler
: public wxObject
92 DECLARE_DYNAMIC_CLASS(wxBitmapHandler
)
94 wxBitmapHandler() { m_name
= ""; m_extension
= ""; m_type
= 0; };
96 virtual bool Create(wxBitmap
*bitmap
, void *data
, long flags
, int width
, int height
, int depth
= 1);
97 virtual bool LoadFile(wxBitmap
*bitmap
, const wxString
& name
, long flags
,
98 int desiredWidth
, int desiredHeight
);
99 virtual bool SaveFile(wxBitmap
*bitmap
, const wxString
& name
, int type
, const wxPalette
*palette
= NULL
);
101 inline void SetName(const wxString
& name
) { m_name
= name
; }
102 inline void SetExtension(const wxString
& ext
) { m_extension
= ext
; }
103 inline void SetType(long type
) { m_type
= type
; }
104 inline wxString
GetName() const { return m_name
; }
105 inline wxString
GetExtension() const { return m_extension
; }
106 inline long GetType() const { return m_type
; }
109 wxString m_extension
;
113 #define M_BITMAPHANDLERDATA ((wxBitmapRefData *)bitmap->GetRefData())
115 class WXDLLEXPORT wxBitmap
: public wxGDIObject
117 DECLARE_DYNAMIC_CLASS(wxBitmap
)
119 friend class WXDLLEXPORT wxBitmapHandler
;
122 wxBitmap(); // Platform-specific
125 inline wxBitmap(const wxBitmap
& bitmap
)
126 { Ref(bitmap
); if ( wxTheBitmapList
) wxTheBitmapList
->AddBitmap(this); }
128 // Initialize with raw data.
129 wxBitmap(const char bits
[], int width
, int height
, int depth
= 1);
131 /* TODO: maybe implement XPM reading
132 // Initialize with XPM data
133 wxBitmap(const char **data);
136 // Load a file or resource
137 // TODO: make default type whatever's appropriate for the platform.
138 wxBitmap(const wxString
& name
, long type
= wxBITMAP_TYPE_BMP_RESOURCE
);
140 // Constructor for generalised creation from data
141 wxBitmap(void *data
, long type
, int width
, int height
, int depth
= 1);
143 // If depth is omitted, will create a bitmap compatible with the display
144 wxBitmap(int width
, int height
, int depth
= -1);
147 virtual bool Create(int width
, int height
, int depth
= -1);
148 virtual bool Create(void *data
, long type
, int width
, int height
, int depth
= 1);
149 virtual bool LoadFile(const wxString
& name
, long type
= wxBITMAP_TYPE_BMP_RESOURCE
);
150 virtual bool SaveFile(const wxString
& name
, int type
, const wxPalette
*cmap
= NULL
);
152 inline bool Ok() const { return (M_BITMAPDATA
&& M_BITMAPDATA
->m_ok
); }
153 inline int GetWidth() const { return (M_BITMAPDATA
? M_BITMAPDATA
->m_width
: 0); }
154 inline int GetHeight() const { return (M_BITMAPDATA
? M_BITMAPDATA
->m_height
: 0); }
155 inline int GetDepth() const { return (M_BITMAPDATA
? M_BITMAPDATA
->m_depth
: 0); }
156 inline int GetQuality() const { return (M_BITMAPDATA
? M_BITMAPDATA
->m_quality
: 0); }
157 void SetWidth(int w
);
158 void SetHeight(int h
);
159 void SetDepth(int d
);
160 void SetQuality(int q
);
161 void SetOk(bool isOk
);
163 inline wxPalette
* GetPalette() const { return (M_BITMAPDATA
? (& M_BITMAPDATA
->m_bitmapPalette
) : (wxPalette
*) NULL
); }
164 void SetPalette(const wxPalette
& palette
);
166 inline wxMask
*GetMask() const { return (M_BITMAPDATA
? M_BITMAPDATA
->m_bitmapMask
: (wxMask
*) NULL
); }
167 void SetMask(wxMask
*mask
) ;
169 inline wxBitmap
& operator = (const wxBitmap
& bitmap
) { if (*this == bitmap
) return (*this); Ref(bitmap
); return *this; }
170 inline bool operator == (const wxBitmap
& bitmap
) { return m_refData
== bitmap
.m_refData
; }
171 inline bool operator != (const wxBitmap
& bitmap
) { return m_refData
!= bitmap
.m_refData
; }
174 static inline wxList
& GetHandlers() { return sm_handlers
; }
175 static void AddHandler(wxBitmapHandler
*handler
);
176 static void InsertHandler(wxBitmapHandler
*handler
);
177 static bool RemoveHandler(const wxString
& name
);
178 static wxBitmapHandler
*FindHandler(const wxString
& name
);
179 static wxBitmapHandler
*FindHandler(const wxString
& extension
, long bitmapType
);
180 static wxBitmapHandler
*FindHandler(long bitmapType
);
182 static void InitStandardHandlers();
183 static void CleanUpHandlers();
185 static wxList sm_handlers
;
188 // TODO: Implementation
190 void SetHBITMAP(WXHBITMAP bmp);
191 inline WXHBITMAP GetHBITMAP() const { return (M_BITMAPDATA ? M_BITMAPDATA->m_hBitmap : 0); }
192 bool FreeResource(bool force = FALSE);