mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
29 lines
772 B
C++
29 lines
772 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <QtWidgets/QWidget>
|
||
|
|
#include <QtCore/QString>
|
||
|
|
#include "ui_SeerStackArgumentsBrowserWidget.h"
|
||
|
|
|
||
|
|
class SeerStackArgumentsBrowserWidget : public QWidget, protected Ui::SeerStackArgumentsBrowserWidgetForm {
|
||
|
|
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
explicit SeerStackArgumentsBrowserWidget (QWidget* parent = 0);
|
||
|
|
~SeerStackArgumentsBrowserWidget ();
|
||
|
|
|
||
|
|
public slots:
|
||
|
|
void handleText (const QString& text);
|
||
|
|
void handleStoppingPointReached ();
|
||
|
|
void refresh ();
|
||
|
|
|
||
|
|
signals:
|
||
|
|
void refreshStackArguments ();
|
||
|
|
|
||
|
|
protected:
|
||
|
|
void showEvent (QShowEvent* event);
|
||
|
|
|
||
|
|
private:
|
||
|
|
};
|
||
|
|
|