2022-07-14 14:35:57 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Copyright (C) 2021 Edelhirsch Software GmbH
|
2023-04-06 09:23:37 +02:00
|
|
|
* SPDX-License-Identifier: BSD-3-Claus
|
2022-07-14 14:35:57 +02:00
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QskGridBox.h>
|
|
|
|
#include <QskLinearBox.h>
|
|
|
|
|
|
|
|
class RoomsPage : public QskLinearBox
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
QSK_SUBCONTROLS( Panel )
|
|
|
|
|
|
|
|
RoomsPage( QQuickItem* parent );
|
|
|
|
|
|
|
|
private:
|
|
|
|
QList< QskLinearBox* > m_columns;
|
|
|
|
};
|