comparison main/PreferencesDialog.h @ 32:e3b32dc5180b

* Make resampler quality configurable * Fall back to linear resampling when playing very fast * Switch off transient detection in time stretcher when playing very very fast
author Chris Cannam
date Thu, 21 Sep 2006 11:17:19 +0000
parents 8b34a6460545
children c9930ec7a3f9
comparison
equal deleted inserted replaced
31:37af203dbd15 32:e3b32dc5180b
34 protected slots: 34 protected slots:
35 void windowTypeChanged(WindowType type); 35 void windowTypeChanged(WindowType type);
36 void smoothSpectrogramChanged(int state); 36 void smoothSpectrogramChanged(int state);
37 void propertyLayoutChanged(int layout); 37 void propertyLayoutChanged(int layout);
38 void tuningFrequencyChanged(double freq); 38 void tuningFrequencyChanged(double freq);
39 void resampleQualityChanged(int quality);
39 40
40 void okClicked(); 41 void okClicked();
41 void applyClicked(); 42 void applyClicked();
42 void cancelClicked(); 43 void cancelClicked();
43 44
47 48
48 WindowType m_windowType; 49 WindowType m_windowType;
49 bool m_smoothSpectrogram; 50 bool m_smoothSpectrogram;
50 int m_propertyLayout; 51 int m_propertyLayout;
51 float m_tuningFrequency; 52 float m_tuningFrequency;
53 int m_resampleQuality;
52 }; 54 };
53 55
54 #endif 56 #endif