1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk1/statline.h
4 // Author: Robert Roebling
5 // Copyright: (c) 1998 Robert Roebling
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
9 #ifndef __GTKSTATICLINEH__
10 #define __GTKSTATICLINEH__
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 class WXDLLIMPEXP_CORE wxStaticLine
: public wxStaticLineBase
24 wxStaticLine(wxWindow
*parent
,
25 wxWindowID id
= wxID_ANY
,
26 const wxPoint
&pos
= wxDefaultPosition
,
27 const wxSize
& size
= wxDefaultSize
,
28 long style
= wxLI_HORIZONTAL
,
29 const wxString
&name
= wxStaticLineNameStr
);
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
,
35 const wxString
&name
= wxStaticLineNameStr
);
37 static wxVisualAttributes
38 GetClassDefaultAttributes(wxWindowVariant variant
= wxWINDOW_VARIANT_NORMAL
);
42 DECLARE_DYNAMIC_CLASS(wxStaticLine
)
45 #endif // wxUSE_STATLINE
47 #endif // __GTKSTATICLINEH__