2023-01-02 08:42:41 +00:00
|
|
|
/******************************************************************************
|
2023-01-05 16:08:50 +00:00
|
|
|
* Copyright (C) 2022 Edelhirsch Software GmbH
|
2023-04-06 08:15:03 +00:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
2023-01-02 08:42:41 +00:00
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2023-01-05 16:08:50 +00:00
|
|
|
#include <QVector>
|
2023-01-02 08:42:41 +00:00
|
|
|
#include <QskLinearBox.h>
|
|
|
|
|
2023-01-05 16:08:50 +00:00
|
|
|
class StoragePage final : public QskLinearBox
|
|
|
|
{
|
2023-01-02 08:42:41 +00:00
|
|
|
public:
|
2024-09-05 07:15:25 +00:00
|
|
|
QSK_SUBCONTROLS( Panel, Status )
|
2023-01-05 16:08:50 +00:00
|
|
|
|
2024-09-05 07:15:25 +00:00
|
|
|
StoragePage( QQuickItem* parent = nullptr );
|
2023-01-02 08:42:41 +00:00
|
|
|
|
2024-09-05 07:15:25 +00:00
|
|
|
private:
|
2023-01-05 18:29:43 +00:00
|
|
|
void addRow( const QString& title, const QString& description,
|
|
|
|
qreal pictures, qreal music, qreal videos, qreal documents, qreal others );
|
2023-01-02 08:42:41 +00:00
|
|
|
};
|