mirror of
https://github.com/dolphin-emu/dolphin
synced 2024-11-04 20:43:44 -05:00
e149ad4f0a
SPDX standardizes how source code conveys its copyright and licensing information. See https://spdx.github.io/spdx-spec/1-rationale/ . SPDX tags are adopted in many large projects, including things like the Linux kernel.
44 lines
935 B
C++
44 lines
935 B
C++
// Copyright 2018 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QDialog>
|
|
|
|
class QPushButton;
|
|
class QTableWidget;
|
|
class QTableWidgetItem;
|
|
|
|
class ResourcePackManager : public QDialog
|
|
{
|
|
public:
|
|
explicit ResourcePackManager(QWidget* parent = nullptr);
|
|
|
|
private:
|
|
void CreateWidgets();
|
|
void ConnectWidgets();
|
|
void OpenResourcePackDir();
|
|
void RepopulateTable();
|
|
void Change();
|
|
void Install();
|
|
void Uninstall();
|
|
void Remove();
|
|
void PriorityUp();
|
|
void PriorityDown();
|
|
void Refresh();
|
|
|
|
void SelectionChanged();
|
|
void ItemDoubleClicked(QTableWidgetItem* item);
|
|
|
|
int GetResourcePackIndex(QTableWidgetItem* item) const;
|
|
|
|
QPushButton* m_open_directory_button;
|
|
QPushButton* m_change_button;
|
|
QPushButton* m_remove_button;
|
|
QPushButton* m_refresh_button;
|
|
QPushButton* m_priority_up_button;
|
|
QPushButton* m_priority_down_button;
|
|
|
|
QTableWidget* m_table_widget;
|
|
};
|