add some function of reconstruciton

This commit is contained in:
Tang1705
2020-02-03 19:48:30 +08:00
parent 8ae4c44bec
commit 0e7376ccd5
34 changed files with 251 additions and 36 deletions

25
Classes/Loading.h Normal file
View File

@@ -0,0 +1,25 @@
#pragma once
#include <QWidget>
#include "ui_Loading.h"
#include "Reconstruction.h"
#include <QMouseEvent>
class Loading : public QWidget
{
Q_OBJECT
public:
Loading(QWidget *parent = Q_NULLPTR);
~Loading();
private:
Ui::Loading ui;
bool ready2Enter = false;
int currentValue = 0;
void updateSlot();
protected:
void mousePressEvent(QMouseEvent *);
};