cutter/src/dialogs/EditInstructionDialog.h

37 lines
702 B
C
Raw Normal View History

#ifndef EDITINSTRUCTIONDIALOG_H
#define EDITINSTRUCTIONDIALOG_H
#include <QDialog>
#include <QKeyEvent>
#include <memory>
2018-03-21 20:32:32 +00:00
namespace Ui {
class EditInstructionDialog;
}
class EditInstructionDialog : public QDialog
{
Q_OBJECT
public:
explicit EditInstructionDialog(QWidget *parent = nullptr);
~EditInstructionDialog();
QString getInstruction();
void setInstruction(const QString &instruction);
void updatePreview(const QString &hex);
private slots:
void on_buttonBox_accepted();
void on_buttonBox_rejected();
private:
std::unique_ptr<Ui::EditInstructionDialog> ui;
bool eventFilter(QObject *obj, QEvent *event);
};
#endif // EDITINSTRUCTIONDIALOG_H