-
Notifications
You must be signed in to change notification settings - Fork 0
/
batch3D.h
46 lines (38 loc) · 1008 Bytes
/
batch3D.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
//
// batch3D.hpp
// SimpleView
//
// Created by xx cheng on 6/24/16.
//
//
#ifndef BATCH3D_H
#define BATCH3D_H
#include <QDialog>
#include <SimpleView.h>
#include <QMessageBox>
namespace Ui{
class Batch3D;
}
class batch3D : public QDialog
{
Q_OBJECT
public:
explicit batch3D(SimpleView *simpleView, QDialog *parent = 0);
~batch3D();
private slots:
void on_loadStatusFile_PB_released();
void on_loadScalar_PB_released();
void on_loadVector_PB_released();
void on_loadDomain_PB_released();
void on_exportDir_PB_released();
bool loopThroughKt();
private:
Ui::Batch3D *batchui;
SimpleView *main3D;
QString formName(QString fileName,int timeStep);
QString formDataName(QString fileName,int timeStep);
void accept();
QString exportDir,scalarDir,vectorDir,domainDir,statusFile;
bool scalarFlag=false,vectorFlag=false,domainFlag=false,startFlag=false,intervalFlag=false,endFlag=false,outputFlag=false;
};
#endif /* BATCH3D_H */