summaryrefslogtreecommitdiff
path: root/noncore/settings/sound/soundsettings.cpp
authorllornkcor <llornkcor>2002-06-29 14:00:23 (UTC)
committer llornkcor <llornkcor>2002-06-29 14:00:23 (UTC)
commitffc8b4587d6070abc82b22d03f0819d78c1ff9b0 (patch) (side-by-side diff)
tree44957940b51225710f924c4c7c811f6d86e85a65 /noncore/settings/sound/soundsettings.cpp
parentab5e280b6fd7349c8aa81ba0b235601a7559d3de (diff)
downloadopie-ffc8b4587d6070abc82b22d03f0819d78c1ff9b0.zip
opie-ffc8b4587d6070abc82b22d03f0819d78c1ff9b0.tar.gz
opie-ffc8b4587d6070abc82b22d03f0819d78c1ff9b0.tar.bz2
disable combos for devices that dont have this ability
Diffstat (limited to 'noncore/settings/sound/soundsettings.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/sound/soundsettings.cpp22
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
@@ -67,15 +67,25 @@ SoundSettings::SoundSettings( QWidget* parent, const char* objname, WFlags fl )
sampleRate->setCurrentItem(4);
stereoCheckBox->setChecked(cfg.readNumEntry("Stereo", 0)); //TODO hide if zaurus- mono only
+
+#if defined(QT_QWS_IPAQ) || defined(QT_QWS_EBX) //since ipaq and zaurus have particular
+ //devices
+ bool systemZaurus=FALSE;
struct utsname name; /* check for embedix kernel running on the zaurus*/
- if (uname(&name) != -1) {
+ if (uname(&name) != -1) {// TODO change this here,...
QString release=name.release;
-
- if( release.find("embedix",0,TRUE) !=-1)
- stereoCheckBox->hide();
+ if( release.find("embedix",0,TRUE) != -1) {
+ qDebug("IS System Zaurus");
+ systemZaurus=TRUE;
+ }
}
-// else
-// stereoCheckBox->hide();
+ if(!systemZaurus) {
+ stereoCheckBox->setChecked(TRUE);
+ }
+ stereoCheckBox->setEnabled(FALSE);
+ sixteenBitCheckBox->setEnabled(FALSE);
+#else
+#endif
int sRate=cfg.readNumEntry("SizeLimit", 30);
qDebug("%d",sRate);