mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 16:40:42 +08:00
49 lines
2.0 KiB
C++
49 lines
2.0 KiB
C++
// SPDX-FileCopyrightText: 2021 Ernie Pasveer <epasveer@att.net>
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QtWidgets/QWidget>
|
|
#include "ui_SeerStructVisualizerWidget.h"
|
|
|
|
class SeerStructVisualizerWidget : public QWidget, protected Ui::SeerStructVisualizerWidgetForm {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SeerStructVisualizerWidget (QWidget* parent = 0);
|
|
~SeerStructVisualizerWidget ();
|
|
|
|
void setVariableName (const QString& name);
|
|
QString variableName () const;
|
|
|
|
signals:
|
|
void evaluateVariableExpression (int expressionid, QString expression);
|
|
void addMemoryVisualizer (QString expression);
|
|
void addArrayVisualizer (QString expression);
|
|
void addMatrixVisualizer (QString expression);
|
|
void addStructVisualizer (QString expression);
|
|
|
|
public slots:
|
|
void handleText (const QString& text);
|
|
|
|
protected slots:
|
|
void handleRefreshButton ();
|
|
void handleHelpButton ();
|
|
void handleVariableNameLineEdit ();
|
|
void handleContextMenu (const QPoint& pos);
|
|
void handleItemEntered (QTreeWidgetItem* item, int column);
|
|
void handleItemExpanded (QTreeWidgetItem* item);
|
|
|
|
protected:
|
|
void handleItemCreate (QTreeWidgetItem* parentItem, const QString& value_text);
|
|
void writeSettings ();
|
|
void readSettings ();
|
|
void resizeEvent (QResizeEvent* event);
|
|
|
|
private:
|
|
int _variableId;
|
|
};
|
|
|