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

63 lines
1.2 KiB
C
Raw Normal View History

2018-01-01 20:01:58 +00:00
// Copyright 2018 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include <QWidget>
#include <string>
#include <vector>
#include "Common/CommonTypes.h"
#include "Core/ActionReplay.h"
namespace UICommon
{
2018-01-01 20:01:58 +00:00
class GameFile;
}
class CheatWarningWidget;
2018-01-01 20:01:58 +00:00
class QLabel;
class QListWidget;
class QListWidgetItem;
class QPushButton;
class ARCodeWidget : public QWidget
{
Q_OBJECT
public:
2018-03-26 02:17:47 +00:00
explicit ARCodeWidget(const UICommon::GameFile& game, bool restart_required = true);
void AddCode(ActionReplay::ARCode code);
2018-01-01 20:01:58 +00:00
signals:
void OpenGeneralSettings();
private:
void OnSelectionChanged();
void OnItemChanged(QListWidgetItem* item);
void CreateWidgets();
void ConnectWidgets();
void UpdateList();
void SaveCodes();
void OnCodeAddPressed();
void OnCodeEditPressed();
void OnCodeRemovePressed();
const UICommon::GameFile& m_game;
2018-01-01 20:01:58 +00:00
std::string m_game_id;
2018-02-28 21:35:10 +00:00
u16 m_game_revision;
2018-01-01 20:01:58 +00: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 02:17:47 +00:00
bool m_restart_required;
2018-01-01 20:01:58 +00:00
};