-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUploadWindow.h
More file actions
59 lines (41 loc) · 1.04 KB
/
UploadWindow.h
File metadata and controls
59 lines (41 loc) · 1.04 KB
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
#ifndef UPLOADWINDOW_H
#define UPLOADWINDOW_H
#include <QMainWindow>
#include "MenuWindow.h"
#include "filedata.h"
QT_BEGIN_NAMESPACE
namespace Ui { class UploadWindow; }
QT_END_NAMESPACE
class UploadWindow : public QMainWindow
{
Q_OBJECT
public:
UploadWindow(QWidget *parent = nullptr);
~UploadWindow();
private slots:
void on_GeneSelectButton_clicked();
void on_SpatialSelectButton_clicked();
void on_ExpressSelectButton_clicked();
void on_UploadButton_clicked();
void close();
private:
Ui::UploadWindow *ui;
MenuWindow *PointerMenuWindow;
std::string GeneFilename;
QString GeneUserText;
std::string GeneInput;
bool GeneBoolean;
std::string SpatialFilename;
QString SpatialUserText;
std::string SpatialInput;
bool SpatialBoolean;
std::string ExpressFilename;
QString ExpressUserText;
std::string ExpressInput;
bool ExpressBoolean;
std::vector<double> x;
std::vector<double> y;
FileData ExpressData;
parsefile files;
};
#endif // UPLOADWINDOW_H