qskinny/examples/iotdashboard/DashboardPage.h
2023-04-06 09:23:37 +02:00

23 lines
515 B
C++

/******************************************************************************
* Copyright (C) 2021 Edelhirsch Software GmbH
* SPDX-License-Identifier: BSD-3-Claus
*****************************************************************************/
#pragma once
#include <QskGridBox.h>
#include <QskLinearBox.h>
class DashboardPage : public QskLinearBox
{
Q_OBJECT
public:
QSK_SUBCONTROLS( Panel )
DashboardPage( QQuickItem* parent );
private:
QList< QskLinearBox* > m_columns;
};