1999-05-05 21:42:48 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: statline.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
|
|
|
// Id: $Id$
|
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
1999-06-28 21:39:49 +00:00
|
|
|
// Licence: wxWindows licence
|
1999-05-05 21:42:48 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GTKSTATICLINEH__
|
|
|
|
#define __GTKSTATICLINEH__
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
1999-07-03 16:40:54 +00:00
|
|
|
#pragma interface
|
1999-05-05 21:42:48 +00:00
|
|
|
#endif
|
|
|
|
|
1999-07-03 16:40:54 +00:00
|
|
|
#include "wx/defs.h"
|
|
|
|
|
|
|
|
#if wxUSE_STATLINE
|
1999-06-14 23:04:05 +00:00
|
|
|
|
1999-05-05 21:42:48 +00:00
|
|
|
#include "wx/object.h"
|
|
|
|
#include "wx/list.h"
|
|
|
|
#include "wx/control.h"
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxStaticLine;
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxStaticLine
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
1999-06-28 21:39:49 +00:00
|
|
|
class wxStaticLine : public wxStaticLineBase
|
1999-05-05 21:42:48 +00:00
|
|
|
{
|
1999-06-28 21:39:49 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxStaticLine)
|
1999-05-05 21:42:48 +00:00
|
|
|
|
1999-06-28 21:39:49 +00:00
|
|
|
public:
|
|
|
|
wxStaticLine();
|
1999-05-05 21:42:48 +00:00
|
|
|
wxStaticLine( wxWindow *parent, wxWindowID id,
|
1999-06-28 21:39:49 +00:00
|
|
|
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
|
|
|
long style = wxLI_HORIZONTAL, const wxString &name = wxStaticTextNameStr );
|
1999-05-05 21:42:48 +00:00
|
|
|
bool Create( wxWindow *parent, wxWindowID id,
|
1999-06-28 21:39:49 +00:00
|
|
|
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
|
|
|
long style = wxLI_HORIZONTAL, const wxString &name = wxStaticTextNameStr );
|
1999-05-05 21:42:48 +00:00
|
|
|
};
|
|
|
|
|
1999-07-03 16:40:54 +00:00
|
|
|
#endif
|
|
|
|
// wxUSE_STATLINE
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// __GTKSTATICLINEH__
|