]>
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"
24 #include "wx/dcclient.h"
28 #include "wx/statbox.h"
29 #include "wx/msw/private.h"
31 #if !USE_SHARED_LIBRARY
32 IMPLEMENT_DYNAMIC_CLASS(wxStaticBox
, wxControl
)
34 BEGIN_EVENT_TABLE(wxStaticBox
, wxControl
)
35 EVT_ERASE_BACKGROUND(wxStaticBox::OnEraseBackground
)
44 bool wxStaticBox::Create(wxWindow
*parent
, wxWindowID id
,
45 const wxString
& label
,
53 if (parent
) parent
->AddChild(this);
55 SetBackgroundColour(parent
->GetDefaultBackgroundColour()) ;
56 SetForegroundColour(parent
->GetDefaultForegroundColour()) ;
59 m_windowId
= (int)NewControlId();
68 m_windowStyle
= style
;
70 long msStyle
= BS_GROUPBOX
| WS_CHILD
| WS_VISIBLE
; // GROUP_FLAGS;
73 WXDWORD exStyle
= Determine3DEffects(0, &want3D
) ;
76 CreateWindowEx(exStyle
, "BUTTON", (const char *)label
, msStyle
,
77 0, 0, 0, 0, (HWND
) parent
->GetHWND(), (HMENU
)m_windowId
,
78 wxGetInstance(), NULL
);
82 Ctl3dSubclassCtl(wx_button
);
87 m_hWnd
= (WXHWND
)wx_button
;
89 // Subclass again for purposes of dialog editing mode
90 SubclassWin(GetHWND());
92 SetFont(* parent
->GetFont());
94 SetSize(x
, y
, width
, height
);
95 ShowWindow(wx_button
, SW_SHOW
);
100 void wxStaticBox::SetLabel(const wxString
& label
)
102 SetWindowText((HWND
)m_hWnd
, (const char *)label
);
105 void wxStaticBox::SetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
107 int currentX
, currentY
;
108 GetPosition(¤tX
, ¤tY
);
115 if (x
== -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
117 if (y
== -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
120 AdjustForParentClientOrigin(x1
, y1
, sizeFlags
);
122 // If we're prepared to use the existing size, then...
123 if (width
== -1 && height
== -1 && ((sizeFlags
& wxSIZE_AUTO
) != wxSIZE_AUTO
))
136 HWND button
= (HWND
)m_hWnd
;
137 wxGetCharSize(GetHWND(), &cx
, &cy
,GetFont());
139 GetWindowText(button
, buf
, 300);
140 GetTextExtent(buf
, ¤t_width
, &cyf
,NULL
,NULL
,GetFont());
142 w1
= (int)(current_width
+ 3*cx
) ;
144 h1
= (int)(cyf
*EDIT_CONTROL_FACTOR
) ;
145 MoveWindow(button
, x1
, y1
, w1
, h1
, TRUE
);
148 WXHBRUSH
wxStaticBox::OnCtlColor(WXHDC pDC
, WXHWND pWnd
, WXUINT nCtlColor
,
149 WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
154 HBRUSH hbrush
= Ctl3dCtlColorEx(message
, wParam
, lParam
);
155 return (WXHBRUSH
) hbrush
;
159 if (GetParent()->GetTransparentBackground())
160 SetBkMode((HDC
) pDC
, TRANSPARENT
);
162 SetBkMode((HDC
) pDC
, OPAQUE
);
164 ::SetBkColor((HDC
) pDC
, RGB(GetBackgroundColour().Red(), GetBackgroundColour().Green(), GetBackgroundColour().Blue()));
165 ::SetTextColor((HDC
) pDC
, RGB(GetForegroundColour().Red(), GetForegroundColour().Green(), GetForegroundColour().Blue()));
167 wxBrush
*backgroundBrush
= wxTheBrushList
->FindOrCreateBrush(GetBackgroundColour(), wxSOLID
);
169 // Note that this will be cleaned up in wxApp::OnIdle, if backgroundBrush
170 // has a zero usage count.
171 // backgroundBrush->RealizeResource();
172 return (WXHBRUSH
) backgroundBrush
->GetResourceHandle();
175 // Shouldn't erase the whole window, since the static box must only paint its
177 void wxStaticBox::OnEraseBackground(wxEraseEvent
& event
)
179 // If we don't have this (call Default()), we don't paint the background properly.
180 // If we do have this, we seem to overwrite enclosed controls.
181 // Is it the WS_CLIPCHILDREN style that's causing the problems?
182 // Probably - without this style, the background of the window will show through,
183 // so the control doesn't have to paint it. The window background will always be
184 // painted before all other controls, therefore there are no problems with
185 // controls being hidden by the static box.
186 // So, if we could specify wxCLIP_CHILDREN in window, or not, we could optimise painting better.
187 // We would assume wxCLIP_CHILDREN in a frame and a scrolled window, but not in a panel.
188 // Is this too platform-specific?? What else can we do? Not a lot, since we have to pass
189 // this information from arbitrary wxWindow derivatives, and it depends on what you wish to
190 // do with the windows.
191 // Alternatively, just make sure that wxStaticBox is always at the back! There are probably
192 // few other circumstances where it matters about child clipping. But what about painting onto
193 // to panel, inside a groupbox? Doesn't appear, because the box wipes it out.
194 wxWindow
*parent
= GetParent();
195 if ( parent
&& parent
->GetHWND() && (::GetWindowLong((HWND
) parent
->GetHWND(), GWL_STYLE
) & WS_CLIPCHILDREN
) )
197 // TODO: May in fact need to generate a paint event for inside this
198 // control's rectangle, otherwise all controls are going to be clipped -
200 HBRUSH hBrush
= ::CreateSolidBrush(PALETTERGB(GetBackgroundColour().Red(), GetBackgroundColour().Green(), GetBackgroundColour().Blue()));
201 int mode
= ::SetMapMode((HDC
) event
.GetDC()->GetHDC(), MM_TEXT
);
205 ::GetClientRect((HWND
) GetHWND(), &rect
);
206 ::FillRect ((HDC
) event
.GetDC()->GetHDC(), &rect
, hBrush
);
207 ::DeleteObject(hBrush
);
208 ::SetMapMode((HDC
) event
.GetDC()->GetHDC(), mode
);
214 long wxStaticBox::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
216 // TODO: somehow, this has to accept mouse clicks in user interface edit mode,
217 // but not otherwise. Only there is no longer a UI edit mode...
219 // It worked before because the message could be processed if not in UI
220 // edit mode. We have to find some way of distinguishing this.
221 // Maybe this class can have an AcceptMouseEvents(bool) function; a sort of
222 // kludge... or, we can search for an active event table entry that will
223 // intercept mouse events, and if one exists (that isn't the default),
224 // skip the code below. Too time consuming though.
225 // Perhaps it's ok to do the default thing *anyway* because the title or edge
226 // of the window may still be active!
227 // if (nMsg == WM_NCHITTEST)
230 if (nMsg
== WM_NCHITTEST
)
232 int xPos
= LOWORD(lParam
); // horizontal position of cursor
233 int yPos
= HIWORD(lParam
); // vertical position of cursor
235 ScreenToClient(&xPos
, &yPos
);
237 // Make sure you can drag by the top of the groupbox, but let
238 // other (enclosed) controls get mouse events also
240 return (long)HTCLIENT
;
243 return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);