2021-10-09 16:38:34 +08:00
|
|
|
//
|
|
|
|
|
// Created by Krad on 2021/10/8.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#ifndef GUI_SCANFORMWIDGET_H
|
|
|
|
|
#define GUI_SCANFORMWIDGET_H
|
|
|
|
|
|
|
|
|
|
#include "tabformwidget.h"
|
2021-10-12 17:43:12 +08:00
|
|
|
class PatientInformationForm;
|
2021-10-09 16:38:34 +08:00
|
|
|
class ScanFormWidget :public TabFormWidget {
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
explicit ScanFormWidget(QWidget *parent = nullptr);
|
|
|
|
|
~ScanFormWidget();
|
2021-10-12 17:43:12 +08:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
PatientInformationForm* pat_inf= nullptr;
|
|
|
|
|
private slots:
|
|
|
|
|
void protocolChanged(int type);
|
|
|
|
|
|
2021-10-09 16:38:34 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif //GUI_SCANFORMWIDGET_H
|