2019-04-23 19:42:37 +00:00
|
|
|
// Copyright 2019 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2019-04-23 19:42:37 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
|
|
|
|
class QDialogButtonBox;
|
|
|
|
class QLabel;
|
|
|
|
class QLineEdit;
|
|
|
|
|
|
|
|
class PatchInstructionDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit PatchInstructionDialog(QWidget* parent, u32 address, u32 value);
|
|
|
|
|
|
|
|
u32 GetCode() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void CreateWidgets();
|
|
|
|
void ConnectWidgets();
|
|
|
|
|
|
|
|
void OnEditChanged();
|
|
|
|
|
|
|
|
u32 m_code;
|
|
|
|
u32 m_address;
|
|
|
|
|
|
|
|
QLineEdit* m_input_edit;
|
|
|
|
QLabel* m_preview_label;
|
|
|
|
QDialogButtonBox* m_button_box;
|
|
|
|
};
|