2015-06-21 22:16:27 -04:00
|
|
|
#ifndef INCLUDE_GLSCOPEGUI_H
|
|
|
|
#define INCLUDE_GLSCOPEGUI_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
#include "dsp/dsptypes.h"
|
|
|
|
#include "util/export.h"
|
|
|
|
#include "util/message.h"
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class GLScopeGUI;
|
|
|
|
}
|
|
|
|
|
|
|
|
class MessageQueue;
|
|
|
|
class ScopeVis;
|
|
|
|
class GLScope;
|
|
|
|
|
|
|
|
class SDRANGELOVE_API GLScopeGUI : public QWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit GLScopeGUI(QWidget* parent = NULL);
|
|
|
|
~GLScopeGUI();
|
|
|
|
|
|
|
|
void setBuddies(MessageQueue* messageQueue, ScopeVis* scopeVis, GLScope* glScope);
|
|
|
|
|
2015-06-23 18:01:48 -04:00
|
|
|
void setSampleRate(int sampleRate);
|
2015-06-21 22:16:27 -04:00
|
|
|
void resetToDefaults();
|
|
|
|
QByteArray serialize() const;
|
|
|
|
bool deserialize(const QByteArray& data);
|
|
|
|
|
|
|
|
bool handleMessage(Message* message);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::GLScopeGUI* ui;
|
|
|
|
|
|
|
|
MessageQueue* m_messageQueue;
|
|
|
|
ScopeVis* m_scopeVis;
|
|
|
|
GLScope* m_glScope;
|
|
|
|
|
|
|
|
int m_sampleRate;
|
|
|
|
|
|
|
|
qint32 m_displayData;
|
|
|
|
qint32 m_displayOrientation;
|
2015-07-12 17:45:17 -04:00
|
|
|
qint32 m_displays;
|
2015-06-21 22:16:27 -04:00
|
|
|
qint32 m_timeBase;
|
|
|
|
qint32 m_timeOffset;
|
|
|
|
qint32 m_amplification;
|
2015-07-06 03:17:51 -04:00
|
|
|
qint32 m_ampOffset;
|
2015-06-23 16:52:27 -04:00
|
|
|
int m_displayGridIntensity;
|
2015-07-18 05:27:09 -04:00
|
|
|
int m_displayTraceIntensity;
|
2015-07-13 04:46:51 -04:00
|
|
|
qint32 m_triggerChannel;
|
2015-07-26 12:58:59 -04:00
|
|
|
qint32 m_triggerLevelCoarse; // percent of full range
|
|
|
|
qint32 m_triggerLevelFine; // percent of coarse
|
2015-07-13 04:46:51 -04:00
|
|
|
bool m_triggerPositiveEdge;
|
2015-07-23 00:52:12 -04:00
|
|
|
bool m_triggerBothEdges;
|
2015-07-21 16:18:17 -04:00
|
|
|
qint32 m_triggerPre;
|
2015-07-22 22:58:27 -04:00
|
|
|
qint32 m_triggerDelay;
|
2015-07-21 19:06:42 -04:00
|
|
|
qint32 m_traceLenMult;
|
2015-06-21 22:16:27 -04:00
|
|
|
|
2015-07-12 05:25:55 -04:00
|
|
|
static const qreal amps[11];
|
|
|
|
|
2015-06-21 22:16:27 -04:00
|
|
|
void applySettings();
|
2015-07-13 06:58:32 -04:00
|
|
|
void applyTriggerSettings();
|
2015-07-06 19:17:16 -04:00
|
|
|
void setTimeScaleDisplay();
|
2015-07-21 19:06:42 -04:00
|
|
|
void setTraceLenDisplay();
|
2015-07-12 04:17:23 -04:00
|
|
|
void setTimeOfsDisplay();
|
2015-07-12 05:25:55 -04:00
|
|
|
void setAmpScaleDisplay();
|
|
|
|
void setAmpOfsDisplay();
|
2015-07-13 06:58:32 -04:00
|
|
|
void setTrigLevelDisplay();
|
2015-07-21 16:18:17 -04:00
|
|
|
void setTrigPreDisplay();
|
2015-07-22 22:58:27 -04:00
|
|
|
void setTrigDelayDisplay();
|
2015-06-21 22:16:27 -04:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void on_amp_valueChanged(int value);
|
2015-07-06 03:17:51 -04:00
|
|
|
void on_ampOfs_valueChanged(int value);
|
2015-06-21 22:16:27 -04:00
|
|
|
void on_scope_traceSizeChanged(int value);
|
2015-07-06 19:17:16 -04:00
|
|
|
void on_scope_sampleRateChanged(int value);
|
2015-06-21 22:16:27 -04:00
|
|
|
void on_time_valueChanged(int value);
|
2015-07-21 19:06:42 -04:00
|
|
|
void on_traceLen_valueChanged(int value);
|
2015-06-21 22:16:27 -04:00
|
|
|
void on_timeOfs_valueChanged(int value);
|
2015-06-22 03:01:25 -04:00
|
|
|
void on_dataMode_currentIndexChanged(int index);
|
2015-06-23 16:52:27 -04:00
|
|
|
void on_gridIntensity_valueChanged(int index);
|
2015-07-18 05:27:09 -04:00
|
|
|
void on_traceIntensity_valueChanged(int index);
|
2015-07-21 16:18:17 -04:00
|
|
|
void on_trigPre_valueChanged(int value);
|
2015-07-22 22:58:27 -04:00
|
|
|
void on_trigDelay_valueChanged(int value);
|
2015-06-21 22:16:27 -04:00
|
|
|
|
|
|
|
void on_horizView_clicked();
|
|
|
|
void on_vertView_clicked();
|
2015-07-12 16:22:04 -04:00
|
|
|
void on_onlyPrimeView_clicked();
|
|
|
|
void on_onlySecondView_clicked();
|
2015-07-13 06:58:32 -04:00
|
|
|
|
|
|
|
void on_trigMode_currentIndexChanged(int index);
|
|
|
|
void on_slopePos_clicked();
|
|
|
|
void on_slopeNeg_clicked();
|
2015-07-23 00:52:12 -04:00
|
|
|
void on_slopeBoth_clicked();
|
2015-07-13 20:18:55 -04:00
|
|
|
void on_oneShot_clicked();
|
2015-07-26 12:58:59 -04:00
|
|
|
void on_trigLevelCoarse_valueChanged(int value);
|
|
|
|
void on_trigLevelFine_valueChanged(int value);
|
2015-06-21 22:16:27 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_GLSCOPEGUI_H
|