| 169 | } |
| 170 | |
| 171 | void TemporalControlWindow::processStepForwardButton() |
| 172 | { |
| 173 | ImGui::BeginDisabled(_simulationFacade->isSimulationRunning()); |
| 174 | auto result = AlienImGui::ToolbarButton(AlienImGui::ToolbarButtonParameters().text(ICON_FA_CHEVRON_RIGHT)); |
| 175 | AlienImGui::Tooltip("Process single time step"); |
| 176 | if (result) { |
| 177 | _history.emplace_back(createSnapshot()); |
| 178 | _simulationFacade->calcTimesteps(1); |
| 179 | } |
| 180 | ImGui::EndDisabled(); |
| 181 | } |
| 182 | |
| 183 | void TemporalControlWindow::processCreateFlashbackButton() |
| 184 | { |
nothing calls this directly
no test coverage detected