2023-01-02 09:42:41 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Copyright (C) 2021 Edelhirsch Software GmbH
|
2023-04-06 10:15:03 +02:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
2023-01-02 09:42:41 +01: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"
|