]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: stattext.h | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
5 | // Created: 01/02/97 | |
6 | // Id: | |
7 | // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | ||
12 | #ifndef __GTKSTATICTEXTH__ | |
13 | #define __GTKSTATICTEXTH__ | |
14 | ||
15 | #ifdef __GNUG__ | |
16 | #pragma interface | |
17 | #endif | |
18 | ||
19 | #include "wx/defs.h" | |
20 | #include "wx/object.h" | |
21 | #include "wx/list.h" | |
22 | #include "wx/control.h" | |
23 | ||
24 | //----------------------------------------------------------------------------- | |
25 | // classes | |
26 | //----------------------------------------------------------------------------- | |
27 | ||
28 | class wxStaticText; | |
29 | ||
30 | //----------------------------------------------------------------------------- | |
31 | // global data | |
32 | //----------------------------------------------------------------------------- | |
33 | ||
34 | extern const char *wxStaticTextNameStr; | |
35 | ||
36 | //----------------------------------------------------------------------------- | |
37 | // wxStaticText | |
38 | //----------------------------------------------------------------------------- | |
39 | ||
40 | class wxStaticText: public wxControl | |
41 | { | |
42 | DECLARE_DYNAMIC_CLASS(wxStaticText) | |
43 | ||
44 | public: | |
45 | ||
46 | wxStaticText(void); | |
47 | wxStaticText( wxWindow *parent, wxWindowID id, const wxString &label, | |
48 | const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize, | |
debe6624 | 49 | long style = 0, const wxString &name = wxStaticTextNameStr ); |
c801d85f KB |
50 | bool Create( wxWindow *parent, wxWindowID id, const wxString &label, |
51 | const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize, | |
debe6624 | 52 | long style = 0, const wxString &name = wxStaticTextNameStr ); |
c801d85f KB |
53 | wxString GetLabel(void) const; |
54 | void SetLabel( const wxString &label ); | |
55 | }; | |
56 | ||
57 | #endif // __GTKSTATICTEXTH__ |