Esempio n. 1
0
PostOpControllWorkflowState::PostOpControllWorkflowState(QState* parent, StateServiceBackendPtr backend) :
				WorkflowState(parent, "PostOpControllUid", "Postoperative Control", backend)
{
	connect(mBackend->getPatientService().get(), SIGNAL(dataAddedOrRemoved()), this, SLOT(canEnterSlot()));
}
Esempio n. 2
0
PreOpPlanningWorkflowState::PreOpPlanningWorkflowState(QState* parent, StateServiceBackendPtr backend) :
				WorkflowState(parent, "PreOpPlanningUid", "Preoperative Planning", backend)
{
	connect(mBackend->getPatientService().get(), SIGNAL(dataAddedOrRemoved()), this, SLOT(canEnterSlot()));
}
Esempio n. 3
0
IntraOpImagingWorkflowState::IntraOpImagingWorkflowState(QState* parent, StateServiceBackendPtr backend) :
				WorkflowState(parent, "IntraOpImagingUid", "Intraoperative Imaging", backend)
{
	connect(mBackend->getPatientService().get(), SIGNAL(patientChanged()), this, SLOT(canEnterSlot()));
}
Esempio n. 4
0
RegistrationWorkflowState::RegistrationWorkflowState(QState* parent, StateServiceBackendPtr backend) :
				WorkflowState(parent, "RegistrationUid", "Registration", backend)
{
	connect(mBackend->getPatientService().get(), SIGNAL(patientChanged()), this, SLOT(canEnterSlot()));
}
Esempio n. 5
0
PreOpPlanningWorkflowState::PreOpPlanningWorkflowState(QState* parent, CoreServicesPtr services) :
				WorkflowState(parent, "PreOpPlanningUid", "Preoperative Planning", services)
{
	connect(mServices->patient().get(), SIGNAL(dataAddedOrRemoved()), this, SLOT(canEnterSlot()));
}
Esempio n. 6
0
RegistrationWorkflowState::RegistrationWorkflowState(QState* parent, CoreServicesPtr services) :
				WorkflowState(parent, "RegistrationUid", "Registration", services)
{
	connect(mServices->patient().get(), SIGNAL(patientChanged()), this, SLOT(canEnterSlot()));
}
Esempio n. 7
0
PostOpControllWorkflowState::PostOpControllWorkflowState(QState* parent, CoreServicesPtr services) :
				WorkflowState(parent, "PostOpControllUid", "Postoperative Control", services)
{
	connect(mServices->patient().get(), SIGNAL(dataAddedOrRemoved()), this, SLOT(canEnterSlot()));
}
Esempio n. 8
0
IntraOpImagingWorkflowState::IntraOpImagingWorkflowState(QState* parent, CoreServicesPtr services) :
				WorkflowState(parent, "IntraOpImagingUid", "Intraoperative Imaging", services)
{
	connect(mServices->patient().get(), SIGNAL(patientChanged()), this, SLOT(canEnterSlot()));
}