1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: msw/ownerdrw.cpp
3 // Purpose: implementation of wxOwnerDrawn class
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
18 #include "wx/msw/private.h"
25 #include "wx/window.h"
26 #include "wx/msw/private.h"
28 #include "wx/bitmap.h"
29 #include "wx/dcmemory.h"
34 #include "wx/settings.h"
35 #include "wx/ownerdrw.h"
36 #include "wx/menuitem.h"
37 #include "wx/fontutil.h"
38 #include "wx/module.h"
42 class wxMSWSystemMenuFontModule
: public wxModule
48 ms_systemMenuFont
= new wxFont
;
50 #if defined(__WXMSW__) && defined(__WIN32__) && defined(SM_CXMENUCHECK)
52 nm
.cbSize
= sizeof(NONCLIENTMETRICS
);
53 SystemParametersInfo(SPI_GETNONCLIENTMETRICS
,0,&nm
,0);
55 ms_systemMenuButtonWidth
= nm
.iMenuHeight
;
56 ms_systemMenuHeight
= nm
.iMenuHeight
;
59 wxNativeFontInfo info
;
60 memcpy(&info
.lf
, &nm
.lfMenuFont
, sizeof(LOGFONT
));
61 ms_systemMenuFont
->Create(info
);
69 delete ms_systemMenuFont
;
70 ms_systemMenuFont
= NULL
;
73 static wxFont
* ms_systemMenuFont
;
74 static int ms_systemMenuButtonWidth
; // windows clean install default
75 static int ms_systemMenuHeight
; // windows clean install default
77 DECLARE_DYNAMIC_CLASS(wxMSWSystemMenuFontModule
)
80 // these static variables are by the wxMSWSystemMenuFontModule object
81 // and reflect the system settings returned by the Win32 API's
82 // SystemParametersInfo() call.
84 wxFont
* wxMSWSystemMenuFontModule::ms_systemMenuFont
= NULL
;
85 int wxMSWSystemMenuFontModule::ms_systemMenuButtonWidth
= 18; // windows clean install default
86 int wxMSWSystemMenuFontModule::ms_systemMenuHeight
= 18; // windows clean install default
88 IMPLEMENT_DYNAMIC_CLASS(wxMSWSystemMenuFontModule
, wxModule
)
90 // ============================================================================
91 // implementation of wxOwnerDrawn class
92 // ============================================================================
96 wxOwnerDrawn::wxOwnerDrawn(const wxString
& str
,
97 bool bCheckable
, bool bMenuItem
)
100 // get the default menu height and font from the system
102 nm
.cbSize
= sizeof (NONCLIENTMETRICS
);
103 SystemParametersInfo (SPI_GETNONCLIENTMETRICS
,0,&nm
,0);
104 m_nMinHeight
= nm
.iMenuHeight
;
106 // nm.iMenuWidth is the system default for the width of
107 // menu icons and checkmarks
108 if (ms_nDefaultMarginWidth
== 0)
110 ms_nDefaultMarginWidth
= wxMSWSystemMenuFontModule::ms_systemMenuButtonWidth
;
111 ms_nLastMarginWidth
= wxMSWSystemMenuFontModule::ms_systemMenuButtonWidth
;
114 if (wxMSWSystemMenuFontModule::ms_systemMenuFont
->Ok() && bMenuItem
)
116 m_font
= *wxMSWSystemMenuFontModule::ms_systemMenuFont
;
120 m_font
= *wxNORMAL_FONT
;
123 m_bCheckable
= bCheckable
;
124 m_bOwnerDrawn
= FALSE
;
126 m_nMarginWidth
= ms_nLastMarginWidth
;
127 m_nMinHeight
= wxMSWSystemMenuFontModule::ms_systemMenuHeight
;
129 m_bmpDisabled
= wxNullBitmap
;
133 // these items will be set during the first invocation of the c'tor,
134 // because the values will be determined by checking the system settings,
135 // which is a chunk of code
136 size_t wxOwnerDrawn::ms_nDefaultMarginWidth
= 0;
137 size_t wxOwnerDrawn::ms_nLastMarginWidth
= 0;
143 // get size of the item
144 // The item size includes the menu string, the accel string,
145 // the bitmap and size for a submenu expansion arrow...
146 bool wxOwnerDrawn::OnMeasureItem(size_t *pwidth
, size_t *pheight
)
150 wxString str
= wxStripMenuCodes(m_strName
);
152 // if we have a valid accel string, then pad out
153 // the menu string so the menu and accel string are not
154 // placed ontop of eachother.
155 if ( !m_strAccel
.empty() )
157 str
.Pad(str
.Length()%8
);
162 dc
.SetFont(GetFont());
164 dc
.GetTextExtent(str
, (long *)pwidth
, (long *)pheight
);
166 // add space at the end of the menu for the submenu expansion arrow
167 // this will also allow offsetting the accel string from the right edge
168 *pwidth
+= (size_t) (GetDefaultMarginWidth() * 1.5) + 16;
170 // JACS: items still look too tightly packed, so adding 5 pixels.
171 (*pheight
) = (*pheight
) + 5;
173 // Ray Gilbert's changes - Corrects the problem of a BMP
174 // being placed next to text in a menu item, and the BMP does
175 // not match the size expected by the system. This will
176 // resize the space so the BMP will fit. Without this, BMPs
177 // must be no larger or smaller than 16x16.
178 if (m_bmpChecked
.Ok())
180 // Is BMP height larger then text height?
181 size_t adjustedHeight
= m_bmpChecked
.GetHeight() +
182 wxSystemSettings::GetMetric(wxSYS_EDGE_Y
);
183 if (*pheight
< adjustedHeight
)
184 *pheight
= adjustedHeight
;
186 // Does BMP encroach on default check menu position?
187 size_t adjustedWidth
= m_bmpChecked
.GetWidth() +
188 (wxSystemSettings::GetMetric(wxSYS_EDGE_X
) * 2);
190 // Do we need to widen margin to fit BMP?
191 if ((size_t)GetMarginWidth() != adjustedWidth
)
192 SetMarginWidth(adjustedWidth
);
195 // add the size of the bitmap to our total size - even if we don't have
196 // a bitmap we leave room for one...
197 *pwidth
+= GetMarginWidth();
199 // make sure that this item is at least as
200 // tall as the user's system settings specify
201 if (*pheight
< m_nMinHeight
)
202 *pheight
= m_nMinHeight
;
204 m_nHeight
= *pheight
; // remember height for use in OnDrawItem
209 // searching for this macro you'll find all the code where I'm using the native
210 // Win32 GDI functions and not wxWindows ones. Might help to whoever decides to
211 // port this code to X. (VZ)
213 #if defined(__WIN32__) && !defined(__SYMANTEC__)
214 #define O_DRAW_NATIVE_API // comments below explain why I use it
218 bool wxOwnerDrawn::OnDrawItem(wxDC
& dc
,
223 // we do nothing on focus change
224 if ( act
== wxODFocusChanged
)
228 #define ToRGB(col) PALETTERGB(col.Red(), col.Green(), col.Blue())
229 #define UnRGB(col) GetRValue(col), GetGValue(col), GetBValue(col)
232 // this flag determines whether or not an edge will
233 // be drawn around the bitmap. In most "windows classic"
234 // applications, a 1-pixel highlight edge is drawn around
235 // the bitmap of an item when it is selected. However,
236 // with the new "luna" theme, no edge is drawn around
237 // the bitmap because the background is white (this applies
238 // only to "non-XP style" menus w/ bitmaps --
239 // see IE 6 menus for an example)
241 bool draw_bitmap_edge
= true;
245 DWORD colBack
, colText
;
246 if ( st
& wxODSelected
) {
247 colBack
= GetSysColor(COLOR_HIGHLIGHT
);
248 if (!(st
& wxODDisabled
))
250 colText
= GetSysColor(COLOR_HIGHLIGHTTEXT
);
254 colText
= GetSysColor(COLOR_GRAYTEXT
);
258 // fall back to default colors if none explicitly specified
259 colBack
= m_colBack
.Ok() ? ToRGB(m_colBack
) : GetSysColor(COLOR_WINDOW
);
260 colText
= m_colText
.Ok() ? ToRGB(m_colText
) : GetSysColor(COLOR_WINDOWTEXT
);
264 // don't draw an edge around the bitmap, if background is white ...
265 DWORD menu_bg_color
= GetSysColor(COLOR_MENU
);
266 if ( ( GetRValue( menu_bg_color
) >= 0xf0 &&
267 GetGValue( menu_bg_color
) >= 0xf0 &&
268 GetBValue( menu_bg_color
) >= 0xf0 )
269 // ... or if the menu item is disabled
270 || ( st
& wxODDisabled
)
273 draw_bitmap_edge
= false;
277 #ifdef O_DRAW_NATIVE_API
278 #define hdc (HDC)dc.GetHDC()
279 COLORREF colOldText
= ::SetTextColor(hdc
, colText
),
280 colOldBack
= ::SetBkColor(hdc
, colBack
);
282 dc
.SetTextForeground(wxColor(UnRGB(colText
)));
283 dc
.SetTextBackground(wxColor(UnRGB(colBack
)));
286 // select the font and draw the text
287 // ---------------------------------
290 // determine where to draw and leave space for a check-mark.
291 // Add 3 pixel padding so text appears well within highlight rectangle
292 int x
= rc
.x
+ GetMarginWidth() + 3;
295 // using native API because it reckognizes '&'
296 #ifdef O_DRAW_NATIVE_API
297 int nPrevMode
= SetBkMode(hdc
, TRANSPARENT
);
298 HBRUSH hbr
= CreateSolidBrush(colBack
),
299 hPrevBrush
= (HBRUSH
)SelectObject(hdc
, hbr
);
301 RECT rectFill
= { rc
.GetLeft(), rc
.GetTop(), rc
.GetRight()+1, rc
.GetBottom() };
303 if ( st
& wxODSelected
&& m_bmpChecked
.Ok() && draw_bitmap_edge
) {
304 // only draw the highlight under the text, not under
305 // the bitmap or checkmark; leave a 1-pixel gap.
306 rectFill
.left
= GetMarginWidth() + 1;
309 FillRect(hdc
, &rectFill
, hbr
);
311 // use default font if no font set
314 m_font
.RealizeResource();
315 hfont
= (HFONT
)m_font
.GetResourceHandle();
318 hfont
= (HFONT
)::GetStockObject(SYSTEM_FONT
);
321 HFONT hPrevFont
= (HFONT
) ::SelectObject(hdc
, hfont
);
323 wxString strMenuText
= m_strName
.BeforeFirst('\t');
326 GetTextExtentPoint32(hdc
,strMenuText
.c_str(), strMenuText
.Length(),&sizeRect
);
327 ::DrawState(hdc
, NULL
, NULL
,
328 (LPARAM
)strMenuText
.c_str(), strMenuText
.length(),
329 x
, rc
.y
+( (int) ((rc
.GetHeight()-sizeRect
.cy
)/2.0) )-1, // centre text vertically
330 rc
.GetWidth()-GetMarginWidth(), sizeRect
.cy
,
332 (((st
& wxODDisabled
) && !(st
& wxODSelected
)) ? DSS_DISABLED
: 0));
334 /* Right alignment does not work with DSS_DISABLED (Windows98) - why?
335 if ( !m_strAccel.empty() )
337 // right align accel string with right edge of menu ( offset by the margin width )
338 ::SetTextAlign(hdc, TA_RIGHT);
339 ::DrawState(hdc, NULL, NULL,
340 (LPARAM)m_strAccel.c_str(), m_strAccel.length(),
341 rc.GetWidth()-(GetMarginWidth()), rc.y+(int) ((rc.GetHeight()-sizeRect.cy)/2.0),
342 rc.GetWidth()-GetMarginWidth(), sizeRect.cy,
344 (((st & wxODDisabled) && !(st & wxODSelected)) ? DSS_DISABLED : 0));
345 ::SetTextAlign(hdc, TA_LEFT);
349 // ::SetTextAlign(hdc, TA_RIGHT) doesn't work with DSS_DISABLED or DSS_MONO as last parameter
350 // in DrawState() (at least with Windows98). So we have to take care of right alignment ourselves.
351 if ( !m_strAccel
.empty() )
353 int accel_width
, accel_height
;
354 dc
.GetTextExtent(m_strAccel
, &accel_width
, &accel_height
);
355 // right align accel string with right edge of menu ( offset by the margin width )
356 ::DrawState(hdc
, NULL
, NULL
,
357 (LPARAM
)m_strAccel
.c_str(), m_strAccel
.length(),
358 rc
.GetWidth()-GetMarginWidth()-accel_width
, rc
.y
+(int) ((rc
.GetHeight()-sizeRect
.cy
)/2.0),
359 rc
.GetWidth()-GetMarginWidth()-accel_width
, sizeRect
.cy
,
361 (((st
& wxODDisabled
) && !(st
& wxODSelected
)) ? DSS_DISABLED
: 0));
364 (void)SelectObject(hdc
, hPrevBrush
);
365 (void)SelectObject(hdc
, hPrevFont
);
366 (void)SetBkMode(hdc
, nPrevMode
);
370 dc
.SetFont(GetFont());
371 dc
.DrawText(wxStripMenuCodes(m_strName
), x
, rc
.y
);
372 #endif //O_DRAW_NATIVE_API
376 if ( IsCheckable() && !m_bmpChecked
.Ok() ) {
377 if ( st
& wxODChecked
) {
378 // using native APIs for performance and simplicity
379 #ifdef O_DRAW_NATIVE_API
380 // what goes on: DrawFrameControl creates a b/w mask,
381 // then we copy it to screen to have right colors
383 // first create a monochrome bitmap in a memory DC
384 HDC hdcMem
= CreateCompatibleDC(hdc
);
385 HBITMAP hbmpCheck
= CreateBitmap(GetMarginWidth(), m_nHeight
, 1, 1, 0);
386 SelectObject(hdcMem
, hbmpCheck
);
388 // then draw a check mark into it
389 RECT rect
= { 0, 0, GetMarginWidth(), m_nHeight
};
392 ::DrawFrameControl(hdcMem
, &rect
, DFC_MENU
, DFCS_MENUCHECK
);
395 // finally copy it to screen DC and clean up
396 BitBlt(hdc
, rc
.x
, rc
.y
, GetMarginWidth(), m_nHeight
,
397 hdcMem
, 0, 0, SRCCOPY
);
400 DeleteObject(hbmpCheck
);
402 // #### to do: perhaps using Marlett font (create equiv. font under X)
403 // wxFAIL("not implemented");
404 #endif //O_DRAW_NATIVE_API
410 if ( st
& wxODDisabled
)
412 bmp
= GetDisabledBitmap();
417 // for not checkable bitmaps we should always use unchecked one because
418 // their checked bitmap is not set
419 bmp
= GetBitmap(!IsCheckable() || (st
& wxODChecked
));
423 wxMemoryDC
dcMem(&dc
);
424 dcMem
.SelectObject(bmp
);
427 int nBmpWidth
= bmp
.GetWidth(),
428 nBmpHeight
= bmp
.GetHeight();
430 // there should be enough place!
431 wxASSERT((nBmpWidth
<= rc
.GetWidth()) && (nBmpHeight
<= rc
.GetHeight()));
433 int heightDiff
= m_nHeight
- nBmpHeight
;
434 dc
.Blit(rc
.x
+ (GetMarginWidth() - nBmpWidth
) / 2,
435 rc
.y
+ heightDiff
/ 2,
436 nBmpWidth
, nBmpHeight
,
437 &dcMem
, 0, 0, wxCOPY
, TRUE
/* use mask */);
439 if ( st
& wxODSelected
&& draw_bitmap_edge
) {
440 #ifdef O_DRAW_NATIVE_API
441 RECT rectBmp
= { rc
.GetLeft(), rc
.GetTop(),
442 rc
.GetLeft() + GetMarginWidth(),
443 rc
.GetTop() + m_nHeight
-1 };
444 SetBkColor(hdc
, colBack
);
445 DrawEdge(hdc
, &rectBmp
, BDR_RAISEDOUTER
, BF_SOFT
| BF_RECT
);
450 x2
= x1
+ GetMarginWidth() - 1;
451 y2
= y1
+ m_nHeight
- 1;
453 dc
.SetPen(*wxWHITE_PEN
);
454 dc
.DrawLine(x1
, y1
, x2
, y1
);
455 dc
.DrawLine(x1
, y1
, x1
, y2
);
456 dc
.SetPen(*wxGREY_PEN
);
457 dc
.DrawLine(x1
, y2
-1, x2
, y2
-1);
458 dc
.DrawLine(x2
, y1
, x2
, y2
);
459 #endif //O_DRAW_NATIVE_API
464 #ifdef O_DRAW_NATIVE_API
465 ::SetTextColor(hdc
, colOldText
);
466 ::SetBkColor(hdc
, colOldBack
);
469 #endif //O_DRAW_NATIVE_API
475 #endif // wxUSE_OWNER_DRAWN