mirror of
https://github.com/rizinorg/cutter.git
synced 2025-01-10 05:55:26 +00:00
31 lines
535 B
C
31 lines
535 B
C
|
#ifndef EDITVARIABLESDIALOG_H
|
||
|
#define EDITVARIABLESDIALOG_H
|
||
|
|
||
|
#include "Cutter.h"
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class EditVariablesDialog;
|
||
|
}
|
||
|
|
||
|
class EditVariablesDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit EditVariablesDialog(RVA offset, QWidget *parent = nullptr);
|
||
|
~EditVariablesDialog();
|
||
|
|
||
|
private slots:
|
||
|
void applyFields();
|
||
|
void updateFields();
|
||
|
|
||
|
private:
|
||
|
Ui::EditVariablesDialog *ui;
|
||
|
QList<VariableDescription> variables;
|
||
|
|
||
|
void populateTypesComboBox();
|
||
|
};
|
||
|
|
||
|
#endif // EDITVARIABLESDIALOG_H
|