mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 17:10:44 +08:00
59 lines
2.5 KiB
C++
59 lines
2.5 KiB
C++
#pragma once
|
|
|
|
#include <QtWidgets/QWidget>
|
|
#include "ui_SeerImageVisualizerWidget.h"
|
|
|
|
class SeerImageVisualizerWidget : public QWidget, protected Ui::SeerImageVisualizerWidgetForm {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SeerImageVisualizerWidget (QWidget* parent = 0);
|
|
~SeerImageVisualizerWidget ();
|
|
|
|
void setVariableName (const QString& name);
|
|
QString variableName () const;
|
|
void setVariableAddress (const QString& address);
|
|
QString variableAddress () const;
|
|
void setImageWidth (const QString& width);
|
|
QString imageWidth () const;
|
|
void setImageHeight (const QString& height);
|
|
QString imageHeight () const;
|
|
|
|
signals:
|
|
void evaluateVariableExpression (int expressionid, QString expression);
|
|
void evaluateMemoryExpression (int expressionid, QString address, int count);
|
|
|
|
public slots:
|
|
void handleText (const QString& text);
|
|
|
|
protected slots:
|
|
void handleRefreshButton ();
|
|
void handleHelpButton ();
|
|
void handleVariableNameLineEdit ();
|
|
void handleWidthLineEdit ();
|
|
void handleHeightLineEdit ();
|
|
void handleFormatComboBox (int index);
|
|
void handlePrintButton ();
|
|
void handleSaveButton ();
|
|
void handleCreateImage (const QByteArray& array);
|
|
|
|
protected:
|
|
void writeSettings ();
|
|
void readSettings ();
|
|
void resizeEvent (QResizeEvent* event);
|
|
|
|
private:
|
|
int _variableId;
|
|
int _memoryId;
|
|
int _imageWidthId;
|
|
int _imageHeightId;
|
|
|
|
QString _formatName;
|
|
QImage::Format _format;
|
|
int _width;
|
|
int _height;
|
|
int _bytes;
|
|
};
|
|
|