]>
Commit | Line | Data |
---|---|---|
b0351fc9 | 1 | ///////////////////////////////////////////////////////////////////////////// |
1de1196a | 2 | // Name: wx/gtk/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 | ||
10 | ||
11 | #ifndef __GTKSTATICLINEH__ | |
12 | #define __GTKSTATICLINEH__ | |
13 | ||
12028905 | 14 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
1de1196a | 15 | #pragma interface "statline.h" |
b0351fc9 RR |
16 | #endif |
17 | ||
329e86bf RR |
18 | #include "wx/defs.h" |
19 | ||
20 | #if wxUSE_STATLINE | |
dcf924a3 | 21 | |
1de1196a | 22 | // ---------------------------------------------------------------------------- |
b0351fc9 | 23 | // wxStaticLine |
1de1196a | 24 | // ---------------------------------------------------------------------------- |
b0351fc9 | 25 | |
c50f1fb9 | 26 | class wxStaticLine : public wxStaticLineBase |
b0351fc9 | 27 | { |
c50f1fb9 VZ |
28 | public: |
29 | wxStaticLine(); | |
1de1196a VZ |
30 | wxStaticLine(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 = wxStaticTextNameStr); | |
36 | bool Create(wxWindow *parent, | |
37 | wxWindowID id = wxID_ANY, | |
38 | const wxPoint& pos = wxDefaultPosition, | |
39 | const wxSize& size = wxDefaultSize, | |
40 | long style = wxLI_HORIZONTAL, | |
41 | const wxString &name = wxStaticTextNameStr); | |
9d522606 RD |
42 | |
43 | static wxVisualAttributes | |
44 | GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); | |
1de1196a VZ |
45 | |
46 | ||
47 | private: | |
48 | DECLARE_DYNAMIC_CLASS(wxStaticLine) | |
b0351fc9 RR |
49 | }; |
50 | ||
1de1196a VZ |
51 | #endif // wxUSE_STATLINE |
52 | ||
53 | #endif // __GTKSTATICLINEH__ | |
54 |