]>
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 | |
65571936 | 7 | // Licence: wxWindows licence |
b0351fc9 RR |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | ||
11 | #ifndef __GTKSTATICLINEH__ | |
12 | #define __GTKSTATICLINEH__ | |
13 | ||
12028905 | 14 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
329e86bf | 15 | #pragma interface |
b0351fc9 RR |
16 | #endif |
17 | ||
329e86bf RR |
18 | #include "wx/defs.h" |
19 | ||
20 | #if wxUSE_STATLINE | |
dcf924a3 | 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 | ||
b0351fc9 RR |
32 | //----------------------------------------------------------------------------- |
33 | // wxStaticLine | |
34 | //----------------------------------------------------------------------------- | |
35 | ||
c50f1fb9 | 36 | class wxStaticLine : public wxStaticLineBase |
b0351fc9 | 37 | { |
c50f1fb9 | 38 | DECLARE_DYNAMIC_CLASS(wxStaticLine) |
b0351fc9 | 39 | |
c50f1fb9 VZ |
40 | public: |
41 | wxStaticLine(); | |
b0351fc9 | 42 | wxStaticLine( wxWindow *parent, wxWindowID id, |
c50f1fb9 VZ |
43 | const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize, |
44 | long style = wxLI_HORIZONTAL, const wxString &name = wxStaticTextNameStr ); | |
b0351fc9 | 45 | bool Create( wxWindow *parent, wxWindowID id, |
c50f1fb9 VZ |
46 | const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize, |
47 | long style = wxLI_HORIZONTAL, const wxString &name = wxStaticTextNameStr ); | |
9d522606 RD |
48 | |
49 | static wxVisualAttributes | |
50 | GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); | |
51 | ||
b0351fc9 RR |
52 | }; |
53 | ||
329e86bf RR |
54 | #endif |
55 | // wxUSE_STATLINE | |
56 | ||
57 | #endif | |
58 | // __GTKSTATICLINEH__ |