1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: include/wx/os2/gdiimage.h
3 // Purpose: wxGDIImage class: base class for wxBitmap, wxIcon, wxCursor
5 // Author: David Webster (adapted from msw version by Vadim Zeitlin)
9 // Copyright: (c) 1999 David Webster
10 // Licence: wxWindows license
11 ///////////////////////////////////////////////////////////////////////////////
13 // NB: this is a private header, it is not intended to be directly included by
14 // user code (but may be included from other, public, wxWin headers
16 #ifndef _WX_OS2_GDIIMAGE_H_
17 #define _WX_OS2_GDIIMAGE_H_
20 #pragma interface "gdiimage.h"
23 #include "wx/gdiobj.h" // base class
24 #include "wx/gdicmn.h" // wxBITMAP_TYPE_INVALID
27 class WXDLLEXPORT wxGDIImageRefData
;
28 class WXDLLEXPORT wxGDIImageHandler
;
29 class WXDLLEXPORT wxGDIImage
;
31 // ----------------------------------------------------------------------------
32 // wxGDIImageRefData: common data fields for all derived classes
33 // ----------------------------------------------------------------------------
35 class WXDLLEXPORT wxGDIImageRefData
: public wxGDIRefData
40 m_nWidth
= m_nHeight
= m_nDepth
= 0;
44 #if WXWIN_COMPATIBILITY_2
46 #endif // WXWIN_COMPATIBILITY_2
60 { m_nWidth
= nW
; m_nHeight
= nH
; }
62 // free the ressources we allocated
63 virtual void Free() { };
65 // for compatibility, the member fields are public
67 // the size of the image
71 // the depth of the image
77 WXHANDLE m_hHandle
; // for untyped access
83 // this filed is redundant and using it is error prone but keep it for
84 // backwards compatibility
85 #if WXWIN_COMPATIBILITY_2
86 void SetOk() { m_bOk
= m_hHandle
!= 0; }
89 #endif // WXWIN_COMPATIBILITY_2
93 // ----------------------------------------------------------------------------
94 // wxGDIImageHandler: a class which knows how to load/save wxGDIImages.
95 // ----------------------------------------------------------------------------
97 class WXDLLEXPORT wxGDIImageHandler
: public wxObject
101 wxGDIImageHandler() { m_lType
= wxBITMAP_TYPE_INVALID
; }
102 wxGDIImageHandler( const wxString
& rName
103 ,const wxString
& rExt
113 void SetName(const wxString
& rName
) { m_sName
= rName
; }
114 void SetExtension(const wxString
& rExt
) { m_sExtension
= rExt
; }
115 void SetType(long lType
) { m_lType
= lType
; }
117 wxString
GetName() const { return m_sName
; }
118 wxString
GetExtension() const { return m_sExtension
; }
119 long GetType() const { return m_lType
; }
121 // real handler operations: to implement in derived classes
122 virtual bool Create( wxGDIImage
* pImage
129 virtual bool Load( wxGDIImage
* pImage
130 ,const wxString
& rName
136 virtual bool Save( wxGDIImage
* pImage
137 ,const wxString
& rName
143 wxString m_sExtension
;
147 // ----------------------------------------------------------------------------
148 // wxGDIImage: this class supports GDI image handlers which may be registered
149 // dynamically and will be used for loading/saving the images in the specified
150 // format. It also falls back to wxImage if no appropriate image is found.
151 // ----------------------------------------------------------------------------
153 class WXDLLEXPORT wxGDIImage
: public wxGDIObject
156 // handlers list interface
157 static wxList
& GetHandlers() { return ms_handlers
; }
159 static void AddHandler(wxGDIImageHandler
* hHandler
);
160 static void InsertHandler(wxGDIImageHandler
* hHandler
);
161 static bool RemoveHandler(const wxString
& rName
);
163 static wxGDIImageHandler
* FindHandler(const wxString
& rName
);
164 static wxGDIImageHandler
* FindHandler(const wxString
& rExtension
, long lType
);
165 static wxGDIImageHandler
* FindHandler(long lType
);
167 static void InitStandardHandlers();
168 static void CleanUpHandlers();
170 // access to the ref data casted to the right type
171 wxGDIImageRefData
*GetGDIImageData() const
172 { return (wxGDIImageRefData
*)m_refData
; }
174 // create data if we don't have it yet
175 void EnsureHasData() { if ( IsNull() ) m_refData
= CreateData(); }
178 WXHANDLE
GetHandle() const
180 wxGDIImageRefData
* pData
;
182 pData
= GetGDIImageData();
186 return pData
->m_hHandle
;
188 void SetHandle(WXHANDLE hHandle
)
190 wxGDIImageRefData
* pData
;
193 pData
= GetGDIImageData();
194 pData
->m_hHandle
= hHandle
;
197 bool Ok() const { return GetHandle() != 0; }
199 int GetWidth() const { return IsNull() ? 0 : GetGDIImageData()->m_nWidth
; }
200 int GetHeight() const { return IsNull() ? 0 : GetGDIImageData()->m_nHeight
; }
201 int GetDepth() const { return IsNull() ? 0 : GetGDIImageData()->m_nDepth
; }
203 void SetWidth(int nW
) { EnsureHasData(); GetGDIImageData()->m_nWidth
= nW
; }
204 void SetHeight(int nH
) { EnsureHasData(); GetGDIImageData()->m_nHeight
= nH
; }
205 void SetDepth(int nD
) { EnsureHasData(); GetGDIImageData()->m_nDepth
= nD
; }
212 GetGDIImageData()->SetSize(nW
, nH
);
214 void SetSize(const wxSize
& rSize
) { SetSize(rSize
.x
, rSize
.y
); }
216 UINT
GetId(void) const
218 wxGDIImageRefData
* pData
;
220 pData
= GetGDIImageData();
225 } // end of WxWinGdi_CGDIImage::GetId
228 wxGDIImageRefData
* pData
;
231 pData
= GetGDIImageData();
234 // forward some of base class virtuals to wxGDIImageRefData
235 bool FreeResource(bool bForce
= FALSE
);
236 virtual WXHANDLE
GetResourceHandle();
239 // create the data for the derived class here
240 virtual wxGDIImageRefData
* CreateData() const = 0;
242 static wxList ms_handlers
;
245 #endif // _WX_MSW_GDIIMAGE_H_