qskinny/examples/iotdashboard/DevicesPage.cpp
2023-04-06 10:15:03 +02:00

22 lines
688 B
C++

/******************************************************************************
* Copyright (C) 2021 Edelhirsch Software GmbH
* SPDX-License-Identifier: BSD-3-Clause
*****************************************************************************/
#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"