2022-05-15 02:06:02 +02:00
|
|
|
// SPDX-FileCopyrightText: 2016 Citra Emulator Project
|
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-11-28 14:02:29 -05:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <memory>
|
2018-12-04 13:34:46 -05:00
|
|
|
#include <vector>
|
|
|
|
|
|
2018-11-28 14:02:29 -05:00
|
|
|
#include <QList>
|
2018-12-04 13:34:46 -05:00
|
|
|
|
|
|
|
|
#include "core/file_sys/vfs_types.h"
|
2018-11-28 14:02:29 -05:00
|
|
|
|
2021-09-02 21:40:55 -04:00
|
|
|
namespace Core {
|
|
|
|
|
class System;
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-28 14:02:29 -05:00
|
|
|
class QGraphicsScene;
|
|
|
|
|
class QStandardItem;
|
|
|
|
|
class QStandardItemModel;
|
2019-01-17 11:55:52 -05:00
|
|
|
class QTreeView;
|
|
|
|
|
class QVBoxLayout;
|
2018-11-28 14:02:29 -05:00
|
|
|
|
|
|
|
|
namespace Ui {
|
2020-07-09 22:42:09 -04:00
|
|
|
class ConfigurePerGameAddons;
|
2018-11-28 14:02:29 -05:00
|
|
|
}
|
|
|
|
|
|
2020-07-09 22:42:09 -04:00
|
|
|
class ConfigurePerGameAddons : public QWidget {
|
2018-11-28 14:02:29 -05:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
2021-09-02 21:40:55 -04:00
|
|
|
explicit ConfigurePerGameAddons(Core::System& system_, QWidget* parent = nullptr);
|
2020-07-09 22:42:09 -04:00
|
|
|
~ConfigurePerGameAddons() override;
|
2018-11-28 14:02:29 -05:00
|
|
|
|
|
|
|
|
/// Save all button configurations to settings file
|
2019-05-26 00:39:23 -04:00
|
|
|
void ApplyConfiguration();
|
2018-11-28 14:02:29 -05:00
|
|
|
|
2022-05-26 19:57:35 -04:00
|
|
|
void LoadFromFile(FileSys::VirtualFile file_);
|
2018-11-28 14:02:29 -05:00
|
|
|
|
2020-07-09 22:42:09 -04:00
|
|
|
void SetTitleId(u64 id);
|
|
|
|
|
|
2018-11-28 14:02:29 -05:00
|
|
|
private:
|
2019-06-05 18:39:46 -04:00
|
|
|
void changeEvent(QEvent* event) override;
|
|
|
|
|
void RetranslateUI();
|
|
|
|
|
|
2019-05-26 00:39:23 -04:00
|
|
|
void LoadConfiguration();
|
|
|
|
|
|
2020-07-09 22:42:09 -04:00
|
|
|
std::unique_ptr<Ui::ConfigurePerGameAddons> ui;
|
2018-11-28 14:02:29 -05:00
|
|
|
FileSys::VirtualFile file;
|
|
|
|
|
u64 title_id;
|
|
|
|
|
|
|
|
|
|
QVBoxLayout* layout;
|
|
|
|
|
QTreeView* tree_view;
|
|
|
|
|
QStandardItemModel* item_model;
|
|
|
|
|
|
|
|
|
|
std::vector<QList<QStandardItem*>> list_items;
|
2021-09-02 21:40:55 -04:00
|
|
|
|
|
|
|
|
Core::System& system;
|
2018-11-28 14:02:29 -05:00
|
|
|
};
|