1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxBitmap class interface
4 // Author: Vaclav Slavik
8 // Copyright: (c) wxWidgets team
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_BITMAP_H_BASE_
13 #define _WX_BITMAP_H_BASE_
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
20 #pragma interface "bitmapbase.h"
24 #include "wx/object.h"
25 #include "wx/string.h"
26 #include "wx/gdiobj.h"
27 #include "wx/gdicmn.h" // for wxBitmapType
29 class WXDLLEXPORT wxBitmap
;
30 class WXDLLEXPORT wxBitmapHandler
;
31 class WXDLLEXPORT wxImage
;
32 class WXDLLEXPORT wxMask
;
33 class WXDLLEXPORT wxPalette
;
35 #if defined(__WXMGL__) || \
36 defined(__WXMAC__) || \
37 defined(__WXCOCOA__) || \
38 defined(__WXMOTIF__) || \
40 // Only used by some ports
41 // FIXME -- make all ports (but MSW which uses wxGDIImage) use these base classes
43 // ----------------------------------------------------------------------------
44 // wxBitmapHandler: class which knows how to create/load/save bitmaps in
46 // ----------------------------------------------------------------------------
48 class WXDLLEXPORT wxBitmapHandlerBase
: public wxObject
54 , m_type(wxBITMAP_TYPE_INVALID
)
57 virtual ~wxBitmapHandlerBase() { }
59 virtual bool Create(wxBitmap
*bitmap
, void *data
, long flags
,
60 int width
, int height
, int depth
= 1) = 0;
61 virtual bool LoadFile(wxBitmap
*bitmap
, const wxString
& name
, long flags
,
62 int desiredWidth
, int desiredHeight
) = 0;
63 virtual bool SaveFile(const wxBitmap
*bitmap
, const wxString
& name
,
64 int type
, const wxPalette
*palette
= NULL
) = 0;
66 void SetName(const wxString
& name
) { m_name
= name
; }
67 void SetExtension(const wxString
& ext
) { m_extension
= ext
; }
68 void SetType(wxBitmapType type
) { m_type
= type
; }
69 wxString
GetName() const { return m_name
; }
70 wxString
GetExtension() const { return m_extension
; }
71 wxBitmapType
GetType() const { return m_type
; }
78 DECLARE_ABSTRACT_CLASS(wxBitmapHandlerBase
)
81 class WXDLLEXPORT wxBitmapBase
: public wxGDIObject
84 wxBitmapBase() : wxGDIObject() {}
85 virtual ~wxBitmapBase() {}
88 Derived class must implement these:
91 wxBitmap(int width, int height, int depth = -1);
92 wxBitmap(const char bits[], int width, int height, int depth = 1);
93 wxBitmap(const char **bits);
94 wxBitmap(char **bits);
95 wxBitmap(const wxBitmap& bmp);
96 wxBitmap(const wxString &filename, wxBitmapType type = wxBITMAP_TYPE_XPM);
97 wxBitmap(const wxImage& image, int depth = -1);
98 wxBitmap& operator = (const wxBitmap& bmp);
99 bool operator == (const wxBitmap& bmp) const;
100 bool operator != (const wxBitmap& bmp) const;
102 bool Create(int width, int height, int depth = -1);
104 static void InitStandardHandlers();
107 virtual bool Ok() const = 0;
109 virtual int GetHeight() const = 0;
110 virtual int GetWidth() const = 0;
111 virtual int GetDepth() const = 0;
113 virtual wxImage
ConvertToImage() const = 0;
115 virtual wxMask
*GetMask() const = 0;
116 virtual void SetMask(wxMask
*mask
) = 0;
118 virtual wxBitmap
GetSubBitmap(const wxRect
& rect
) const = 0;
120 virtual bool SaveFile(const wxString
&name
, wxBitmapType type
,
121 const wxPalette
*palette
= (wxPalette
*)NULL
) const = 0;
122 virtual bool LoadFile(const wxString
&name
, wxBitmapType type
) = 0;
125 If raw bitmap access is supported (see wx/rawbmp.h), the following
126 methods should be implemented:
128 virtual bool GetRawData(wxRawBitmapData *data) = 0;
129 virtual void UngetRawData(wxRawBitmapData *data) = 0;
133 virtual wxPalette
*GetPalette() const = 0;
134 virtual void SetPalette(const wxPalette
& palette
) = 0;
135 #endif // wxUSE_PALETTE
137 // copies the contents and mask of the given (colour) icon to the bitmap
138 virtual bool CopyFromIcon(const wxIcon
& icon
) = 0;
141 virtual void SetHeight(int height
) = 0;
142 virtual void SetWidth(int width
) = 0;
143 virtual void SetDepth(int depth
) = 0;
146 static inline wxList
& GetHandlers() { return sm_handlers
; }
147 static void AddHandler(wxBitmapHandlerBase
*handler
);
148 static void InsertHandler(wxBitmapHandlerBase
*handler
);
149 static bool RemoveHandler(const wxString
& name
);
150 static wxBitmapHandler
*FindHandler(const wxString
& name
);
151 static wxBitmapHandler
*FindHandler(const wxString
& extension
, wxBitmapType bitmapType
);
152 static wxBitmapHandler
*FindHandler(wxBitmapType bitmapType
);
154 //static void InitStandardHandlers();
155 // (wxBitmap must implement this one)
157 static void CleanUpHandlers();
160 static wxList sm_handlers
;
162 DECLARE_ABSTRACT_CLASS(wxBitmapBase
)
166 #if defined(__PALMOS__)
167 #include "wx/palmos/bitmap.h"
168 #elif defined(__WXMSW__)
169 #include "wx/msw/bitmap.h"
170 #elif defined(__WXMOTIF__)
171 #include "wx/x11/bitmap.h"
172 #elif defined(__WXGTK__)
173 #include "wx/gtk/bitmap.h"
174 #elif defined(__WXX11__)
175 #include "wx/x11/bitmap.h"
176 #elif defined(__WXMGL__)
177 #include "wx/mgl/bitmap.h"
178 #elif defined(__WXMAC__)
179 #include "wx/mac/bitmap.h"
180 #elif defined(__WXCOCOA__)
181 #include "wx/cocoa/bitmap.h"
182 #elif defined(__WXPM__)
183 #include "wx/os2/bitmap.h"
187 // _WX_BITMAP_H_BASE_