1999-05-05 21:42:48 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2006-01-23 02:28:01 +00:00
|
|
|
// Name: wx/gtk1/statline.h
|
1999-05-05 21:42:48 +00:00
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1999-05-05 21:42:48 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __GTKSTATICLINEH__
|
|
|
|
#define __GTKSTATICLINEH__
|
|
|
|
|
1999-07-03 16:40:54 +00:00
|
|
|
#include "wx/defs.h"
|
|
|
|
|
|
|
|
#if wxUSE_STATLINE
|
1999-06-14 23:04:05 +00:00
|
|
|
|
2005-03-11 02:13:30 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
1999-05-05 21:42:48 +00:00
|
|
|
// wxStaticLine
|
2005-03-11 02:13:30 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
1999-05-05 21:42:48 +00:00
|
|
|
|
2005-08-02 22:58:06 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxStaticLine : public wxStaticLineBase
|
1999-05-05 21:42:48 +00:00
|
|
|
{
|
1999-06-28 21:39:49 +00:00
|
|
|
public:
|
|
|
|
wxStaticLine();
|
2005-03-11 02:13:30 +00:00
|
|
|
wxStaticLine(wxWindow *parent,
|
|
|
|
wxWindowID id = wxID_ANY,
|
|
|
|
const wxPoint &pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxLI_HORIZONTAL,
|
2006-12-09 14:52:59 +00:00
|
|
|
const wxString &name = wxStaticLineNameStr);
|
2005-03-11 02:13:30 +00:00
|
|
|
bool Create(wxWindow *parent,
|
|
|
|
wxWindowID id = wxID_ANY,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxLI_HORIZONTAL,
|
2006-12-09 14:52:59 +00:00
|
|
|
const wxString &name = wxStaticLineNameStr);
|
2004-05-06 17:26:25 +00:00
|
|
|
|
|
|
|
static wxVisualAttributes
|
|
|
|
GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
|
2005-03-11 02:13:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
private:
|
2015-04-23 11:49:01 +00:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxStaticLine);
|
1999-05-05 21:42:48 +00:00
|
|
|
};
|
|
|
|
|
2005-03-11 02:13:30 +00:00
|
|
|
#endif // wxUSE_STATLINE
|
|
|
|
|
|
|
|
#endif // __GTKSTATICLINEH__
|
|
|
|
|