| 142 | } |
| 143 | |
| 144 | void TemporalControlWindow::processPauseButton() |
| 145 | { |
| 146 | ImGui::BeginDisabled(!_simulationFacade->isSimulationRunning()); |
| 147 | auto result = AlienImGui::ToolbarButton(AlienImGui::ToolbarButtonParameters().text(ICON_FA_PAUSE)); |
| 148 | AlienImGui::Tooltip("Pause"); |
| 149 | if (result) { |
| 150 | _simulationFacade->pauseSimulation(); |
| 151 | printOverlayMessage("Pause"); |
| 152 | } |
| 153 | ImGui::EndDisabled(); |
| 154 | } |
| 155 | |
| 156 | void TemporalControlWindow::processStepBackwardButton() |
| 157 | { |
nothing calls this directly
no test coverage detected