4216775891
... and not our own ones. Resolves #201
27 lines
706 B
C++
27 lines
706 B
C++
/******************************************************************************
|
|
* Copyright (C) 2021 Edelhirsch Software GmbH
|
|
* This file may be used under the terms of the 3-clause BSD License
|
|
*****************************************************************************/
|
|
|
|
#include "Box.h"
|
|
#include "Skin.h"
|
|
|
|
#include <QskTextLabel.h>
|
|
|
|
QSK_SUBCONTROL( Box, Panel )
|
|
|
|
Box::Box( const QString& title, QQuickItem* parent )
|
|
: QskLinearBox( Qt::Vertical, parent )
|
|
{
|
|
setPanel( true );
|
|
setSubcontrolProxy( QskBox::Panel, Panel );
|
|
|
|
if ( !title.isEmpty() )
|
|
{
|
|
auto label = new QskTextLabel( title, this );
|
|
label->setFontRole( Skin::TitleFont );
|
|
}
|
|
}
|
|
|
|
#include "moc_Box.cpp"
|