mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 16:40:42 +08:00
34 lines
983 B
C++
34 lines
983 B
C++
#pragma once
|
|
|
|
#include <QtWidgets/QWidget>
|
|
#include <QtCore/QString>
|
|
#include "ui_SeerStackLocalsBrowserWidget.h"
|
|
|
|
class SeerStackLocalsBrowserWidget : public QWidget, protected Ui::SeerStackLocalsBrowserWidgetForm {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SeerStackLocalsBrowserWidget (QWidget* parent = 0);
|
|
~SeerStackLocalsBrowserWidget ();
|
|
|
|
public slots:
|
|
void handleText (const QString& text);
|
|
void handleStoppingPointReached ();
|
|
void refresh ();
|
|
|
|
protected slots:
|
|
void handleItemExpanded (QTreeWidgetItem* item);
|
|
void handleItemCollapsed (QTreeWidgetItem* item);
|
|
|
|
signals:
|
|
void refreshStackLocals ();
|
|
|
|
protected:
|
|
void showEvent (QShowEvent* event);
|
|
|
|
private:
|
|
int _frameNumber;
|
|
};
|
|
|