File arrangement
This commit is contained in:
29
src/forms/scan/ScanFormWidget.h
Normal file
29
src/forms/scan/ScanFormWidget.h
Normal file
@@ -0,0 +1,29 @@
|
||||
//
|
||||
// Created by Krad on 2021/10/8.
|
||||
//
|
||||
|
||||
#ifndef GUI_SCANFORMWIDGET_H
|
||||
#define GUI_SCANFORMWIDGET_H
|
||||
|
||||
#include "src/forms/tabformwidget.h"
|
||||
#include <functional>
|
||||
class PatientInformationForm;
|
||||
class ScanFormWidget :public TabFormWidget {
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit ScanFormWidget(QWidget *parent = nullptr);
|
||||
~ScanFormWidget();
|
||||
void setPreviewing(bool val);
|
||||
private:
|
||||
PatientInformationForm* pat_inf= nullptr;
|
||||
bool unset = true;
|
||||
bool previewing= false;
|
||||
std::function<void(bool)> previewfunc = nullptr;
|
||||
int currentFrame = 0;
|
||||
private slots:
|
||||
void protocolChanged(int type);
|
||||
|
||||
};
|
||||
|
||||
|
||||
#endif //GUI_SCANFORMWIDGET_H
|
||||
Reference in New Issue
Block a user