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