mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 05:40:01 -06:00
Move DolphinQt2 to DolphinQt
This commit is contained in:
52
Source/Core/DolphinQt/Config/CheatCodeEditor.h
Normal file
52
Source/Core/DolphinQt/Config/CheatCodeEditor.h
Normal file
@ -0,0 +1,52 @@
|
||||
// Copyright 2018 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <QDialog>
|
||||
|
||||
class QDialogButtonBox;
|
||||
class QLabel;
|
||||
class QLineEdit;
|
||||
class QTextEdit;
|
||||
|
||||
namespace ActionReplay
|
||||
{
|
||||
struct ARCode;
|
||||
}
|
||||
|
||||
namespace Gecko
|
||||
{
|
||||
class GeckoCode;
|
||||
}
|
||||
|
||||
class CheatCodeEditor : public QDialog
|
||||
{
|
||||
public:
|
||||
explicit CheatCodeEditor(QWidget* parent);
|
||||
|
||||
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;
|
||||
};
|
Reference in New Issue
Block a user