]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/statbox.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: 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 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "statbox.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
35 #include "wx/dcclient.h"
38 #include "wx/statbox.h"
39 #include "wx/notebook.h"
40 #include "wx/sysopt.h"
42 #include "wx/dcmemory.h"
43 #include "wx/sysopt.h"
45 #include "wx/msw/private.h"
46 #include "wx/msw/missing.h"
48 // ----------------------------------------------------------------------------
50 // ----------------------------------------------------------------------------
52 #if wxUSE_EXTENDED_RTTI
53 WX_DEFINE_FLAGS( wxStaticBoxStyle
)
55 wxBEGIN_FLAGS( wxStaticBoxStyle
)
56 // new style border flags, we put them first to
57 // use them for streaming out
58 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
59 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
60 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
61 wxFLAGS_MEMBER(wxBORDER_RAISED
)
62 wxFLAGS_MEMBER(wxBORDER_STATIC
)
63 wxFLAGS_MEMBER(wxBORDER_NONE
)
65 // old style border flags
66 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
67 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
68 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
69 wxFLAGS_MEMBER(wxRAISED_BORDER
)
70 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
71 wxFLAGS_MEMBER(wxBORDER
)
73 // standard window styles
74 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
75 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
76 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
77 wxFLAGS_MEMBER(wxWANTS_CHARS
)
78 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
79 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
80 wxFLAGS_MEMBER(wxVSCROLL
)
81 wxFLAGS_MEMBER(wxHSCROLL
)
83 wxEND_FLAGS( wxStaticBoxStyle
)
85 IMPLEMENT_DYNAMIC_CLASS_XTI(wxStaticBox
, wxControl
,"wx/statbox.h")
87 wxBEGIN_PROPERTIES_TABLE(wxStaticBox
)
88 wxPROPERTY( Label
,wxString
, SetLabel
, GetLabel
, wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
89 wxPROPERTY_FLAGS( WindowStyle
, wxStaticBoxStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
94 wxEND_PROPERTIES_TABLE()
96 wxBEGIN_HANDLERS_TABLE(wxStaticBox
)
97 wxEND_HANDLERS_TABLE()
99 wxCONSTRUCTOR_6( wxStaticBox
, wxWindow
* , Parent
, wxWindowID
, Id
, wxString
, Label
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
101 IMPLEMENT_DYNAMIC_CLASS(wxStaticBox
, wxControl
)
104 // ============================================================================
106 // ============================================================================
108 // ----------------------------------------------------------------------------
110 // ----------------------------------------------------------------------------
112 bool wxStaticBox::Create(wxWindow
*parent
,
114 const wxString
& label
,
118 const wxString
& name
)
120 if ( !CreateControl(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
123 if ( !MSWCreateControl(wxT("BUTTON"), label
, pos
, size
) )
127 if (!wxSystemOptions::IsFalse(wxT("msw.staticbox.optimized-paint")))
128 Connect(wxEVT_PAINT
, wxPaintEventHandler(wxStaticBox::OnPaint
));
129 #endif // !__WXWINCE__
134 wxBorder
wxStaticBox::GetDefaultBorder() const
136 return wxBORDER_NONE
;
139 WXDWORD
wxStaticBox::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
141 long styleWin
= wxStaticBoxBase::MSWGetStyle(style
, exstyle
);
143 // no need for it anymore, must be removed for wxRadioBox child
144 // buttons to be able to repaint themselves
145 styleWin
&= ~WS_CLIPCHILDREN
;
149 if (wxSystemOptions::IsFalse(wxT("msw.staticbox.optimized-paint")))
150 *exstyle
= WS_EX_TRANSPARENT
;
155 return styleWin
| BS_GROUPBOX
;
158 wxSize
wxStaticBox::DoGetBestSize() const
161 wxGetCharSize(GetHWND(), &cx
, &cy
, GetFont());
164 GetTextExtent(wxGetWindowText(m_hWnd
), &wBox
, &cy
);
167 int hBox
= EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy
);
169 return wxSize(wBox
, hBox
);
172 void wxStaticBox::GetBordersForSizer(int *borderTop
, int *borderOther
) const
174 wxStaticBoxBase::GetBordersForSizer(borderTop
, borderOther
);
176 // need extra space, don't know how much but this seems to be enough
177 *borderTop
+= GetCharHeight()/3;
180 // all the hacks below are not necessary for WinCE
183 WXLRESULT
wxStaticBox::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
185 if ( nMsg
== WM_NCHITTEST
)
187 // This code breaks some other processing such as enter/leave tracking
188 // so it's off by default.
190 static int s_useHTClient
= -1;
191 if (s_useHTClient
== -1)
192 s_useHTClient
= wxSystemOptions::GetOptionInt(wxT("msw.staticbox.htclient"));
193 if (s_useHTClient
== 1)
195 int xPos
= GET_X_LPARAM(lParam
);
196 int yPos
= GET_Y_LPARAM(lParam
);
198 ScreenToClient(&xPos
, &yPos
);
200 // Make sure you can drag by the top of the groupbox, but let
201 // other (enclosed) controls get mouse events also
203 return (long)HTCLIENT
;
207 return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
210 // ----------------------------------------------------------------------------
211 // static box drawing
212 // ----------------------------------------------------------------------------
215 We draw the static box ourselves because it's the only way to prevent it
216 from flickering horribly on resize (because everything inside the box is
217 erased twice: once when the box itself is repainted and second time when
218 the control inside it is repainted) without using WS_EX_TRANSPARENT style as
219 we used to do and which resulted in other problems.
222 // MSWGetRegionWithoutSelf helper: removes the given rectangle from region
224 SubtractRectFromRgn(HRGN hrgn
, int left
, int top
, int right
, int bottom
)
226 AutoHRGN
hrgnRect(::CreateRectRgn(left
, top
, right
, bottom
));
229 wxLogLastError(_T("CreateRectRgn()"));
233 ::CombineRgn(hrgn
, hrgn
, hrgnRect
, RGN_DIFF
);
236 void wxStaticBox::MSWGetRegionWithoutSelf(WXHRGN hRgn
, int w
, int h
)
238 HRGN hrgn
= (HRGN
)hRgn
;
240 // remove the area occupied by the static box borders from the region
241 int borderTop
, border
;
242 GetBordersForSizer(&borderTop
, &border
);
245 SubtractRectFromRgn(hrgn
, 0, 0, w
, borderTop
);
248 SubtractRectFromRgn(hrgn
, 0, h
- border
, w
, h
);
251 SubtractRectFromRgn(hrgn
, 0, 0, border
, h
);
254 SubtractRectFromRgn(hrgn
, w
- border
, 0, w
, h
);
257 WXHRGN
wxStaticBox::MSWGetRegionWithoutChildren()
260 ::GetWindowRect(GetHwnd(), &rc
);
261 HRGN hrgn
= ::CreateRectRgn(rc
.left
, rc
.top
, rc
.right
+ 1, rc
.bottom
+ 1);
263 // iterate over all child windows (not just wxWindows but all windows)
264 for ( HWND child
= ::GetWindow(GetHwndOf(GetParent()), GW_CHILD
);
266 child
= ::GetWindow(child
, GW_HWNDNEXT
) )
268 if ( ! ::IsWindowVisible(child
) )
270 // if the window isn't visible then it doesn't need clipped
274 LONG style
= ::GetWindowLong(child
, GWL_STYLE
);
275 wxString
str(wxGetWindowClass(child
));
277 if ( str
== wxT("BUTTON") && (style
& BS_GROUPBOX
) == BS_GROUPBOX
)
279 // Don't clip any static boxes, not just this one. This will
280 // result in flicker in overlapping static boxes, but at least
281 // they will all be drawn correctly and we shouldn't have
282 // overlapping windows anyway.
286 ::GetWindowRect(child
, &rc
);
287 if ( ::RectInRegion(hrgn
, &rc
) )
289 // need to remove WS_CLIPSIBLINGS from all sibling windows
290 // that are within this staticbox if set
291 if ( style
& WS_CLIPSIBLINGS
)
293 style
&= ~WS_CLIPSIBLINGS
;
294 ::SetWindowLong(child
, GWL_STYLE
, style
);
296 // MSDN: "If you have changed certain window data using
297 // SetWindowLong, you must call SetWindowPos to have the
298 // changes take effect."
299 ::SetWindowPos(child
, NULL
, 0, 0, 0, 0,
300 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOZORDER
|
304 AutoHRGN
hrgnChild(::CreateRectRgnIndirect(&rc
));
305 ::CombineRgn(hrgn
, hrgn
, hrgnChild
, RGN_DIFF
);
312 // helper for OnPaint(): really erase the background, i.e. do it even if we
313 // don't have any non default brush for doing it (DoEraseBackground() doesn't
314 // do anything in such case)
315 void wxStaticBox::PaintBackground(wxDC
& dc
, const RECT
& rc
)
317 // note that we do not use the box background colour here, it shouldn't
318 // apply to its interior for several reasons:
319 // 1. wxGTK doesn't do it
320 // 2. controls inside the box don't get correct bg colour because they
321 // are not our children so we'd have some really ugly colour mix if
323 // 3. this is backwards compatible behaviour and some people rely on it,
324 // see http://groups.google.com/groups?selm=4252E932.3080801%40able.es
325 wxWindow
*parent
= GetParent();
326 HBRUSH hbr
= (HBRUSH
)parent
->MSWGetBgBrush(dc
.GetHDC(), GetHWND());
328 // if there is no special brush for painting this control, just use the
329 // solid background colour
333 brush
= wxBrush(parent
->GetBackgroundColour());
334 hbr
= GetHbrushOf(brush
);
337 ::FillRect(GetHdcOf(dc
), &rc
, hbr
);
340 void wxStaticBox::PaintForeground(wxDC
& dc
, const RECT
& WXUNUSED(rc
))
342 // NB: neither setting the text colour nor transparent background mode
343 // doesn't change anything: the static box def window proc still
344 // draws the label in its own colours, so if we want to have control
345 // over this we really have to draw everything ourselves
346 MSWDefWindowProc(WM_PAINT
, (WPARAM
)GetHdcOf(dc
), 0);
349 void wxStaticBox::OnPaint(wxPaintEvent
& WXUNUSED(event
))
352 ::GetClientRect(GetHwnd(), &rc
);
354 // draw the entire box in a memory DC
356 wxBitmap
bitmap(rc
.right
, rc
.bottom
);
357 memdc
.SelectObject(bitmap
);
359 PaintBackground(memdc
, rc
);
360 PaintForeground(memdc
, rc
);
362 // now only blit the static box border itself, not the interior, to avoid
363 // flicker when background is drawn below
365 // note that it seems to be faster to do 4 small blits here and then paint
366 // directly into wxPaintDC than painting background in wxMemoryDC and then
367 // blitting everything at once to wxPaintDC, this is why we do it like this
369 int borderTop
, border
;
370 GetBordersForSizer(&borderTop
, &border
);
373 dc
.Blit(border
, 0, rc
.right
- border
, borderTop
,
376 dc
.Blit(border
, rc
.bottom
- border
, rc
.right
- border
, rc
.bottom
,
377 &memdc
, border
, rc
.bottom
- border
);
379 dc
.Blit(0, 0, border
, rc
.bottom
,
382 dc
.Blit(rc
.right
- border
, 0, rc
.right
, rc
.bottom
,
383 &memdc
, rc
.right
- border
, 0);
386 // create the region excluding box children
387 AutoHRGN
hrgn((HRGN
)MSWGetRegionWithoutChildren());
389 ::GetWindowRect(GetHwnd(), &rcWin
);
390 ::OffsetRgn(hrgn
, -rcWin
.left
, -rcWin
.top
);
392 // and also the box itself
393 MSWGetRegionWithoutSelf((WXHRGN
) hrgn
, rc
.right
, rc
.bottom
);
394 HDCClipper
clipToBg(GetHdcOf(dc
), hrgn
);
396 // paint the inside of the box (excluding box itself and child controls)
397 PaintBackground(dc
, rc
);
400 #endif // !__WXWINCE__
402 #endif // wxUSE_STATBOX