mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-24 22:05:25 +00:00
99b1fde47d
Originally SetFunctionVarTypes
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
|