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