]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////////// |
3f2711d5 | 2 | // Name: 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 | ||
14f355c2 | 20 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
3f2711d5 | 21 | #pragma implementation "statbox.h" |
2bda0e17 KB |
22 | #endif |
23 | ||
24 | // For compilers that support precompilation, includes "wx.h". | |
25 | #include "wx/wxprec.h" | |
26 | ||
27 | #ifdef __BORLANDC__ | |
3f2711d5 | 28 | #pragma hdrstop |
2bda0e17 KB |
29 | #endif |
30 | ||
1e6feb95 VZ |
31 | #if wxUSE_STATBOX |
32 | ||
2bda0e17 | 33 | #ifndef WX_PRECOMP |
3f2711d5 VZ |
34 | #include "wx/app.h" |
35 | #include "wx/dcclient.h" | |
2bda0e17 KB |
36 | #endif |
37 | ||
38 | #include "wx/statbox.h" | |
3ad70d31 | 39 | #include "wx/notebook.h" |
9dabade2 | 40 | #include "wx/sysopt.h" |
eba99da4 | 41 | #include "wx/image.h" |
a4c46c19 | 42 | #include "wx/dcmemory.h" |
2bda0e17 | 43 | |
3f2711d5 VZ |
44 | #include "wx/msw/private.h" |
45 | ||
46 | // ---------------------------------------------------------------------------- | |
47 | // wxWin macros | |
48 | // ---------------------------------------------------------------------------- | |
49 | ||
51741307 | 50 | #if wxUSE_EXTENDED_RTTI |
bc9fb572 JS |
51 | WX_DEFINE_FLAGS( wxStaticBoxStyle ) |
52 | ||
3ff066a4 | 53 | wxBEGIN_FLAGS( wxStaticBoxStyle ) |
bc9fb572 JS |
54 | // new style border flags, we put them first to |
55 | // use them for streaming out | |
3ff066a4 SC |
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) | |
57f4f925 | 62 | |
bc9fb572 | 63 | // old style border flags |
3ff066a4 SC |
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) | |
cb0afb26 | 69 | wxFLAGS_MEMBER(wxBORDER) |
bc9fb572 JS |
70 | |
71 | // standard window styles | |
3ff066a4 SC |
72 | wxFLAGS_MEMBER(wxTAB_TRAVERSAL) |
73 | wxFLAGS_MEMBER(wxCLIP_CHILDREN) | |
74 | wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW) | |
75 | wxFLAGS_MEMBER(wxWANTS_CHARS) | |
cb0afb26 | 76 | wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE) |
3ff066a4 SC |
77 | wxFLAGS_MEMBER(wxALWAYS_SHOW_SB ) |
78 | wxFLAGS_MEMBER(wxVSCROLL) | |
79 | wxFLAGS_MEMBER(wxHSCROLL) | |
bc9fb572 | 80 | |
3ff066a4 | 81 | wxEND_FLAGS( wxStaticBoxStyle ) |
bc9fb572 | 82 | |
51741307 SC |
83 | IMPLEMENT_DYNAMIC_CLASS_XTI(wxStaticBox, wxControl,"wx/statbox.h") |
84 | ||
3ff066a4 | 85 | wxBEGIN_PROPERTIES_TABLE(wxStaticBox) |
57f4f925 | 86 | wxPROPERTY( Label,wxString, SetLabel, GetLabel, wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) |
af498247 | 87 | wxPROPERTY_FLAGS( WindowStyle , wxStaticBoxStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style |
066f1b7a | 88 | /* |
57f4f925 WS |
89 | TODO PROPERTIES : |
90 | label | |
066f1b7a | 91 | */ |
3ff066a4 | 92 | wxEND_PROPERTIES_TABLE() |
51741307 | 93 | |
3ff066a4 SC |
94 | wxBEGIN_HANDLERS_TABLE(wxStaticBox) |
95 | wxEND_HANDLERS_TABLE() | |
51741307 | 96 | |
57f4f925 | 97 | wxCONSTRUCTOR_6( wxStaticBox , wxWindow* , Parent , wxWindowID , Id , wxString , Label , wxPoint , Position , wxSize , Size , long , WindowStyle ) |
51741307 SC |
98 | #else |
99 | IMPLEMENT_DYNAMIC_CLASS(wxStaticBox, wxControl) | |
100 | #endif | |
2bda0e17 | 101 | |
3f2711d5 VZ |
102 | // ============================================================================ |
103 | // implementation | |
104 | // ============================================================================ | |
105 | ||
106 | // ---------------------------------------------------------------------------- | |
107 | // wxStaticBox | |
108 | // ---------------------------------------------------------------------------- | |
109 | ||
110 | bool wxStaticBox::Create(wxWindow *parent, | |
111 | wxWindowID id, | |
112 | const wxString& label, | |
113 | const wxPoint& pos, | |
114 | const wxSize& size, | |
115 | long style, | |
116 | const wxString& name) | |
2bda0e17 | 117 | { |
11b6a93b | 118 | if ( !CreateControl(parent, id, pos, size, style, wxDefaultValidator, name) ) |
57f4f925 | 119 | return false; |
2bda0e17 | 120 | |
e31e6ea7 | 121 | if ( !MSWCreateControl(wxT("BUTTON"), label, pos, size) ) |
57f4f925 | 122 | return false; |
2bda0e17 | 123 | |
3b6e5fb3 VZ |
124 | Connect(wxEVT_PAINT, wxPaintEventHandler(wxStaticBox::OnPaint)); |
125 | ||
57f4f925 | 126 | return true; |
2bda0e17 KB |
127 | } |
128 | ||
e31e6ea7 VZ |
129 | WXDWORD wxStaticBox::MSWGetStyle(long style, WXDWORD *exstyle) const |
130 | { | |
131 | long styleWin = wxStaticBoxBase::MSWGetStyle(style, exstyle); | |
132 | ||
eba99da4 JS |
133 | // no need for it anymore, must be removed for wxRadioBox child |
134 | // buttons to be able to repaint themselves | |
135 | styleWin &= ~WS_CLIPCHILDREN; | |
136 | ||
e31e6ea7 | 137 | if ( exstyle ) |
eba99da4 | 138 | *exstyle = 0; |
e31e6ea7 VZ |
139 | |
140 | return styleWin | BS_GROUPBOX; | |
141 | } | |
142 | ||
f68586e5 | 143 | wxSize wxStaticBox::DoGetBestSize() const |
2bda0e17 | 144 | { |
4438caf4 | 145 | int cx, cy; |
7a5e53ab | 146 | wxGetCharSize(GetHWND(), &cx, &cy, GetFont()); |
2bda0e17 | 147 | |
4438caf4 VZ |
148 | int wBox; |
149 | GetTextExtent(wxGetWindowText(m_hWnd), &wBox, &cy); | |
2bda0e17 | 150 | |
4438caf4 VZ |
151 | wBox += 3*cx; |
152 | int hBox = EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy); | |
2bda0e17 | 153 | |
4438caf4 VZ |
154 | return wxSize(wBox, hBox); |
155 | } | |
2bda0e17 | 156 | |
6aa01033 JS |
157 | WXLRESULT wxStaticBox::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam) |
158 | { | |
abf912c5 | 159 | #ifndef __WXWINCE__ |
58385af0 | 160 | if ( nMsg == WM_NCHITTEST ) |
6aa01033 | 161 | { |
58385af0 VZ |
162 | // This code breaks some other processing such as enter/leave tracking |
163 | // so it's off by default. | |
164 | ||
165 | static int s_useHTClient = -1; | |
166 | if (s_useHTClient == -1) | |
167 | s_useHTClient = wxSystemOptions::GetOptionInt(wxT("msw.staticbox.htclient")); | |
168 | if (s_useHTClient == 1) | |
169 | { | |
170 | int xPos = LOWORD(lParam); // horizontal position of cursor | |
171 | int yPos = HIWORD(lParam); // vertical position of cursor | |
172 | ||
173 | ScreenToClient(&xPos, &yPos); | |
174 | ||
175 | // Make sure you can drag by the top of the groupbox, but let | |
176 | // other (enclosed) controls get mouse events also | |
177 | if ( yPos < 10 ) | |
178 | return (long)HTCLIENT; | |
179 | } | |
6aa01033 | 180 | } |
abf912c5 | 181 | #endif // !__WXWINCE__ |
6aa01033 JS |
182 | |
183 | return wxControl::MSWWindowProc(nMsg, wParam, lParam); | |
184 | } | |
185 | ||
58385af0 VZ |
186 | void wxStaticBox::GetBordersForSizer(int *borderTop, int *borderOther) const |
187 | { | |
188 | wxStaticBoxBase::GetBordersForSizer(borderTop, borderOther); | |
189 | ||
190 | // if not using correct (but backwards cojmpatible) text metrics | |
191 | // calculations, we need to add some extra margin or otherwise static box | |
192 | // title is clipped | |
193 | #if !wxDIALOG_UNIT_COMPATIBILITY | |
194 | if ( !GetLabel().empty() ) | |
195 | *borderTop += GetCharHeight()/3; | |
196 | #endif // !wxDIALOG_UNIT_COMPATIBILITY | |
197 | } | |
198 | ||
3b6e5fb3 VZ |
199 | // MSWGetRegionWithoutSelf helper: removes the given rectangle from region |
200 | static inline void | |
201 | SubtractRectFromRgn(HRGN hrgn, int left, int top, int right, int bottom) | |
202 | { | |
203 | AutoHRGN hrgnRect(::CreateRectRgn(left, top, right, bottom)); | |
204 | if ( !hrgnRect ) | |
205 | { | |
206 | wxLogLastError(_T("CreateRectRgn()")); | |
207 | return; | |
208 | } | |
209 | ||
210 | ::CombineRgn(hrgn, hrgn, hrgnRect, RGN_DIFF); | |
211 | } | |
212 | ||
213 | void wxStaticBox::MSWGetRegionWithoutSelf(WXHRGN hRgn, int w, int h) | |
eba99da4 | 214 | { |
3b6e5fb3 VZ |
215 | HRGN hrgn = (HRGN)hRgn; |
216 | ||
217 | // remove the area occupied by the static box borders from the region | |
218 | int borderTop, border; | |
219 | GetBordersForSizer(&borderTop, &border); | |
eba99da4 JS |
220 | |
221 | // top | |
3b6e5fb3 | 222 | SubtractRectFromRgn(hrgn, 0, 0, w, borderTop); |
eba99da4 JS |
223 | |
224 | // bottom | |
3b6e5fb3 | 225 | SubtractRectFromRgn(hrgn, 0, h - border, w, h); |
eba99da4 JS |
226 | |
227 | // left | |
3b6e5fb3 | 228 | SubtractRectFromRgn(hrgn, 0, 0, border, h); |
eba99da4 JS |
229 | |
230 | // right | |
3b6e5fb3 | 231 | SubtractRectFromRgn(hrgn, w - border, 0, w, h); |
eba99da4 JS |
232 | } |
233 | ||
3b6e5fb3 | 234 | WXHRGN wxStaticBox::MSWGetRegionWithoutChildren() |
eba99da4 JS |
235 | { |
236 | RECT rc; | |
237 | ::GetWindowRect(GetHwnd(), &rc); | |
238 | HRGN hrgn = ::CreateRectRgn(rc.left, rc.top, rc.right + 1, rc.bottom + 1); | |
3b6e5fb3 VZ |
239 | |
240 | // iterate over all child windows (not just wxWindows but all windows) | |
241 | for ( HWND child = ::GetWindow(GetHwndOf(GetParent()), GW_CHILD); | |
242 | child; | |
243 | child = ::GetWindow(child, GW_HWNDNEXT) ) | |
eba99da4 | 244 | { |
3b6e5fb3 | 245 | wxWindow *childWindow = wxGetWindowFromHWND((WXHWND) child); |
eba99da4 JS |
246 | |
247 | // can't just test for (this != child) here since if a wxStaticBox | |
248 | // overlaps another wxStaticBox then neither are drawn. The overlapping | |
249 | // region will flicker but we shouldn't have overlapping windows anyway. | |
3b6e5fb3 | 250 | if ( !childWindow || !wxDynamicCast(childWindow, wxStaticBox) ) |
eba99da4 | 251 | { |
54c5498d | 252 | ::GetWindowRect(child, &rc); |
3b6e5fb3 | 253 | if ( ::RectInRegion(hrgn, &rc) ) |
eba99da4 JS |
254 | { |
255 | // need to remove WS_CLIPSIBLINGS from all sibling windows | |
256 | // that are within this staticbox if set | |
54c5498d | 257 | LONG style = ::GetWindowLong(child, GWL_STYLE); |
eba99da4 JS |
258 | if ( style & WS_CLIPSIBLINGS ) |
259 | { | |
260 | style &= ~WS_CLIPSIBLINGS; | |
54c5498d | 261 | ::SetWindowLong(child, GWL_STYLE, style); |
eba99da4 JS |
262 | |
263 | // MSDN: "If you have changed certain window data using | |
264 | // SetWindowLong, you must call SetWindowPos to have the | |
265 | // changes take effect." | |
54c5498d | 266 | ::SetWindowPos(child, NULL, 0, 0, 0, 0, |
eba99da4 JS |
267 | SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER | |
268 | SWP_FRAMECHANGED); | |
269 | } | |
270 | ||
3b6e5fb3 VZ |
271 | AutoHRGN hrgnChild(::CreateRectRgnIndirect(&rc)); |
272 | ::CombineRgn(hrgn, hrgn, hrgnChild, RGN_DIFF); | |
eba99da4 JS |
273 | } |
274 | } | |
eba99da4 | 275 | } |
eba99da4 | 276 | |
3b6e5fb3 VZ |
277 | return (WXHRGN)hrgn; |
278 | } | |
279 | ||
280 | // helper for OnPaint() | |
281 | void wxStaticBox::PaintBackground(wxDC& dc, const RECT& rc) | |
282 | { | |
283 | HBRUSH hbr = (HBRUSH)DoMSWControlColor(GetHdcOf(dc), wxNullColour); | |
284 | if ( !hbr ) | |
285 | { | |
286 | wxBrush * | |
287 | brush = wxTheBrushList->FindOrCreateBrush(GetBackgroundColour()); | |
288 | if ( brush ) | |
289 | hbr = GetHbrushOf(*brush); | |
290 | } | |
291 | ||
292 | if ( hbr ) | |
293 | ::FillRect(GetHdcOf(dc), &rc, hbr); | |
eba99da4 JS |
294 | } |
295 | ||
296 | void wxStaticBox::OnPaint(wxPaintEvent& WXUNUSED(event)) | |
297 | { | |
298 | wxPaintDC dc(this); | |
299 | RECT rc; | |
300 | ::GetClientRect(GetHwnd(), &rc); | |
301 | ||
3b6e5fb3 VZ |
302 | // draw the entire box in a memory DC, but only blit the bits not redrawn |
303 | // either by our children windows nor by FillRect() painting the background | |
304 | // below | |
eba99da4 JS |
305 | wxMemoryDC memdc; |
306 | wxBitmap bitmap(rc.right, rc.bottom); | |
307 | memdc.SelectObject(bitmap); | |
308 | ||
3b6e5fb3 | 309 | PaintBackground(memdc, rc); |
eba99da4 JS |
310 | MSWDefWindowProc(WM_PAINT, (WPARAM)GetHdcOf(memdc), 0); |
311 | ||
3b6e5fb3 VZ |
312 | int borderTop, border; |
313 | GetBordersForSizer(&borderTop, &border); | |
314 | ||
eba99da4 | 315 | // top |
3b6e5fb3 VZ |
316 | dc.Blit(border, 0, rc.right - border, borderTop, |
317 | &memdc, border, 0); | |
eba99da4 | 318 | // bottom |
3b6e5fb3 VZ |
319 | dc.Blit(border, rc.bottom - border, rc.right - border, rc.bottom, |
320 | &memdc, border, rc.bottom - border); | |
eba99da4 | 321 | // left |
3b6e5fb3 VZ |
322 | dc.Blit(0, 0, border, rc.bottom, |
323 | &memdc, 0, 0); | |
eba99da4 | 324 | // right |
3b6e5fb3 VZ |
325 | dc.Blit(rc.right - border, 0, rc.right, rc.bottom, |
326 | &memdc, rc.right - border, 0); | |
eba99da4 | 327 | |
3b6e5fb3 VZ |
328 | AutoHRGN hrgn((HRGN)MSWGetRegionWithoutChildren()); |
329 | RECT rcWin; | |
330 | ::GetWindowRect(GetHwnd(), &rcWin); | |
331 | ::OffsetRgn(hrgn, -rcWin.left, -rcWin.top); | |
eba99da4 | 332 | |
eba99da4 | 333 | |
3b6e5fb3 VZ |
334 | // now remove the box itself |
335 | MSWGetRegionWithoutSelf((WXHRGN) hrgn, rc.right, rc.bottom); | |
336 | ||
337 | // and paint the inside of the box (excluding child controls) | |
eba99da4 | 338 | ::SelectClipRgn(GetHdcOf(dc), hrgn); |
3b6e5fb3 | 339 | PaintBackground(dc, rc); |
eba99da4 | 340 | ::SelectClipRgn(GetHdcOf(dc), NULL); |
eba99da4 JS |
341 | } |
342 | ||
1e6feb95 | 343 | #endif // wxUSE_STATBOX |
6aa01033 | 344 |