]>
Commit | Line | Data |
---|---|---|
63415778 DW |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: msw/ownerdrw.cpp | |
3 | // Purpose: implementation of wxOwnerDrawn class | |
4 | // Author: David Webster | |
fb46a9a6 | 5 | // Modified by: |
63415778 DW |
6 | // Created: 10/12/99 |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) David Webster | |
65571936 | 9 | // Licence: wxWindows licence |
63415778 DW |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
aa213887 SN |
12 | #ifdef __GNUG__ |
13 | #pragma implementation | |
14 | #endif | |
15 | ||
63415778 DW |
16 | // For compilers that support precompilation, includes "wx.h". |
17 | #include "wx/wxprec.h" | |
18 | ||
19 | #ifndef WX_PRECOMP | |
20 | #include "wx/window.h" | |
2b5f62a0 | 21 | #include "wx/os2/private.h" |
63415778 DW |
22 | #include "wx/font.h" |
23 | #include "wx/bitmap.h" | |
24 | #include "wx/dcmemory.h" | |
25 | #include "wx/menu.h" | |
26 | #include "wx/utils.h" | |
27 | #endif | |
28 | ||
7e99520b DW |
29 | #if wxUSE_OWNER_DRAWN |
30 | ||
50528a1d | 31 | #include "wx/settings.h" |
63415778 DW |
32 | #include "wx/ownerdrw.h" |
33 | #include "wx/menuitem.h" | |
34 | ||
35 | ||
36 | // ============================================================================ | |
37 | // implementation of wxOwnerDrawn class | |
38 | // ============================================================================ | |
39 | ||
402e2f7c | 40 | // |
63415778 DW |
41 | // ctor |
42 | // ---- | |
402e2f7c DW |
43 | // |
44 | wxOwnerDrawn::wxOwnerDrawn( | |
45 | const wxString& rsStr | |
46 | , bool bCheckable | |
47 | , bool bMenuItem | |
48 | ) | |
49 | : m_strName(rsStr) | |
63415778 | 50 | { |
402e2f7c DW |
51 | m_bCheckable = bCheckable; |
52 | m_bOwnerDrawn = FALSE; | |
53 | m_nHeight = 0; | |
54 | m_nMarginWidth = ms_nLastMarginWidth; | |
55 | if (wxNORMAL_FONT) | |
56 | m_font = *wxNORMAL_FONT; | |
57 | } // end of wxOwnerDrawn::wxOwnerDrawn | |
63415778 | 58 | |
402e2f7c | 59 | size_t wxOwnerDrawn::ms_nDefaultMarginWidth = 15; |
63415778 DW |
60 | |
61 | size_t wxOwnerDrawn::ms_nLastMarginWidth = ms_nDefaultMarginWidth; | |
62 | ||
402e2f7c DW |
63 | // |
64 | // Drawing | |
63415778 | 65 | // ------- |
402e2f7c | 66 | // |
63415778 | 67 | |
402e2f7c DW |
68 | bool wxOwnerDrawn::OnMeasureItem( |
69 | size_t* pWidth | |
70 | , size_t* pHeight | |
71 | ) | |
63415778 | 72 | { |
402e2f7c DW |
73 | wxMemoryDC vDC; |
74 | ||
402e2f7c DW |
75 | |
76 | wxString sStr = wxStripMenuCodes(m_strName); | |
77 | ||
57ff8a87 DW |
78 | // |
79 | // If we have a valid accel string, then pad out | |
80 | // the menu string so the menu and accel string are not | |
81 | // placed ontop of eachother. | |
82 | if (!m_strAccel.empty() ) | |
83 | { | |
84 | sStr.Pad(sStr.Length()%8); | |
85 | sStr += m_strAccel; | |
86 | } | |
87 | vDC.SetFont(GetFont()); | |
402e2f7c DW |
88 | vDC.GetTextExtent( sStr |
89 | ,(long *)pWidth | |
90 | ,(long *)pHeight | |
91 | ); | |
57ff8a87 DW |
92 | if (!m_strAccel.IsEmpty()) |
93 | { | |
94 | // | |
95 | // Measure the accelerator string, and add it's width to | |
96 | // the total item width, plus 16 (Accelerators are right justified, | |
97 | // with the right edge of the text rectangle 16 pixels left of | |
98 | // the right edge of the menu) | |
99 | // | |
100 | int nAccelWidth; | |
101 | int nAccelHeight; | |
102 | ||
103 | vDC.GetTextExtent( m_strAccel | |
104 | ,&nAccelWidth | |
105 | ,&nAccelHeight | |
106 | ); | |
107 | *pWidth += nAccelWidth; | |
108 | } | |
109 | ||
110 | // | |
111 | // Add space at the end of the menu for the submenu expansion arrow | |
112 | // this will also allow offsetting the accel string from the right edge | |
113 | // | |
9923c37d | 114 | *pWidth = (size_t)(*pWidth + GetDefaultMarginWidth() * 1.5); |
57ff8a87 DW |
115 | |
116 | // | |
117 | // JACS: items still look too tightly packed, so adding 5 pixels. | |
118 | // | |
119 | (*pHeight) += 5; | |
402e2f7c | 120 | |
57ff8a87 DW |
121 | // |
122 | // Ray Gilbert's changes - Corrects the problem of a BMP | |
123 | // being placed next to text in a menu item, and the BMP does | |
124 | // not match the size expected by the system. This will | |
125 | // resize the space so the BMP will fit. Without this, BMPs | |
126 | // must be no larger or smaller than 16x16. | |
127 | // | |
128 | if (m_bmpChecked.Ok()) | |
129 | { | |
130 | // | |
131 | // Is BMP height larger then text height? | |
132 | // | |
133 | size_t nAdjustedHeight = m_bmpChecked.GetHeight() + | |
134 | wxSystemSettings::GetMetric(wxSYS_EDGE_Y); | |
135 | if (*pHeight < nAdjustedHeight) | |
136 | *pHeight = nAdjustedHeight; | |
137 | ||
138 | // | |
139 | // Does BMP encroach on default check menu position? | |
140 | // | |
141 | size_t nAdjustedWidth = m_bmpChecked.GetWidth() + | |
142 | (wxSystemSettings::GetMetric(wxSYS_EDGE_X) * 2); | |
143 | ||
144 | // | |
145 | // Do we need to widen margin to fit BMP? | |
146 | // | |
147 | if ((size_t)GetMarginWidth() < nAdjustedWidth) | |
148 | SetMarginWidth(nAdjustedWidth); | |
149 | ||
150 | // | |
151 | // Add the size of the bitmap to our total size... | |
152 | // | |
153 | *pWidth += GetMarginWidth(); | |
154 | } | |
155 | ||
156 | // | |
157 | // Add the size of the bitmap to our total size - even if we don't have | |
158 | // a bitmap we leave room for one... | |
159 | // | |
160 | *pWidth += GetMarginWidth(); | |
161 | ||
162 | // | |
163 | // Make sure that this item is at least as | |
164 | // tall as the user's system settings specify | |
165 | // | |
166 | if (*pHeight < m_nMinHeight) | |
167 | *pHeight = m_nMinHeight; | |
168 | m_nHeight = *pHeight; // remember height for use in OnDrawItem | |
402e2f7c DW |
169 | return TRUE; |
170 | } // end of wxOwnerDrawn::OnMeasureItem | |
63415778 | 171 | |
63415778 | 172 | // draw the item |
402e2f7c DW |
173 | bool wxOwnerDrawn::OnDrawItem( |
174 | wxDC& rDC | |
175 | , const wxRect& rRect | |
176 | , wxODAction eAction | |
177 | , wxODStatus eStatus | |
178 | ) | |
63415778 | 179 | { |
402e2f7c | 180 | // |
23122f8c | 181 | // We do nothing on focus change |
7172b423 | 182 | // |
23122f8c DW |
183 | if (eAction == wxODFocusChanged ) |
184 | return TRUE; | |
7172b423 | 185 | |
402e2f7c | 186 | // |
7172b423 DW |
187 | // Select the font and draw the text |
188 | // --------------------------------- | |
402e2f7c | 189 | // |
402e2f7c | 190 | |
7172b423 | 191 | CHARBUNDLE vCbnd; |
402e2f7c | 192 | HPS hPS= rDC.GetHPS(); |
7172b423 DW |
193 | wxColour vColBack; |
194 | wxColour vColText; | |
195 | COLORREF vRef; | |
5afb9458 | 196 | RECTL vRect = {rRect.x + 4, rRect.y + 1, rRect.x + (rRect.width - 2), rRect.y + rRect.height}; |
402e2f7c | 197 | |
ad7f3189 DW |
198 | memset(&vCbnd, 0, sizeof(CHARBUNDLE)); |
199 | ||
7172b423 DW |
200 | // |
201 | // Use default font if no font set | |
202 | // | |
203 | if (m_font.Ok()) | |
204 | { | |
205 | m_font.RealizeResource(); | |
206 | } | |
207 | else | |
208 | { | |
209 | ::GpiSetCharSet(hPS, LCID_DEFAULT); | |
210 | } | |
5afb9458 DW |
211 | |
212 | // | |
213 | // Base on the status of the menu item pick the right colors | |
214 | // | |
402e2f7c DW |
215 | if (eStatus & wxODSelected) |
216 | { | |
0fba44b4 | 217 | wxColour vCol2(wxT("WHITE")); |
5afb9458 DW |
218 | vColBack.Set( (unsigned char)0 |
219 | ,(unsigned char)0 | |
220 | ,(unsigned char)160 | |
221 | ); // no dark blue in color table | |
222 | vColText = vCol2; | |
402e2f7c DW |
223 | } |
224 | else if (eStatus & wxODDisabled) | |
225 | { | |
7172b423 DW |
226 | vRef = (ULONG)::WinQuerySysColor( HWND_DESKTOP |
227 | ,SYSCLR_MENU // Light gray | |
228 | ,0L | |
229 | ); | |
230 | vColBack.Set( GetRValue(vRef) | |
231 | ,GetGValue(vRef) | |
232 | ,GetBValue(vRef) | |
233 | ); | |
234 | vRef = (ULONG)::WinQuerySysColor( HWND_DESKTOP | |
235 | ,SYSCLR_MENUDISABLEDTEXT // dark gray | |
236 | ,0L | |
237 | ); | |
238 | vColText.Set( GetRValue(vRef) | |
239 | ,GetGValue(vRef) | |
240 | ,GetBValue(vRef) | |
241 | ); | |
402e2f7c DW |
242 | } |
243 | else | |
244 | { | |
245 | // | |
246 | // Fall back to default colors if none explicitly specified | |
247 | // | |
7172b423 | 248 | vRef = ::WinQuerySysColor( HWND_DESKTOP |
77ffb593 | 249 | ,SYSCLR_MENU // we are using gray for all our window backgrounds in wxWidgets |
7172b423 DW |
250 | ,0L |
251 | ); | |
252 | vColBack.Set( GetRValue(vRef) | |
253 | ,GetGValue(vRef) | |
254 | ,GetBValue(vRef) | |
255 | ); | |
256 | vRef = ::WinQuerySysColor( HWND_DESKTOP | |
257 | ,SYSCLR_WINDOWTEXT // Black | |
258 | ,0L | |
259 | ); | |
260 | vColText.Set( GetRValue(vRef) | |
261 | ,GetGValue(vRef) | |
262 | ,GetBValue(vRef) | |
263 | ); | |
402e2f7c | 264 | } |
ad7f3189 | 265 | |
5afb9458 DW |
266 | rDC.SetTextBackground(vColBack); |
267 | rDC.SetTextForeground(vColText); | |
268 | rDC.SetBackgroundMode(wxTRANSPARENT); | |
ad7f3189 DW |
269 | vCbnd.lColor = vColText.GetPixel(); |
270 | vCbnd.lBackColor = vColBack.GetPixel(); | |
271 | ::GpiSetAttrs( hPS | |
272 | ,PRIM_CHAR | |
273 | ,CBB_BACK_COLOR | CBB_COLOR | |
274 | ,0 | |
275 | ,&vCbnd | |
276 | ); | |
277 | ::GpiSetBackMix( hPS | |
278 | ,BM_LEAVEALONE | |
279 | ); | |
7172b423 | 280 | |
5afb9458 DW |
281 | // |
282 | // Paint the background | |
283 | // | |
284 | ::WinFillRect(hPS, &vRect, vColBack.GetPixel()); | |
402e2f7c | 285 | |
402e2f7c DW |
286 | // |
287 | // Determine where to draw and leave space for a check-mark. | |
288 | // | |
289 | int nX = rRect.x + GetMarginWidth(); | |
290 | ||
402e2f7c DW |
291 | // |
292 | // Unfortunately, unlike Win32, PM has no owner drawn specific text | |
293 | // drawing methods like ::DrawState that can cleanly handle accel | |
294 | // pneumonics and deal, automatically, with various states, so we have | |
295 | // to handle them ourselves. Notice Win32 can't handle \t in ownerdrawn | |
5afb9458 DW |
296 | // strings either. We cannot handle mneumonics either. We display |
297 | // it, though, in hopes we can figure it out some day. | |
298 | // | |
402e2f7c | 299 | |
23122f8c | 300 | // |
5afb9458 | 301 | // Display main text and accel text separately to allign better |
23122f8c | 302 | // |
0fba44b4 | 303 | wxString sTgt = wxT("\t"); |
5afb9458 DW |
304 | wxString sFullString = m_strName; // need to save the original text |
305 | wxString sAccel; | |
9923c37d | 306 | int nIndex; |
5afb9458 DW |
307 | size_t nWidth; |
308 | size_t nCharWidth; | |
309 | size_t nHeight; | |
310 | bool bFoundMneumonic = FALSE; | |
311 | bool bFoundAccel = FALSE; | |
23122f8c | 312 | |
5afb9458 DW |
313 | // |
314 | // Deal with the tab, extracting the Accel text | |
315 | // | |
316 | nIndex = sFullString.Find(sTgt.c_str()); | |
23122f8c | 317 | if (nIndex != -1) |
5afb9458 DW |
318 | { |
319 | bFoundAccel = TRUE; | |
320 | sAccel = sFullString.Mid(nIndex + 1); | |
321 | sFullString.Remove(nIndex); | |
322 | } | |
323 | ||
324 | // | |
325 | // Deal with the mneumonic character | |
326 | // | |
0fba44b4 | 327 | sTgt = wxT("~"); |
5afb9458 | 328 | nIndex = sFullString.Find(sTgt.c_str()); |
23122f8c | 329 | if (nIndex != -1) |
5afb9458 DW |
330 | { |
331 | wxString sTmp = sFullString; | |
332 | ||
333 | bFoundMneumonic = TRUE; | |
334 | sTmp.Remove(nIndex); | |
335 | rDC.GetTextExtent( sTmp | |
336 | ,(long *)&nWidth | |
337 | ,(long *)&nHeight | |
338 | ); | |
9923c37d | 339 | sTmp = sFullString[(size_t)(nIndex + 1)]; |
5afb9458 DW |
340 | rDC.GetTextExtent( sTmp |
341 | ,(long *)&nCharWidth | |
342 | ,(long *)&nHeight | |
343 | ); | |
0fba44b4 | 344 | sFullString.Replace(sTgt.c_str(), wxEmptyString, TRUE); |
5afb9458 DW |
345 | } |
346 | ||
347 | // | |
348 | // Draw the main item text sans the accel text | |
ad7f3189 DW |
349 | // |
350 | POINTL vPntStart = {nX, rRect.y + 4}; | |
351 | ::GpiCharStringAt( rDC.GetHPS() | |
352 | ,&vPntStart | |
353 | ,sFullString.length() | |
354 | ,(PCH)sFullString.c_str() | |
355 | ); | |
5afb9458 DW |
356 | if (bFoundMneumonic) |
357 | { | |
358 | // | |
359 | // Underline the mneumonic -- still won't work, but at least it "looks" right | |
360 | // | |
361 | wxPen vPen; | |
5afb9458 DW |
362 | POINTL vPntEnd = {nX + nWidth + nCharWidth - 3, rRect.y + 2}; //CharWidth is bit wide |
363 | ||
ad7f3189 DW |
364 | vPntStart.x = nX + nWidth - 1; |
365 | vPntStart.y = rRect.y + 2; // Make it look pretty! | |
5afb9458 DW |
366 | vPen = wxPen(vColText, 1, wxSOLID); // Assuming we are always black |
367 | rDC.SetPen(vPen); | |
368 | ::GpiMove(hPS, &vPntStart); | |
369 | ::GpiLine(hPS, &vPntEnd); | |
370 | } | |
23122f8c | 371 | |
5afb9458 DW |
372 | // |
373 | // Now draw the accel text | |
374 | // | |
375 | if (bFoundAccel) | |
376 | { | |
377 | size_t nWidth; | |
378 | size_t nHeight; | |
7172b423 | 379 | |
5afb9458 DW |
380 | rDC.GetTextExtent( sAccel |
381 | ,(long *)&nWidth | |
382 | ,(long *)&nHeight | |
383 | ); | |
384 | // | |
385 | // Back off the starting position from the right edge | |
386 | // | |
ad7f3189 DW |
387 | vPntStart.x = rRect.width - (nWidth + 7); |
388 | vPntStart.y = rRect.y + 4; | |
389 | ::GpiCharStringAt( rDC.GetHPS() | |
390 | ,&vPntStart | |
391 | ,sAccel.length() | |
392 | ,(PCH)sAccel.c_str() | |
393 | ); | |
5afb9458 | 394 | } |
402e2f7c DW |
395 | |
396 | // | |
397 | // Draw the bitmap | |
398 | // --------------- | |
399 | // | |
400 | if (IsCheckable() && !m_bmpChecked.Ok()) | |
401 | { | |
402 | if (eStatus & wxODChecked) | |
403 | { | |
404 | RECTL vRect; | |
405 | HBITMAP hBmpCheck = ::WinGetSysBitmap(HWND_DESKTOP, SBMP_MENUCHECK); | |
406 | ||
407 | vRect.xLeft = rRect.x; | |
408 | vRect.xRight = rRect.x + GetMarginWidth(); | |
409 | vRect.yBottom = rRect.y; | |
1159a76f | 410 | vRect.yTop = rRect.y + m_nHeight - 3; |
402e2f7c DW |
411 | |
412 | ::WinDrawBitmap( hPS // PS for this menuitem | |
413 | ,hBmpCheck // system checkmark | |
414 | ,NULL // draw the whole bitmap | |
415 | ,(PPOINTL)&vRect // destination -- bottom left corner of the menuitem area | |
416 | ,0L // ignored | |
417 | ,0L // draw a bitmap | |
418 | ,DBM_NORMAL // draw normal size | |
419 | ); | |
420 | } | |
63415778 | 421 | } |
402e2f7c DW |
422 | else |
423 | { | |
424 | // | |
425 | // For uncheckable item we use only the 'checked' bitmap | |
426 | // | |
427 | wxBitmap vBmp(GetBitmap(IsCheckable() ? ((eStatus & wxODChecked) != 0) : TRUE)); | |
428 | ||
429 | if (vBmp.Ok()) | |
430 | { | |
ad7f3189 | 431 | |
402e2f7c | 432 | wxMemoryDC vDCMem(&rDC); |
ad7f3189 | 433 | wxMemoryDC* pOldDC = (wxMemoryDC*)vBmp.GetSelectedInto(); |
402e2f7c | 434 | |
ad7f3189 DW |
435 | if(pOldDC != NULL) |
436 | { | |
437 | vBmp.SetSelectedInto(NULL); | |
438 | } | |
402e2f7c DW |
439 | vDCMem.SelectObject(vBmp); |
440 | ||
441 | // | |
442 | // Center bitmap | |
443 | // | |
444 | int nBmpWidth = vBmp.GetWidth(); | |
445 | int nBmpHeight = vBmp.GetHeight(); | |
446 | ||
447 | // | |
448 | // There should be enough space! | |
449 | // | |
450 | wxASSERT((nBmpWidth <= rRect.width) && (nBmpHeight <= rRect.height)); | |
451 | ||
b63b737d DW |
452 | int nHeightDiff = m_nHeight - nBmpHeight; |
453 | ||
402e2f7c | 454 | rDC.Blit( rRect.x + (GetMarginWidth() - nBmpWidth) / 2 |
b63b737d | 455 | ,rRect.y + nHeightDiff / 2 |
402e2f7c DW |
456 | ,nBmpWidth |
457 | ,nBmpHeight | |
458 | ,&vDCMem | |
459 | ,0 | |
460 | ,0 | |
461 | ,wxCOPY | |
462 | ,TRUE | |
463 | ); | |
464 | ||
465 | if (eStatus & wxODSelected) | |
466 | { | |
2b7cd532 | 467 | POINTL vPnt1 = {rRect.x + 1, rRect.y + 3}; // Leave a little background border |
1159a76f | 468 | POINTL vPnt2 = {rRect.x + GetMarginWidth(), rRect.y + m_nHeight - 3}; |
2b7cd532 | 469 | |
402e2f7c DW |
470 | LINEBUNDLE vLine; |
471 | ||
5afb9458 | 472 | vLine.lColor = vColBack.GetPixel(); |
402e2f7c DW |
473 | ::GpiSetAttrs( hPS |
474 | ,PRIM_LINE | |
475 | ,LBB_COLOR | |
476 | ,0 | |
477 | ,&vLine | |
478 | ); | |
1159a76f | 479 | ::GpiMove(hPS, &vPnt1); |
402e2f7c DW |
480 | ::GpiBox( hPS |
481 | ,DRO_OUTLINE | |
1159a76f | 482 | ,&vPnt2 |
402e2f7c DW |
483 | ,0L |
484 | ,0L | |
485 | ); | |
486 | } | |
ad7f3189 | 487 | vBmp.SetSelectedInto(NULL); |
402e2f7c | 488 | } |
63415778 | 489 | } |
23122f8c DW |
490 | return TRUE; |
491 | } // end of wxOwnerDrawn::OnDrawItem | |
63415778 | 492 | |
7e99520b | 493 | #endif //wxUSE_OWNER_DRAWN |