author | conber <conber> | 2002-06-16 12:14:12 (UTC) |
---|---|---|
committer | conber <conber> | 2002-06-16 12:14:12 (UTC) |
commit | d8d1409d6663759fe0b4535d629c8d0231e8f568 (patch) (unidiff) | |
tree | fa219eb6028456bce12844dc615ceca788f9ce7e | |
parent | e3bc0fd26c14717107c3eccffa7d583611291ad1 (diff) | |
download | opie-d8d1409d6663759fe0b4535d629c8d0231e8f568.zip opie-d8d1409d6663759fe0b4535d629c8d0231e8f568.tar.gz opie-d8d1409d6663759fe0b4535d629c8d0231e8f568.tar.bz2 |
sound now on ipaq, too.
-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 | |||
@@ -1,7 +1,8 @@ | |||
1 | #include <qlayout.h> | 1 | #include <qlayout.h> |
2 | #include <qpixmap.h> | 2 | #include <qpixmap.h> |
3 | #include <qlabel.h> | 3 | #include <qlabel.h> |
4 | #include <qsound.h> | ||
4 | #include <qtimer.h> | 5 | #include <qtimer.h> |
5 | #include <qdir.h> | 6 | #include <qdir.h> |
6 | 7 | ||
7 | #include <qpe/qcopenvelope_qws.h> | 8 | #include <qpe/qcopenvelope_qws.h> |
@@ -18,8 +19,11 @@ | |||
18 | 19 | ||
19 | BenD::BenD(QWidget *parent, const char *name, WFlags fl) | 20 | BenD::BenD(QWidget *parent, const char *name, WFlags fl) |
20 | : QButton(parent, name, fl) | 21 | : QButton(parent, name, fl) |
21 | { | 22 | { |
23 | _zaurus = false; | ||
24 | if (QFile("/dev/sharp_buz").exists()) _zaurus = true; | ||
25 | |||
22 | _config = new Config("mail"); | 26 | _config = new Config("mail"); |
23 | _config->setGroup("Settings"); | 27 | _config->setGroup("Settings"); |
24 | 28 | ||
25 | QVBoxLayout *layout = new QVBoxLayout(this); | 29 | QVBoxLayout *layout = new QVBoxLayout(this); |
@@ -65,8 +69,11 @@ void BenD::slotCheck() | |||
65 | int newIntervalMs = _config->readNumEntry("CheckEvery", 5) * 60000; | 69 | int newIntervalMs = _config->readNumEntry("CheckEvery", 5) * 60000; |
66 | if (newIntervalMs != _intervalMs) { | 70 | if (newIntervalMs != _intervalMs) { |
67 | _intervalTimer->changeInterval(newIntervalMs); | 71 | _intervalTimer->changeInterval(newIntervalMs); |
68 | _intervalMs = newIntervalMs; | 72 | _intervalMs = newIntervalMs; |
73 | #ifndef QT_NO_DEBUG | ||
74 | qWarning("BenD: Detected interval change"); | ||
75 | #endif | ||
69 | } | 76 | } |
70 | 77 | ||
71 | QValueList<Account> acList = ConfigFile::getAccounts(); | 78 | QValueList<Account> acList = ConfigFile::getAccounts(); |
72 | QValueList<Account>::Iterator ot; | 79 | QValueList<Account>::Iterator ot; |
@@ -94,10 +101,14 @@ void BenD::slotIMAPStatus(IMAPResponse &response) | |||
94 | if (isHidden()) show(); | 101 | if (isHidden()) show(); |
95 | if (_config->readBoolEntry("BlinkLed", true)) | 102 | if (_config->readBoolEntry("BlinkLed", true)) |
96 | ZaurusStuff::blinkLedOn(); | 103 | ZaurusStuff::blinkLedOn(); |
97 | if (_config->readBoolEntry("PlaySound", false)) { | 104 | if (_config->readBoolEntry("PlaySound", false)) { |
98 | ZaurusStuff::buzzerOn(); | 105 | if (_zaurus) { |
99 | QTimer::singleShot(3000, this, SLOT(slotSoundOff())); | 106 | ZaurusStuff::buzzerOn(); |
107 | QTimer::singleShot(3000, this, SLOT(slotSoundOff())); | ||
108 | } else { | ||
109 | QSound::play(Resource::findSound("mail/newmail")); | ||
110 | } | ||
100 | } | 111 | } |
101 | } else { | 112 | } else { |
102 | if (!isHidden()) hide(); | 113 | if (!isHidden()) hide(); |
103 | if (!_ledOn) { | 114 | if (!_ledOn) { |
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 | |||
@@ -29,9 +29,9 @@ protected slots: | |||
29 | private: | 29 | private: |
30 | Config *_config; | 30 | Config *_config; |
31 | QTimer *_intervalTimer; | 31 | QTimer *_intervalTimer; |
32 | int _intervalMs; | 32 | int _intervalMs; |
33 | bool _ledOn; | 33 | bool _zaurus, _ledOn; |
34 | 34 | ||
35 | }; | 35 | }; |
36 | 36 | ||
37 | #endif | 37 | #endif |
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 | |||
@@ -251,9 +251,9 @@ | |||
251 | <cstring>playSound</cstring> | 251 | <cstring>playSound</cstring> |
252 | </property> | 252 | </property> |
253 | <property stdset="1"> | 253 | <property stdset="1"> |
254 | <name>text</name> | 254 | <name>text</name> |
255 | <string>Play sound (Zaurus only)</string> | 255 | <string>Play sound</string> |
256 | </property> | 256 | </property> |
257 | </widget> | 257 | </widget> |
258 | <widget row="2" column="0" > | 258 | <widget row="2" column="0" > |
259 | <class>QLabel</class> | 259 | <class>QLabel</class> |