| 25 | } |
| 26 | |
| 27 | void TimerRecordExportDialog::Bind(wxFileName& filename, |
| 28 | wxString& format, |
| 29 | int& sampleRate, |
| 30 | int& channels, |
| 31 | ExportProcessor::Parameters& parameters) |
| 32 | { |
| 33 | mFileName = &filename; |
| 34 | mFormat = &format; |
| 35 | mSampleRate = &sampleRate; |
| 36 | mChannels = &channels; |
| 37 | mParameters = ¶meters; |
| 38 | mExportFilePanel->Init(filename, sampleRate, format, channels, parameters); |
| 39 | } |
| 40 | |
| 41 | void TimerRecordExportDialog::PopulateOrExchange(ShuttleGui& S) |
| 42 | { |