mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 11:26:11 +00:00
36 lines
763 B
C++
36 lines
763 B
C++
#ifndef EDITINSTRUCTIONDIALOG_H
|
|
#define EDITINSTRUCTIONDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QKeyEvent>
|
|
#include <memory>
|
|
|
|
namespace Ui {
|
|
class EditInstructionDialog;
|
|
}
|
|
|
|
class EditInstructionDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit EditInstructionDialog(QWidget *parent, bool isEditingBytes);
|
|
~EditInstructionDialog();
|
|
|
|
QString getInstruction();
|
|
void setInstruction(const QString &instruction);
|
|
|
|
private slots:
|
|
void on_buttonBox_accepted();
|
|
|
|
void on_buttonBox_rejected();
|
|
|
|
void updatePreview(const QString &input);
|
|
|
|
private:
|
|
std::unique_ptr<Ui::EditInstructionDialog> ui;
|
|
bool isEditingBytes; // true if editing intruction **bytes**; false if editing instruction **text**
|
|
};
|
|
|
|
#endif // EDITINSTRUCTIONDIALOG_H
|