SedSat3 1.1.6
Sediment Source Apportionment Tool - Advanced statistical methods for environmental pollution research
Loading...
Searching...
No Matches
resultswindow.h
Go to the documentation of this file.
1#ifndef RESULTSWINDOW_H
2#define RESULTSWINDOW_H
3
4#include <QDialog>
5#include "string"
6#include "results.h"
7
8//using namespace std;
9
10namespace Ui {
11class ResultsWindow;
12}
13
14class ResultsWindow : public QDialog
15{
16 Q_OBJECT
17
18public:
19 explicit ResultsWindow(QWidget *parent = nullptr);
20 void AppendText(const string &text);
21 void AppendResult(const ResultItem &resultitem);
23 void SetResults(Results* res) { results = res; }
24
25private:
26 Ui::ResultsWindow *ui;
27 Results* results = nullptr;
29
30public slots:
34};
35
36#endif // RESULTSWINDOW_H
Results * results
void AppendText(const string &text)
void SetResults(Results *res)
void AppendResult(const ResultItem &resultitem)
void on_result_graph_clicked()
Ui::ResultsWindow * ui
void on_result_export_clicked()
void on_result_table_clicked()