Done Scanning button event handler
| 472 | |
| 473 | // Done Scanning button event handler |
| 474 | void ActiveStereoFrame::OnButDoneScanningClick(wxCommandEvent& event) |
| 475 | { |
| 476 | // stop the scan by telling scanStatus to stop scanning. |
| 477 | // this will let the scanning thread finish it's current tasks |
| 478 | // once done, the thread will send a scan finished event. |
| 479 | scanStatus->SetScanning(false); |
| 480 | butDoneScanning->SetLabel(wxT("Finishing Scan...")); |
| 481 | butDoneScanning->Enable(false); |
| 482 | } |
| 483 | |
| 484 | // Update the image threshold slider label on slider move |
| 485 | void ActiveStereoFrame::OnSliderImageThresholdCmdScroll(wxScrollEvent& event) |
nothing calls this directly
no test coverage detected