87ea20df5a
Signed-off-by: HeyaGlitz <heyaglitz@waifu.club>
91 lines
2.2 KiB
C++
91 lines
2.2 KiB
C++
// SPDX-License-Identifier: GPL-3.0-only
|
|
/*
|
|
* PolyMC - Minecraft Launcher
|
|
* Copyright (c) 2022 Slendi <slendi@socopon.com>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, version 3.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* This file incorporates work covered by the following copyright and
|
|
* permission notice:
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <QWidget>
|
|
#include <QtCharts/QChartView>
|
|
#include <QtCharts/QPieSeries>
|
|
#include <QtCharts/QPieSlice>
|
|
|
|
#include "BaseInstance.h"
|
|
#include "ui/pages/BasePage.h"
|
|
#include <Application.h>
|
|
#include <qmessagebox.h>
|
|
|
|
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
|
|
using namespace QtCharts;
|
|
#endif
|
|
|
|
namespace Ui
|
|
{
|
|
class StoragePage;
|
|
}
|
|
|
|
class StoragePage : public QWidget, public BasePage
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit StoragePage(BaseInstance *inst, QWidget *parent = 0);
|
|
virtual ~StoragePage();
|
|
virtual QString displayName() const override
|
|
{
|
|
return tr("Storage");
|
|
}
|
|
virtual QIcon icon() const override
|
|
{
|
|
auto icon = APPLICATION->getThemedIcon("storage");
|
|
if(icon.isNull())
|
|
icon = APPLICATION->getThemedIcon("news");
|
|
return icon;
|
|
}
|
|
virtual QString id() const override
|
|
{
|
|
return "storage";
|
|
}
|
|
virtual bool apply() override;
|
|
virtual QString helpPage() const override
|
|
{
|
|
return "Storage";
|
|
}
|
|
void retranslate() override;
|
|
|
|
void handleClearScreenshotsButton();
|
|
void handleClearLogsButton();
|
|
void handleClearAllButton();
|
|
|
|
void updateCalculations();
|
|
|
|
protected:
|
|
bool eventFilter(QObject *object, QEvent *event) override;
|
|
|
|
private:
|
|
Ui::StoragePage *ui;
|
|
BaseInstance *m_inst;
|
|
|
|
QPieSeries *m_series;
|
|
QChart *m_chart;
|
|
QChartView *m_chart_view;
|
|
|
|
QMessageBox *m_confirmation_box;
|
|
};
|