]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/statbox.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxStaticBox
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "statbox.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
23 #include "wx/window.h"
24 #include "wx/msw/private.h"
28 #include "wx/dcclient.h"
31 #include "wx/statbox.h"
33 #if !USE_SHARED_LIBRARY
34 IMPLEMENT_DYNAMIC_CLASS(wxStaticBox
, wxControl
)
36 BEGIN_EVENT_TABLE(wxStaticBox
, wxControl
)
37 EVT_ERASE_BACKGROUND(wxStaticBox::OnEraseBackground
)
46 bool wxStaticBox::Create(wxWindow
*parent
, wxWindowID id
,
47 const wxString
& label
,
55 if (parent
) parent
->AddChild(this);
57 SetBackgroundColour(parent
->GetBackgroundColour()) ;
58 SetForegroundColour(parent
->GetForegroundColour()) ;
61 m_windowId
= (int)NewControlId();
70 m_windowStyle
= style
;
72 long msStyle
= BS_GROUPBOX
| WS_CHILD
| WS_VISIBLE
; // GROUP_FLAGS;
75 WXDWORD exStyle
= Determine3DEffects(0, &want3D
) ;
78 CreateWindowEx(exStyle
, _T("BUTTON"), (const wxChar
*)label
, msStyle
,
79 0, 0, 0, 0, (HWND
) parent
->GetHWND(), (HMENU
)m_windowId
,
80 wxGetInstance(), NULL
);
84 Ctl3dSubclassCtl(wx_button
);
89 m_hWnd
= (WXHWND
)wx_button
;
91 // Subclass again for purposes of dialog editing mode
92 SubclassWin(GetHWND());
94 SetFont(parent
->GetFont());
96 SetSize(x
, y
, width
, height
);
97 ShowWindow(wx_button
, SW_SHOW
);
102 wxSize
wxStaticBox::DoGetBestSize()
105 wxGetCharSize(GetHWND(), &cx
, &cy
, &GetFont());
108 GetTextExtent(wxGetWindowText(m_hWnd
), &wBox
, &cy
);
111 int hBox
= EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy
);
113 return wxSize(wBox
, hBox
);
116 void wxStaticBox::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
118 wxControl::DoSetSize(x
, y
, width
, height
, sizeFlags
);
122 // the static box should always be on the bottom of the Z-order, otherwise
123 // it may hide controls which are positioned inside it
124 if ( !::SetWindowPos(GetHwnd(), HWND_TOP
, 0, 0, 0, 0,
125 SWP_NOMOVE
| SWP_NOSIZE
) )
127 wxLogLastError(_T("SetWindowPos"));
131 WXHBRUSH
wxStaticBox::OnCtlColor(WXHDC pDC
, WXHWND pWnd
, WXUINT nCtlColor
,
132 WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
137 HBRUSH hbrush
= Ctl3dCtlColorEx(message
, wParam
, lParam
);
138 return (WXHBRUSH
) hbrush
;
142 if (GetParent()->GetTransparentBackground())
143 SetBkMode((HDC
) pDC
, TRANSPARENT
);
145 SetBkMode((HDC
) pDC
, OPAQUE
);
147 ::SetBkColor((HDC
) pDC
, RGB(GetBackgroundColour().Red(), GetBackgroundColour().Green(), GetBackgroundColour().Blue()));
148 ::SetTextColor((HDC
) pDC
, RGB(GetForegroundColour().Red(), GetForegroundColour().Green(), GetForegroundColour().Blue()));
150 wxBrush
*backgroundBrush
= wxTheBrushList
->FindOrCreateBrush(GetBackgroundColour(), wxSOLID
);
152 // Note that this will be cleaned up in wxApp::OnIdle, if backgroundBrush
153 // has a zero usage count.
154 // backgroundBrush->RealizeResource();
155 return (WXHBRUSH
) backgroundBrush
->GetResourceHandle();
158 // Shouldn't erase the whole window, since the static box must only paint its
160 void wxStaticBox::OnEraseBackground(wxEraseEvent
& event
)
162 // If we don't have this (call Default()), we don't paint the background properly.
163 // If we do have this, we seem to overwrite enclosed controls.
164 // Is it the WS_CLIPCHILDREN style that's causing the problems?
165 // Probably - without this style, the background of the window will show through,
166 // so the control doesn't have to paint it. The window background will always be
167 // painted before all other controls, therefore there are no problems with
168 // controls being hidden by the static box.
169 // So, if we could specify wxCLIP_CHILDREN in window, or not, we could optimise painting better.
170 // We would assume wxCLIP_CHILDREN in a frame and a scrolled window, but not in a panel.
171 // Is this too platform-specific?? What else can we do? Not a lot, since we have to pass
172 // this information from arbitrary wxWindow derivatives, and it depends on what you wish to
173 // do with the windows.
174 // Alternatively, just make sure that wxStaticBox is always at the back! There are probably
175 // few other circumstances where it matters about child clipping. But what about painting onto
176 // to panel, inside a groupbox? Doesn't appear, because the box wipes it out.
177 wxWindow
*parent
= 0; //GetParent();
178 if ( parent
&& parent
->GetHWND() && (::GetWindowLong((HWND
) parent
->GetHWND(), GWL_STYLE
) & WS_CLIPCHILDREN
) )
180 // TODO: May in fact need to generate a paint event for inside this
181 // control's rectangle, otherwise all controls are going to be clipped -
183 HBRUSH hBrush
= ::CreateSolidBrush(PALETTERGB(GetBackgroundColour().Red(), GetBackgroundColour().Green(), GetBackgroundColour().Blue()));
184 int mode
= ::SetMapMode((HDC
) event
.GetDC()->GetHDC(), MM_TEXT
);
188 ::GetClientRect(GetHwnd(), &rect
);
189 ::FillRect ((HDC
) event
.GetDC()->GetHDC(), &rect
, hBrush
);
190 ::DeleteObject(hBrush
);
191 ::SetMapMode((HDC
) event
.GetDC()->GetHDC(), mode
);
199 long wxStaticBox::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
201 if ( nMsg
== WM_NCHITTEST
)
203 int xPos
= LOWORD(lParam
); // horizontal position of cursor
204 int yPos
= HIWORD(lParam
); // vertical position of cursor
206 ScreenToClient(&xPos
, &yPos
);
208 // Make sure you can drag by the top of the groupbox, but let
209 // other (enclosed) controls get mouse events also
211 return (long)HTCLIENT
;
214 return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);