slot
| 71 | |
| 72 | // slot |
| 73 | void MainWidget::functionToggled(bool checked) |
| 74 | { |
| 75 | if (!checked) { |
| 76 | return; |
| 77 | } |
| 78 | int idx = m_functionSelector.indexOf(qobject_cast<QRadioButton *>(sender())); |
| 79 | Q_ASSERT(idx >= 0); |
| 80 | m_model.setFunction(static_cast<Model::Function>(idx)); |
| 81 | } |
| 82 | |
| 83 | // slot |
| 84 | void MainWidget::addPointsButtonClicked() |
nothing calls this directly
no test coverage detected