| 219 | } |
| 220 | |
| 221 | void CSampleEditorDlg::UpdateSampleView() |
| 222 | { |
| 223 | m_pSampleEditorView->ExpandSample(*m_pSample, IsDlgButtonChecked(IDC_DELTASTART) ? 64 : 0); // // // |
| 224 | m_pSampleEditorView->UpdateInfo(); |
| 225 | m_pSampleEditorView->Invalidate(); |
| 226 | m_pSampleEditorView->RedrawWindow(); |
| 227 | |
| 228 | CSliderCtrl *pZoom = static_cast<CSliderCtrl*>(GetDlgItem(IDC_ZOOM)); |
| 229 | pZoom->SetRange(0, 20); // // // |
| 230 | } |
| 231 | |
| 232 | void CSampleEditorDlg::OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags) |
| 233 | { |
nothing calls this directly
no test coverage detected