]>
Commit | Line | Data |
---|---|---|
0e320a79 | 1 | ///////////////////////////////////////////////////////////////////////////// |
cb7d7375 | 2 | // Name: src/os2/icon.cpp |
0e320a79 | 3 | // Purpose: wxIcon class |
fb9010ed | 4 | // Author: David Webster |
0e320a79 | 5 | // Modified by: |
fb9010ed | 6 | // Created: 10/09/99 |
fb9010ed | 7 | // Copyright: (c) David Webster |
65571936 | 8 | // Licence: wxWindows licence |
0e320a79 DW |
9 | ///////////////////////////////////////////////////////////////////////////// |
10 | ||
fb9010ed DW |
11 | // For compilers that support precompilation, includes "wx.h". |
12 | #include "wx/wxprec.h" | |
13 | ||
14 | #ifdef __BORLANDC__ | |
7520f3da | 15 | #pragma hdrstop |
fb9010ed DW |
16 | #endif |
17 | ||
923d28da WS |
18 | #include "wx/icon.h" |
19 | ||
fb9010ed | 20 | #ifndef WX_PRECOMP |
3b9e3455 DW |
21 | #include "wx/list.h" |
22 | #include "wx/utils.h" | |
23 | #include "wx/app.h" | |
6eb280e9 | 24 | #include "wx/log.h" |
0e320a79 DW |
25 | #endif |
26 | ||
fb9010ed DW |
27 | #include "wx/os2/private.h" |
28 | #include "assert.h" | |
29 | ||
923d28da | 30 | IMPLEMENT_DYNAMIC_CLASS(wxIcon, wxGDIObject) |
0e320a79 | 31 | |
3b9e3455 DW |
32 | // ============================================================================ |
33 | // implementation | |
34 | // ============================================================================ | |
0e320a79 | 35 | |
3b9e3455 DW |
36 | // ---------------------------------------------------------------------------- |
37 | // wxIconRefData | |
38 | // ---------------------------------------------------------------------------- | |
0e320a79 | 39 | |
3b9e3455 | 40 | void wxIconRefData::Free() |
0e320a79 | 41 | { |
43543d98 DW |
42 | if (m_hIcon) |
43 | ::WinFreeFileIcon((HPOINTER)m_hIcon); | |
0e320a79 DW |
44 | } |
45 | ||
3b9e3455 DW |
46 | // ---------------------------------------------------------------------------- |
47 | // wxIcon | |
48 | // ---------------------------------------------------------------------------- | |
49 | ||
0e320a79 | 50 | wxIcon::wxIcon() |
77f4f0a7 | 51 | :m_bIsXpm(false) |
0e320a79 DW |
52 | { |
53 | } | |
54 | ||
77f4f0a7 WS |
55 | wxIcon::wxIcon( const char WXUNUSED(bits)[], |
56 | int WXUNUSED(nWidth), | |
57 | int WXUNUSED(nHeight) ) | |
58 | :m_bIsXpm(false) | |
0e320a79 DW |
59 | { |
60 | } | |
61 | ||
77f4f0a7 | 62 | wxIcon::wxIcon( const wxString& rIconFile, |
6b5c2d52 | 63 | wxBitmapType lFlags, |
77f4f0a7 WS |
64 | int nDesiredWidth, |
65 | int nDesiredHeight ) | |
66 | :m_bIsXpm(false) | |
0e320a79 | 67 | { |
914589c2 DW |
68 | // |
69 | // A very poor hack, but we have to have separate icon files from windows | |
70 | // So we have a modified name where replace the last three characters | |
71 | // with os2. Also need the extension. | |
72 | // | |
cb7d7375 | 73 | wxString sOs2Name = rIconFile.Mid(0, rIconFile.length() - 3); |
914589c2 | 74 | |
0fba44b4 | 75 | sOs2Name += wxT("Os2.ico"); |
914589c2 | 76 | LoadFile( sOs2Name |
3b9e3455 DW |
77 | ,lFlags |
78 | ,nDesiredWidth | |
79 | ,nDesiredHeight | |
80 | ); | |
0e320a79 DW |
81 | } |
82 | ||
83 | wxIcon::~wxIcon() | |
84 | { | |
85 | } | |
86 | ||
e45080c1 | 87 | void wxIcon::CreateIconFromXpm(const char* const* ppData) |
6f38c86f DW |
88 | { |
89 | wxBitmap vBmp(ppData); | |
90 | ||
91 | CopyFromBitmap(vBmp); | |
29172908 DW |
92 | if (GetHICON()) |
93 | { | |
6670f564 | 94 | m_bIsXpm = true; |
29172908 DW |
95 | m_vXpmSrc = vBmp; |
96 | } | |
6f38c86f DW |
97 | } // end of wxIcon::CreateIconFromXpm |
98 | ||
6670f564 | 99 | void wxIcon::CopyFromBitmap( const wxBitmap& rBmp ) |
6f38c86f DW |
100 | { |
101 | wxMask* pMask = rBmp.GetMask(); | |
16ff355b DW |
102 | HBITMAP hBmp = NULLHANDLE; |
103 | HBITMAP hBmpMask = NULLHANDLE; | |
52315bc3 DW |
104 | HBITMAP hOldBitmap = NULLHANDLE; |
105 | ERRORID vError; | |
106 | wxString sError; | |
107 | LONG lHits; | |
6f38c86f DW |
108 | |
109 | if (!pMask) | |
110 | { | |
111 | // | |
112 | // We must have a mask for an icon, so even if it's probably incorrect, | |
113 | // do create it (grey is the "standard" transparent colour) | |
114 | // | |
115 | pMask = new wxMask( rBmp | |
116 | ,*wxLIGHT_GREY | |
117 | ); | |
118 | } | |
119 | ||
cb7d7375 WS |
120 | BITMAPINFOHEADER2 vHeader; |
121 | SIZEL vSize = {0, 0}; | |
122 | DEVOPENSTRUC vDop = {0L, "DISPLAY", NULL, 0L, 0L, 0L, 0L, 0L, 0L}; | |
123 | HDC hDCSrc = ::DevOpenDC(vHabmain, OD_MEMORY, "*", 5L, (PDEVOPENDATA)&vDop, NULLHANDLE); | |
124 | HDC hDCDst = ::DevOpenDC(vHabmain, OD_MEMORY, "*", 5L, (PDEVOPENDATA)&vDop, NULLHANDLE); | |
125 | HPS hPSSrc = ::GpiCreatePS(vHabmain, hDCSrc, &vSize, PU_PELS | GPIA_ASSOC); | |
126 | HPS hPSDst = ::GpiCreatePS(vHabmain, hDCDst, &vSize, PU_PELS | GPIA_ASSOC); | |
127 | POINTL vPoint[4] = { {0, 0}, {rBmp.GetWidth(), rBmp.GetHeight()}, | |
128 | {0, 0}, {rBmp.GetWidth(), rBmp.GetHeight()} | |
129 | }; | |
130 | POINTL vPointMask[4] = { {0, 0}, {rBmp.GetWidth(), rBmp.GetHeight() * 2}, | |
131 | {0, 0}, {rBmp.GetWidth(), rBmp.GetHeight()} | |
132 | }; | |
133 | POINTERINFO vIconInfo; | |
16ff355b DW |
134 | |
135 | memset(&vIconInfo, '\0', sizeof(POINTERINFO)); | |
136 | vIconInfo.fPointer = FALSE; // we want an icon, not a pointer | |
137 | ||
138 | memset(&vHeader, '\0', 16); | |
139 | vHeader.cbFix = 16; | |
140 | vHeader.cx = (ULONG)rBmp.GetWidth(); | |
141 | vHeader.cy = (ULONG)rBmp.GetHeight(); | |
142 | vHeader.cPlanes = 1L; | |
143 | vHeader.cBitCount = 24; | |
144 | ||
145 | hBmp = ::GpiCreateBitmap( hPSDst | |
146 | ,&vHeader | |
147 | ,0L | |
148 | ,NULL | |
149 | ,NULL | |
150 | ); | |
151 | ||
152 | if ((hOldBitmap = ::GpiSetBitmap(hPSDst, hBmp)) == HBM_ERROR) | |
52315bc3 DW |
153 | { |
154 | vError = ::WinGetLastError(vHabmain); | |
155 | sError = wxPMErrorToStr(vError); | |
156 | } | |
16ff355b | 157 | if ((hOldBitmap = ::GpiSetBitmap(hPSSrc, (HBITMAP)rBmp.GetHBITMAP())) == HBM_ERROR) |
52315bc3 DW |
158 | { |
159 | vError = ::WinGetLastError(vHabmain); | |
160 | sError = wxPMErrorToStr(vError); | |
161 | } | |
52315bc3 DW |
162 | if ((lHits = ::GpiBitBlt( hPSDst |
163 | ,hPSSrc | |
164 | ,4L | |
165 | ,vPoint | |
16ff355b DW |
166 | ,ROP_SRCCOPY |
167 | ,BBO_IGNORE | |
168 | )) == GPI_ERROR) | |
169 | { | |
170 | vError = ::WinGetLastError(vHabmain); | |
171 | sError = wxPMErrorToStr(vError); | |
172 | } | |
173 | if ((hOldBitmap = ::GpiSetBitmap(hPSDst, NULLHANDLE)) == HBM_ERROR) | |
174 | { | |
175 | vError = ::WinGetLastError(vHabmain); | |
176 | sError = wxPMErrorToStr(vError); | |
177 | } | |
178 | if ((hOldBitmap = ::GpiSetBitmap(hPSSrc, NULLHANDLE)) == HBM_ERROR) | |
179 | { | |
180 | vError = ::WinGetLastError(vHabmain); | |
181 | sError = wxPMErrorToStr(vError); | |
182 | } | |
183 | vIconInfo.hbmColor = hBmp; | |
184 | ||
29172908 | 185 | vHeader.cy = (ULONG)rBmp.GetHeight() * 2; |
16ff355b DW |
186 | hBmpMask = ::GpiCreateBitmap( hPSDst |
187 | ,&vHeader | |
188 | ,0L | |
189 | ,NULL | |
190 | ,NULL | |
191 | ); | |
192 | ||
193 | if ((hOldBitmap = ::GpiSetBitmap(hPSDst, hBmpMask)) == HBM_ERROR) | |
194 | { | |
195 | vError = ::WinGetLastError(vHabmain); | |
196 | sError = wxPMErrorToStr(vError); | |
197 | } | |
198 | if ((hOldBitmap = ::GpiSetBitmap(hPSSrc, (HBITMAP)pMask->GetMaskBitmap())) == HBM_ERROR) | |
199 | { | |
200 | vError = ::WinGetLastError(vHabmain); | |
201 | sError = wxPMErrorToStr(vError); | |
202 | } | |
203 | if ((lHits = ::GpiBitBlt( hPSDst | |
204 | ,hPSSrc | |
205 | ,4L | |
206 | ,vPointMask | |
207 | ,ROP_SRCCOPY | |
52315bc3 DW |
208 | ,BBO_IGNORE |
209 | )) == GPI_ERROR) | |
210 | { | |
211 | vError = ::WinGetLastError(vHabmain); | |
212 | sError = wxPMErrorToStr(vError); | |
213 | } | |
214 | if ((hOldBitmap = ::GpiSetBitmap(hPSSrc, NULLHANDLE)) == HBM_ERROR) | |
215 | { | |
216 | vError = ::WinGetLastError(vHabmain); | |
217 | sError = wxPMErrorToStr(vError); | |
218 | } | |
219 | if ((hOldBitmap = ::GpiSetBitmap(hPSDst, NULLHANDLE)) == HBM_ERROR) | |
220 | { | |
221 | vError = ::WinGetLastError(vHabmain); | |
222 | sError = wxPMErrorToStr(vError); | |
223 | } | |
6f38c86f | 224 | |
16ff355b | 225 | vIconInfo.hbmPointer = hBmpMask; |
6f38c86f | 226 | |
6670f564 | 227 | HICON hIcon = ::WinCreatePointerIndirect( HWND_DESKTOP, &vIconInfo); |
6f38c86f DW |
228 | |
229 | if (!hIcon) | |
230 | { | |
231 | wxLogLastError(wxT("WinCreatePointerIndirect")); | |
52315bc3 DW |
232 | vError = ::WinGetLastError(vHabmain); |
233 | sError = wxPMErrorToStr(vError); | |
6f38c86f DW |
234 | } |
235 | else | |
236 | { | |
237 | SetHICON((WXHICON)hIcon); | |
238 | SetSize( rBmp.GetWidth() | |
239 | ,rBmp.GetHeight() | |
240 | ); | |
241 | } | |
242 | ||
243 | if (!rBmp.GetMask()) | |
244 | { | |
245 | // | |
246 | // We created the mask, now delete it | |
247 | // | |
248 | delete pMask; | |
249 | } | |
16ff355b DW |
250 | ::GpiSetBitmap(hPSSrc, NULL); |
251 | ::GpiSetBitmap(hPSDst, NULL); | |
252 | ::GpiDestroyPS(hPSSrc); | |
253 | ::GpiDestroyPS(hPSDst); | |
254 | ::DevCloseDC(hDCSrc); | |
255 | ::DevCloseDC(hDCDst); | |
6f38c86f DW |
256 | } // end of wxIcon::CopyFromBitmap |
257 | ||
77f4f0a7 | 258 | bool wxIcon::LoadFile( const wxString& rFilename, |
6b5c2d52 | 259 | wxBitmapType lType, |
77f4f0a7 WS |
260 | int nDesiredWidth, |
261 | int nDesiredHeight ) | |
fb9010ed | 262 | { |
8ea3f821 | 263 | HPS hPs = NULLHANDLE; |
3b9e3455 DW |
264 | |
265 | UnRef(); | |
b41cdbf4 DW |
266 | |
267 | wxGDIImageHandler* pHandler = FindHandler(lType); | |
3b9e3455 DW |
268 | |
269 | if (pHandler) | |
270 | return(pHandler->Load( this | |
271 | ,rFilename | |
8ea3f821 | 272 | ,hPs |
3b9e3455 DW |
273 | ,lType |
274 | ,nDesiredWidth | |
275 | ,nDesiredHeight | |
276 | )); | |
fb9010ed | 277 | else |
77f4f0a7 | 278 | return false; |
0e320a79 | 279 | } |