mirror of
https://github.com/rizinorg/cutter.git
synced 2025-01-09 21:45:26 +00:00
31 lines
499 B
C++
31 lines
499 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);
|
|
~DebugOptionsWidget();
|
|
|
|
private:
|
|
std::unique_ptr<Ui::DebugOptionsWidget> ui;
|
|
|
|
private slots:
|
|
void updateDebugPlugin();
|
|
void updateStackAddr();
|
|
void updateStackSize();
|
|
void onDebugPluginChanged(const QString &index);
|
|
};
|