mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-22 21:06:10 +00:00
51 lines
880 B
C
51 lines
880 B
C
|
#ifndef OPTIONSDIALOG_H
|
||
|
#define OPTIONSDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include <QStringList>
|
||
|
|
||
|
#include "qrcore.h"
|
||
|
#include "analthread.h"
|
||
|
|
||
|
class MainWindow;
|
||
|
|
||
|
namespace Ui {
|
||
|
class OptionsDialog;
|
||
|
}
|
||
|
|
||
|
class OptionsDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
QRCore *core;
|
||
|
explicit OptionsDialog(QWidget *parent = 0);
|
||
|
~OptionsDialog();
|
||
|
void setFilename(QString fn, QString shortfn);
|
||
|
RAnalFunction functionAt(ut64 addr);
|
||
|
QStringList asm_plugins;
|
||
|
|
||
|
private slots:
|
||
|
void on_closeButton_clicked();
|
||
|
|
||
|
void on_okButton_clicked();
|
||
|
|
||
|
void on_cancelButton_clicked();
|
||
|
|
||
|
void anal_finished();
|
||
|
|
||
|
void on_analSlider_valueChanged(int value);
|
||
|
|
||
|
void on_AdvOptButton_clicked();
|
||
|
|
||
|
private:
|
||
|
int anal_level;
|
||
|
QString filename;
|
||
|
QString shortfn;
|
||
|
Ui::OptionsDialog *ui;
|
||
|
AnalThread *analThread;
|
||
|
MainWindow *w;
|
||
|
};
|
||
|
|
||
|
#endif // OPTIONSDIALOG_H
|