22 lines
706 B
C++
22 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 "DevicesPage.h"
|
||
|
|
||
|
#include <QskSkin.h>
|
||
|
#include <QskTextLabel.h>
|
||
|
|
||
|
QSK_SUBCONTROL( DevicesPage, Panel )
|
||
|
|
||
|
DevicesPage::DevicesPage( QQuickItem* parent )
|
||
|
: QskLinearBox( Qt::Vertical, parent )
|
||
|
{
|
||
|
auto* const textLabel = new QskTextLabel( "devices page", this );
|
||
|
textLabel->setAlignmentHint( QskTextLabel::Text, Qt::AlignCenter );
|
||
|
textLabel->setFontRole( QskSkin::HugeFont );
|
||
|
}
|
||
|
|
||
|
#include "moc_DevicesPage.cpp"
|