mirror of
https://github.com/rizinorg/cutter.git
synced 2025-01-10 14:05:25 +00:00
30 lines
483 B
C
30 lines
483 B
C
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <memory>
|
||
|
|
||
|
#include "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 on_pluginComboBox_currentIndexChanged(const QString &index);
|
||
|
};
|