]>
Commit | Line | Data |
---|---|---|
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 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) | |
15 | #pragma interface | |
16 | #endif | |
17 | ||
18 | #include "wx/defs.h" | |
19 | ||
20 | #if wxUSE_STATLINE | |
21 | ||
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 | // wxStaticLine | |
34 | //----------------------------------------------------------------------------- | |
35 | ||
36 | class wxStaticLine : public wxStaticLineBase | |
37 | { | |
38 | DECLARE_DYNAMIC_CLASS(wxStaticLine) | |
39 | ||
40 | public: | |
41 | wxStaticLine(); | |
42 | wxStaticLine( wxWindow *parent, wxWindowID id, | |
43 | const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize, | |
44 | long style = wxLI_HORIZONTAL, const wxString &name = wxStaticTextNameStr ); | |
45 | bool Create( wxWindow *parent, wxWindowID id, | |
46 | const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize, | |
47 | long style = wxLI_HORIZONTAL, const wxString &name = wxStaticTextNameStr ); | |
48 | ||
49 | static wxVisualAttributes | |
50 | GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); | |
51 | ||
52 | }; | |
53 | ||
54 | #endif | |
55 | // wxUSE_STATLINE | |
56 | ||
57 | #endif | |
58 | // __GTKSTATICLINEH__ |