]>
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" |
5bf4788a | 43 | #include "wx/sysopt.h" |
2bda0e17 | 44 | |
3f2711d5 | 45 | #include "wx/msw/private.h" |
72093cd8 | 46 | #include "wx/msw/missing.h" |
3f2711d5 VZ |
47 | |
48 | // ---------------------------------------------------------------------------- | |
49 | // wxWin macros | |
50 | // ---------------------------------------------------------------------------- | |
51 | ||
51741307 | 52 | #if wxUSE_EXTENDED_RTTI |
bc9fb572 JS |
53 | WX_DEFINE_FLAGS( wxStaticBoxStyle ) |
54 | ||
3ff066a4 | 55 | wxBEGIN_FLAGS( wxStaticBoxStyle ) |
bc9fb572 JS |
56 | // new style border flags, we put them first to |
57 | // use them for streaming out | |
3ff066a4 SC |
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) | |
57f4f925 | 64 | |
bc9fb572 | 65 | // old style border flags |
3ff066a4 SC |
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) | |
cb0afb26 | 71 | wxFLAGS_MEMBER(wxBORDER) |
bc9fb572 JS |
72 | |
73 | // standard window styles | |
3ff066a4 SC |
74 | wxFLAGS_MEMBER(wxTAB_TRAVERSAL) |
75 | wxFLAGS_MEMBER(wxCLIP_CHILDREN) | |
76 | wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW) | |
77 | wxFLAGS_MEMBER(wxWANTS_CHARS) | |
cb0afb26 | 78 | wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE) |
3ff066a4 SC |
79 | wxFLAGS_MEMBER(wxALWAYS_SHOW_SB ) |
80 | wxFLAGS_MEMBER(wxVSCROLL) | |
81 | wxFLAGS_MEMBER(wxHSCROLL) | |
bc9fb572 | 82 | |
3ff066a4 | 83 | wxEND_FLAGS( wxStaticBoxStyle ) |
bc9fb572 | 84 | |
51741307 SC |
85 | IMPLEMENT_DYNAMIC_CLASS_XTI(wxStaticBox, wxControl,"wx/statbox.h") |
86 | ||
3ff066a4 | 87 | wxBEGIN_PROPERTIES_TABLE(wxStaticBox) |
57f4f925 | 88 | wxPROPERTY( Label,wxString, SetLabel, GetLabel, wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) |
af498247 | 89 | wxPROPERTY_FLAGS( WindowStyle , wxStaticBoxStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style |
066f1b7a | 90 | /* |
57f4f925 WS |
91 | TODO PROPERTIES : |
92 | label | |
066f1b7a | 93 | */ |
3ff066a4 | 94 | wxEND_PROPERTIES_TABLE() |
51741307 | 95 | |
3ff066a4 SC |
96 | wxBEGIN_HANDLERS_TABLE(wxStaticBox) |
97 | wxEND_HANDLERS_TABLE() | |
51741307 | 98 | |
57f4f925 | 99 | wxCONSTRUCTOR_6( wxStaticBox , wxWindow* , Parent , wxWindowID , Id , wxString , Label , wxPoint , Position , wxSize , Size , long , WindowStyle ) |
51741307 SC |
100 | #else |
101 | IMPLEMENT_DYNAMIC_CLASS(wxStaticBox, wxControl) | |
102 | #endif | |
2bda0e17 | 103 | |
3f2711d5 VZ |
104 | // ============================================================================ |
105 | // implementation | |
106 | // ============================================================================ | |
107 | ||
108 | // ---------------------------------------------------------------------------- | |
109 | // wxStaticBox | |
110 | // ---------------------------------------------------------------------------- | |
111 | ||
112 | bool wxStaticBox::Create(wxWindow *parent, | |
113 | wxWindowID id, | |
114 | const wxString& label, | |
115 | const wxPoint& pos, | |
116 | const wxSize& size, | |
117 | long style, | |
118 | const wxString& name) | |
2bda0e17 | 119 | { |
11b6a93b | 120 | if ( !CreateControl(parent, id, pos, size, style, wxDefaultValidator, name) ) |
57f4f925 | 121 | return false; |
2bda0e17 | 122 | |
e31e6ea7 | 123 | if ( !MSWCreateControl(wxT("BUTTON"), label, pos, size) ) |
57f4f925 | 124 | return false; |
2bda0e17 | 125 | |
9f769708 | 126 | #ifndef __WXWINCE__ |
5bf4788a JS |
127 | if (!wxSystemOptions::IsFalse(wxT("msw.staticbox.optimized-paint"))) |
128 | Connect(wxEVT_PAINT, wxPaintEventHandler(wxStaticBox::OnPaint)); | |
c3732409 | 129 | #endif // !__WXWINCE__ |
3b6e5fb3 | 130 | |
57f4f925 | 131 | return true; |
2bda0e17 KB |
132 | } |
133 | ||
9f769708 JS |
134 | wxBorder wxStaticBox::GetDefaultBorder() const |
135 | { | |
136 | return wxBORDER_NONE; | |
137 | } | |
138 | ||
e31e6ea7 VZ |
139 | WXDWORD wxStaticBox::MSWGetStyle(long style, WXDWORD *exstyle) const |
140 | { | |
141 | long styleWin = wxStaticBoxBase::MSWGetStyle(style, exstyle); | |
142 | ||
eba99da4 JS |
143 | // no need for it anymore, must be removed for wxRadioBox child |
144 | // buttons to be able to repaint themselves | |
145 | styleWin &= ~WS_CLIPCHILDREN; | |
146 | ||
e31e6ea7 | 147 | if ( exstyle ) |
5bf4788a JS |
148 | { |
149 | if (wxSystemOptions::IsFalse(wxT("msw.staticbox.optimized-paint"))) | |
150 | *exstyle = WS_EX_TRANSPARENT; | |
151 | else | |
152 | *exstyle = 0; | |
153 | } | |
a83b5b74 | 154 | |
e31e6ea7 VZ |
155 | return styleWin | BS_GROUPBOX; |
156 | } | |
157 | ||
f68586e5 | 158 | wxSize wxStaticBox::DoGetBestSize() const |
2bda0e17 | 159 | { |
4438caf4 | 160 | int cx, cy; |
7a5e53ab | 161 | wxGetCharSize(GetHWND(), &cx, &cy, GetFont()); |
2bda0e17 | 162 | |
4438caf4 VZ |
163 | int wBox; |
164 | GetTextExtent(wxGetWindowText(m_hWnd), &wBox, &cy); | |
2bda0e17 | 165 | |
4438caf4 VZ |
166 | wBox += 3*cx; |
167 | int hBox = EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy); | |
2bda0e17 | 168 | |
4438caf4 VZ |
169 | return wxSize(wBox, hBox); |
170 | } | |
2bda0e17 | 171 | |
c3732409 | 172 | void wxStaticBox::GetBordersForSizer(int *borderTop, int *borderOther) const |
6aa01033 | 173 | { |
c3732409 VZ |
174 | wxStaticBoxBase::GetBordersForSizer(borderTop, borderOther); |
175 | ||
176 | // need extra space, don't know how much but this seems to be enough | |
177 | *borderTop += GetCharHeight()/3; | |
178 | } | |
179 | ||
180 | // all the hacks below are not necessary for WinCE | |
abf912c5 | 181 | #ifndef __WXWINCE__ |
c3732409 VZ |
182 | |
183 | WXLRESULT wxStaticBox::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam) | |
184 | { | |
58385af0 | 185 | if ( nMsg == WM_NCHITTEST ) |
6aa01033 | 186 | { |
58385af0 VZ |
187 | // This code breaks some other processing such as enter/leave tracking |
188 | // so it's off by default. | |
189 | ||
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) | |
194 | { | |
c3732409 VZ |
195 | int xPos = GET_X_LPARAM(lParam); |
196 | int yPos = GET_Y_LPARAM(lParam); | |
58385af0 VZ |
197 | |
198 | ScreenToClient(&xPos, &yPos); | |
199 | ||
200 | // Make sure you can drag by the top of the groupbox, but let | |
201 | // other (enclosed) controls get mouse events also | |
202 | if ( yPos < 10 ) | |
203 | return (long)HTCLIENT; | |
204 | } | |
6aa01033 JS |
205 | } |
206 | ||
207 | return wxControl::MSWWindowProc(nMsg, wParam, lParam); | |
208 | } | |
209 | ||
c3732409 VZ |
210 | // ---------------------------------------------------------------------------- |
211 | // static box drawing | |
212 | // ---------------------------------------------------------------------------- | |
58385af0 | 213 | |
c3732409 VZ |
214 | /* |
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. | |
220 | */ | |
58385af0 | 221 | |
3b6e5fb3 VZ |
222 | // MSWGetRegionWithoutSelf helper: removes the given rectangle from region |
223 | static inline void | |
224 | SubtractRectFromRgn(HRGN hrgn, int left, int top, int right, int bottom) | |
225 | { | |
226 | AutoHRGN hrgnRect(::CreateRectRgn(left, top, right, bottom)); | |
227 | if ( !hrgnRect ) | |
228 | { | |
229 | wxLogLastError(_T("CreateRectRgn()")); | |
230 | return; | |
231 | } | |
232 | ||
233 | ::CombineRgn(hrgn, hrgn, hrgnRect, RGN_DIFF); | |
234 | } | |
235 | ||
236 | void wxStaticBox::MSWGetRegionWithoutSelf(WXHRGN hRgn, int w, int h) | |
eba99da4 | 237 | { |
3b6e5fb3 VZ |
238 | HRGN hrgn = (HRGN)hRgn; |
239 | ||
240 | // remove the area occupied by the static box borders from the region | |
241 | int borderTop, border; | |
242 | GetBordersForSizer(&borderTop, &border); | |
eba99da4 JS |
243 | |
244 | // top | |
3b6e5fb3 | 245 | SubtractRectFromRgn(hrgn, 0, 0, w, borderTop); |
eba99da4 JS |
246 | |
247 | // bottom | |
3b6e5fb3 | 248 | SubtractRectFromRgn(hrgn, 0, h - border, w, h); |
eba99da4 JS |
249 | |
250 | // left | |
3b6e5fb3 | 251 | SubtractRectFromRgn(hrgn, 0, 0, border, h); |
eba99da4 JS |
252 | |
253 | // right | |
3b6e5fb3 | 254 | SubtractRectFromRgn(hrgn, w - border, 0, w, h); |
eba99da4 JS |
255 | } |
256 | ||
3b6e5fb3 | 257 | WXHRGN wxStaticBox::MSWGetRegionWithoutChildren() |
eba99da4 JS |
258 | { |
259 | RECT rc; | |
260 | ::GetWindowRect(GetHwnd(), &rc); | |
261 | HRGN hrgn = ::CreateRectRgn(rc.left, rc.top, rc.right + 1, rc.bottom + 1); | |
3b6e5fb3 VZ |
262 | |
263 | // iterate over all child windows (not just wxWindows but all windows) | |
264 | for ( HWND child = ::GetWindow(GetHwndOf(GetParent()), GW_CHILD); | |
265 | child; | |
266 | child = ::GetWindow(child, GW_HWNDNEXT) ) | |
eba99da4 | 267 | { |
4249e334 RD |
268 | if ( ! ::IsWindowVisible(child) ) |
269 | { | |
270 | // if the window isn't visible then it doesn't need clipped | |
271 | continue; | |
272 | } | |
273 | ||
274 | LONG style = ::GetWindowLong(child, GWL_STYLE); | |
275 | wxString str(wxGetWindowClass(child)); | |
276 | str.UpperCase(); | |
5c17f6d3 | 277 | if ( str == wxT("BUTTON") && (style & BS_GROUPBOX) == BS_GROUPBOX ) |
eba99da4 | 278 | { |
4249e334 RD |
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. | |
283 | continue; | |
284 | } | |
285 | ||
286 | ::GetWindowRect(child, &rc); | |
287 | if ( ::RectInRegion(hrgn, &rc) ) | |
288 | { | |
289 | // need to remove WS_CLIPSIBLINGS from all sibling windows | |
290 | // that are within this staticbox if set | |
291 | if ( style & WS_CLIPSIBLINGS ) | |
eba99da4 | 292 | { |
4249e334 RD |
293 | style &= ~WS_CLIPSIBLINGS; |
294 | ::SetWindowLong(child, GWL_STYLE, style); | |
295 | ||
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 | | |
301 | SWP_FRAMECHANGED); | |
eba99da4 | 302 | } |
4249e334 RD |
303 | |
304 | AutoHRGN hrgnChild(::CreateRectRgnIndirect(&rc)); | |
305 | ::CombineRgn(hrgn, hrgn, hrgnChild, RGN_DIFF); | |
eba99da4 | 306 | } |
eba99da4 | 307 | } |
eba99da4 | 308 | |
3b6e5fb3 VZ |
309 | return (WXHRGN)hrgn; |
310 | } | |
311 | ||
c3732409 VZ |
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) | |
3b6e5fb3 VZ |
315 | void wxStaticBox::PaintBackground(wxDC& dc, const RECT& rc) |
316 | { | |
c3732409 VZ |
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 | |
322 | // we did it | |
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(); | |
bcb8ba61 | 326 | HBRUSH hbr = (HBRUSH)parent->MSWGetBgBrush(dc.GetHDC(), GetHWND()); |
c3732409 VZ |
327 | |
328 | // if there is no special brush for painting this control, just use the | |
329 | // solid background colour | |
330 | wxBrush brush; | |
3b6e5fb3 VZ |
331 | if ( !hbr ) |
332 | { | |
c3732409 VZ |
333 | brush = wxBrush(parent->GetBackgroundColour()); |
334 | hbr = GetHbrushOf(brush); | |
3b6e5fb3 VZ |
335 | } |
336 | ||
c3732409 | 337 | ::FillRect(GetHdcOf(dc), &rc, hbr); |
eba99da4 JS |
338 | } |
339 | ||
21c6080d JS |
340 | void wxStaticBox::PaintForeground(wxDC& dc, const RECT& WXUNUSED(rc)) |
341 | { | |
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); | |
347 | } | |
348 | ||
eba99da4 JS |
349 | void wxStaticBox::OnPaint(wxPaintEvent& WXUNUSED(event)) |
350 | { | |
eba99da4 JS |
351 | RECT rc; |
352 | ::GetClientRect(GetHwnd(), &rc); | |
353 | ||
c3732409 | 354 | // draw the entire box in a memory DC |
eba99da4 JS |
355 | wxMemoryDC memdc; |
356 | wxBitmap bitmap(rc.right, rc.bottom); | |
357 | memdc.SelectObject(bitmap); | |
358 | ||
3b6e5fb3 | 359 | PaintBackground(memdc, rc); |
21c6080d | 360 | PaintForeground(memdc, rc); |
c3732409 VZ |
361 | |
362 | // now only blit the static box border itself, not the interior, to avoid | |
363 | // flicker when background is drawn below | |
364 | // | |
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 | |
368 | wxPaintDC dc(this); | |
3b6e5fb3 VZ |
369 | int borderTop, border; |
370 | GetBordersForSizer(&borderTop, &border); | |
371 | ||
eba99da4 | 372 | // top |
3b6e5fb3 VZ |
373 | dc.Blit(border, 0, rc.right - border, borderTop, |
374 | &memdc, border, 0); | |
eba99da4 | 375 | // bottom |
3b6e5fb3 VZ |
376 | dc.Blit(border, rc.bottom - border, rc.right - border, rc.bottom, |
377 | &memdc, border, rc.bottom - border); | |
eba99da4 | 378 | // left |
3b6e5fb3 VZ |
379 | dc.Blit(0, 0, border, rc.bottom, |
380 | &memdc, 0, 0); | |
eba99da4 | 381 | // right |
3b6e5fb3 VZ |
382 | dc.Blit(rc.right - border, 0, rc.right, rc.bottom, |
383 | &memdc, rc.right - border, 0); | |
eba99da4 | 384 | |
c3732409 VZ |
385 | |
386 | // create the region excluding box children | |
3b6e5fb3 VZ |
387 | AutoHRGN hrgn((HRGN)MSWGetRegionWithoutChildren()); |
388 | RECT rcWin; | |
389 | ::GetWindowRect(GetHwnd(), &rcWin); | |
390 | ::OffsetRgn(hrgn, -rcWin.left, -rcWin.top); | |
eba99da4 | 391 | |
c3732409 | 392 | // and also the box itself |
3b6e5fb3 | 393 | MSWGetRegionWithoutSelf((WXHRGN) hrgn, rc.right, rc.bottom); |
c3732409 | 394 | HDCClipper clipToBg(GetHdcOf(dc), hrgn); |
3b6e5fb3 | 395 | |
c3732409 | 396 | // paint the inside of the box (excluding box itself and child controls) |
3b6e5fb3 | 397 | PaintBackground(dc, rc); |
eba99da4 JS |
398 | } |
399 | ||
c3732409 VZ |
400 | #endif // !__WXWINCE__ |
401 | ||
1e6feb95 | 402 | #endif // wxUSE_STATBOX |
6aa01033 | 403 |