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