2017-03-29 10:18:37 +00:00
|
|
|
#ifndef OPTIONSDIALOG_H
|
|
|
|
#define OPTIONSDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
#include <QStringList>
|
|
|
|
|
|
|
|
#include "qrcore.h"
|
|
|
|
#include "analthread.h"
|
|
|
|
|
|
|
|
class MainWindow;
|
|
|
|
|
2017-04-09 19:55:06 +00:00
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class OptionsDialog;
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class OptionsDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2017-04-18 10:03:47 +00:00
|
|
|
explicit OptionsDialog(const QString &filename, QWidget *parent = 0);
|
2017-03-29 10:18:37 +00:00
|
|
|
~OptionsDialog();
|
|
|
|
RAnalFunction functionAt(ut64 addr);
|
|
|
|
QStringList asm_plugins;
|
|
|
|
|
2017-04-28 13:09:40 +00:00
|
|
|
void setupAndStartAnalysis(int level);
|
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
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();
|
|
|
|
|
2017-04-10 12:22:18 +00:00
|
|
|
void on_analCheckBox_clicked(bool checked);
|
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
private:
|
|
|
|
Ui::OptionsDialog *ui;
|
2017-04-18 10:03:47 +00:00
|
|
|
QRCore *core;
|
2017-03-31 22:47:37 +00:00
|
|
|
AnalThread analThread;
|
2017-03-29 10:18:37 +00:00
|
|
|
MainWindow *w;
|
2017-04-18 10:03:47 +00:00
|
|
|
QString filename;
|
|
|
|
int defaultAnalLevel;
|
2017-04-01 11:20:13 +00:00
|
|
|
|
2017-04-10 12:22:18 +00:00
|
|
|
QString analysisDescription(int level);
|
2017-03-29 10:18:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // OPTIONSDIALOG_H
|