50 lines
1.3 KiB
C++
50 lines
1.3 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/qt/statline.cpp
|
|
// Author: Peter Most
|
|
// Copyright: (c) Peter Most
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#include "wx/statline.h"
|
|
|
|
#include <QtWidgets/QFrame>
|
|
|
|
wxStaticLine::wxStaticLine() :
|
|
m_qtFrame(NULL)
|
|
{
|
|
}
|
|
|
|
wxStaticLine::wxStaticLine( wxWindow *parent,
|
|
wxWindowID id,
|
|
const wxPoint& pos,
|
|
const wxSize& size,
|
|
long style,
|
|
const wxString &name)
|
|
{
|
|
Create( parent, id, pos, size, style, name );
|
|
}
|
|
|
|
bool wxStaticLine::Create( wxWindow *parent,
|
|
wxWindowID id,
|
|
const wxPoint& pos,
|
|
const wxSize& size,
|
|
long style,
|
|
const wxString &name)
|
|
{
|
|
m_qtFrame = new QFrame( parent->GetHandle() );
|
|
if ( style & wxLI_HORIZONTAL )
|
|
m_qtFrame->setFrameStyle( QFrame::HLine );
|
|
else if ( style & wxLI_VERTICAL )
|
|
m_qtFrame->setFrameStyle( QFrame::VLine );
|
|
|
|
return QtCreateControl( parent, id, pos, size, style, wxDefaultValidator, name );
|
|
}
|
|
|
|
QWidget *wxStaticLine::GetHandle() const
|
|
{
|
|
return m_qtFrame;
|
|
}
|