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