]>
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 | ||
19 | #include "wx/control.h" | |
20 | ||
21 | WXDLLEXPORT_DATA(extern const char*) wxStaticBoxNameStr; | |
22 | ||
23 | // Group box | |
24 | class WXDLLEXPORT wxStaticBox: public wxControl | |
25 | { | |
83df96d6 JS |
26 | DECLARE_DYNAMIC_CLASS(wxStaticBox) |
27 | ||
bfc6fde4 VZ |
28 | public: |
29 | wxStaticBox(); | |
30 | wxStaticBox(wxWindow *parent, wxWindowID id, | |
83df96d6 JS |
31 | const wxString& label, |
32 | const wxPoint& pos = wxDefaultPosition, | |
33 | const wxSize& size = wxDefaultSize, | |
34 | long style = 0, | |
35 | const wxString& name = wxStaticBoxNameStr) | |
bfc6fde4 VZ |
36 | { |
37 | Create(parent, id, label, pos, size, style, name); | |
38 | } | |
39 | ~wxStaticBox(); | |
83df96d6 | 40 | |
bfc6fde4 | 41 | bool Create(wxWindow *parent, wxWindowID id, |
83df96d6 JS |
42 | const wxString& label, |
43 | const wxPoint& pos = wxDefaultPosition, | |
44 | const wxSize& size = wxDefaultSize, | |
45 | long style = 0, | |
46 | const wxString& name = wxStaticBoxNameStr); | |
47 | ||
31528cd3 VZ |
48 | virtual bool ProcessCommand(wxCommandEvent& WXUNUSED(event)) |
49 | { | |
50 | return FALSE; | |
51 | } | |
83df96d6 | 52 | |
bfc6fde4 VZ |
53 | void SetLabel(const wxString& label); |
54 | wxString GetLabel() const; | |
83df96d6 | 55 | |
bfc6fde4 VZ |
56 | // Implementation |
57 | virtual void ChangeFont(bool keepOriginalSize = TRUE); | |
83df96d6 | 58 | |
bfc6fde4 VZ |
59 | protected: |
60 | // Motif-specific | |
bfc6fde4 | 61 | WXWidget m_labelWidget; |
2b5f62a0 | 62 | |
bfc6fde4 VZ |
63 | private: |
64 | DECLARE_EVENT_TABLE() | |
9b6dbb09 JS |
65 | }; |
66 | ||
67 | #endif | |
83df96d6 | 68 | // _WX_STATBOX_H_ |