#ifndef MEASUREANALYSISPARTICLECOUNTPLOTVIEW_H #define MEASUREANALYSISPARTICLECOUNTPLOTVIEW_H #include #include #include "MeasureAnalysisView.h" class CustomQwtPlot; class MeasureAnalysisParticleCountPlotView : public MeasureAnalysisView { Q_OBJECT public: MeasureAnalysisParticleCountPlotView(QWidget *parent = nullptr); virtual void SetAnalyzeDataFilename(const QMap& data_files_set); private: void setupPlot(); void loadDataFromFile(const QString &data_name, const QString& filename); private: CustomQwtPlot* _plot { nullptr }; }; #endif // MEASUREANALYSISPARTICLECOUNTPLOTVIEW_H