SedSat3 1.1.6
Sediment Source Apportionment Tool - Advanced statistical methods for environmental pollution research
Loading...
Searching...
No Matches
plotwindow.h
Go to the documentation of this file.
1#ifndef PLOTWINDOW_H
2#define PLOTWINDOW_H
3#define USE_QCHARTS
4
5#include <QDialog>
6#include "sourcesinkdata.h"
7#include "QComboBox"
8#ifdef USE_QCHARTS
9#include "GeneralChartPlotter.h"
10#else
11#include "generalplotter.h"
12#endif // USE_QCHARTS
13
14namespace Ui {
15class PlotWindow;
16}
17
18class PlotWindow : public QDialog
19{
20 Q_OBJECT
21
22public:
23 explicit PlotWindow(QWidget *parent = nullptr);
26#ifdef USE_QCHARTS
27 GeneralChartPlotter *Plotter() {return plot;}
28#else
29 GeneralPlotter* Plotter() { return chartplotter; }
30#endif
31private:
32 Ui::PlotWindow *ui;
33#ifdef USE_QCHARTS
34 GeneralChartPlotter* plot = nullptr;
35#else
36 GeneralPlotter *plot = nullptr;
37#endif
38
39
40public slots:
41
42};
43
44#endif // PLOTWINDOW_H
SourceSinkData * Data()
GeneralChartPlotter * plot
Definition plotwindow.h:34
Ui::PlotWindow * ui
Definition plotwindow.h:32
GeneralChartPlotter * Plotter()
Definition plotwindow.h:27