comparison main/PreferencesDialog.h @ 263:9d47adc3e32d

* Add audio device selection to preferences * Add (not yet functional) insert, delete, edit buttons to data edit window * Add proper set methods for time fields in data edit window (using general sparse model base class)
author Chris Cannam
date Fri, 13 Jun 2008 21:09:43 +0000
parents 99fa3387dfef
children 15ce557e1bf8
comparison
equal deleted inserted replaced
262:f3df0494ae33 263:9d47adc3e32d
38 protected slots: 38 protected slots:
39 void windowTypeChanged(WindowType type); 39 void windowTypeChanged(WindowType type);
40 void spectrogramSmoothingChanged(int state); 40 void spectrogramSmoothingChanged(int state);
41 void propertyLayoutChanged(int layout); 41 void propertyLayoutChanged(int layout);
42 void tuningFrequencyChanged(double freq); 42 void tuningFrequencyChanged(double freq);
43 void audioDeviceChanged(int device);
43 void resampleQualityChanged(int quality); 44 void resampleQualityChanged(int quality);
44 void resampleOnLoadChanged(int state); 45 void resampleOnLoadChanged(int state);
45 void tempDirRootChanged(QString root); 46 void tempDirRootChanged(QString root);
46 void backgroundModeChanged(int mode); 47 void backgroundModeChanged(int mode);
47 void viewFontSizeChanged(int sz); 48 void viewFontSizeChanged(int sz);
61 62
62 WindowType m_windowType; 63 WindowType m_windowType;
63 int m_spectrogramSmoothing; 64 int m_spectrogramSmoothing;
64 int m_propertyLayout; 65 int m_propertyLayout;
65 float m_tuningFrequency; 66 float m_tuningFrequency;
67 int m_audioDevice;
66 int m_resampleQuality; 68 int m_resampleQuality;
67 bool m_resampleOnLoad; 69 bool m_resampleOnLoad;
68 QString m_tempDirRoot; 70 QString m_tempDirRoot;
69 int m_backgroundMode; 71 int m_backgroundMode;
70 int m_viewFontSize; 72 int m_viewFontSize;