-rw-r--r-- | noncore/unsupported/mail2/bend/bend.cpp | 15 | ||||
-rw-r--r-- | noncore/unsupported/mail2/bend/bend.h | 2 | ||||
-rw-r--r-- | noncore/unsupported/mail2/configdiagbase.ui | 2 |
3 files changed, 15 insertions, 4 deletions
diff --git a/noncore/unsupported/mail2/bend/bend.cpp b/noncore/unsupported/mail2/bend/bend.cpp index b4da3ac..fe3b736 100644 --- a/noncore/unsupported/mail2/bend/bend.cpp +++ b/noncore/unsupported/mail2/bend/bend.cpp @@ -2,4 +2,5 @@ #include <qpixmap.h> #include <qlabel.h> +#include <qsound.h> #include <qtimer.h> #include <qdir.h> @@ -20,4 +21,7 @@ BenD::BenD(QWidget *parent, const char *name, WFlags fl) : QButton(parent, name, fl) { + _zaurus = false; + if (QFile("/dev/sharp_buz").exists()) _zaurus = true; + _config = new Config("mail"); _config->setGroup("Settings"); @@ -67,4 +71,7 @@ void BenD::slotCheck() _intervalTimer->changeInterval(newIntervalMs); _intervalMs = newIntervalMs; +#ifndef QT_NO_DEBUG + qWarning("BenD: Detected interval change"); +#endif } @@ -96,6 +103,10 @@ void BenD::slotIMAPStatus(IMAPResponse &response) ZaurusStuff::blinkLedOn(); if (_config->readBoolEntry("PlaySound", false)) { - ZaurusStuff::buzzerOn(); - QTimer::singleShot(3000, this, SLOT(slotSoundOff())); + if (_zaurus) { + ZaurusStuff::buzzerOn(); + QTimer::singleShot(3000, this, SLOT(slotSoundOff())); + } else { + QSound::play(Resource::findSound("mail/newmail")); + } } } else { diff --git a/noncore/unsupported/mail2/bend/bend.h b/noncore/unsupported/mail2/bend/bend.h index cf50bc5..7972929 100644 --- a/noncore/unsupported/mail2/bend/bend.h +++ b/noncore/unsupported/mail2/bend/bend.h @@ -31,5 +31,5 @@ private: QTimer *_intervalTimer; int _intervalMs; - bool _ledOn; + bool _zaurus, _ledOn; }; diff --git a/noncore/unsupported/mail2/configdiagbase.ui b/noncore/unsupported/mail2/configdiagbase.ui index 754458a..dfe0db8 100644 --- a/noncore/unsupported/mail2/configdiagbase.ui +++ b/noncore/unsupported/mail2/configdiagbase.ui @@ -253,5 +253,5 @@ <property stdset="1"> <name>text</name> - <string>Play sound (Zaurus only)</string> + <string>Play sound</string> </property> </widget> |