mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 16:40:42 +08:00
57 lines
2.2 KiB
C++
57 lines
2.2 KiB
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <QtWidgets/QDialog>
|
||
|
|
#include <QtCore/QString>
|
||
|
|
|
||
|
|
#include "ui_SeerBreakpointCreateDialog.h"
|
||
|
|
|
||
|
|
class SeerBreakpointCreateDialog : public QDialog, protected Ui::SeerBreakpointCreateDialogForm {
|
||
|
|
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
explicit SeerBreakpointCreateDialog (QWidget* parent = 0);
|
||
|
|
~SeerBreakpointCreateDialog ();
|
||
|
|
|
||
|
|
void setFilename (const QString& text);
|
||
|
|
void setFunctionName (const QString& text);
|
||
|
|
void setLabelName (const QString& text);
|
||
|
|
void setLineNumber (const QString& text);
|
||
|
|
|
||
|
|
QString filenameText () const;
|
||
|
|
QString functionNameText () const;
|
||
|
|
QString labelNameText () const;
|
||
|
|
QString lineNumberText () const;
|
||
|
|
|
||
|
|
void setTemporaryEnabled (bool flag);
|
||
|
|
void setHardwareEnabled (bool flag);
|
||
|
|
void setPendingEnabled (bool flag);
|
||
|
|
void setDisabledEnabled (bool flag);
|
||
|
|
void setConditionalEnabled (bool flag);
|
||
|
|
void setIgnoreCountEnabled (bool flag);
|
||
|
|
void setThreadIdEnabled (bool flag);
|
||
|
|
|
||
|
|
void setConditionalText (const QString& text);
|
||
|
|
void setIgnoreCountText (const QString& text);
|
||
|
|
void setThreadIdText (const QString& text);
|
||
|
|
|
||
|
|
bool temporaryEnabled () const;
|
||
|
|
bool hardwareEnabled () const;
|
||
|
|
bool pendingEnabled () const;
|
||
|
|
bool disabledEnabled () const;
|
||
|
|
bool conditionalEnabled () const;
|
||
|
|
bool ignoreCountEnabled () const;
|
||
|
|
bool threadIdEnabled () const;
|
||
|
|
|
||
|
|
QString conditionalText () const;
|
||
|
|
QString ignoreCountText () const;
|
||
|
|
QString threadIdText () const;
|
||
|
|
|
||
|
|
QString breakpointText () const;
|
||
|
|
|
||
|
|
public slots:
|
||
|
|
|
||
|
|
private:
|
||
|
|
};
|
||
|
|
|