mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 08:34:42 +08:00
41 lines
1.5 KiB
C++
41 lines
1.5 KiB
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <QtWidgets/QWidget>
|
||
|
|
#include <QtCore/QString>
|
||
|
|
#include "ui_SeerBreakpointsBrowserWidget.h"
|
||
|
|
|
||
|
|
class SeerBreakpointsBrowserWidget : public QWidget, protected Ui::SeerBreakpointsBrowserWidgetForm {
|
||
|
|
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
explicit SeerBreakpointsBrowserWidget (QWidget* parent = 0);
|
||
|
|
~SeerBreakpointsBrowserWidget ();
|
||
|
|
|
||
|
|
public slots:
|
||
|
|
void handleText (const QString& text);
|
||
|
|
void handleStoppingPointReached ();
|
||
|
|
|
||
|
|
private slots:
|
||
|
|
void handleItemDoubleClicked (QTreeWidgetItem* item, int column);
|
||
|
|
void handleRefreshToolButton ();
|
||
|
|
void handleAddToolButton ();
|
||
|
|
void handleDeleteToolButton ();
|
||
|
|
void handleEnableToolButton ();
|
||
|
|
void handleDisableToolButton ();
|
||
|
|
|
||
|
|
signals:
|
||
|
|
void refreshBreakpointsList ();
|
||
|
|
void deleteBreakpoints (QString breakpoints);
|
||
|
|
void enableBreakpoints (QString breakpoints);
|
||
|
|
void disableBreakpoints (QString breakpoints);
|
||
|
|
void insertBreakpoint (QString breakpoint);
|
||
|
|
void selectedFile (QString file, QString fullname, int lineno);
|
||
|
|
|
||
|
|
protected:
|
||
|
|
void showEvent (QShowEvent* event);
|
||
|
|
|
||
|
|
private:
|
||
|
|
};
|
||
|
|
|