| 7 | #include "lib/data/layout.h" |
| 8 | |
| 9 | FluxViewerWindow::FluxViewerWindow( |
| 10 | wxWindow* parent, std::shared_ptr<const TrackFlux> flux): |
| 11 | FluxViewerWindowGen(parent), |
| 12 | _flux(flux) |
| 13 | { |
| 14 | fluxviewer->SetScrollbar(scrollbar); |
| 15 | fluxviewer->SetFlux(flux); |
| 16 | SetTitle(fmt::format("Flux for c{} h{}", |
| 17 | flux->trackInfo->physicalCylinder, |
| 18 | flux->trackInfo->physicalHead)); |
| 19 | } |
| 20 | |
| 21 | void FluxViewerWindow::OnExit(wxCommandEvent& event) |
| 22 | { |
nothing calls this directly
no test coverage detected