mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-22 12:56:11 +00:00
29 lines
472 B
C
29 lines
472 B
C
|
#pragma once
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include <memory>
|
||
|
|
||
|
namespace Ui {
|
||
|
class BreakpointsDialog;
|
||
|
}
|
||
|
|
||
|
class BreakpointsDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit BreakpointsDialog(QWidget *parent = nullptr);
|
||
|
~BreakpointsDialog();
|
||
|
|
||
|
QString getBreakpoints();
|
||
|
|
||
|
private slots:
|
||
|
void on_buttonBox_accepted();
|
||
|
void on_buttonBox_rejected();
|
||
|
|
||
|
private:
|
||
|
std::unique_ptr<Ui::BreakpointsDialog> ui;
|
||
|
|
||
|
bool eventFilter(QObject *obj, QEvent *event);
|
||
|
};
|