-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmainwindow.h
More file actions
57 lines (35 loc) · 917 Bytes
/
mainwindow.h
File metadata and controls
57 lines (35 loc) · 917 Bytes
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
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QFileSystemModel>
#include <QWheelEvent>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
void wheelEvent(QWheelEvent *event);
private slots:
void on_treeView_doubleClicked(const QModelIndex &index);
void on_xmin_textChanged();
void on_xmax_textChanged();
void on_ymin_textChanged();
void on_ymax_textChanged();
void on_DefaultRange_clicked();
void resetRange();
void on_AverageMode_clicked();
void on_DefaultMode_clicked();
void calculateGrouped();
void on_groupBy_textChanged();
void replotDefault();
void updateResult();
void on_MBperCount_textChanged();
private:
Ui::MainWindow *ui;
QFileSystemModel *fsModel;
};
#endif // MAINWINDOW_H