]>
Commit | Line | Data |
---|---|---|
9b6dbb09 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: statbox.h | |
3 | // Purpose: wxStaticBox class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
31528cd3 | 9 | // Licence: wxWindows licence |
9b6dbb09 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_STATBOX_H_ | |
13 | #define _WX_STATBOX_H_ | |
14 | ||
15 | #ifdef __GNUG__ | |
16 | #pragma interface "statbox.h" | |
17 | #endif | |
18 | ||
9b6dbb09 JS |
19 | WXDLLEXPORT_DATA(extern const char*) wxStaticBoxNameStr; |
20 | ||
21 | // Group box | |
483561c5 | 22 | class WXDLLEXPORT wxStaticBox: public wxStaticBoxBase |
9b6dbb09 | 23 | { |
83df96d6 JS |
24 | DECLARE_DYNAMIC_CLASS(wxStaticBox) |
25 | ||
bfc6fde4 VZ |
26 | public: |
27 | wxStaticBox(); | |
28 | wxStaticBox(wxWindow *parent, wxWindowID id, | |
83df96d6 JS |
29 | const wxString& label, |
30 | const wxPoint& pos = wxDefaultPosition, | |
31 | const wxSize& size = wxDefaultSize, | |
32 | long style = 0, | |
33 | const wxString& name = wxStaticBoxNameStr) | |
bfc6fde4 VZ |
34 | { |
35 | Create(parent, id, label, pos, size, style, name); | |
36 | } | |
483561c5 | 37 | |
bfc6fde4 | 38 | ~wxStaticBox(); |
83df96d6 | 39 | |
bfc6fde4 | 40 | bool Create(wxWindow *parent, wxWindowID id, |
83df96d6 JS |
41 | const wxString& label, |
42 | const wxPoint& pos = wxDefaultPosition, | |
43 | const wxSize& size = wxDefaultSize, | |
44 | long style = 0, | |
45 | const wxString& name = wxStaticBoxNameStr); | |
46 | ||
31528cd3 VZ |
47 | virtual bool ProcessCommand(wxCommandEvent& WXUNUSED(event)) |
48 | { | |
49 | return FALSE; | |
50 | } | |
483561c5 MB |
51 | |
52 | virtual WXWidget GetLabelWidget() const { return m_labelWidget; } | |
53 | ||
54 | virtual void SetLabel(const wxString& label); | |
55 | ||
56 | private: | |
bfc6fde4 | 57 | WXWidget m_labelWidget; |
2b5f62a0 | 58 | |
bfc6fde4 VZ |
59 | private: |
60 | DECLARE_EVENT_TABLE() | |
9b6dbb09 JS |
61 | }; |
62 | ||
63 | #endif | |
83df96d6 | 64 | // _WX_STATBOX_H_ |