]> git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk/statline.h
added wxStaticLine used in wxMessageBox
[wxWidgets.git] / include / wx / gtk / statline.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: statline.h
3 // Purpose:
4 // Author: Robert Roebling
5 // Id: $Id$
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10
11 #ifndef __GTKSTATICLINEH__
12 #define __GTKSTATICLINEH__
13
14 #ifdef __GNUG__
15 #pragma interface
16 #endif
17
18 #include "wx/defs.h"
19 #include "wx/object.h"
20 #include "wx/list.h"
21 #include "wx/control.h"
22
23 //-----------------------------------------------------------------------------
24 // classes
25 //-----------------------------------------------------------------------------
26
27 class wxStaticLine;
28
29 //-----------------------------------------------------------------------------
30 // global data
31 //-----------------------------------------------------------------------------
32
33 extern const char *wxStaticTextNameStr;
34
35 //-----------------------------------------------------------------------------
36 // wxStaticLine
37 //-----------------------------------------------------------------------------
38
39 class wxStaticLine: public wxControl
40 {
41 DECLARE_DYNAMIC_CLASS(wxStaticLine)
42
43 public:
44
45 wxStaticLine(void);
46 wxStaticLine( wxWindow *parent, wxWindowID id,
47 const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
48 long style = wxLI_HORIZONTAL, const wxString &name = wxStaticTextNameStr );
49 bool Create( wxWindow *parent, wxWindowID id,
50 const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
51 long style = wxLI_HORIZONTAL, const wxString &name = wxStaticTextNameStr );
52
53 };
54
55 #endif // __GTKSTATICLINEH__