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