]> git.saurik.com Git - wxWidgets.git/blame - src/msw/ownerdrw.cpp
Override email address for Jaakko Salli.
[wxWidgets.git] / src / msw / ownerdrw.cpp
CommitLineData
2bda0e17 1///////////////////////////////////////////////////////////////////////////////
f38924e8 2// Name: src/msw/ownerdrw.cpp
2bda0e17
KB
3// Purpose: implementation of wxOwnerDrawn class
4// Author: Vadim Zeitlin
33ac7e6f 5// Modified by:
2bda0e17
KB
6// Created: 13.11.97
7// RCS-ID: $Id$
8// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
65571936 9// Licence: wxWindows licence
2bda0e17
KB
10///////////////////////////////////////////////////////////////////////////////
11
2bda0e17
KB
12// For compilers that support precompilation, includes "wx.h".
13#include "wx/wxprec.h"
14
15#ifdef __BORLANDC__
f38924e8 16 #pragma hdrstop
2bda0e17
KB
17#endif
18
55e04bbd
VZ
19#if wxUSE_OWNER_DRAWN
20
2bda0e17 21#ifndef WX_PRECOMP
f38924e8 22 #include "wx/window.h"
f38924e8
WS
23 #include "wx/font.h"
24 #include "wx/bitmap.h"
4d1f8403 25 #include "wx/image.h"
f38924e8
WS
26 #include "wx/dcmemory.h"
27 #include "wx/menu.h"
28 #include "wx/utils.h"
9eddec69 29 #include "wx/settings.h"
25466131 30 #include "wx/menuitem.h"
02761f6c 31 #include "wx/module.h"
d247a50d 32 #include "wx/msw/wrapcctl.h"
2bda0e17
KB
33#endif
34
35#include "wx/ownerdrw.h"
d9cf726b 36#include "wx/fontutil.h"
2bda0e17 37
55e04bbd 38#include "wx/msw/private.h"
e328b972 39#include "wx/msw/private/metrics.h"
74052fe8 40#include "wx/msw/dc.h"
1b24a68e 41
8ee64db5
JS
42#ifndef SPI_GETKEYBOARDCUES
43#define SPI_GETKEYBOARDCUES 0x100A
44#endif
45
fb582e40
VZ
46#ifndef DSS_HIDEPREFIX
47#define DSS_HIDEPREFIX 0x0200
48#endif
49
cfbf444a
JS
50class wxMSWSystemMenuFontModule : public wxModule
51{
52public:
cfbf444a 53 virtual bool OnInit()
fb582e40
VZ
54 {
55 return true;
56 }
57
58 virtual void OnExit()
59 {
60 if ( ms_systemMenuFont )
61 {
62 delete ms_systemMenuFont;
63 ms_systemMenuFont = NULL;
64 }
65 }
66
67 static const wxFont& GetSystemMenuFont()
68 {
69 if ( !ms_systemMenuFont )
70 DoInitFont();
71
72 return *ms_systemMenuFont;
73 }
74
75 static int GetSystemMenuHeight()
76 {
77 if ( !ms_systemMenuHeight )
78 DoInitMetrics();
79
80 return ms_systemMenuHeight;
81 }
82
83 static bool AlwaysShowCues()
84 {
85 if ( !ms_systemMenuHeight )
86 DoInitMetrics();
87
88 return ms_alwaysShowCues;
89 }
90
91private:
67c5dabb
VZ
92 static void DoInitMetrics()
93 {
55e04bbd
VZ
94 // iMenuHeight is the menu bar height and the menu items are less tall,
95 // although I don't know by how much -- below is the value for my system
e328b972 96 ms_systemMenuHeight = wxMSWImpl::GetNonClientMetrics().iMenuHeight - 4;
67c5dabb
VZ
97
98 wxASSERT_MSG( ms_systemMenuHeight > 0,
99 "menu height should be positive" );
cfbf444a 100
55e04bbd 101 if ( ::SystemParametersInfo(SPI_GETKEYBOARDCUES, 0,
fb582e40 102 &ms_alwaysShowCues, 0) == 0 )
55e04bbd
VZ
103 {
104 // if it's not supported, we must be on an old Windows version
105 // which always shows them
fb582e40 106 ms_alwaysShowCues = true;
55e04bbd 107 }
cfbf444a
JS
108 }
109
fb582e40 110 static void DoInitFont()
cfbf444a 111 {
e328b972
VZ
112 ms_systemMenuFont = new
113 wxFont(wxNativeFontInfo(wxMSWImpl::GetNonClientMetrics().lfMenuFont));
cfbf444a
JS
114 }
115
116 static wxFont* ms_systemMenuFont;
55e04bbd 117 static int ms_systemMenuHeight;
fb582e40
VZ
118 static bool ms_alwaysShowCues;
119
55e04bbd 120
cfbf444a
JS
121 DECLARE_DYNAMIC_CLASS(wxMSWSystemMenuFontModule)
122};
123
3103e8a9 124// these static variables are from the wxMSWSystemMenuFontModule object
cfbf444a
JS
125// and reflect the system settings returned by the Win32 API's
126// SystemParametersInfo() call.
127
128wxFont* wxMSWSystemMenuFontModule::ms_systemMenuFont = NULL;
fb582e40
VZ
129int wxMSWSystemMenuFontModule::ms_systemMenuHeight = 0;
130bool wxMSWSystemMenuFontModule::ms_alwaysShowCues = false;
cfbf444a
JS
131
132IMPLEMENT_DYNAMIC_CLASS(wxMSWSystemMenuFontModule, wxModule)
2432b92d 133
810ca882 134
9ba4b498
VZ
135// VC++ 6 gives a warning here:
136//
137// return type for 'OwnerDrawnSet_wxImplementation_HashTable::iterator::
138// operator ->' is 'class wxOwnerDrawn ** ' (ie; not a UDT or reference to
139// a UDT. Will produce errors if applied using infix notation.
140//
141// shut it down
8d7eaf91
MW
142#if defined __VISUALC__ && __VISUALC__ <= 1300
143 #if __VISUALC__ >= 1200
9ba4b498 144 #pragma warning(push)
9ba4b498
VZ
145 #define POP_WARNINGS
146 #endif
8d7eaf91 147 #pragma warning(disable: 4284)
9ba4b498
VZ
148#endif
149
810ca882 150#include "wx/hashset.h"
3f5c62f9 151WX_DECLARE_HASH_SET(wxOwnerDrawn*, wxPointerHash, wxPointerEqual, OwnerDrawnSet);
810ca882 152
9ba4b498
VZ
153#ifdef POP_WARNINGS
154 #pragma warning(pop)
155#endif
156
2bda0e17
KB
157// ============================================================================
158// implementation of wxOwnerDrawn class
159// ============================================================================
160
161// ctor
162// ----
33ac7e6f 163wxOwnerDrawn::wxOwnerDrawn(const wxString& str,
810ca882
VZ
164 bool bCheckable,
165 bool bMenuItem)
2bda0e17
KB
166 : m_strName(str)
167{
4e47fd5a 168 if ( ms_nDefaultMarginWidth == 0 )
d9cf726b 169 {
810ca882
VZ
170 ms_nDefaultMarginWidth = ::GetSystemMetrics(SM_CXMENUCHECK) +
171 wxSystemSettings::GetMetric(wxSYS_EDGE_X);
271fa250 172 ms_nLastMarginWidth = ms_nDefaultMarginWidth;
d9cf726b
JS
173 }
174
d9cf726b 175 m_bCheckable = bCheckable;
078cf5cb 176 m_bOwnerDrawn = false;
4e47fd5a 177 m_isMenuItem = bMenuItem;
d9cf726b
JS
178 m_nHeight = 0;
179 m_nMarginWidth = ms_nLastMarginWidth;
810ca882
VZ
180}
181
182wxOwnerDrawn::~wxOwnerDrawn()
183{
810ca882
VZ
184}
185
186bool wxOwnerDrawn::IsMenuItem() const
187{
4e47fd5a 188 return m_isMenuItem;
d9cf726b
JS
189}
190
191
55e04bbd 192// these items will be set during the first invocation of the ctor,
d9cf726b 193// because the values will be determined by checking the system settings,
10403254 194// which is a chunk of code
d9cf726b
JS
195size_t wxOwnerDrawn::ms_nDefaultMarginWidth = 0;
196size_t wxOwnerDrawn::ms_nLastMarginWidth = 0;
197
2bda0e17
KB
198
199// drawing
200// -------
201
810ca882
VZ
202wxFont wxOwnerDrawn::GetFontToUse() const
203{
204 wxFont font = m_font;
205 if ( !font.Ok() )
206 {
207 if ( IsMenuItem() )
fb582e40 208 font = wxMSWSystemMenuFontModule::GetSystemMenuFont();
810ca882
VZ
209
210 if ( !font.Ok() )
211 font = *wxNORMAL_FONT;
212 }
213
214 return font;
215}
216
2bda0e17 217// get size of the item
2a2a71e3
JS
218// The item size includes the menu string, the accel string,
219// the bitmap and size for a submenu expansion arrow...
c86f1403 220bool wxOwnerDrawn::OnMeasureItem(size_t *pwidth, size_t *pheight)
2bda0e17 221{
810ca882
VZ
222 if ( IsOwnerDrawn() )
223 {
224 wxMemoryDC dc;
2bda0e17 225
810ca882 226 wxString str = wxStripMenuCodes(m_strName);
2bda0e17 227
810ca882
VZ
228 // if we have a valid accel string, then pad out
229 // the menu string so that the menu and accel string are not
230 // placed on top of each other.
231 if ( !m_strAccel.empty() )
232 {
f38924e8 233 str.Pad(str.length()%8);
810ca882
VZ
234 str += m_strAccel;
235 }
2bda0e17 236
810ca882 237 dc.SetFont(GetFontToUse());
e7dd6ecd 238
36866abc
PC
239 wxCoord w, h;
240 dc.GetTextExtent(str, &w, &h);
241 *pwidth = w;
242 *pheight = h;
810ca882
VZ
243 }
244 else // don't draw the text, just the bitmap (if any)
245 {
246 *pwidth =
247 *pheight = 0;
248 }
33ac7e6f 249
810ca882
VZ
250 // increase size to accommodate bigger bitmaps if necessary
251 if (m_bmpChecked.Ok())
252 {
55e04bbd
VZ
253 // Is BMP height larger than text height?
254 size_t adjustedHeight = m_bmpChecked.GetHeight();
255 if ( *pheight < adjustedHeight )
810ca882
VZ
256 *pheight = adjustedHeight;
257
29cd57f7 258 const int widthBmp = m_bmpChecked.GetWidth();
810ca882
VZ
259 if ( IsOwnerDrawn() )
260 {
261 // widen the margin to fit the bitmap if necessary
29cd57f7 262 if ( GetMarginWidth() < widthBmp )
810ca882
VZ
263 SetMarginWidth(widthBmp);
264 }
265 else // we must allocate enough space for the bitmap
266 {
267 *pwidth += widthBmp;
268 }
269 }
51d2fa37 270
810ca882
VZ
271 // add a 4-pixel separator, otherwise menus look cluttered
272 *pwidth += 4;
51d2fa37 273
29cd57f7
VZ
274 // notice that this adjustment must be done after (possibly) changing the
275 // margin width above
276 if ( IsOwnerDrawn() )
277 {
278 // add space at the end of the menu for the submenu expansion arrow
279 // this will also allow offsetting the accel string from the right edge
280 *pwidth += GetMarginWidth() + 16;
281 }
282
810ca882 283 // make sure that this item is at least as tall as the system menu height
fb582e40 284 const size_t heightStd = wxMSWSystemMenuFontModule::GetSystemMenuHeight();
55e04bbd
VZ
285 if ( *pheight < heightStd )
286 *pheight = heightStd;
d9cf726b 287
810ca882
VZ
288 // remember height for use in OnDrawItem
289 m_nHeight = *pheight;
2bda0e17 290
810ca882 291 return true;
2bda0e17
KB
292}
293
2bda0e17 294// draw the item
6d5b2a57
VZ
295bool wxOwnerDrawn::OnDrawItem(wxDC& dc,
296 const wxRect& rc,
ab0c29ae 297 wxODAction,
6d5b2a57 298 wxODStatus st)
2bda0e17 299{
92218ce6
WS
300 // this flag determines whether or not an edge will
301 // be drawn around the bitmap. In most "windows classic"
302 // applications, a 1-pixel highlight edge is drawn around
303 // the bitmap of an item when it is selected. However,
304 // with the new "luna" theme, no edge is drawn around
305 // the bitmap because the background is white (this applies
306 // only to "non-XP style" menus w/ bitmaps --
307 // see IE 6 menus for an example)
c0cb30dc 308
92218ce6 309 bool draw_bitmap_edge = true;
c0cb30dc 310
92218ce6
WS
311 // set the colors
312 // --------------
313 DWORD colBack, colText;
314 if ( st & wxODSelected )
5ac7be7a 315 {
92218ce6
WS
316 colBack = GetSysColor(COLOR_HIGHLIGHT);
317 if (!(st & wxODDisabled))
318 {
319 colText = GetSysColor(COLOR_HIGHLIGHTTEXT);
320 }
321 else
322 {
323 colText = GetSysColor(COLOR_GRAYTEXT);
324 }
5ac7be7a 325 }
92218ce6 326 else
5ac7be7a 327 {
92218ce6
WS
328 // fall back to default colors if none explicitly specified
329 colBack = m_colBack.Ok() ? wxColourToPalRGB(m_colBack)
330 : GetSysColor(COLOR_MENU);
331 colText = m_colText.Ok() ? wxColourToPalRGB(m_colText)
332 : GetSysColor(COLOR_MENUTEXT);
333 }
334
335 if ( IsOwnerDrawn() )
336 {
337 // don't draw an edge around the bitmap, if background is white ...
338 DWORD menu_bg_color = GetSysColor(COLOR_MENU);
339 if ( ( GetRValue( menu_bg_color ) >= 0xf0 &&
340 GetGValue( menu_bg_color ) >= 0xf0 &&
341 GetBValue( menu_bg_color ) >= 0xf0 )
342 )
343 {
344 draw_bitmap_edge = false;
345 }
5ac7be7a 346 }
92218ce6 347 else // edge doesn't look well with default Windows drawing
39dcd515
VZ
348 {
349 draw_bitmap_edge = false;
350 }
c0cb30dc 351
7230716d 352
888dde65
RR
353 wxMSWDCImpl *impl = (wxMSWDCImpl*) dc.GetImpl();
354 HDC hdc = GetHdcOf(*impl);
92218ce6
WS
355 COLORREF colOldText = ::SetTextColor(hdc, colText),
356 colOldBack = ::SetBkColor(hdc, colBack);
2bda0e17 357
92218ce6
WS
358 // *2, as in wxSYS_EDGE_Y
359 int margin = GetMarginWidth() + 2 * wxSystemSettings::GetMetric(wxSYS_EDGE_X);
2bda0e17 360
92218ce6
WS
361 // select the font and draw the text
362 // ---------------------------------
d9cf726b 363
d9cf726b 364
92218ce6
WS
365 // determine where to draw and leave space for a check-mark.
366 // + 1 pixel to separate the edge from the highlight rectangle
367 int xText = rc.x + margin + 1;
2bda0e17 368
d9cf726b 369
92218ce6
WS
370 // using native API because it recognizes '&'
371 if ( IsOwnerDrawn() )
372 {
373 int nPrevMode = SetBkMode(hdc, TRANSPARENT);
374 AutoHBRUSH hbr(colBack);
375 SelectInHDC selBrush(hdc, hbr);
d9cf726b 376
6efda5fd
PC
377 RECT rectFill;
378 wxCopyRectToRECT(rc, rectFill);
2bda0e17 379
92218ce6
WS
380 if ( (st & wxODSelected) && m_bmpChecked.Ok() && draw_bitmap_edge )
381 {
382 // only draw the highlight under the text, not under
383 // the bitmap or checkmark
384 rectFill.left = xText;
385 }
2bda0e17 386
92218ce6 387 FillRect(hdc, &rectFill, hbr);
f44b4495 388
92218ce6
WS
389 // use default font if no font set
390 wxFont fontToUse = GetFontToUse();
391 SelectInHDC selFont(hdc, GetHfontOf(fontToUse));
d9cf726b 392
92218ce6 393 wxString strMenuText = m_strName.BeforeFirst('\t');
6d5b2a57 394
92218ce6 395 xText += 3; // separate text from the highlight rectangle
51d2fa37 396
92218ce6 397 SIZE sizeRect;
f38924e8 398 ::GetTextExtentPoint32(hdc, strMenuText.c_str(), strMenuText.length(), &sizeRect);
fb582e40
VZ
399
400 int flags = DST_PREFIXTEXT;
401 if ( (st & wxODDisabled) && !(st & wxODSelected) )
402 flags |= DSS_DISABLED;
403
404 if ( (st & wxODHidePrefix) &&
405 !wxMSWSystemMenuFontModule::AlwaysShowCues() )
406 flags |= DSS_HIDEPREFIX;
407
408 ::DrawState
409 (
410 hdc,
411 NULL,
412 NULL,
413 (LPARAM)strMenuText.wx_str(),
414 strMenuText.length(),
415 xText,
6efda5fd 416 rc.y + (rc.height - sizeRect.cy) / 2, // centre vertically
fb582e40
VZ
417 rc.GetWidth() - margin,
418 sizeRect.cy,
419 flags
420 );
92218ce6
WS
421
422 // ::SetTextAlign(hdc, TA_RIGHT) doesn't work with DSS_DISABLED or DSS_MONO
423 // as the last parameter in DrawState() (at least with Windows98). So we have
424 // to take care of right alignment ourselves.
425 if ( !m_strAccel.empty() )
426 {
427 int accel_width, accel_height;
428 dc.GetTextExtent(m_strAccel, &accel_width, &accel_height);
429 // right align accel string with right edge of menu ( offset by the
430 // margin width )
431 ::DrawState(hdc, NULL, NULL,
c9f78968
VS
432 (LPARAM)m_strAccel.wx_str(),
433 m_strAccel.length(),
6efda5fd 434 rc.width - 16 - accel_width, rc.y + (rc.height - sizeRect.cy) / 2,
92218ce6
WS
435 0, 0,
436 DST_TEXT |
437 (((st & wxODDisabled) && !(st & wxODSelected)) ? DSS_DISABLED : 0));
438 }
07cf98cb 439
92218ce6 440 (void)SetBkMode(hdc, nPrevMode);
2bda0e17 441 }
cb0bcdd6 442
cb0bcdd6 443
92218ce6
WS
444 // draw the bitmap
445 // ---------------
446 if ( IsCheckable() && !m_bmpChecked.Ok() )
cb0bcdd6 447 {
92218ce6
WS
448 if ( st & wxODChecked )
449 {
450 // what goes on: DrawFrameControl creates a b/w mask,
451 // then we copy it to screen to have right colors
452
453 // first create a monochrome bitmap in a memory DC
454 HDC hdcMem = CreateCompatibleDC(hdc);
455 HBITMAP hbmpCheck = CreateBitmap(margin, m_nHeight, 1, 1, 0);
456 SelectObject(hdcMem, hbmpCheck);
457
458 // then draw a check mark into it
459 RECT rect = { 0, 0, margin, m_nHeight };
460 if ( m_nHeight > 0 )
461 {
462 ::DrawFrameControl(hdcMem, &rect, DFC_MENU, DFCS_MENUCHECK);
463 }
464
465 // finally copy it to screen DC and clean up
466 BitBlt(hdc, rc.x, rc.y, margin, m_nHeight, hdcMem, 0, 0, SRCCOPY);
467
468 DeleteDC(hdcMem);
469 DeleteObject(hbmpCheck);
470 }
cb0bcdd6 471 }
92218ce6
WS
472 else
473 {
474 wxBitmap bmp;
cb0bcdd6 475
92218ce6
WS
476 if ( st & wxODDisabled )
477 {
478 bmp = GetDisabledBitmap();
479 }
2bda0e17 480
92218ce6
WS
481 if ( !bmp.Ok() )
482 {
0d3997fd
VZ
483 // for not checkable bitmaps we should always use unchecked one
484 // because their checked bitmap is not set
92218ce6 485 bmp = GetBitmap(!IsCheckable() || (st & wxODChecked));
0d3997fd
VZ
486
487#if wxUSE_IMAGE
488 if ( bmp.Ok() && st & wxODDisabled )
489 {
490 // we need to grey out the bitmap as we don't have any specific
491 // disabled bitmap
492 wxImage imgGrey = bmp.ConvertToImage().ConvertToGreyscale();
493 if ( imgGrey.Ok() )
494 bmp = wxBitmap(imgGrey);
495 }
496#endif // wxUSE_IMAGE
92218ce6 497 }
7230716d 498
92218ce6
WS
499 if ( bmp.Ok() )
500 {
501 wxMemoryDC dcMem(&dc);
5d7eebb6 502 dcMem.SelectObjectAsSource(bmp);
92218ce6
WS
503
504 // center bitmap
505 int nBmpWidth = bmp.GetWidth(),
506 nBmpHeight = bmp.GetHeight();
507
508 // there should be enough space!
509 wxASSERT((nBmpWidth <= rc.GetWidth()) && (nBmpHeight <= rc.GetHeight()));
510
511 int heightDiff = m_nHeight - nBmpHeight;
512 dc.Blit(rc.x + (margin - nBmpWidth) / 2,
513 rc.y + heightDiff / 2,
514 nBmpWidth, nBmpHeight,
515 &dcMem, 0, 0, wxCOPY, true /* use mask */);
516
517 if ( ( st & wxODSelected ) && !( st & wxODDisabled ) && draw_bitmap_edge )
518 {
519 RECT rectBmp = { rc.GetLeft(), rc.GetTop(),
520 rc.GetLeft() + margin,
521 rc.GetTop() + m_nHeight };
522 SetBkColor(hdc, colBack);
523
524 DrawEdge(hdc, &rectBmp, BDR_RAISEDINNER, BF_RECT);
525 }
526 }
2bda0e17 527 }
2bda0e17 528
92218ce6
WS
529 ::SetTextColor(hdc, colOldText);
530 ::SetBkColor(hdc, colOldBack);
2bda0e17 531
92218ce6 532 return true;
2bda0e17
KB
533}
534
1b24a68e 535
0a1f7784
VZ
536// ----------------------------------------------------------------------------
537// global helper functions implemented here
538// ----------------------------------------------------------------------------
539
540BOOL wxDrawStateBitmap(HDC hDC, HBITMAP hBitmap, int x, int y, UINT uState)
541{
542 // determine size of bitmap image
543 BITMAP bmp;
544 if ( !::GetObject(hBitmap, sizeof(BITMAP), &bmp) )
545 return FALSE;
546
547 BOOL result;
548
549 switch ( uState )
550 {
551 case wxDSB_NORMAL:
552 case wxDSB_SELECTED:
553 {
554 // uses image list functions to draw
555 // - normal bitmap with support transparency
556 // (image list internally create mask etc.)
557 // - blend bitmap with the background colour
558 // (like default selected items)
559 HIMAGELIST hIml = ::ImageList_Create(bmp.bmWidth, bmp.bmHeight,
560 ILC_COLOR32 | ILC_MASK, 1, 1);
561 ::ImageList_Add(hIml, hBitmap, NULL);
562 UINT fStyle = uState == wxDSB_SELECTED ? ILD_SELECTED : ILD_NORMAL;
563 result = ::ImageList_Draw(hIml, 0, hDC, x, y, fStyle);
564 ::ImageList_Destroy(hIml);
565 }
566 break;
567
568 case wxDSB_DISABLED:
569 result = ::DrawState(hDC, NULL, NULL, (LPARAM)hBitmap, 0, x, y,
570 bmp.bmWidth, bmp.bmHeight,
571 DST_BITMAP | DSS_DISABLED);
572 break;
573
574 default:
575 wxFAIL_MSG( _T("DrawStateBitmap: unknown wxDSBStates value") );
576 result = FALSE;
577 }
578
579 return result;
580}
581
1b24a68e 582#endif // wxUSE_OWNER_DRAWN