mirror of
https://github.com/rizinorg/cutter.git
synced 2025-01-10 14:05:25 +00:00
ab27e09b91
Sometimes it is not necessary to include the whole Cutter.h file Hence, it's been splitted so you can include only what you require E.g. #include "core/CutterCommon.h" to have access to the common types
33 lines
625 B
C++
33 lines
625 B
C++
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
#include "core/Cutter.h"
|
|
|
|
class PreferencesDialog;
|
|
|
|
namespace Ui {
|
|
class DebugOptionsWidget;
|
|
}
|
|
|
|
class DebugOptionsWidget : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit DebugOptionsWidget(PreferencesDialog *dialog, QWidget *parent = nullptr);
|
|
~DebugOptionsWidget();
|
|
|
|
private:
|
|
std::unique_ptr<Ui::DebugOptionsWidget> ui;
|
|
|
|
private slots:
|
|
void updateDebugPlugin();
|
|
void updateDebugArgs();
|
|
void updateStackAddr();
|
|
void updateStackSize();
|
|
void on_pluginComboBox_currentIndexChanged(const QString &index);
|
|
void on_esilBreakOnInvalid_toggled(bool checked);
|
|
};
|