]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/statbox.cpp
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 // ----------------------------------------------------------------------------
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"
40 #include "wx/msw/private.h"
42 // ----------------------------------------------------------------------------
44 // ----------------------------------------------------------------------------
46 IMPLEMENT_DYNAMIC_CLASS(wxStaticBox
, wxControl
)
48 // ============================================================================
50 // ============================================================================
52 // ----------------------------------------------------------------------------
54 // ----------------------------------------------------------------------------
56 bool wxStaticBox::Create(wxWindow
*parent
,
58 const wxString
& label
,
64 if ( !CreateControl(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
67 // as wxStaticBox doesn't draw its own background, we make it transparent
68 // to force redrawing its background which could have been overwritten by
69 // the other controls inside it
71 // FIXME: I still think that it isn't the right solution because the static
72 // boxes shouldn't have to be transparent if the redrawing was done
73 // right elsewhere - who ever had to make them transparent in non
74 // wxWindows programs, after all? But for now it does fix a serious
75 // problem (try resizing the sizers test screen in the layout sample
76 // after removing WS_EX_TRANSPARENT bit) and so let's use it until
77 // we fix the real underlying problem
78 if ( !MSWCreateControl(wxT("BUTTON"), BS_GROUPBOX
, pos
, size
, label
,
87 // to be transparent we should have the same colour as the parent as well
88 SetBackgroundColour(GetParent()->GetBackgroundColour());
93 wxSize
wxStaticBox::DoGetBestSize() const
96 wxGetCharSize(GetHWND(), &cx
, &cy
, &GetFont());
99 GetTextExtent(wxGetWindowText(m_hWnd
), &wBox
, &cy
);
102 int hBox
= EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy
);
104 return wxSize(wBox
, hBox
);
107 long wxStaticBox::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
113 // FIXME: this hack is specific to dialog ed, shouldn't it be
114 // somehow disabled during normal operation?
116 int xPos
= LOWORD(lParam
); // horizontal position of cursor
117 int yPos
= HIWORD(lParam
); // vertical position of cursor
119 ScreenToClient(&xPos
, &yPos
);
121 // Make sure you can drag by the top of the groupbox, but let
122 // other (enclosed) controls get mouse events also
124 return (long)HTCLIENT
;
129 // prevent wxControl from processing this message because it will
130 // erase the background incorrectly and there is no way for us to
131 // override this at wxWin event level (if we do process the event,
132 // we don't know how to do it properly - paint the background
133 // without painting over other controls - and if we don't,
134 // wxControl still gets it)
135 return MSWDefWindowProc(nMsg
, wParam
, lParam
);
138 return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
141 #endif // wxUSE_STATBOX