2018-01-24 12:35:13 +00:00
|
|
|
// Copyright 2018 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-01-24 12:35:13 +00:00
|
|
|
|
2018-05-13 20:08:06 +00:00
|
|
|
#pragma once
|
|
|
|
|
2018-01-24 12:35:13 +00:00
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
class QDialogButtonBox;
|
|
|
|
class QLabel;
|
|
|
|
class QLineEdit;
|
|
|
|
class QTextEdit;
|
|
|
|
|
|
|
|
namespace ActionReplay
|
|
|
|
{
|
2018-01-24 12:35:44 +00:00
|
|
|
struct ARCode;
|
2018-01-24 12:35:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace Gecko
|
|
|
|
{
|
|
|
|
class GeckoCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
class CheatCodeEditor : public QDialog
|
|
|
|
{
|
|
|
|
public:
|
2018-05-06 16:02:39 +00:00
|
|
|
explicit CheatCodeEditor(QWidget* parent);
|
2018-01-24 12:35:13 +00:00
|
|
|
|
|
|
|
void SetARCode(ActionReplay::ARCode* code);
|
|
|
|
void SetGeckoCode(Gecko::GeckoCode* code);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void CreateWidgets();
|
|
|
|
void ConnectWidgets();
|
|
|
|
|
|
|
|
bool AcceptAR();
|
|
|
|
bool AcceptGecko();
|
|
|
|
|
|
|
|
void accept() override;
|
|
|
|
|
|
|
|
QLabel* m_creator_label;
|
|
|
|
QLabel* m_notes_label;
|
|
|
|
|
|
|
|
QLineEdit* m_name_edit;
|
|
|
|
QLineEdit* m_creator_edit;
|
|
|
|
QTextEdit* m_notes_edit;
|
|
|
|
QTextEdit* m_code_edit;
|
|
|
|
QDialogButtonBox* m_button_box;
|
|
|
|
|
|
|
|
ActionReplay::ARCode* m_ar_code = nullptr;
|
|
|
|
Gecko::GeckoCode* m_gecko_code = nullptr;
|
|
|
|
};
|