]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/statbox.cpp
beb279730064a0e963a67885039bc9cbd57b8331
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"
44 #include "wx/msw/private.h"
46 // ----------------------------------------------------------------------------
48 // ----------------------------------------------------------------------------
50 #if wxUSE_EXTENDED_RTTI
51 WX_DEFINE_FLAGS( wxStaticBoxStyle
)
53 wxBEGIN_FLAGS( wxStaticBoxStyle
)
54 // new style border flags, we put them first to
55 // use them for streaming out
56 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
57 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
58 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
59 wxFLAGS_MEMBER(wxBORDER_RAISED
)
60 wxFLAGS_MEMBER(wxBORDER_STATIC
)
61 wxFLAGS_MEMBER(wxBORDER_NONE
)
63 // old style border flags
64 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
65 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
66 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
67 wxFLAGS_MEMBER(wxRAISED_BORDER
)
68 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
69 wxFLAGS_MEMBER(wxBORDER
)
71 // standard window styles
72 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
73 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
74 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
75 wxFLAGS_MEMBER(wxWANTS_CHARS
)
76 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
77 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
78 wxFLAGS_MEMBER(wxVSCROLL
)
79 wxFLAGS_MEMBER(wxHSCROLL
)
81 wxEND_FLAGS( wxStaticBoxStyle
)
83 IMPLEMENT_DYNAMIC_CLASS_XTI(wxStaticBox
, wxControl
,"wx/statbox.h")
85 wxBEGIN_PROPERTIES_TABLE(wxStaticBox
)
86 wxPROPERTY( Label
,wxString
, SetLabel
, GetLabel
, wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
87 wxPROPERTY_FLAGS( WindowStyle
, wxStaticBoxStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
92 wxEND_PROPERTIES_TABLE()
94 wxBEGIN_HANDLERS_TABLE(wxStaticBox
)
95 wxEND_HANDLERS_TABLE()
97 wxCONSTRUCTOR_6( wxStaticBox
, wxWindow
* , Parent
, wxWindowID
, Id
, wxString
, Label
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
99 IMPLEMENT_DYNAMIC_CLASS(wxStaticBox
, wxControl
)
102 // ============================================================================
104 // ============================================================================
106 // ----------------------------------------------------------------------------
108 // ----------------------------------------------------------------------------
110 bool wxStaticBox::Create(wxWindow
*parent
,
112 const wxString
& label
,
116 const wxString
& name
)
118 if ( !CreateControl(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
121 if ( !MSWCreateControl(wxT("BUTTON"), label
, pos
, size
) )
125 Connect(wxEVT_PAINT
, wxPaintEventHandler(wxStaticBox::OnPaint
));
126 #endif // !__WXWINCE__
131 wxBorder
wxStaticBox::GetDefaultBorder() const
133 return wxBORDER_NONE
;
136 WXDWORD
wxStaticBox::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
138 long styleWin
= wxStaticBoxBase::MSWGetStyle(style
, exstyle
);
140 // no need for it anymore, must be removed for wxRadioBox child
141 // buttons to be able to repaint themselves
142 styleWin
&= ~WS_CLIPCHILDREN
;
147 return styleWin
| BS_GROUPBOX
;
150 wxSize
wxStaticBox::DoGetBestSize() const
153 wxGetCharSize(GetHWND(), &cx
, &cy
, GetFont());
156 GetTextExtent(wxGetWindowText(m_hWnd
), &wBox
, &cy
);
159 int hBox
= EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy
);
161 return wxSize(wBox
, hBox
);
164 void wxStaticBox::GetBordersForSizer(int *borderTop
, int *borderOther
) const
166 wxStaticBoxBase::GetBordersForSizer(borderTop
, borderOther
);
168 // need extra space, don't know how much but this seems to be enough
169 *borderTop
+= GetCharHeight()/3;
172 // all the hacks below are not necessary for WinCE
175 WXLRESULT
wxStaticBox::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
177 if ( nMsg
== WM_NCHITTEST
)
179 // This code breaks some other processing such as enter/leave tracking
180 // so it's off by default.
182 static int s_useHTClient
= -1;
183 if (s_useHTClient
== -1)
184 s_useHTClient
= wxSystemOptions::GetOptionInt(wxT("msw.staticbox.htclient"));
185 if (s_useHTClient
== 1)
187 int xPos
= GET_X_LPARAM(lParam
);
188 int yPos
= GET_Y_LPARAM(lParam
);
190 ScreenToClient(&xPos
, &yPos
);
192 // Make sure you can drag by the top of the groupbox, but let
193 // other (enclosed) controls get mouse events also
195 return (long)HTCLIENT
;
199 return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
202 // ----------------------------------------------------------------------------
203 // static box drawing
204 // ----------------------------------------------------------------------------
207 We draw the static box ourselves because it's the only way to prevent it
208 from flickering horribly on resize (because everything inside the box is
209 erased twice: once when the box itself is repainted and second time when
210 the control inside it is repainted) without using WS_EX_TRANSPARENT style as
211 we used to do and which resulted in other problems.
214 // MSWGetRegionWithoutSelf helper: removes the given rectangle from region
216 SubtractRectFromRgn(HRGN hrgn
, int left
, int top
, int right
, int bottom
)
218 AutoHRGN
hrgnRect(::CreateRectRgn(left
, top
, right
, bottom
));
221 wxLogLastError(_T("CreateRectRgn()"));
225 ::CombineRgn(hrgn
, hrgn
, hrgnRect
, RGN_DIFF
);
228 void wxStaticBox::MSWGetRegionWithoutSelf(WXHRGN hRgn
, int w
, int h
)
230 HRGN hrgn
= (HRGN
)hRgn
;
232 // remove the area occupied by the static box borders from the region
233 int borderTop
, border
;
234 GetBordersForSizer(&borderTop
, &border
);
237 SubtractRectFromRgn(hrgn
, 0, 0, w
, borderTop
);
240 SubtractRectFromRgn(hrgn
, 0, h
- border
, w
, h
);
243 SubtractRectFromRgn(hrgn
, 0, 0, border
, h
);
246 SubtractRectFromRgn(hrgn
, w
- border
, 0, w
, h
);
249 WXHRGN
wxStaticBox::MSWGetRegionWithoutChildren()
252 ::GetWindowRect(GetHwnd(), &rc
);
253 HRGN hrgn
= ::CreateRectRgn(rc
.left
, rc
.top
, rc
.right
+ 1, rc
.bottom
+ 1);
255 // iterate over all child windows (not just wxWindows but all windows)
256 for ( HWND child
= ::GetWindow(GetHwndOf(GetParent()), GW_CHILD
);
258 child
= ::GetWindow(child
, GW_HWNDNEXT
) )
260 wxWindow
*childWindow
= wxGetWindowFromHWND((WXHWND
) child
);
262 // can't just test for (this != child) here since if a wxStaticBox
263 // overlaps another wxStaticBox then neither are drawn. The overlapping
264 // region will flicker but we shouldn't have overlapping windows anyway.
265 if ( !childWindow
|| !wxDynamicCast(childWindow
, wxStaticBox
) )
267 ::GetWindowRect(child
, &rc
);
268 if ( ::RectInRegion(hrgn
, &rc
) )
270 // need to remove WS_CLIPSIBLINGS from all sibling windows
271 // that are within this staticbox if set
272 LONG style
= ::GetWindowLong(child
, GWL_STYLE
);
273 if ( style
& WS_CLIPSIBLINGS
)
275 style
&= ~WS_CLIPSIBLINGS
;
276 ::SetWindowLong(child
, GWL_STYLE
, style
);
278 // MSDN: "If you have changed certain window data using
279 // SetWindowLong, you must call SetWindowPos to have the
280 // changes take effect."
281 ::SetWindowPos(child
, NULL
, 0, 0, 0, 0,
282 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOZORDER
|
286 AutoHRGN
hrgnChild(::CreateRectRgnIndirect(&rc
));
287 ::CombineRgn(hrgn
, hrgn
, hrgnChild
, RGN_DIFF
);
295 // helper for OnPaint(): really erase the background, i.e. do it even if we
296 // don't have any non default brush for doing it (DoEraseBackground() doesn't
297 // do anything in such case)
298 void wxStaticBox::PaintBackground(wxDC
& dc
, const RECT
& rc
)
300 // note that we do not use the box background colour here, it shouldn't
301 // apply to its interior for several reasons:
302 // 1. wxGTK doesn't do it
303 // 2. controls inside the box don't get correct bg colour because they
304 // are not our children so we'd have some really ugly colour mix if
306 // 3. this is backwards compatible behaviour and some people rely on it,
307 // see http://groups.google.com/groups?selm=4252E932.3080801%40able.es
308 wxWindow
*parent
= GetParent();
309 HBRUSH hbr
= (HBRUSH
)parent
->MSWGetBgBrush(dc
.GetHDC(), this);
311 // if there is no special brush for painting this control, just use the
312 // solid background colour
316 brush
= wxBrush(parent
->GetBackgroundColour());
317 hbr
= GetHbrushOf(brush
);
320 ::FillRect(GetHdcOf(dc
), &rc
, hbr
);
323 void wxStaticBox::OnPaint(wxPaintEvent
& WXUNUSED(event
))
326 ::GetClientRect(GetHwnd(), &rc
);
328 // draw the entire box in a memory DC
330 wxBitmap
bitmap(rc
.right
, rc
.bottom
);
331 memdc
.SelectObject(bitmap
);
333 PaintBackground(memdc
, rc
);
335 // NB: neither setting the text colour nor transparent background mode
336 // doesn't change anything: the static box def window proc still
337 // draws the label in its own colours, so if we want to have control
338 // over this we really have to draw everything ourselves
339 MSWDefWindowProc(WM_PAINT
, (WPARAM
)GetHdcOf(memdc
), 0);
342 // now only blit the static box border itself, not the interior, to avoid
343 // flicker when background is drawn below
345 // note that it seems to be faster to do 4 small blits here and then paint
346 // directly into wxPaintDC than painting background in wxMemoryDC and then
347 // blitting everything at once to wxPaintDC, this is why we do it like this
349 int borderTop
, border
;
350 GetBordersForSizer(&borderTop
, &border
);
353 dc
.Blit(border
, 0, rc
.right
- border
, borderTop
,
356 dc
.Blit(border
, rc
.bottom
- border
, rc
.right
- border
, rc
.bottom
,
357 &memdc
, border
, rc
.bottom
- border
);
359 dc
.Blit(0, 0, border
, rc
.bottom
,
362 dc
.Blit(rc
.right
- border
, 0, rc
.right
, rc
.bottom
,
363 &memdc
, rc
.right
- border
, 0);
366 // create the region excluding box children
367 AutoHRGN
hrgn((HRGN
)MSWGetRegionWithoutChildren());
369 ::GetWindowRect(GetHwnd(), &rcWin
);
370 ::OffsetRgn(hrgn
, -rcWin
.left
, -rcWin
.top
);
372 // and also the box itself
373 MSWGetRegionWithoutSelf((WXHRGN
) hrgn
, rc
.right
, rc
.bottom
);
374 HDCClipper
clipToBg(GetHdcOf(dc
), hrgn
);
376 // paint the inside of the box (excluding box itself and child controls)
377 PaintBackground(dc
, rc
);
380 #endif // !__WXWINCE__
382 #endif // wxUSE_STATBOX