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
+= GetDefaultMarginWidth() + 16;
170 // increase size to accomodate bigger bitmaps if necessary
171 if (m_bmpChecked
.Ok())
173 // Is BMP height larger then text height?
174 size_t adjustedHeight
= m_bmpChecked
.GetHeight() +
175 2*wxSystemSettings::GetMetric(wxSYS_EDGE_Y
);
176 if (*pheight
< adjustedHeight
)
177 *pheight
= adjustedHeight
;
179 // Does BMP encroach on default check menu position?
180 size_t adjustedWidth
= m_bmpChecked
.GetWidth();
182 // Do we need to widen margin to fit BMP?
183 if ((size_t)GetMarginWidth() < adjustedWidth
)
184 SetMarginWidth(adjustedWidth
);
187 // make sure that this item is at least as
188 // tall as the user's system settings specify
189 if (*pheight
< m_nMinHeight
)
190 *pheight
= m_nMinHeight
;
192 // remember height for use in OnDrawItem
193 m_nHeight
= *pheight
;
199 bool wxOwnerDrawn::OnDrawItem(wxDC
& dc
,
204 // we do nothing on focus change
205 if ( act
== wxODFocusChanged
)
209 // this flag determines whether or not an edge will
210 // be drawn around the bitmap. In most "windows classic"
211 // applications, a 1-pixel highlight edge is drawn around
212 // the bitmap of an item when it is selected. However,
213 // with the new "luna" theme, no edge is drawn around
214 // the bitmap because the background is white (this applies
215 // only to "non-XP style" menus w/ bitmaps --
216 // see IE 6 menus for an example)
218 bool draw_bitmap_edge
= true;
222 DWORD colBack
, colText
;
223 if ( st
& wxODSelected
) {
224 colBack
= GetSysColor(COLOR_HIGHLIGHT
);
225 if (!(st
& wxODDisabled
))
227 colText
= GetSysColor(COLOR_HIGHLIGHTTEXT
);
231 colText
= GetSysColor(COLOR_GRAYTEXT
);
235 // fall back to default colors if none explicitly specified
236 colBack
= m_colBack
.Ok() ? wxColourToPalRGB(m_colBack
)
237 : GetSysColor(COLOR_WINDOW
);
238 colText
= m_colText
.Ok() ? wxColourToPalRGB(m_colText
)
239 : GetSysColor(COLOR_WINDOWTEXT
);
243 // don't draw an edge around the bitmap, if background is white ...
244 DWORD menu_bg_color
= GetSysColor(COLOR_MENU
);
245 if ( ( GetRValue( menu_bg_color
) >= 0xf0 &&
246 GetGValue( menu_bg_color
) >= 0xf0 &&
247 GetBValue( menu_bg_color
) >= 0xf0 )
248 // ... or if the menu item is disabled
249 || ( st
& wxODDisabled
)
252 draw_bitmap_edge
= false;
256 HDC hdc
= GetHdcOf(dc
);
257 COLORREF colOldText
= ::SetTextColor(hdc
, colText
),
258 colOldBack
= ::SetBkColor(hdc
, colBack
);
260 int margin
= GetMarginWidth() + wxSystemSettings::GetMetric(wxSYS_EDGE_X
);
262 // select the font and draw the text
263 // ---------------------------------
266 // determine where to draw and leave space for a check-mark.
267 int xText
= rc
.x
+ margin
;
270 // using native API because it reckognizes '&'
271 int nPrevMode
= SetBkMode(hdc
, TRANSPARENT
);
272 HBRUSH hbr
= CreateSolidBrush(colBack
),
273 hPrevBrush
= (HBRUSH
)SelectObject(hdc
, hbr
);
275 RECT rectFill
= { rc
.GetLeft(), rc
.GetTop(),
276 rc
.GetRight() + 1, rc
.GetBottom() + 1 };
278 if ( (st
& wxODSelected
) && m_bmpChecked
.Ok() ) {
279 // only draw the highlight under the text, not under
280 // the bitmap or checkmark
281 rectFill
.left
= xText
;
284 FillRect(hdc
, &rectFill
, hbr
);
286 // use default font if no font set
289 m_font
.RealizeResource();
290 hfont
= (HFONT
)m_font
.GetResourceHandle();
293 hfont
= (HFONT
)::GetStockObject(SYSTEM_FONT
);
296 HFONT hPrevFont
= (HFONT
) ::SelectObject(hdc
, hfont
);
298 wxString strMenuText
= m_strName
.BeforeFirst('\t');
301 GetTextExtentPoint32(hdc
,strMenuText
.c_str(), strMenuText
.Length(),&sizeRect
);
302 ::DrawState(hdc
, NULL
, NULL
,
303 (LPARAM
)strMenuText
.c_str(), strMenuText
.length(),
304 xText
, rc
.y
+( (int) ((rc
.GetHeight()-sizeRect
.cy
)/2.0) )-1, // centre text vertically
305 rc
.GetWidth()-margin
, sizeRect
.cy
,
307 (((st
& wxODDisabled
) && !(st
& wxODSelected
)) ? DSS_DISABLED
: 0));
309 // ::SetTextAlign(hdc, TA_RIGHT) doesn't work with DSS_DISABLED or DSS_MONO
310 // as last parameter in DrawState() (at least with Windows98). So we have
311 // to take care of right alignment ourselves.
312 if ( !m_strAccel
.empty() )
314 int accel_width
, accel_height
;
315 dc
.GetTextExtent(m_strAccel
, &accel_width
, &accel_height
);
316 // right align accel string with right edge of menu ( offset by the
318 ::DrawState(hdc
, NULL
, NULL
,
319 (LPARAM
)m_strAccel
.c_str(), m_strAccel
.length(),
320 rc
.GetWidth()-margin
-accel_width
, rc
.y
+(int) ((rc
.GetHeight()-sizeRect
.cy
)/2.0),
321 rc
.GetWidth()-margin
-accel_width
, sizeRect
.cy
,
323 (((st
& wxODDisabled
) && !(st
& wxODSelected
)) ? DSS_DISABLED
: 0));
326 (void)SelectObject(hdc
, hPrevBrush
);
327 (void)SelectObject(hdc
, hPrevFont
);
328 (void)SetBkMode(hdc
, nPrevMode
);
334 if ( IsCheckable() && !m_bmpChecked
.Ok() ) {
335 if ( st
& wxODChecked
) {
336 // what goes on: DrawFrameControl creates a b/w mask,
337 // then we copy it to screen to have right colors
339 // first create a monochrome bitmap in a memory DC
340 HDC hdcMem
= CreateCompatibleDC(hdc
);
341 HBITMAP hbmpCheck
= CreateBitmap(margin
, m_nHeight
, 1, 1, 0);
342 SelectObject(hdcMem
, hbmpCheck
);
344 // then draw a check mark into it
345 RECT rect
= { 0, 0, margin
, m_nHeight
};
348 ::DrawFrameControl(hdcMem
, &rect
, DFC_MENU
, DFCS_MENUCHECK
);
351 // finally copy it to screen DC and clean up
352 BitBlt(hdc
, rc
.x
, rc
.y
, margin
, m_nHeight
,
353 hdcMem
, 0, 0, SRCCOPY
);
356 DeleteObject(hbmpCheck
);
362 if ( st
& wxODDisabled
)
364 bmp
= GetDisabledBitmap();
369 // for not checkable bitmaps we should always use unchecked one because
370 // their checked bitmap is not set
371 bmp
= GetBitmap(!IsCheckable() || (st
& wxODChecked
));
375 wxMemoryDC
dcMem(&dc
);
376 dcMem
.SelectObject(bmp
);
379 int nBmpWidth
= bmp
.GetWidth(),
380 nBmpHeight
= bmp
.GetHeight();
382 // there should be enough place!
383 wxASSERT((nBmpWidth
<= rc
.GetWidth()) && (nBmpHeight
<= rc
.GetHeight()));
385 int heightDiff
= m_nHeight
- nBmpHeight
;
386 dc
.Blit(rc
.x
+ (margin
- nBmpWidth
) / 2,
387 rc
.y
+ heightDiff
/ 2,
388 nBmpWidth
, nBmpHeight
,
389 &dcMem
, 0, 0, wxCOPY
, TRUE
/* use mask */);
391 if ( st
& wxODSelected
&& draw_bitmap_edge
) {
392 RECT rectBmp
= { rc
.GetLeft(), rc
.GetTop(),
393 rc
.GetLeft() + margin
,
394 rc
.GetTop() + m_nHeight
};
395 SetBkColor(hdc
, colBack
);
397 DrawEdge(hdc
, &rectBmp
, BDR_RAISEDOUTER
, BF_SOFT
| BF_RECT
);
402 ::SetTextColor(hdc
, colOldText
);
403 ::SetBkColor(hdc
, colOldBack
);
409 #endif // wxUSE_OWNER_DRAWN