dolphin/Source/Core/DolphinQt/Config/ARCodeWidget.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

65 lines
1.2 KiB
C
Raw Normal View History

2018-01-01 21:01:58 +01:00
// Copyright 2018 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2018-01-01 21:01:58 +01:00
#pragma once
#include <QWidget>
#include <string>
#include <vector>
#include "Common/CommonTypes.h"
namespace ActionReplay
{
struct ARCode;
}
2018-01-01 21:01:58 +01:00
class CheatWarningWidget;
2018-01-01 21:01:58 +01:00
class QLabel;
class QListWidget;
class QListWidgetItem;
class QPushButton;
class ARCodeWidget : public QWidget
{
Q_OBJECT
public:
explicit ARCodeWidget(std::string game_id, u16 game_revision, bool restart_required = true);
~ARCodeWidget() override;
2018-03-26 04:17:47 +02:00
void AddCode(ActionReplay::ARCode code);
2018-01-01 21:01:58 +01:00
signals:
void OpenGeneralSettings();
private:
void OnSelectionChanged();
void OnItemChanged(QListWidgetItem* item);
void OnContextMenuRequested();
2018-01-01 21:01:58 +01:00
void CreateWidgets();
void ConnectWidgets();
void UpdateList();
void SaveCodes();
void SortAlphabetically();
2018-01-01 21:01:58 +01:00
void OnCodeAddClicked();
void OnCodeEditClicked();
void OnCodeRemoveClicked();
2018-01-01 21:01:58 +01:00
void OnListReordered();
2018-01-01 21:01:58 +01:00
std::string m_game_id;
2018-02-28 22:35:10 +01:00
u16 m_game_revision;
2018-01-01 21:01:58 +01:00
CheatWarningWidget* m_warning;
QListWidget* m_code_list;
QPushButton* m_code_add;
QPushButton* m_code_edit;
QPushButton* m_code_remove;
std::vector<ActionReplay::ARCode> m_ar_codes;
2018-03-26 04:17:47 +02:00
bool m_restart_required;
2018-01-01 21:01:58 +01:00
};