]> git.saurik.com Git - wxWidgets.git/blame - src/msw/statbox.cpp
adding new files for xti merge
[wxWidgets.git] / src / msw / statbox.cpp
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
f38924e8 2// Name: src/msw/statbox.cpp
2bda0e17
KB
3// Purpose: wxStaticBox
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
6c9a19aa 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
3f2711d5
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
2bda0e17
KB
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
3f2711d5 24 #pragma hdrstop
2bda0e17
KB
25#endif
26
1e6feb95
VZ
27#if wxUSE_STATBOX
28
f38924e8
WS
29#include "wx/statbox.h"
30
2bda0e17 31#ifndef WX_PRECOMP
3f2711d5
VZ
32 #include "wx/app.h"
33 #include "wx/dcclient.h"
f38924e8 34 #include "wx/dcmemory.h"
155ecd4c 35 #include "wx/image.h"
2bda0e17
KB
36#endif
37
3ad70d31 38#include "wx/notebook.h"
9dabade2 39#include "wx/sysopt.h"
2bda0e17 40
72a55896 41#include "wx/msw/uxtheme.h"
3f2711d5 42#include "wx/msw/private.h"
7212d155 43#include "wx/msw/missing.h"
74052fe8 44#include "wx/msw/dc.h"
3f2711d5 45
95fab76b
VZ
46// the values coincide with those in tmschema.h
47#define BP_GROUPBOX 4
48
49#define GBS_NORMAL 1
50
51#define TMT_FONT 210
52
3f2711d5
VZ
53// ----------------------------------------------------------------------------
54// wxWin macros
55// ----------------------------------------------------------------------------
56
51741307 57#if wxUSE_EXTENDED_RTTI
bc9fb572
JS
58WX_DEFINE_FLAGS( wxStaticBoxStyle )
59
3ff066a4 60wxBEGIN_FLAGS( wxStaticBoxStyle )
bc9fb572
JS
61 // new style border flags, we put them first to
62 // use them for streaming out
3ff066a4
SC
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)
57f4f925 69
bc9fb572 70 // old style border flags
3ff066a4
SC
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)
cb0afb26 76 wxFLAGS_MEMBER(wxBORDER)
bc9fb572
JS
77
78 // standard window styles
3ff066a4
SC
79 wxFLAGS_MEMBER(wxTAB_TRAVERSAL)
80 wxFLAGS_MEMBER(wxCLIP_CHILDREN)
81 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW)
82 wxFLAGS_MEMBER(wxWANTS_CHARS)
cb0afb26 83 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE)
3ff066a4
SC
84 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB )
85 wxFLAGS_MEMBER(wxVSCROLL)
86 wxFLAGS_MEMBER(wxHSCROLL)
bc9fb572 87
3ff066a4 88wxEND_FLAGS( wxStaticBoxStyle )
bc9fb572 89
51741307
SC
90IMPLEMENT_DYNAMIC_CLASS_XTI(wxStaticBox, wxControl,"wx/statbox.h")
91
3ff066a4 92wxBEGIN_PROPERTIES_TABLE(wxStaticBox)
57f4f925 93 wxPROPERTY( Label,wxString, SetLabel, GetLabel, wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
af498247 94 wxPROPERTY_FLAGS( WindowStyle , wxStaticBoxStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
066f1b7a 95/*
57f4f925
WS
96 TODO PROPERTIES :
97 label
066f1b7a 98*/
3ff066a4 99wxEND_PROPERTIES_TABLE()
51741307 100
3ff066a4
SC
101wxBEGIN_HANDLERS_TABLE(wxStaticBox)
102wxEND_HANDLERS_TABLE()
51741307 103
57f4f925 104wxCONSTRUCTOR_6( wxStaticBox , wxWindow* , Parent , wxWindowID , Id , wxString , Label , wxPoint , Position , wxSize , Size , long , WindowStyle )
51741307
SC
105#else
106IMPLEMENT_DYNAMIC_CLASS(wxStaticBox, wxControl)
107#endif
2bda0e17 108
3f2711d5
VZ
109// ============================================================================
110// implementation
111// ============================================================================
112
113// ----------------------------------------------------------------------------
114// wxStaticBox
115// ----------------------------------------------------------------------------
116
117bool wxStaticBox::Create(wxWindow *parent,
118 wxWindowID id,
119 const wxString& label,
120 const wxPoint& pos,
121 const wxSize& size,
122 long style,
123 const wxString& name)
2bda0e17 124{
11b6a93b 125 if ( !CreateControl(parent, id, pos, size, style, wxDefaultValidator, name) )
57f4f925 126 return false;
2bda0e17 127
e31e6ea7 128 if ( !MSWCreateControl(wxT("BUTTON"), label, pos, size) )
57f4f925 129 return false;
2bda0e17 130
cf072997
VZ
131 // Always use LTR layout. Otherwise, the label would be mirrored.
132 SetLayoutDirection(wxLayout_LeftToRight);
133
9f769708 134#ifndef __WXWINCE__
5bf4788a
JS
135 if (!wxSystemOptions::IsFalse(wxT("msw.staticbox.optimized-paint")))
136 Connect(wxEVT_PAINT, wxPaintEventHandler(wxStaticBox::OnPaint));
c3732409 137#endif // !__WXWINCE__
3b6e5fb3 138
57f4f925 139 return true;
2bda0e17
KB
140}
141
e31e6ea7
VZ
142WXDWORD wxStaticBox::MSWGetStyle(long style, WXDWORD *exstyle) const
143{
144 long styleWin = wxStaticBoxBase::MSWGetStyle(style, exstyle);
145
eba99da4
JS
146 // no need for it anymore, must be removed for wxRadioBox child
147 // buttons to be able to repaint themselves
148 styleWin &= ~WS_CLIPCHILDREN;
149
e31e6ea7 150 if ( exstyle )
5bf4788a 151 {
a92e7f30 152#ifndef __WXWINCE__
5bf4788a
JS
153 if (wxSystemOptions::IsFalse(wxT("msw.staticbox.optimized-paint")))
154 *exstyle = WS_EX_TRANSPARENT;
155 else
a92e7f30 156#endif
5bf4788a
JS
157 *exstyle = 0;
158 }
a83b5b74 159
cf072997
VZ
160 styleWin |= BS_GROUPBOX;
161
162 if ( wxTheApp->GetLayoutDirection() == wxLayout_RightToLeft )
163 {
164 // Make sure label is on the right
165 styleWin |= BS_RIGHT;
166 }
167
168 return styleWin;
e31e6ea7
VZ
169}
170
f68586e5 171wxSize wxStaticBox::DoGetBestSize() const
2bda0e17 172{
4438caf4 173 int cx, cy;
7a5e53ab 174 wxGetCharSize(GetHWND(), &cx, &cy, GetFont());
2bda0e17 175
4438caf4 176 int wBox;
32cd189d 177 GetTextExtent(GetLabelText(wxGetWindowText(m_hWnd)), &wBox, &cy);
2bda0e17 178
4438caf4
VZ
179 wBox += 3*cx;
180 int hBox = EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy);
2bda0e17 181
31582e4e
RD
182 wxSize best(wBox, hBox);
183 CacheBestSize(best);
184 return best;
4438caf4 185}
2bda0e17 186
c3732409 187void wxStaticBox::GetBordersForSizer(int *borderTop, int *borderOther) const
6aa01033 188{
c3732409
VZ
189 wxStaticBoxBase::GetBordersForSizer(borderTop, borderOther);
190
191 // need extra space, don't know how much but this seems to be enough
192 *borderTop += GetCharHeight()/3;
193}
194
195// all the hacks below are not necessary for WinCE
abf912c5 196#ifndef __WXWINCE__
c3732409
VZ
197
198WXLRESULT wxStaticBox::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
199{
58385af0 200 if ( nMsg == WM_NCHITTEST )
6aa01033 201 {
58385af0
VZ
202 // This code breaks some other processing such as enter/leave tracking
203 // so it's off by default.
204
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)
209 {
c3732409
VZ
210 int xPos = GET_X_LPARAM(lParam);
211 int yPos = GET_Y_LPARAM(lParam);
58385af0
VZ
212
213 ScreenToClient(&xPos, &yPos);
214
215 // Make sure you can drag by the top of the groupbox, but let
216 // other (enclosed) controls get mouse events also
217 if ( yPos < 10 )
218 return (long)HTCLIENT;
219 }
6aa01033
JS
220 }
221
9705fbe9
VZ
222 if ( nMsg == WM_PRINTCLIENT )
223 {
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
227
228 // so check first if we have one
229 if ( !HandlePrintClient((WXHDC)wParam) )
230 {
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));
235 }
236
237 return 0;
238 }
239
2af006eb
VZ
240 if ( nMsg == WM_UPDATEUISTATE )
241 {
242 // DefWindowProc() redraws just the static box text when it gets this
243 // message and it does it using the standard (blue in standard theme)
244 // colour and not our own label colour that we use in PaintForeground()
245 // resulting in the label mysteriously changing the colour when e.g.
246 // "Alt" is pressed anywhere in the window, see #12497.
247 //
248 // To avoid this we simply refresh the window forcing our own code
249 // redrawing the label in the correct colour to be called. This is
250 // inefficient but there doesn't seem to be anything else we can do.
251 //
252 // Notice that the problem is XP-specific and doesn't arise under later
253 // systems.
254 if ( m_hasFgCol && wxGetWinVersion() == wxWinVersion_XP )
255 Refresh();
256 }
257
6aa01033
JS
258 return wxControl::MSWWindowProc(nMsg, wParam, lParam);
259}
260
c3732409
VZ
261// ----------------------------------------------------------------------------
262// static box drawing
263// ----------------------------------------------------------------------------
58385af0 264
c3732409
VZ
265/*
266 We draw the static box ourselves because it's the only way to prevent it
267 from flickering horribly on resize (because everything inside the box is
268 erased twice: once when the box itself is repainted and second time when
269 the control inside it is repainted) without using WS_EX_TRANSPARENT style as
270 we used to do and which resulted in other problems.
271 */
58385af0 272
3b6e5fb3
VZ
273// MSWGetRegionWithoutSelf helper: removes the given rectangle from region
274static inline void
275SubtractRectFromRgn(HRGN hrgn, int left, int top, int right, int bottom)
276{
277 AutoHRGN hrgnRect(::CreateRectRgn(left, top, right, bottom));
278 if ( !hrgnRect )
279 {
9a83f860 280 wxLogLastError(wxT("CreateRectRgn()"));
3b6e5fb3
VZ
281 return;
282 }
283
284 ::CombineRgn(hrgn, hrgn, hrgnRect, RGN_DIFF);
285}
286
287void wxStaticBox::MSWGetRegionWithoutSelf(WXHRGN hRgn, int w, int h)
eba99da4 288{
3b6e5fb3
VZ
289 HRGN hrgn = (HRGN)hRgn;
290
291 // remove the area occupied by the static box borders from the region
292 int borderTop, border;
293 GetBordersForSizer(&borderTop, &border);
eba99da4
JS
294
295 // top
3b6e5fb3 296 SubtractRectFromRgn(hrgn, 0, 0, w, borderTop);
eba99da4
JS
297
298 // bottom
3b6e5fb3 299 SubtractRectFromRgn(hrgn, 0, h - border, w, h);
eba99da4
JS
300
301 // left
3b6e5fb3 302 SubtractRectFromRgn(hrgn, 0, 0, border, h);
eba99da4
JS
303
304 // right
3b6e5fb3 305 SubtractRectFromRgn(hrgn, w - border, 0, w, h);
eba99da4
JS
306}
307
3b6e5fb3 308WXHRGN wxStaticBox::MSWGetRegionWithoutChildren()
eba99da4
JS
309{
310 RECT rc;
311 ::GetWindowRect(GetHwnd(), &rc);
312 HRGN hrgn = ::CreateRectRgn(rc.left, rc.top, rc.right + 1, rc.bottom + 1);
cec46079 313 bool foundThis = false;
3b6e5fb3
VZ
314
315 // iterate over all child windows (not just wxWindows but all windows)
316 for ( HWND child = ::GetWindow(GetHwndOf(GetParent()), GW_CHILD);
317 child;
318 child = ::GetWindow(child, GW_HWNDNEXT) )
eba99da4 319 {
4249e334
RD
320 if ( ! ::IsWindowVisible(child) )
321 {
322 // if the window isn't visible then it doesn't need clipped
323 continue;
324 }
9705fbe9 325
4249e334
RD
326 LONG style = ::GetWindowLong(child, GWL_STYLE);
327 wxString str(wxGetWindowClass(child));
328 str.UpperCase();
5c17f6d3 329 if ( str == wxT("BUTTON") && (style & BS_GROUPBOX) == BS_GROUPBOX )
eba99da4 330 {
cec46079
JS
331 if ( child == GetHwnd() )
332 foundThis = true;
333
334 // Any static boxes below this one in the Z-order can't be clipped
335 // since if we have the case where a static box with a low Z-order
336 // is nested inside another static box with a high Z-order then the
337 // nested static box would be painted over. Doing it this way
338 // unfortunately results in flicker if the Z-order of nested static
339 // boxes is not inside (lowest) to outside (highest) but at least
340 // they are still shown.
341 if ( foundThis )
342 continue;
4249e334 343 }
9705fbe9 344
4249e334
RD
345 ::GetWindowRect(child, &rc);
346 if ( ::RectInRegion(hrgn, &rc) )
347 {
348 // need to remove WS_CLIPSIBLINGS from all sibling windows
349 // that are within this staticbox if set
350 if ( style & WS_CLIPSIBLINGS )
eba99da4 351 {
4249e334
RD
352 style &= ~WS_CLIPSIBLINGS;
353 ::SetWindowLong(child, GWL_STYLE, style);
9705fbe9 354
4249e334
RD
355 // MSDN: "If you have changed certain window data using
356 // SetWindowLong, you must call SetWindowPos to have the
357 // changes take effect."
358 ::SetWindowPos(child, NULL, 0, 0, 0, 0,
359 SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER |
360 SWP_FRAMECHANGED);
eba99da4 361 }
4249e334
RD
362
363 AutoHRGN hrgnChild(::CreateRectRgnIndirect(&rc));
364 ::CombineRgn(hrgn, hrgn, hrgnChild, RGN_DIFF);
eba99da4 365 }
eba99da4 366 }
eba99da4 367
3b6e5fb3
VZ
368 return (WXHRGN)hrgn;
369}
370
c3732409
VZ
371// helper for OnPaint(): really erase the background, i.e. do it even if we
372// don't have any non default brush for doing it (DoEraseBackground() doesn't
373// do anything in such case)
3b6e5fb3
VZ
374void wxStaticBox::PaintBackground(wxDC& dc, const RECT& rc)
375{
c3732409
VZ
376 // note that we do not use the box background colour here, it shouldn't
377 // apply to its interior for several reasons:
378 // 1. wxGTK doesn't do it
379 // 2. controls inside the box don't get correct bg colour because they
380 // are not our children so we'd have some really ugly colour mix if
381 // we did it
382 // 3. this is backwards compatible behaviour and some people rely on it,
383 // see http://groups.google.com/groups?selm=4252E932.3080801%40able.es
888dde65 384 wxMSWDCImpl *impl = (wxMSWDCImpl*) dc.GetImpl();
ebfee179 385 HBRUSH hbr = MSWGetBgBrush(impl->GetHDC());
c3732409
VZ
386
387 // if there is no special brush for painting this control, just use the
388 // solid background colour
389 wxBrush brush;
3b6e5fb3
VZ
390 if ( !hbr )
391 {
ebfee179 392 brush = wxBrush(GetParent()->GetBackgroundColour());
c3732409 393 hbr = GetHbrushOf(brush);
3b6e5fb3
VZ
394 }
395
888dde65 396 ::FillRect(GetHdcOf(*impl), &rc, hbr);
eba99da4
JS
397}
398
cf072997 399void wxStaticBox::PaintForeground(wxDC& dc, const RECT& rc)
21c6080d 400{
888dde65
RR
401 wxMSWDCImpl *impl = (wxMSWDCImpl*) dc.GetImpl();
402 MSWDefWindowProc(WM_PAINT, (WPARAM)GetHdcOf(*impl), 0);
72a55896
VZ
403
404 // when using XP themes, neither setting the text colour nor transparent
405 // background mode doesn't change anything: the static box def window proc
406 // still draws the label in its own colours, so we need to redraw the text
407 // ourselves if we have a non default fg colour
95fab76b 408 if ( m_hasFgCol && wxUxThemeEngine::GetIfActive() )
72a55896
VZ
409 {
410 // draw over the text in default colour in our colour
888dde65 411 HDC hdc = GetHdcOf(*impl);
95fab76b 412 ::SetTextColor(hdc, GetForegroundColour().GetPixel());
cf072997
VZ
413
414 const bool rtl = wxTheApp->GetLayoutDirection() == wxLayout_RightToLeft;
415 if ( rtl )
416 ::SetTextAlign(hdc, TA_RTLREADING | TA_RIGHT);
417
418 // Get dimensions of the label
24e35cf8 419 const wxString label = GetLabel();
24e35cf8 420
95fab76b
VZ
421 // choose the correct font
422 AutoHFONT font;
423 SelectInHDC selFont;
424 if ( m_hasFont )
425 {
426 selFont.Init(hdc, GetHfontOf(GetFont()));
427 }
428 else // no font set, use the one set by the theme
429 {
430 wxUxThemeHandle hTheme(this, L"BUTTON");
431 if ( hTheme )
432 {
3120eccf 433 wxUxThemeFont themeFont;
95fab76b
VZ
434 if ( wxUxThemeEngine::Get()->GetThemeFont
435 (
436 hTheme,
437 hdc,
438 BP_GROUPBOX,
439 GBS_NORMAL,
440 TMT_FONT,
3120eccf 441 themeFont.GetPtr()
95fab76b
VZ
442 ) == S_OK )
443 {
3120eccf 444 font.Init(themeFont.GetLOGFONT());
95fab76b
VZ
445 if ( font )
446 selFont.Init(hdc, font);
447 }
448 }
449 }
450
441dfa1d
VZ
451 // Get the font extent
452 int width, height;
453 dc.GetTextExtent(wxStripMenuCodes(label, wxStrip_Mnemonics),
454 &width, &height);
455
456 int x;
457 int y = height;
458
459 // first we need to correctly paint the background of the label
460 // as Windows ignores the brush offset when doing it
461 //
462 // FIXME: value of x is hardcoded as this is what it is on my system,
463 // no idea if it's true everywhere
464 RECT dimensions = {0, 0, 0, y};
465 if ( !rtl )
466 {
467 x = 9;
468 dimensions.left = x;
469 dimensions.right = x + width;
470 }
471 else
472 {
473 x = rc.right - 7;
474 dimensions.left = x - width;
475 dimensions.right = x;
476 }
477
478 // need to adjust the rectangle to cover all the label background
479 dimensions.left -= 2;
480 dimensions.right += 2;
481 dimensions.bottom += 2;
482
b8ec69e8
VZ
483 if ( UseBgCol() )
484 {
485 // our own background colour should be used for the background of
486 // the label: this is consistent with the behaviour under pre-XP
487 // systems (i.e. without visual themes) and generally makes sense
488 wxBrush brush = wxBrush(GetBackgroundColour());
888dde65
RR
489 wxMSWDCImpl *impl = (wxMSWDCImpl*) dc.GetImpl();
490 ::FillRect(GetHdcOf(*impl), &dimensions, GetHbrushOf(brush));
b8ec69e8
VZ
491 }
492 else // paint parent background
493 {
494 PaintBackground(dc, dimensions);
495 }
441dfa1d 496
b4607e89
VZ
497 UINT drawTextFlags = DT_SINGLELINE | DT_VCENTER;
498
499 // determine the state of UI queues to draw the text correctly under XP
500 // and later systems
501 static const bool isXPorLater = wxGetWinVersion() >= wxWinVersion_XP;
502 if ( isXPorLater )
503 {
504 if ( ::SendMessage(GetHwnd(), WM_QUERYUISTATE, 0, 0) &
505 UISF_HIDEACCEL )
506 {
507 drawTextFlags |= DT_HIDEPREFIX;
508 }
509 }
510
24e35cf8 511 // now draw the text
cf072997
VZ
512 if ( !rtl )
513 {
ffabb347 514 RECT rc2 = { x, 0, x + width, y };
e0a050e3 515 ::DrawText(hdc, label.wx_str(), label.length(), &rc2,
b4607e89 516 drawTextFlags);
cf072997
VZ
517 }
518 else // RTL
519 {
520 RECT rc2 = { x, 0, x - width, y };
e0a050e3 521 ::DrawText(hdc, label.wx_str(), label.length(), &rc2,
b4607e89 522 drawTextFlags | DT_RTLREADING);
cf072997 523 }
72a55896 524 }
21c6080d
JS
525}
526
eba99da4
JS
527void wxStaticBox::OnPaint(wxPaintEvent& WXUNUSED(event))
528{
eba99da4
JS
529 RECT rc;
530 ::GetClientRect(GetHwnd(), &rc);
531
c3732409 532 // draw the entire box in a memory DC
eba99da4
JS
533 wxMemoryDC memdc;
534 wxBitmap bitmap(rc.right, rc.bottom);
535 memdc.SelectObject(bitmap);
536
3b6e5fb3 537 PaintBackground(memdc, rc);
21c6080d 538 PaintForeground(memdc, rc);
c3732409
VZ
539
540 // now only blit the static box border itself, not the interior, to avoid
541 // flicker when background is drawn below
542 //
543 // note that it seems to be faster to do 4 small blits here and then paint
544 // directly into wxPaintDC than painting background in wxMemoryDC and then
545 // blitting everything at once to wxPaintDC, this is why we do it like this
546 wxPaintDC dc(this);
3b6e5fb3
VZ
547 int borderTop, border;
548 GetBordersForSizer(&borderTop, &border);
549
eba99da4 550 // top
3b6e5fb3
VZ
551 dc.Blit(border, 0, rc.right - border, borderTop,
552 &memdc, border, 0);
eba99da4 553 // bottom
1d1b4862 554 dc.Blit(border, rc.bottom - border, rc.right - border, border,
3b6e5fb3 555 &memdc, border, rc.bottom - border);
eba99da4 556 // left
3b6e5fb3
VZ
557 dc.Blit(0, 0, border, rc.bottom,
558 &memdc, 0, 0);
1d1b4862
VZ
559 // right (note that upper and bottom right corners were already part of the
560 // first two blits so we shouldn't overwrite them here to avoi flicker)
561 dc.Blit(rc.right - border, borderTop,
562 border, rc.bottom - borderTop - border,
563 &memdc, rc.right - border, borderTop);
eba99da4 564
c3732409
VZ
565
566 // create the region excluding box children
3b6e5fb3
VZ
567 AutoHRGN hrgn((HRGN)MSWGetRegionWithoutChildren());
568 RECT rcWin;
569 ::GetWindowRect(GetHwnd(), &rcWin);
570 ::OffsetRgn(hrgn, -rcWin.left, -rcWin.top);
eba99da4 571
c3732409 572 // and also the box itself
3b6e5fb3 573 MSWGetRegionWithoutSelf((WXHRGN) hrgn, rc.right, rc.bottom);
888dde65
RR
574 wxMSWDCImpl *impl = (wxMSWDCImpl*) dc.GetImpl();
575 HDCClipper clipToBg(GetHdcOf(*impl), hrgn);
3b6e5fb3 576
c3732409 577 // paint the inside of the box (excluding box itself and child controls)
3b6e5fb3 578 PaintBackground(dc, rc);
eba99da4
JS
579}
580
c3732409
VZ
581#endif // !__WXWINCE__
582
1e6feb95 583#endif // wxUSE_STATBOX