]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/statbox.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxStaticBox class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_STATBOX_H_
13 #define _WX_STATBOX_H_
16 #pragma interface "statbox.h"
19 #include "wx/control.h"
21 WXDLLEXPORT_DATA(extern const char*) wxStaticBoxNameStr
;
24 class WXDLLEXPORT wxStaticBox
: public wxControl
26 DECLARE_DYNAMIC_CLASS(wxStaticBox
)
31 wxStaticBox(wxWindow
*parent
, wxWindowID id
,
32 const wxString
& label
,
33 const wxPoint
& pos
= wxDefaultPosition
,
34 const wxSize
& size
= wxDefaultSize
,
36 const wxString
& name
= wxStaticBoxNameStr
)
38 Create(parent
, id
, label
, pos
, size
, style
, name
);
41 bool Create(wxWindow
*parent
, wxWindowID id
,
42 const wxString
& label
,
43 const wxPoint
& pos
= wxDefaultPosition
,
44 const wxSize
& size
= wxDefaultSize
,
46 const wxString
& name
= wxStaticBoxNameStr
);
48 virtual void Command(wxCommandEvent
& WXUNUSED(event
)) { }
49 virtual void ProcessCommand(wxCommandEvent
& WXUNUSED(event
)) { }
51 void OnEraseBackground(wxEraseEvent
& event
);
53 virtual long MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
);
55 void SetSize(int x
, int y
, int width
, int height
, int sizeFlags
= wxSIZE_AUTO
);
56 void SetSize(const wxRect
& rect
, int sizeFlags
= wxSIZE_AUTO
)
57 { wxWindow::SetSize(rect
, sizeFlags
); }
58 void SetSize(const wxSize
& size
)
59 { wxWindow::SetSize(size
); }
60 void SetLabel(const wxString
& label
);
62 virtual WXHBRUSH
OnCtlColor(WXHDC pDC
, WXHWND pWnd
, WXUINT nCtlColor
,
63 WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
);
65 // overriden base class virtuals
66 virtual bool AcceptsFocus() const { return FALSE
; }