2025-08-26 17:26:05 -05:00
|
|
|
// SPDX-FileCopyrightText: 2021 Ernie Pasveer <epasveer@att.net>
|
|
|
|
|
//
|
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
2021-09-01 14:01:00 -05:00
|
|
|
#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:
|
2022-05-15 15:14:38 -05:00
|
|
|
void handleText (const QString& text);
|
|
|
|
|
void handleStoppingPointReached ();
|
2025-04-20 09:33:31 -05:00
|
|
|
void handleSessionTerminated ();
|
2022-05-15 15:14:38 -05:00
|
|
|
void refresh ();
|
2021-09-01 14:01:00 -05:00
|
|
|
|
2021-10-10 12:57:30 -05:00
|
|
|
protected slots:
|
2023-11-15 16:30:47 -06:00
|
|
|
void handleContextMenu (const QPoint& pos);
|
2023-11-18 11:27:27 -06:00
|
|
|
void handleItemExpanded (QTreeWidgetItem* item);
|
|
|
|
|
void handleItemCollapsed (QTreeWidgetItem* item);
|
2022-05-15 15:14:38 -05:00
|
|
|
void handleItemEntered (QTreeWidgetItem* item, int column);
|
2021-10-10 12:57:30 -05:00
|
|
|
|
2021-09-01 14:01:00 -05:00
|
|
|
signals:
|
2022-05-15 15:14:38 -05:00
|
|
|
void refreshStackArguments ();
|
|
|
|
|
void addVariableLoggerExpression (QString expression);
|
|
|
|
|
void addVariableTrackerExpression (QString expression);
|
|
|
|
|
void refreshVariableTrackerValues ();
|
2025-06-29 13:30:35 -05:00
|
|
|
void addMemoryVisualizer (QString expression);
|
|
|
|
|
void addArrayVisualizer (QString expression);
|
|
|
|
|
void addMatrixVisualizer (QString expression);
|
|
|
|
|
void addStructVisualizer (QString expression);
|
2021-09-01 14:01:00 -05:00
|
|
|
|
|
|
|
|
protected:
|
2023-11-18 11:27:27 -06:00
|
|
|
void handleItemCreate (QTreeWidgetItem* parentItem, const QString& level_text, const QString& name_text, const QString& value_text);
|
2022-05-15 15:14:38 -05:00
|
|
|
void showEvent (QShowEvent* event);
|
2021-09-01 14:01:00 -05:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
};
|
|
|
|
|
|