]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/motif/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
)
30 inline wxStaticBox(wxWindow
*parent
, wxWindowID id
,
31 const wxString
& label
,
32 const wxPoint
& pos
= wxDefaultPosition
,
33 const wxSize
& size
= wxDefaultSize
,
35 const wxString
& name
= wxStaticBoxNameStr
)
37 Create(parent
, id
, label
, pos
, size
, style
, name
);
40 bool Create(wxWindow
*parent
, wxWindowID id
,
41 const wxString
& label
,
42 const wxPoint
& pos
= wxDefaultPosition
,
43 const wxSize
& size
= wxDefaultSize
,
45 const wxString
& name
= wxStaticBoxNameStr
);
47 virtual void Command(wxCommandEvent
& WXUNUSED(event
)) {};
48 virtual void ProcessCommand(wxCommandEvent
& WXUNUSED(event
)) {};
50 void SetSize(int x
, int y
, int width
, int height
, int sizeFlags
= wxSIZE_AUTO
);
51 void SetSize(const wxRect
& rect
, int sizeFlags
= wxSIZE_AUTO
)
52 { wxWindow::SetSize(rect
, sizeFlags
); }
53 void SetSize(const wxSize
& size
) { wxWindow::SetSize(size
); }
55 void SetLabel(const wxString
& label
);
56 wxString
GetLabel() const;
59 virtual void ChangeFont(bool keepOriginalSize
= TRUE
);
60 virtual void ChangeBackgroundColour();
61 virtual void ChangeForegroundColour();
62 WXWidget
GetTopWidget() const { return m_formWidget
; }
63 WXWidget
GetLabelWidget() const { return m_labelWidget
; }
69 WXWidget m_formWidget
;
70 WXWidget m_labelWidget
;