author | llornkcor <llornkcor> | 2002-06-29 14:00:23 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-06-29 14:00:23 (UTC) |
commit | ffc8b4587d6070abc82b22d03f0819d78c1ff9b0 (patch) (unidiff) | |
tree | 44957940b51225710f924c4c7c811f6d86e85a65 | |
parent | ab5e280b6fd7349c8aa81ba0b235601a7559d3de (diff) | |
download | opie-ffc8b4587d6070abc82b22d03f0819d78c1ff9b0.zip opie-ffc8b4587d6070abc82b22d03f0819d78c1ff9b0.tar.gz opie-ffc8b4587d6070abc82b22d03f0819d78c1ff9b0.tar.bz2 |
disable combos for devices that dont have this ability
-rw-r--r-- | noncore/settings/sound/soundsettings.cpp | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/noncore/settings/sound/soundsettings.cpp b/noncore/settings/sound/soundsettings.cpp index 5cb59c5..6fea3ed 100644 --- a/noncore/settings/sound/soundsettings.cpp +++ b/noncore/settings/sound/soundsettings.cpp | |||
@@ -46,57 +46,67 @@ SoundSettings::SoundSettings( QWidget* parent, const char* objname, WFlags fl ) | |||
46 | Config config( "qpe"); | 46 | Config config( "qpe"); |
47 | config.setGroup( "Volume" ); | 47 | config.setGroup( "Volume" ); |
48 | volume->setValue(100-config.readNumEntry("VolumePercent")); | 48 | volume->setValue(100-config.readNumEntry("VolumePercent")); |
49 | mic->setValue(100-config.readNumEntry("Mic")); | 49 | mic->setValue(100-config.readNumEntry("Mic")); |
50 | // touchsound->setChecked(config.readBoolEntry("TouchSound")); | 50 | // touchsound->setChecked(config.readBoolEntry("TouchSound")); |
51 | // keysound->setChecked(config.readBoolEntry("KeySound")); | 51 | // keysound->setChecked(config.readBoolEntry("KeySound")); |
52 | Config cfg("Vmemo"); | 52 | Config cfg("Vmemo"); |
53 | connect( qApp,SIGNAL( aboutToQuit()),SLOT( cleanUp()) ); | 53 | connect( qApp,SIGNAL( aboutToQuit()),SLOT( cleanUp()) ); |
54 | AlertCheckBox->setChecked(cfg.readBoolEntry("Alert")); | 54 | AlertCheckBox->setChecked(cfg.readBoolEntry("Alert")); |
55 | 55 | ||
56 | cfg.setGroup("Record"); | 56 | cfg.setGroup("Record"); |
57 | int rate=config.readNumEntry("SampleRate", 22050); | 57 | int rate=config.readNumEntry("SampleRate", 22050); |
58 | if(rate == 8000) | 58 | if(rate == 8000) |
59 | sampleRate->setCurrentItem(0); | 59 | sampleRate->setCurrentItem(0); |
60 | else if(rate == 11025) | 60 | else if(rate == 11025) |
61 | sampleRate->setCurrentItem(1); | 61 | sampleRate->setCurrentItem(1); |
62 | else if(rate == 22050) | 62 | else if(rate == 22050) |
63 | sampleRate->setCurrentItem(2); | 63 | sampleRate->setCurrentItem(2); |
64 | else if(rate == 33075) | 64 | else if(rate == 33075) |
65 | sampleRate->setCurrentItem(3); | 65 | sampleRate->setCurrentItem(3); |
66 | else if(rate==44100) | 66 | else if(rate==44100) |
67 | sampleRate->setCurrentItem(4); | 67 | sampleRate->setCurrentItem(4); |
68 | 68 | ||
69 | stereoCheckBox->setChecked(cfg.readNumEntry("Stereo", 0)); //TODO hide if zaurus- mono only | 69 | stereoCheckBox->setChecked(cfg.readNumEntry("Stereo", 0)); //TODO hide if zaurus- mono only |
70 | |||
71 | #if defined(QT_QWS_IPAQ) || defined(QT_QWS_EBX) //since ipaq and zaurus have particular | ||
72 | //devices | ||
73 | bool systemZaurus=FALSE; | ||
70 | struct utsname name; /* check for embedix kernel running on the zaurus*/ | 74 | struct utsname name; /* check for embedix kernel running on the zaurus*/ |
71 | if (uname(&name) != -1) { | 75 | if (uname(&name) != -1) {// TODO change this here,... |
72 | QString release=name.release; | 76 | QString release=name.release; |
73 | 77 | if( release.find("embedix",0,TRUE) != -1) { | |
74 | if( release.find("embedix",0,TRUE) !=-1) | 78 | qDebug("IS System Zaurus"); |
75 | stereoCheckBox->hide(); | 79 | systemZaurus=TRUE; |
80 | } | ||
76 | } | 81 | } |
77 | // else | 82 | if(!systemZaurus) { |
78 | // stereoCheckBox->hide(); | 83 | stereoCheckBox->setChecked(TRUE); |
84 | } | ||
85 | stereoCheckBox->setEnabled(FALSE); | ||
86 | sixteenBitCheckBox->setEnabled(FALSE); | ||
87 | #else | ||
88 | #endif | ||
79 | int sRate=cfg.readNumEntry("SizeLimit", 30); | 89 | int sRate=cfg.readNumEntry("SizeLimit", 30); |
80 | qDebug("%d",sRate); | 90 | qDebug("%d",sRate); |
81 | 91 | ||
82 | if(sRate ==30) | 92 | if(sRate ==30) |
83 | timeLimitComboBox->setCurrentItem(0); | 93 | timeLimitComboBox->setCurrentItem(0); |
84 | else if(sRate==20) | 94 | else if(sRate==20) |
85 | timeLimitComboBox->setCurrentItem(1); | 95 | timeLimitComboBox->setCurrentItem(1); |
86 | else if(sRate == 15) | 96 | else if(sRate == 15) |
87 | timeLimitComboBox->setCurrentItem(2); | 97 | timeLimitComboBox->setCurrentItem(2); |
88 | else if(sRate == 10) | 98 | else if(sRate == 10) |
89 | timeLimitComboBox->setCurrentItem(3); | 99 | timeLimitComboBox->setCurrentItem(3); |
90 | else | 100 | else |
91 | timeLimitComboBox->setCurrentItem(4); | 101 | timeLimitComboBox->setCurrentItem(4); |
92 | 102 | ||
93 | 103 | ||
94 | sixteenBitCheckBox->setChecked(cfg.readNumEntry("SixteenBit", 1)); | 104 | sixteenBitCheckBox->setChecked(cfg.readNumEntry("SixteenBit", 1)); |
95 | 105 | ||
96 | cfg.setGroup("Defaults"); | 106 | cfg.setGroup("Defaults"); |
97 | keyComboBox->setCurrentItem(cfg.readNumEntry("toggleKey") ); | 107 | keyComboBox->setCurrentItem(cfg.readNumEntry("toggleKey") ); |
98 | 108 | ||
99 | updateStorageCombo(); | 109 | updateStorageCombo(); |
100 | 110 | ||
101 | connect(volume, SIGNAL(valueChanged(int)), this, SLOT(setVolume(int))); | 111 | connect(volume, SIGNAL(valueChanged(int)), this, SLOT(setVolume(int))); |
102 | connect(mic, SIGNAL(valueChanged(int)), this, SLOT(setMic(int))); | 112 | connect(mic, SIGNAL(valueChanged(int)), this, SLOT(setMic(int))); |