Files
seer/src/SeerCatchpointCreateDialog.h
T
2025-06-21 16:38:45 -05:00

38 lines
1.1 KiB
C++

#pragma once
#include <QtWidgets/QDialog>
#include <QtCore/QString>
#include "ui_SeerCatchpointCreateDialog.h"
class SeerCatchpointCreateDialog : public QDialog, protected Ui::SeerCatchpointCreateDialogForm {
Q_OBJECT
public:
explicit SeerCatchpointCreateDialog (QWidget* parent = 0);
~SeerCatchpointCreateDialog ();
void setType (const QString& text);
QString typeText () const;
void setTemporaryEnabled (bool flag);
bool temporaryEnabled () const;
void setDisabledEnabled (bool flag);
bool disabledEnabled () const;
void setNameEnabled (bool flag);
bool nameEnabled () const;
void setArguments (const QString& text);
QString arguments () const;
QString catchpointText () const;
public slots:
private:
};