]>
Commit | Line | Data |
---|---|---|
b0351fc9 | 1 | ///////////////////////////////////////////////////////////////////////////// |
8ef94bfc | 2 | // Name: wx/gtk1/statline.h |
b0351fc9 RR |
3 | // Purpose: |
4 | // Author: Robert Roebling | |
5 | // Id: $Id$ | |
6 | // Copyright: (c) 1998 Robert Roebling | |
65571936 | 7 | // Licence: wxWindows licence |
b0351fc9 RR |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
b0351fc9 RR |
10 | #ifndef __GTKSTATICLINEH__ |
11 | #define __GTKSTATICLINEH__ | |
12 | ||
329e86bf RR |
13 | #include "wx/defs.h" |
14 | ||
15 | #if wxUSE_STATLINE | |
dcf924a3 | 16 | |
1de1196a | 17 | // ---------------------------------------------------------------------------- |
b0351fc9 | 18 | // wxStaticLine |
1de1196a | 19 | // ---------------------------------------------------------------------------- |
b0351fc9 | 20 | |
20123d49 | 21 | class WXDLLIMPEXP_CORE wxStaticLine : public wxStaticLineBase |
b0351fc9 | 22 | { |
c50f1fb9 VZ |
23 | public: |
24 | wxStaticLine(); | |
1de1196a VZ |
25 | wxStaticLine(wxWindow *parent, |
26 | wxWindowID id = wxID_ANY, | |
27 | const wxPoint &pos = wxDefaultPosition, | |
28 | const wxSize& size = wxDefaultSize, | |
29 | long style = wxLI_HORIZONTAL, | |
30 | const wxString &name = wxStaticTextNameStr); | |
31 | bool Create(wxWindow *parent, | |
32 | wxWindowID id = wxID_ANY, | |
33 | const wxPoint& pos = wxDefaultPosition, | |
34 | const wxSize& size = wxDefaultSize, | |
35 | long style = wxLI_HORIZONTAL, | |
36 | const wxString &name = wxStaticTextNameStr); | |
9d522606 RD |
37 | |
38 | static wxVisualAttributes | |
39 | GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); | |
1de1196a VZ |
40 | |
41 | ||
42 | private: | |
43 | DECLARE_DYNAMIC_CLASS(wxStaticLine) | |
b0351fc9 RR |
44 | }; |
45 | ||
1de1196a VZ |
46 | #endif // wxUSE_STATLINE |
47 | ||
48 | #endif // __GTKSTATICLINEH__ | |
49 |