-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 | |||
@@ -66,17 +66,27 @@ SoundSettings::SoundSettings( QWidget* parent, const char* objname, WFlags fl ) | |||
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) |