]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: statbox.h | |
3 | // Purpose: wxStaticBox class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
bbcdf8bc JS |
8 | // Copyright: (c) Julian Smart |
9 | // Licence: wxWindows licence | |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
bbcdf8bc JS |
12 | #ifndef _WX_STATBOX_H_ |
13 | #define _WX_STATBOX_H_ | |
2bda0e17 KB |
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 | { | |
26 | DECLARE_DYNAMIC_CLASS(wxStaticBox) | |
27 | ||
28 | public: | |
29 | inline wxStaticBox(void) {} | |
debe6624 | 30 | inline wxStaticBox(wxWindow *parent, wxWindowID id, |
2bda0e17 KB |
31 | const wxString& label, |
32 | const wxPoint& pos = wxDefaultPosition, | |
33 | const wxSize& size = wxDefaultSize, | |
debe6624 | 34 | long style = 0, |
2bda0e17 KB |
35 | const wxString& name = wxStaticBoxNameStr) |
36 | { | |
37 | Create(parent, id, label, pos, size, style, name); | |
38 | } | |
39 | ||
debe6624 | 40 | bool Create(wxWindow *parent, wxWindowID id, |
2bda0e17 KB |
41 | const wxString& label, |
42 | const wxPoint& pos = wxDefaultPosition, | |
43 | const wxSize& size = wxDefaultSize, | |
debe6624 | 44 | long style = 0, |
2bda0e17 KB |
45 | const wxString& name = wxStaticBoxNameStr); |
46 | ||
47 | virtual void Command(wxCommandEvent& WXUNUSED(event)) {}; | |
48 | virtual void ProcessCommand(wxCommandEvent& WXUNUSED(event)) {}; | |
49 | ||
50 | void OnEraseBackground(wxEraseEvent& event); | |
51 | ||
52 | virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); | |
53 | ||
debe6624 | 54 | void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO); |
2bda0e17 | 55 | void SetLabel(const wxString& label); |
debe6624 | 56 | virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor, |
2bda0e17 KB |
57 | WXUINT message, WXWPARAM wParam, WXLPARAM lParam); |
58 | ||
59 | DECLARE_EVENT_TABLE() | |
60 | }; | |
61 | ||
62 | #endif | |
bbcdf8bc | 63 | // _WX_STATBOX_H_ |