]>
Commit | Line | Data |
---|---|---|
8cf73271 SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: statbox.h | |
3 | // Purpose: wxStaticBox class | |
4 | // Author: Stefan Csomor | |
5 | // Modified by: | |
6 | // Created: 1998-01-01 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Stefan Csomor | |
65571936 | 9 | // Licence: wxWindows licence |
8cf73271 SC |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_STATBOX_H_ | |
13 | #define _WX_STATBOX_H_ | |
14 | ||
15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) | |
16 | #pragma interface "statbox.h" | |
17 | #endif | |
18 | ||
19 | #include "wx/control.h" | |
20 | ||
21 | WXDLLEXPORT_DATA(extern const wxChar*) wxStaticBoxNameStr; | |
22 | ||
23 | // Group box | |
24 | class WXDLLEXPORT wxStaticBox: public wxControl | |
25 | { | |
26 | DECLARE_DYNAMIC_CLASS(wxStaticBox) | |
27 | ||
28 | public: | |
4f305456 SC |
29 | inline wxStaticBox() {} |
30 | inline wxStaticBox(wxWindow *parent, wxWindowID id, | |
8cf73271 SC |
31 | const wxString& label, |
32 | const wxPoint& pos = wxDefaultPosition, | |
33 | const wxSize& size = wxDefaultSize, | |
34 | long style = 0, | |
35 | const wxString& name = wxStaticBoxNameStr) | |
4f305456 SC |
36 | { |
37 | Create(parent, id, label, pos, size, style, name); | |
38 | } | |
8cf73271 | 39 | |
4f305456 | 40 | bool Create(wxWindow *parent, wxWindowID id, |
8cf73271 SC |
41 | const wxString& label, |
42 | const wxPoint& pos = wxDefaultPosition, | |
43 | const wxSize& size = wxDefaultSize, | |
44 | long style = 0, | |
45 | const wxString& name = wxStaticBoxNameStr); | |
46 | ||
4f305456 SC |
47 | virtual void Command(wxCommandEvent& WXUNUSED(event)) {}; |
48 | virtual void ProcessCommand(wxCommandEvent& WXUNUSED(event)) {}; | |
8cf73271 | 49 | |
5dd070c2 | 50 | virtual void GetBordersForSizer(int *borderTop, int *borderOther) const; |
8cf73271 SC |
51 | }; |
52 | ||
53 | #endif | |
54 | // _WX_STATBOX_H_ |