]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/statbox.cpp
441dd5147f8416d38a622c408b6aa55bbf650131
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
));
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 WXLRESULT
wxStaticBox::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
167 if ( nMsg
== WM_NCHITTEST
)
169 // This code breaks some other processing such as enter/leave tracking
170 // so it's off by default.
172 static int s_useHTClient
= -1;
173 if (s_useHTClient
== -1)
174 s_useHTClient
= wxSystemOptions::GetOptionInt(wxT("msw.staticbox.htclient"));
175 if (s_useHTClient
== 1)
177 int xPos
= LOWORD(lParam
); // horizontal position of cursor
178 int yPos
= HIWORD(lParam
); // vertical position of cursor
180 ScreenToClient(&xPos
, &yPos
);
182 // Make sure you can drag by the top of the groupbox, but let
183 // other (enclosed) controls get mouse events also
185 return (long)HTCLIENT
;
188 #endif // !__WXWINCE__
190 return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
193 void wxStaticBox::GetBordersForSizer(int *borderTop
, int *borderOther
) const
195 wxStaticBoxBase::GetBordersForSizer(borderTop
, borderOther
);
197 // need extra space, don't know how much but this seems to be enough
198 *borderTop
+= GetCharHeight()/3;
201 // MSWGetRegionWithoutSelf helper: removes the given rectangle from region
203 SubtractRectFromRgn(HRGN hrgn
, int left
, int top
, int right
, int bottom
)
205 AutoHRGN
hrgnRect(::CreateRectRgn(left
, top
, right
, bottom
));
208 wxLogLastError(_T("CreateRectRgn()"));
212 ::CombineRgn(hrgn
, hrgn
, hrgnRect
, RGN_DIFF
);
215 void wxStaticBox::MSWGetRegionWithoutSelf(WXHRGN hRgn
, int w
, int h
)
217 HRGN hrgn
= (HRGN
)hRgn
;
219 // remove the area occupied by the static box borders from the region
220 int borderTop
, border
;
221 GetBordersForSizer(&borderTop
, &border
);
224 SubtractRectFromRgn(hrgn
, 0, 0, w
, borderTop
);
227 SubtractRectFromRgn(hrgn
, 0, h
- border
, w
, h
);
230 SubtractRectFromRgn(hrgn
, 0, 0, border
, h
);
233 SubtractRectFromRgn(hrgn
, w
- border
, 0, w
, h
);
236 WXHRGN
wxStaticBox::MSWGetRegionWithoutChildren()
239 ::GetWindowRect(GetHwnd(), &rc
);
240 HRGN hrgn
= ::CreateRectRgn(rc
.left
, rc
.top
, rc
.right
+ 1, rc
.bottom
+ 1);
242 // iterate over all child windows (not just wxWindows but all windows)
243 for ( HWND child
= ::GetWindow(GetHwndOf(GetParent()), GW_CHILD
);
245 child
= ::GetWindow(child
, GW_HWNDNEXT
) )
247 wxWindow
*childWindow
= wxGetWindowFromHWND((WXHWND
) child
);
249 // can't just test for (this != child) here since if a wxStaticBox
250 // overlaps another wxStaticBox then neither are drawn. The overlapping
251 // region will flicker but we shouldn't have overlapping windows anyway.
252 if ( !childWindow
|| !wxDynamicCast(childWindow
, wxStaticBox
) )
254 ::GetWindowRect(child
, &rc
);
255 if ( ::RectInRegion(hrgn
, &rc
) )
257 // need to remove WS_CLIPSIBLINGS from all sibling windows
258 // that are within this staticbox if set
259 LONG style
= ::GetWindowLong(child
, GWL_STYLE
);
260 if ( style
& WS_CLIPSIBLINGS
)
262 style
&= ~WS_CLIPSIBLINGS
;
263 ::SetWindowLong(child
, GWL_STYLE
, style
);
265 // MSDN: "If you have changed certain window data using
266 // SetWindowLong, you must call SetWindowPos to have the
267 // changes take effect."
268 ::SetWindowPos(child
, NULL
, 0, 0, 0, 0,
269 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOZORDER
|
273 AutoHRGN
hrgnChild(::CreateRectRgnIndirect(&rc
));
274 ::CombineRgn(hrgn
, hrgn
, hrgnChild
, RGN_DIFF
);
282 // helper for OnPaint()
283 void wxStaticBox::PaintBackground(wxDC
& dc
, const RECT
& rc
)
285 // note that static box should be transparent, so it should show its
286 // parents colour, not its own
287 wxWindow
* const parent
= GetParent();
289 HBRUSH hbr
= (HBRUSH
)parent
->MSWGetBgBrush(dc
.GetHDC());
293 wxTheBrushList
->FindOrCreateBrush(parent
->GetBackgroundColour());
295 hbr
= GetHbrushOf(*brush
);
299 ::FillRect(GetHdcOf(dc
), &rc
, hbr
);
302 void wxStaticBox::OnPaint(wxPaintEvent
& WXUNUSED(event
))
306 ::GetClientRect(GetHwnd(), &rc
);
308 // draw the entire box in a memory DC, but only blit the bits not redrawn
309 // either by our children windows nor by FillRect() painting the background
312 wxBitmap
bitmap(rc
.right
, rc
.bottom
);
313 memdc
.SelectObject(bitmap
);
315 PaintBackground(memdc
, rc
);
316 MSWDefWindowProc(WM_PAINT
, (WPARAM
)GetHdcOf(memdc
), 0);
318 int borderTop
, border
;
319 GetBordersForSizer(&borderTop
, &border
);
322 dc
.Blit(border
, 0, rc
.right
- border
, borderTop
,
325 dc
.Blit(border
, rc
.bottom
- border
, rc
.right
- border
, rc
.bottom
,
326 &memdc
, border
, rc
.bottom
- border
);
328 dc
.Blit(0, 0, border
, rc
.bottom
,
331 dc
.Blit(rc
.right
- border
, 0, rc
.right
, rc
.bottom
,
332 &memdc
, rc
.right
- border
, 0);
334 AutoHRGN
hrgn((HRGN
)MSWGetRegionWithoutChildren());
336 ::GetWindowRect(GetHwnd(), &rcWin
);
337 ::OffsetRgn(hrgn
, -rcWin
.left
, -rcWin
.top
);
340 // now remove the box itself
341 MSWGetRegionWithoutSelf((WXHRGN
) hrgn
, rc
.right
, rc
.bottom
);
343 // and paint the inside of the box (excluding child controls)
344 ::SelectClipRgn(GetHdcOf(dc
), hrgn
);
345 PaintBackground(dc
, rc
);
346 ::SelectClipRgn(GetHdcOf(dc
), NULL
);
349 #endif // wxUSE_STATBOX