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 | |||
@@ -69,11 +69,21 @@ SoundSettings::SoundSettings( QWidget* parent, const char* objname, WFlags fl ) | |||
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); |