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