Change dialog style, add Scan Patient confirm
This commit is contained in:
20
src/dialogs/PatientConfirmDialog.h
Normal file
20
src/dialogs/PatientConfirmDialog.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#ifndef GUI_PATIENTDIALOG_H
|
||||
#define GUI_PATIENTDIALOG_H
|
||||
#include "GUIFormBaseDialog.h"
|
||||
class PatientDetailForm;
|
||||
class PatientInformation;
|
||||
class PatientConfirmDialog : public GUIFormBaseDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
private:
|
||||
PatientDetailForm* mPatientDetail;
|
||||
public:
|
||||
PatientConfirmDialog(QWidget* parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
|
||||
~PatientConfirmDialog();
|
||||
void setPatientInformation(PatientInformation* information, int type);
|
||||
protected:
|
||||
bool updateReferenceData() override;
|
||||
};
|
||||
|
||||
|
||||
#endif /* GUI_PATIENTDIALOG_H */
|
||||
Reference in New Issue
Block a user