mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-22 12:56:11 +00:00
bafad96bf3
fixes #30
58 lines
1.3 KiB
C++
58 lines
1.3 KiB
C++
#ifndef OPTIONSDIALOG_H
|
|
#define OPTIONSDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QStringList>
|
|
#include <memory>
|
|
#include "cutter.h"
|
|
#include "AnalThread.h"
|
|
#include "ui_OptionsDialog.h"
|
|
|
|
class MainWindow;
|
|
|
|
class OptionsDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit OptionsDialog(MainWindow *main);
|
|
~OptionsDialog();
|
|
RAnalFunction functionAt(ut64 addr);
|
|
QStringList asm_plugins;
|
|
|
|
void setupAndStartAnalysis(int level, QList<QString> advanced);
|
|
|
|
public slots:
|
|
void updateProgress(const QString &str);
|
|
private slots:
|
|
void on_closeButton_clicked();
|
|
void on_okButton_clicked();
|
|
void on_cancelButton_clicked();
|
|
void on_analSlider_valueChanged(int value);
|
|
void on_AdvOptButton_clicked();
|
|
void on_analCheckBox_clicked(bool checked);
|
|
void on_archComboBox_currentIndexChanged(int index);
|
|
void on_pdbSelectButton_clicked();
|
|
|
|
void updatePDBLayout();
|
|
|
|
void anal_finished();
|
|
|
|
private:
|
|
AnalThread analThread;
|
|
MainWindow *main;
|
|
int defaultAnalLevel;
|
|
|
|
QString analysisDescription(int level);
|
|
|
|
void updateCPUComboBox();
|
|
public:
|
|
std::unique_ptr<Ui::OptionsDialog> ui;
|
|
QString getSelectedArch();
|
|
QString getSelectedCPU();
|
|
int getSelectedBits();
|
|
QString getSelectedOS();
|
|
};
|
|
|
|
#endif // OPTIONSDIALOG_H
|