27 lines
635 B
C
27 lines
635 B
C
|
|
#ifndef MEASUREANALYSISPARTICLECOUNTPLOTVIEW_H
|
||
|
|
#define MEASUREANALYSISPARTICLECOUNTPLOTVIEW_H
|
||
|
|
|
||
|
|
#include <QObject>
|
||
|
|
#include <QWidget>
|
||
|
|
#include "MeasureAnalysisView.h"
|
||
|
|
|
||
|
|
class QCustomPlot;
|
||
|
|
|
||
|
|
class MeasureAnalysisParticleCountPlotView : public MeasureAnalysisView
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
public:
|
||
|
|
MeasureAnalysisParticleCountPlotView(QWidget *parent = nullptr);
|
||
|
|
|
||
|
|
virtual void SetAnalyzeDataFilename(const QMap<QString, QString>& data_files_set);
|
||
|
|
|
||
|
|
private:
|
||
|
|
void setupCustomPlot();
|
||
|
|
void loadDataFromFile(const QString& filename);
|
||
|
|
|
||
|
|
private:
|
||
|
|
QCustomPlot* _custom_plot { nullptr };
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // MEASUREANALYSISPARTICLECOUNTPLOTVIEW_H
|