2001-06-26 20:59:19 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/univ/statline.h
|
|
|
|
// Purpose: wxStaticLine class for wxUniversal
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Created: 28.06.99
|
|
|
|
// Version: $Id$
|
|
|
|
// Copyright: (c) 1999 Vadim Zeitlin
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2001-06-26 20:59:19 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_UNIV_STATLINE_H_
|
|
|
|
#define _WX_UNIV_STATLINE_H_
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxStaticLine : public wxStaticLineBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// constructors and pseudo-constructors
|
|
|
|
wxStaticLine() { }
|
|
|
|
|
|
|
|
wxStaticLine(wxWindow *parent,
|
|
|
|
const wxPoint &pos,
|
|
|
|
wxCoord length,
|
|
|
|
long style = wxLI_HORIZONTAL)
|
|
|
|
{
|
2004-08-10 13:08:43 +00:00
|
|
|
Create(parent, wxID_ANY, pos,
|
|
|
|
style & wxLI_VERTICAL ? wxSize(wxDefaultCoord, length)
|
|
|
|
: wxSize(length, wxDefaultCoord),
|
2001-06-26 20:59:19 +00:00
|
|
|
style);
|
|
|
|
}
|
|
|
|
|
|
|
|
wxStaticLine(wxWindow *parent,
|
2005-03-11 02:13:30 +00:00
|
|
|
wxWindowID id = wxID_ANY,
|
2001-06-26 20:59:19 +00:00
|
|
|
const wxPoint &pos = wxDefaultPosition,
|
|
|
|
const wxSize &size = wxDefaultSize,
|
|
|
|
long style = wxLI_HORIZONTAL,
|
2006-12-09 14:52:59 +00:00
|
|
|
const wxString &name = wxStaticLineNameStr )
|
2001-06-26 20:59:19 +00:00
|
|
|
{
|
|
|
|
Create(parent, id, pos, size, style, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Create(wxWindow *parent,
|
2005-03-11 02:13:30 +00:00
|
|
|
wxWindowID id = wxID_ANY,
|
2001-06-26 20:59:19 +00:00
|
|
|
const wxPoint &pos = wxDefaultPosition,
|
|
|
|
const wxSize &size = wxDefaultSize,
|
|
|
|
long style = wxLI_HORIZONTAL,
|
2006-12-09 14:52:59 +00:00
|
|
|
const wxString &name = wxStaticLineNameStr );
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void DoDraw(wxControlRenderer *renderer);
|
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxStaticLine)
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _WX_UNIV_STATLINE_H_
|
|
|
|
|