mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-29 05:18:03 +03:00
51 lines
873 B
C
51 lines
873 B
C
![]() |
// Copyright 2018 Dolphin Emulator Project
|
||
|
// Licensed under GPLv2+
|
||
|
// Refer to the license.txt file included.
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
class QDialogButtonBox;
|
||
|
class QLabel;
|
||
|
class QLineEdit;
|
||
|
class QTextEdit;
|
||
|
|
||
|
namespace ActionReplay
|
||
|
{
|
||
|
class ARCode;
|
||
|
}
|
||
|
|
||
|
namespace Gecko
|
||
|
{
|
||
|
class GeckoCode;
|
||
|
}
|
||
|
|
||
|
class CheatCodeEditor : public QDialog
|
||
|
{
|
||
|
public:
|
||
|
explicit CheatCodeEditor();
|
||
|
|
||
|
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;
|
||
|
};
|