-
Notifications
You must be signed in to change notification settings - Fork 2
/
mainwindow.h
72 lines (50 loc) · 1.2 KB
/
mainwindow.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QVector>
#include <QMainWindow>
#include <qwt_plot.h>
#include <qwt_plot_marker.h>
#include <QDialog>
#include "ui_dialog.h"
#include "dialog.h"
#include "somevalues.h"
#include "ui_somevalues.h"
#include <qwt_plot_grid.h>
#include <qwt_legend.h>
#include <qwt_plot_curve.h>
#include <qwt_symbol.h>
#include <qwt_plot_magnifier.h>
#include <qwt_plot_panner.h>
#include <qwt_plot_picker.h>
#include <qwt_picker_machine.h>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
void addPlotGrid();
void addPlot();
void setZ();
void setPlot(int redColor,int blueColor);
void setAlpha(QString text);
void setDelta(QString text);
void setDeltaAlpha(QString text);
~MainWindow();
private slots:
// void on_action_2_triggered();
void on_action_triggered();
void on_pushButton_clicked();
void on_actionValues_triggered();
void on_pushButton_2_clicked();
private:
QwtPlotCurve *curv1;
QwtPlotCurve *curv2;
// QwtPlot *plot;
Dialog* d;
SomeValues *values;
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_H