2023-01-02 08:42:41 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* Copyright (C) 2021 Edelhirsch Software GmbH
|
2023-04-06 07:23:37 +00:00
|
|
|
* SPDX-License-Identifier: BSD-3-Claus
|
2023-01-02 08:42:41 +00:00
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#include "StatisticsPage.h"
|
|
|
|
|
|
|
|
#include <QskSkin.h>
|
|
|
|
#include <QskTextLabel.h>
|
|
|
|
|
|
|
|
QSK_SUBCONTROL( StatisticsPage, Panel )
|
|
|
|
|
|
|
|
StatisticsPage::StatisticsPage( QQuickItem* parent )
|
|
|
|
: QskLinearBox( Qt::Vertical, parent )
|
|
|
|
{
|
|
|
|
auto* const textLabel = new QskTextLabel( "statistics page", this );
|
|
|
|
textLabel->setAlignmentHint( QskTextLabel::Text, Qt::AlignCenter );
|
|
|
|
textLabel->setFontRole( QskSkin::HugeFont );
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "moc_StatisticsPage.cpp"
|