-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.h
executable file
·68 lines (47 loc) · 1.11 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
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <physics.h>
#include <QMainWindow>
#include <qwt_plot.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>
#include "qwt_scale_draw.h"
#include "modeling.h"
//#include "help_file.h"
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
physics *ph;
private:
Ui::MainWindow *ui;
QwtLegend *leg;
QwtPlotGrid *grid;
QwtPlotCurve *curv1,*curv2;
void showTable();
void showGraph();
private slots:
void showTableSlot();
void showGraphSlot();
void calculate();
void modelingSlot();
void saveFileSlot();
void openFileSlot();
void saveFileAsSlot();
void aboutSlot();
void upgrade_prog();
// void helpBrowser();
//void exit();
};
#endif // MAINWINDOW_H