]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/statbox.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/statbox.cpp
3 // Purpose: wxStaticBox
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
29 #include "wx/statbox.h"
33 #include "wx/dcclient.h"
34 #include "wx/dcmemory.h"
38 #include "wx/notebook.h"
39 #include "wx/sysopt.h"
41 #include "wx/msw/uxtheme.h"
42 #include "wx/msw/private.h"
43 #include "wx/msw/missing.h"
44 #include "wx/msw/dc.h"
46 // the values coincide with those in tmschema.h
53 // ----------------------------------------------------------------------------
55 // ----------------------------------------------------------------------------
57 #if wxUSE_EXTENDED_RTTI
58 WX_DEFINE_FLAGS( wxStaticBoxStyle
)
60 wxBEGIN_FLAGS( wxStaticBoxStyle
)
61 // new style border flags, we put them first to
62 // use them for streaming out
63 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
64 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
65 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
66 wxFLAGS_MEMBER(wxBORDER_RAISED
)
67 wxFLAGS_MEMBER(wxBORDER_STATIC
)
68 wxFLAGS_MEMBER(wxBORDER_NONE
)
70 // old style border flags
71 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
72 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
73 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
74 wxFLAGS_MEMBER(wxRAISED_BORDER
)
75 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
76 wxFLAGS_MEMBER(wxBORDER
)
78 // standard window styles
79 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
80 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
81 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
82 wxFLAGS_MEMBER(wxWANTS_CHARS
)
83 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
84 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
85 wxFLAGS_MEMBER(wxVSCROLL
)
86 wxFLAGS_MEMBER(wxHSCROLL
)
88 wxEND_FLAGS( wxStaticBoxStyle
)
90 IMPLEMENT_DYNAMIC_CLASS_XTI(wxStaticBox
, wxControl
,"wx/statbox.h")
92 wxBEGIN_PROPERTIES_TABLE(wxStaticBox
)
93 wxPROPERTY( Label
,wxString
, SetLabel
, GetLabel
, wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
94 wxPROPERTY_FLAGS( WindowStyle
, wxStaticBoxStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
99 wxEND_PROPERTIES_TABLE()
101 wxBEGIN_HANDLERS_TABLE(wxStaticBox
)
102 wxEND_HANDLERS_TABLE()
104 wxCONSTRUCTOR_6( wxStaticBox
, wxWindow
* , Parent
, wxWindowID
, Id
, wxString
, Label
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
106 IMPLEMENT_DYNAMIC_CLASS(wxStaticBox
, wxControl
)
109 // ============================================================================
111 // ============================================================================
113 // ----------------------------------------------------------------------------
115 // ----------------------------------------------------------------------------
117 bool wxStaticBox::Create(wxWindow
*parent
,
119 const wxString
& label
,
123 const wxString
& name
)
125 if ( !CreateControl(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
128 if ( !MSWCreateControl(wxT("BUTTON"), label
, pos
, size
) )
131 // Always use LTR layout. Otherwise, the label would be mirrored.
132 SetLayoutDirection(wxLayout_LeftToRight
);
135 if (!wxSystemOptions::IsFalse(wxT("msw.staticbox.optimized-paint")))
136 Connect(wxEVT_PAINT
, wxPaintEventHandler(wxStaticBox::OnPaint
));
137 #endif // !__WXWINCE__
142 WXDWORD
wxStaticBox::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
144 long styleWin
= wxStaticBoxBase::MSWGetStyle(style
, exstyle
);
146 // no need for it anymore, must be removed for wxRadioBox child
147 // buttons to be able to repaint themselves
148 styleWin
&= ~WS_CLIPCHILDREN
;
153 if (wxSystemOptions::IsFalse(wxT("msw.staticbox.optimized-paint")))
154 *exstyle
= WS_EX_TRANSPARENT
;
160 styleWin
|= BS_GROUPBOX
;
162 if ( wxTheApp
->GetLayoutDirection() == wxLayout_RightToLeft
)
164 // Make sure label is on the right
165 styleWin
|= BS_RIGHT
;
171 wxSize
wxStaticBox::DoGetBestSize() const
174 wxGetCharSize(GetHWND(), &cx
, &cy
, GetFont());
177 GetTextExtent(GetLabelText(wxGetWindowText(m_hWnd
)), &wBox
, &cy
);
180 int hBox
= EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy
);
182 wxSize
best(wBox
, hBox
);
187 void wxStaticBox::GetBordersForSizer(int *borderTop
, int *borderOther
) const
189 wxStaticBoxBase::GetBordersForSizer(borderTop
, borderOther
);
191 // need extra space, don't know how much but this seems to be enough
192 *borderTop
+= GetCharHeight()/3;
195 // all the hacks below are not necessary for WinCE
198 WXLRESULT
wxStaticBox::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
200 if ( nMsg
== WM_NCHITTEST
)
202 // This code breaks some other processing such as enter/leave tracking
203 // so it's off by default.
205 static int s_useHTClient
= -1;
206 if (s_useHTClient
== -1)
207 s_useHTClient
= wxSystemOptions::GetOptionInt(wxT("msw.staticbox.htclient"));
208 if (s_useHTClient
== 1)
210 int xPos
= GET_X_LPARAM(lParam
);
211 int yPos
= GET_Y_LPARAM(lParam
);
213 ScreenToClient(&xPos
, &yPos
);
215 // Make sure you can drag by the top of the groupbox, but let
216 // other (enclosed) controls get mouse events also
218 return (long)HTCLIENT
;
222 if ( nMsg
== WM_PRINTCLIENT
)
224 // we have to process WM_PRINTCLIENT ourselves as otherwise child
225 // windows' background (eg buttons in radio box) would never be drawn
226 // unless we have a parent with non default background
228 // so check first if we have one
229 if ( !HandlePrintClient((WXHDC
)wParam
) )
231 // no, we don't, erase the background ourselves
232 // (don't use our own) - see PaintBackground for explanation
233 wxBrush
brush(GetParent()->GetBackgroundColour());
234 wxFillRect(GetHwnd(), (HDC
)wParam
, GetHbrushOf(brush
));
240 return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
243 // ----------------------------------------------------------------------------
244 // static box drawing
245 // ----------------------------------------------------------------------------
248 We draw the static box ourselves because it's the only way to prevent it
249 from flickering horribly on resize (because everything inside the box is
250 erased twice: once when the box itself is repainted and second time when
251 the control inside it is repainted) without using WS_EX_TRANSPARENT style as
252 we used to do and which resulted in other problems.
255 // MSWGetRegionWithoutSelf helper: removes the given rectangle from region
257 SubtractRectFromRgn(HRGN hrgn
, int left
, int top
, int right
, int bottom
)
259 AutoHRGN
hrgnRect(::CreateRectRgn(left
, top
, right
, bottom
));
262 wxLogLastError(wxT("CreateRectRgn()"));
266 ::CombineRgn(hrgn
, hrgn
, hrgnRect
, RGN_DIFF
);
269 void wxStaticBox::MSWGetRegionWithoutSelf(WXHRGN hRgn
, int w
, int h
)
271 HRGN hrgn
= (HRGN
)hRgn
;
273 // remove the area occupied by the static box borders from the region
274 int borderTop
, border
;
275 GetBordersForSizer(&borderTop
, &border
);
278 SubtractRectFromRgn(hrgn
, 0, 0, w
, borderTop
);
281 SubtractRectFromRgn(hrgn
, 0, h
- border
, w
, h
);
284 SubtractRectFromRgn(hrgn
, 0, 0, border
, h
);
287 SubtractRectFromRgn(hrgn
, w
- border
, 0, w
, h
);
290 WXHRGN
wxStaticBox::MSWGetRegionWithoutChildren()
293 ::GetWindowRect(GetHwnd(), &rc
);
294 HRGN hrgn
= ::CreateRectRgn(rc
.left
, rc
.top
, rc
.right
+ 1, rc
.bottom
+ 1);
295 bool foundThis
= false;
297 // iterate over all child windows (not just wxWindows but all windows)
298 for ( HWND child
= ::GetWindow(GetHwndOf(GetParent()), GW_CHILD
);
300 child
= ::GetWindow(child
, GW_HWNDNEXT
) )
302 if ( ! ::IsWindowVisible(child
) )
304 // if the window isn't visible then it doesn't need clipped
308 LONG style
= ::GetWindowLong(child
, GWL_STYLE
);
309 wxString
str(wxGetWindowClass(child
));
311 if ( str
== wxT("BUTTON") && (style
& BS_GROUPBOX
) == BS_GROUPBOX
)
313 if ( child
== GetHwnd() )
316 // Any static boxes below this one in the Z-order can't be clipped
317 // since if we have the case where a static box with a low Z-order
318 // is nested inside another static box with a high Z-order then the
319 // nested static box would be painted over. Doing it this way
320 // unfortunately results in flicker if the Z-order of nested static
321 // boxes is not inside (lowest) to outside (highest) but at least
322 // they are still shown.
327 ::GetWindowRect(child
, &rc
);
328 if ( ::RectInRegion(hrgn
, &rc
) )
330 // need to remove WS_CLIPSIBLINGS from all sibling windows
331 // that are within this staticbox if set
332 if ( style
& WS_CLIPSIBLINGS
)
334 style
&= ~WS_CLIPSIBLINGS
;
335 ::SetWindowLong(child
, GWL_STYLE
, style
);
337 // MSDN: "If you have changed certain window data using
338 // SetWindowLong, you must call SetWindowPos to have the
339 // changes take effect."
340 ::SetWindowPos(child
, NULL
, 0, 0, 0, 0,
341 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOZORDER
|
345 AutoHRGN
hrgnChild(::CreateRectRgnIndirect(&rc
));
346 ::CombineRgn(hrgn
, hrgn
, hrgnChild
, RGN_DIFF
);
353 // helper for OnPaint(): really erase the background, i.e. do it even if we
354 // don't have any non default brush for doing it (DoEraseBackground() doesn't
355 // do anything in such case)
356 void wxStaticBox::PaintBackground(wxDC
& dc
, const RECT
& rc
)
358 // note that we do not use the box background colour here, it shouldn't
359 // apply to its interior for several reasons:
360 // 1. wxGTK doesn't do it
361 // 2. controls inside the box don't get correct bg colour because they
362 // are not our children so we'd have some really ugly colour mix if
364 // 3. this is backwards compatible behaviour and some people rely on it,
365 // see http://groups.google.com/groups?selm=4252E932.3080801%40able.es
366 wxWindow
*parent
= GetParent();
367 wxMSWDCImpl
*impl
= (wxMSWDCImpl
*) dc
.GetImpl();
368 HBRUSH hbr
= (HBRUSH
)parent
->MSWGetBgBrush(impl
->GetHDC(), GetHWND());
370 // if there is no special brush for painting this control, just use the
371 // solid background colour
375 brush
= wxBrush(parent
->GetBackgroundColour());
376 hbr
= GetHbrushOf(brush
);
379 ::FillRect(GetHdcOf(*impl
), &rc
, hbr
);
382 void wxStaticBox::PaintForeground(wxDC
& dc
, const RECT
& rc
)
384 wxMSWDCImpl
*impl
= (wxMSWDCImpl
*) dc
.GetImpl();
385 MSWDefWindowProc(WM_PAINT
, (WPARAM
)GetHdcOf(*impl
), 0);
387 // when using XP themes, neither setting the text colour nor transparent
388 // background mode doesn't change anything: the static box def window proc
389 // still draws the label in its own colours, so we need to redraw the text
390 // ourselves if we have a non default fg colour
391 if ( m_hasFgCol
&& wxUxThemeEngine::GetIfActive() )
393 // draw over the text in default colour in our colour
394 HDC hdc
= GetHdcOf(*impl
);
395 ::SetTextColor(hdc
, GetForegroundColour().GetPixel());
397 const bool rtl
= wxTheApp
->GetLayoutDirection() == wxLayout_RightToLeft
;
399 ::SetTextAlign(hdc
, TA_RTLREADING
| TA_RIGHT
);
401 // Get dimensions of the label
402 const wxString label
= GetLabel();
404 // choose the correct font
409 selFont
.Init(hdc
, GetHfontOf(GetFont()));
411 else // no font set, use the one set by the theme
413 wxUxThemeHandle
hTheme(this, L
"BUTTON");
416 // GetThemeFont() expects its parameter to be LOGFONTW and not
417 // LOGFONTA even in ANSI programs and will happily corrupt
418 // memory after the struct end if we pass a LOGFONTA (which is
421 if ( wxUxThemeEngine::Get()->GetThemeFont
432 // ok, no conversion necessary
433 const LOGFONT
& lf
= lfw
;
434 #else // !wxUSE_UNICODE
435 // most of the fields are the same in LOGFONTA and LOGFONTW
437 memcpy(&lf
, &lfw
, sizeof(lf
));
439 // but the face name must be converted
440 WideCharToMultiByte(CP_ACP
, 0, lfw
.lfFaceName
, -1,
441 lf
.lfFaceName
, sizeof(lf
.lfFaceName
),
443 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
447 selFont
.Init(hdc
, font
);
452 // Get the font extent
454 dc
.GetTextExtent(wxStripMenuCodes(label
, wxStrip_Mnemonics
),
460 // first we need to correctly paint the background of the label
461 // as Windows ignores the brush offset when doing it
463 // FIXME: value of x is hardcoded as this is what it is on my system,
464 // no idea if it's true everywhere
465 RECT dimensions
= {0, 0, 0, y
};
470 dimensions
.right
= x
+ width
;
475 dimensions
.left
= x
- width
;
476 dimensions
.right
= x
;
479 // need to adjust the rectangle to cover all the label background
480 dimensions
.left
-= 2;
481 dimensions
.right
+= 2;
482 dimensions
.bottom
+= 2;
486 // our own background colour should be used for the background of
487 // the label: this is consistent with the behaviour under pre-XP
488 // systems (i.e. without visual themes) and generally makes sense
489 wxBrush brush
= wxBrush(GetBackgroundColour());
490 wxMSWDCImpl
*impl
= (wxMSWDCImpl
*) dc
.GetImpl();
491 ::FillRect(GetHdcOf(*impl
), &dimensions
, GetHbrushOf(brush
));
493 else // paint parent background
495 PaintBackground(dc
, dimensions
);
501 RECT rc2
= { x
, 0, x
+ width
, y
};
502 ::DrawText(hdc
, label
.wx_str(), label
.length(), &rc2
,
503 DT_SINGLELINE
| DT_VCENTER
);
507 RECT rc2
= { x
, 0, x
- width
, y
};
508 ::DrawText(hdc
, label
.wx_str(), label
.length(), &rc2
,
509 DT_SINGLELINE
| DT_VCENTER
| DT_RTLREADING
);
514 void wxStaticBox::OnPaint(wxPaintEvent
& WXUNUSED(event
))
517 ::GetClientRect(GetHwnd(), &rc
);
519 // draw the entire box in a memory DC
521 wxBitmap
bitmap(rc
.right
, rc
.bottom
);
522 memdc
.SelectObject(bitmap
);
524 PaintBackground(memdc
, rc
);
525 PaintForeground(memdc
, rc
);
527 // now only blit the static box border itself, not the interior, to avoid
528 // flicker when background is drawn below
530 // note that it seems to be faster to do 4 small blits here and then paint
531 // directly into wxPaintDC than painting background in wxMemoryDC and then
532 // blitting everything at once to wxPaintDC, this is why we do it like this
534 int borderTop
, border
;
535 GetBordersForSizer(&borderTop
, &border
);
538 dc
.Blit(border
, 0, rc
.right
- border
, borderTop
,
541 dc
.Blit(border
, rc
.bottom
- border
, rc
.right
- border
, border
,
542 &memdc
, border
, rc
.bottom
- border
);
544 dc
.Blit(0, 0, border
, rc
.bottom
,
546 // right (note that upper and bottom right corners were already part of the
547 // first two blits so we shouldn't overwrite them here to avoi flicker)
548 dc
.Blit(rc
.right
- border
, borderTop
,
549 border
, rc
.bottom
- borderTop
- border
,
550 &memdc
, rc
.right
- border
, borderTop
);
553 // create the region excluding box children
554 AutoHRGN
hrgn((HRGN
)MSWGetRegionWithoutChildren());
556 ::GetWindowRect(GetHwnd(), &rcWin
);
557 ::OffsetRgn(hrgn
, -rcWin
.left
, -rcWin
.top
);
559 // and also the box itself
560 MSWGetRegionWithoutSelf((WXHRGN
) hrgn
, rc
.right
, rc
.bottom
);
561 wxMSWDCImpl
*impl
= (wxMSWDCImpl
*) dc
.GetImpl();
562 HDCClipper
clipToBg(GetHdcOf(*impl
), hrgn
);
564 // paint the inside of the box (excluding box itself and child controls)
565 PaintBackground(dc
, rc
);
568 #endif // !__WXWINCE__
570 #endif // wxUSE_STATBOX