| 354 | } |
| 355 | |
| 356 | void QmitkRenderWindowMenu::OnAutoRotationActionTriggered() |
| 357 | { |
| 358 | if (m_AutoRotationTimer->isActive()) |
| 359 | { |
| 360 | m_AutoRotationTimer->stop(); |
| 361 | m_Renderer->GetCameraRotationController()->GetStepper()->PingPongOff(); |
| 362 | } |
| 363 | else |
| 364 | { |
| 365 | m_Renderer->GetCameraRotationController()->GetStepper()->PingPongOn(); |
| 366 | m_AutoRotationTimer->start(); |
| 367 | } |
| 368 | } |
| 369 | |
| 370 | void QmitkRenderWindowMenu::OnTSNumChanged(int num) |
| 371 | { |
nothing calls this directly
no test coverage detected