2023-01-02 09:42:41 +01:00
|
|
|
/******************************************************************************
|
2023-01-05 17:08:50 +01:00
|
|
|
* Copyright (C) 2022 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
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2023-01-05 17:08:50 +01:00
|
|
|
#include <QVector>
|
2023-01-02 09:42:41 +01:00
|
|
|
#include <QskLinearBox.h>
|
|
|
|
|
2023-01-05 17:08:50 +01:00
|
|
|
class StoragePage final : public QskLinearBox
|
|
|
|
{
|
2023-01-02 09:42:41 +01:00
|
|
|
public:
|
2024-09-05 09:15:25 +02:00
|
|
|
QSK_SUBCONTROLS( Panel, Status )
|
2023-01-05 17:08:50 +01:00
|
|
|
|
2024-09-05 09:15:25 +02:00
|
|
|
StoragePage( QQuickItem* parent = nullptr );
|
2023-01-02 09:42:41 +01:00
|
|
|
|
2024-09-05 09:15:25 +02:00
|
|
|
private:
|
2023-01-05 19:29:43 +01:00
|
|
|
void addRow( const QString& title, const QString& description,
|
|
|
|
qreal pictures, qreal music, qreal videos, qreal documents, qreal others );
|
2023-01-02 09:42:41 +01:00
|
|
|
};
|