mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 16:40:42 +08:00
33 lines
1.1 KiB
C++
33 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include <QtWidgets/QWidget>
|
|
#include <QtCore/QString>
|
|
#include "ui_SeerStackFramesBrowserWidget.h"
|
|
|
|
class SeerStackFramesBrowserWidget : public QWidget, protected Ui::SeerStackFramesBrowserWidgetForm {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SeerStackFramesBrowserWidget (QWidget* parent = 0);
|
|
~SeerStackFramesBrowserWidget ();
|
|
|
|
public slots:
|
|
void handleText (const QString& text);
|
|
void handleItemDoubleClicked (QTreeWidgetItem* item, int column);
|
|
void handleStoppingPointReached ();
|
|
void refresh ();
|
|
|
|
signals:
|
|
void refreshStackFrames ();
|
|
void selectedFile (QString file, QString fullname, int lineno);
|
|
void selectedFrame (int frameno);
|
|
|
|
protected:
|
|
void showEvent (QShowEvent* event);
|
|
|
|
private:
|
|
QString _previousStackFrameText;
|
|
};
|
|
|