]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/gtk/statline.h
Removed Motif files that only contained stubs
[wxWidgets.git] / include / wx / gtk / statline.h
... / ...
CommitLineData
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#if defined(__GNUG__) && !defined(__APPLE__)
15#pragma interface
16#endif
17
18#include "wx/defs.h"
19
20#if wxUSE_STATLINE
21
22#include "wx/object.h"
23#include "wx/list.h"
24#include "wx/control.h"
25
26//-----------------------------------------------------------------------------
27// classes
28//-----------------------------------------------------------------------------
29
30class wxStaticLine;
31
32//-----------------------------------------------------------------------------
33// wxStaticLine
34//-----------------------------------------------------------------------------
35
36class wxStaticLine : public wxStaticLineBase
37{
38 DECLARE_DYNAMIC_CLASS(wxStaticLine)
39
40public:
41 wxStaticLine();
42 wxStaticLine( wxWindow *parent, wxWindowID id,
43 const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
44 long style = wxLI_HORIZONTAL, const wxString &name = wxStaticTextNameStr );
45 bool Create( wxWindow *parent, wxWindowID id,
46 const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
47 long style = wxLI_HORIZONTAL, const wxString &name = wxStaticTextNameStr );
48};
49
50#endif
51 // wxUSE_STATLINE
52
53#endif
54 // __GTKSTATICLINEH__