mirror of
https://github.com/rizinorg/cutter.git
synced 2025-01-11 22:45:25 +00:00
38 lines
858 B
C++
38 lines
858 B
C++
#ifndef EDITINSTRUCTIONDIALOG_H
|
|
#define EDITINSTRUCTIONDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <memory>
|
|
|
|
namespace Ui {
|
|
class EditInstructionDialog;
|
|
}
|
|
|
|
enum InstructionEditMode { EDIT_NONE, EDIT_BYTES, EDIT_TEXT };
|
|
|
|
class EditInstructionDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit EditInstructionDialog(InstructionEditMode isEditingBytes, QWidget *parent = nullptr);
|
|
~EditInstructionDialog();
|
|
|
|
QString getInstruction() const;
|
|
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;
|
|
InstructionEditMode
|
|
editMode; // true if editing intruction **bytes**; false if editing instruction **text**
|
|
};
|
|
|
|
#endif // EDITINSTRUCTIONDIALOG_H
|