| 135 | } |
| 136 | |
| 137 | void QmitkLinearScaleQuestionWidget::OnIdClicked(int id) |
| 138 | { |
| 139 | m_Question->SetResponse(id); |
| 140 | |
| 141 | if (m_ClearButton != nullptr) |
| 142 | m_ClearButton->show(); |
| 143 | |
| 144 | if (m_Question->IsRequired()) |
| 145 | this->SetRequirementVisible(!m_Question->IsComplete()); |
| 146 | } |
| 147 | |
| 148 | void QmitkLinearScaleQuestionWidget::OnClearButtonClicked() |
| 149 | { |
nothing calls this directly
no test coverage detected