]>
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 and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "statbox.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
33 #include "wx/dcclient.h"
36 #include "wx/statbox.h"
38 #include "wx/msw/private.h"
40 // ----------------------------------------------------------------------------
42 // ----------------------------------------------------------------------------
44 IMPLEMENT_DYNAMIC_CLASS(wxStaticBox
, wxControl
)
46 // ============================================================================
48 // ============================================================================
50 // ----------------------------------------------------------------------------
52 // ----------------------------------------------------------------------------
54 bool wxStaticBox::Create(wxWindow
*parent
,
56 const wxString
& label
,
62 if ( !CreateControl(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
65 if ( !MSWCreateControl(wxT("BUTTON"), BS_GROUPBOX
, pos
, size
, label
, 0) )
71 wxSize
wxStaticBox::DoGetBestSize() const
74 wxGetCharSize(GetHWND(), &cx
, &cy
, &GetFont());
77 GetTextExtent(wxGetWindowText(m_hWnd
), &wBox
, &cy
);
80 int hBox
= EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy
);
82 return wxSize(wBox
, hBox
);
85 long wxStaticBox::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
90 // FIXME: this hack is specific to dialog ed, shouldn't it be
91 // somehow disabled during normal operation?
93 int xPos
= LOWORD(lParam
); // horizontal position of cursor
94 int yPos
= HIWORD(lParam
); // vertical position of cursor
96 ScreenToClient(&xPos
, &yPos
);
98 // Make sure you can drag by the top of the groupbox, but let
99 // other (enclosed) controls get mouse events also
101 return (long)HTCLIENT
;
106 // prevent wxControl from processing this message because it will
107 // erase the background incorrectly and there is no way for us to
108 // override this at wxWin event level (if we do process the event,
109 // we don't know how to do it properly - paint the background
110 // without painting over other controls - and if we don't,
111 // wxControl still gets it)
112 return MSWDefWindowProc(nMsg
, wParam
, lParam
);
115 return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);