LibreVNA/Software/PC_Application/Traces/tracemodel.h

47 lines
1.3 KiB
C
Raw Normal View History

#ifndef TRACEMODEL_H
#define TRACEMODEL_H
#include <QAbstractTableModel>
#include "trace.h"
#include <vector>
#include "Device/device.h"
class TraceModel : public QAbstractTableModel
{
Q_OBJECT
public:
TraceModel(QObject *parent = 0);
~TraceModel();
void addTrace(Trace *t);
void removeTrace(unsigned int index);
Trace *trace(unsigned int index);
void toggleVisibility(unsigned int index);
void togglePause(unsigned int index);
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
int columnCount(const QModelIndex &parent = QModelIndex()) const override;
QVariant data(const QModelIndex &index, int role) const override;
std::vector<Trace*> getTraces();
bool PortExcitationRequired(int port);
signals:
void SpanChanged(double fmin, double fmax);
void traceAdded(Trace *t);
void traceRemoved(Trace *t);
void requiredExcitation(bool excitePort1, bool excitePort2);
2020-11-02 05:56:31 +08:00
void traceNameChanged(Trace *t);
public slots:
void clearVNAData();
2020-11-09 04:28:47 +08:00
void addVNAData(const Protocol::Datapoint& d, const Protocol::SweepSettings& settings);
void addSAData(const Protocol::SpectrumAnalyzerResult& d, const Protocol::SpectrumAnalyzerSettings& settings);
private:
std::vector<Trace*> traces;
};
#endif // TRACEMODEL_H