author | harlekin <harlekin> | 2002-06-24 21:05:01 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-06-24 21:05:01 (UTC) |
commit | 67b1be897a8c02b70b6e0805ff0c5ae19146905c (patch) (unidiff) | |
tree | 02f0e45847959560f1912a06d31f5895618edc88 | |
parent | 2751bb111d21a5672c7caa7a6c2c45d14a642dbd (diff) | |
download | opie-67b1be897a8c02b70b6e0805ff0c5ae19146905c.zip opie-67b1be897a8c02b70b6e0805ff0c5ae19146905c.tar.gz opie-67b1be897a8c02b70b6e0805ff0c5ae19146905c.tar.bz2 |
fixed a segfault if a device is discovered on opie start and added sounds
-rw-r--r-- | core/applets/irdaapplet/irda.cpp | 24 | ||||
-rw-r--r-- | core/applets/irdaapplet/irda.h | 3 | ||||
-rw-r--r-- | core/applets/irdaapplet/irdaapplet.pro | 31 | ||||
-rw-r--r-- | core/applets/irdaapplet/opie-irdaapplet.control | 2 |
4 files changed, 34 insertions, 26 deletions
diff --git a/core/applets/irdaapplet/irda.cpp b/core/applets/irdaapplet/irda.cpp index c0f11c0..42bed5e 100644 --- a/core/applets/irdaapplet/irda.cpp +++ b/core/applets/irdaapplet/irda.cpp | |||
@@ -44,6 +44,7 @@ | |||
44 | #include <qtimer.h> | 44 | #include <qtimer.h> |
45 | #include <qtextstream.h> | 45 | #include <qtextstream.h> |
46 | #include <qpopupmenu.h> | 46 | #include <qpopupmenu.h> |
47 | #include <qsound.h> | ||
47 | 48 | ||
48 | #include <net/if.h> | 49 | #include <net/if.h> |
49 | #include <netinet/in.h> | 50 | #include <netinet/in.h> |
@@ -64,12 +65,15 @@ IrdaApplet::IrdaApplet( QWidget *parent, const char *name ) | |||
64 | irdaDiscoveryOnPixmap = Resource::loadPixmap( "irdaapplet/magglass" ); | 65 | irdaDiscoveryOnPixmap = Resource::loadPixmap( "irdaapplet/magglass" ); |
65 | receiveActivePixmap = Resource::loadPixmap("irdaapplet/receive"); | 66 | receiveActivePixmap = Resource::loadPixmap("irdaapplet/receive"); |
66 | receiveActive = false; | 67 | receiveActive = false; |
67 | startTimer(5000); | ||
68 | timerEvent(NULL); | ||
69 | popupMenu = 0; | 68 | popupMenu = 0; |
70 | devicesAvailable.setAutoDelete(TRUE); | 69 | devicesAvailable.setAutoDelete(TRUE); |
71 | } | 70 | } |
72 | 71 | ||
72 | void IrdaApplet::show() { | ||
73 | QWidget::show(); | ||
74 | startTimer(2000); | ||
75 | } | ||
76 | |||
73 | IrdaApplet::~IrdaApplet() { | 77 | IrdaApplet::~IrdaApplet() { |
74 | close(sockfd); | 78 | close(sockfd); |
75 | if( popupMenu ) { delete popupMenu; } | 79 | if( popupMenu ) { delete popupMenu; } |
@@ -206,15 +210,16 @@ void IrdaApplet::showDiscovered() { | |||
206 | } | 210 | } |
207 | 211 | ||
208 | for(QStringList::Iterator line=list.begin(); line!=list.end(); line++) { | 212 | for(QStringList::Iterator line=list.begin(); line!=list.end(); line++) { |
209 | qDebug( (*line) ); | 213 | // qDebug( (*line) ); |
210 | if( (*line).startsWith("nickname:") ){ | 214 | if( (*line).startsWith("nickname:") ){ |
211 | discoveredDevice = (*line).mid(((*line).find(':'))+2,(*line).find(',')-(*line).find(':')-2); | 215 | discoveredDevice = (*line).mid(((*line).find(':'))+2,(*line).find(',')-(*line).find(':')-2); |
212 | deviceAddr = (*line).mid( (*line).find( "daddr:" )+9, 8 ); | 216 | deviceAddr = (*line).mid( (*line).find( "daddr:" )+9, 8 ); |
213 | 217 | ||
214 | qDebug(discoveredDevice + "(" + deviceAddr + ")"); | 218 | // qDebug(discoveredDevice + "(" + deviceAddr + ")"); |
215 | 219 | ||
216 | if( ! devicesAvailable.find(deviceAddr) ) { | 220 | if( ! devicesAvailable.find(deviceAddr) ) { |
217 | popup( tr("Found:") + " " + discoveredDevice ); | 221 | popup( tr("Found:") + " " + discoveredDevice ); |
222 | QSound::play(Resource::findSound("irdaapplet/irdaon")); | ||
218 | qcopsend = TRUE; | 223 | qcopsend = TRUE; |
219 | } | 224 | } |
220 | devicesAvailable.replace( deviceAddr, new QString(discoveredDevice) ); | 225 | devicesAvailable.replace( deviceAddr, new QString(discoveredDevice) ); |
@@ -224,11 +229,12 @@ void IrdaApplet::showDiscovered() { | |||
224 | 229 | ||
225 | it.toFirst(); | 230 | it.toFirst(); |
226 | while ( it.current() ) { | 231 | while ( it.current() ) { |
227 | qDebug("IrdaMon: delete " + it.currentKey() + "=" + *devicesAvailable[it.currentKey()] + "?"); | 232 | // qDebug("IrdaMon: delete " + it.currentKey() + "=" + *devicesAvailable[it.currentKey()] + "?"); |
228 | if ( (*it.current()).left(3) == "+++" ) { | 233 | if ( (*it.current()).left(3) == "+++" ) { |
229 | popup( tr("Lost:") + " " + (*devicesAvailable[it.currentKey()]).mid(3) ); | 234 | popup( tr("Lost:") + " " + (*devicesAvailable[it.currentKey()]).mid(3) ); |
235 | QSound::play(Resource::findSound("irdaapplet/irdaoff")); | ||
230 | devicesAvailable.remove( it.currentKey() ); | 236 | devicesAvailable.remove( it.currentKey() ); |
231 | qDebug("IrdaMon: delete " + it.currentKey() + "!"); | 237 | // qDebug("IrdaMon: delete " + it.currentKey() + "!"); |
232 | qcopsend = TRUE; | 238 | qcopsend = TRUE; |
233 | } | 239 | } |
234 | ++it; | 240 | ++it; |
@@ -252,7 +258,6 @@ void IrdaApplet::mousePressEvent( QMouseEvent *) { | |||
252 | 258 | ||
253 | if (irdaactive && devicesAvailable.count() > 0) { | 259 | if (irdaactive && devicesAvailable.count() > 0) { |
254 | menu->insertItem( tr("Discovered Device:"), 9); | 260 | menu->insertItem( tr("Discovered Device:"), 9); |
255 | |||
256 | QDictIterator<QString> it( devicesAvailable ); | 261 | QDictIterator<QString> it( devicesAvailable ); |
257 | while ( it.current() ) { | 262 | while ( it.current() ) { |
258 | menu->insertItem( *devicesAvailable[it.currentKey()]); | 263 | menu->insertItem( *devicesAvailable[it.currentKey()]); |
@@ -316,9 +321,6 @@ void IrdaApplet::mousePressEvent( QMouseEvent *) { | |||
316 | timerEvent(NULL); | 321 | timerEvent(NULL); |
317 | break; | 322 | break; |
318 | } | 323 | } |
319 | case 6: | ||
320 | qDebug("FIXME: Bring up pretty menu...\n"); | ||
321 | // With table of currently-detected devices. | ||
322 | } | 324 | } |
323 | delete menu; // Can somebody explain why use a QPopupMenu* and not QPopupMenu nor QAction. with out delete we will leak cause QPopupMenu doesn't have a parent in this case | 325 | delete menu; // Can somebody explain why use a QPopupMenu* and not QPopupMenu nor QAction. with out delete we will leak cause QPopupMenu doesn't have a parent in this case |
324 | } | 326 | } |
@@ -349,7 +351,7 @@ void IrdaApplet::timerEvent( QTimerEvent * ) { | |||
349 | 351 | ||
350 | void IrdaApplet::paintEvent( QPaintEvent* ) { | 352 | void IrdaApplet::paintEvent( QPaintEvent* ) { |
351 | QPainter p(this); | 353 | QPainter p(this); |
352 | qDebug("paint irda pixmap"); | 354 | // qDebug("paint irda pixmap"); |
353 | 355 | ||
354 | p.eraseRect ( 0, 0, this->width(), this->height() ); | 356 | p.eraseRect ( 0, 0, this->width(), this->height() ); |
355 | if (irdaactive > 0) { | 357 | if (irdaactive > 0) { |
diff --git a/core/applets/irdaapplet/irda.h b/core/applets/irdaapplet/irda.h index 7b37847..e878946 100644 --- a/core/applets/irdaapplet/irda.h +++ b/core/applets/irdaapplet/irda.h | |||
@@ -47,6 +47,9 @@ private: | |||
47 | void showDiscovered(); | 47 | void showDiscovered(); |
48 | int sockfd; | 48 | int sockfd; |
49 | 49 | ||
50 | public slots: | ||
51 | void show(); | ||
52 | |||
50 | private slots: | 53 | private slots: |
51 | void popupTimeout(); | 54 | void popupTimeout(); |
52 | 55 | ||
diff --git a/core/applets/irdaapplet/irdaapplet.pro b/core/applets/irdaapplet/irdaapplet.pro index 035b0c1..47267f7 100644 --- a/core/applets/irdaapplet/irdaapplet.pro +++ b/core/applets/irdaapplet/irdaapplet.pro | |||
@@ -9,17 +9,20 @@ DEPENDPATH += ../$(OPIEDIR)/include | |||
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | VERSION = 1.0.0 | 10 | VERSION = 1.0.0 |
11 | 11 | ||
12 | TRANSLATIONS = ../../i18n/de/libirdaapplet.ts | 12 | |
13 | TRANSLATIONS += ../../i18n/en/libirdaapplet.ts | 13 | |
14 | TRANSLATIONS += ../../i18n/es/libirdaapplet.ts | 14 | TRANSLATIONS = ../../../i18n/de/libirdaapplet.ts |
15 | TRANSLATIONS += ../../i18n/fr/libirdaapplet.ts | 15 | TRANSLATIONS += ../../../i18n/en/libirdaapplet.ts |
16 | TRANSLATIONS += ../../i18n/hu/libirdaapplet.ts | 16 | TRANSLATIONS += ../../../i18n/es/libirdaapplet.ts |
17 | TRANSLATIONS += ../../i18n/ja/libirdaapplet.ts | 17 | TRANSLATIONS += ../../../i18n/fr/libirdaapplet.ts |
18 | TRANSLATIONS += ../../i18n/ko/libirdaapplet.ts | 18 | TRANSLATIONS += ../../../i18n/hu/libirdaapplet.ts |
19 | TRANSLATIONS += ../../i18n/no/libirdaapplet.ts | 19 | TRANSLATIONS += ../../../i18n/ja/libirdaapplet.ts |
20 | TRANSLATIONS += ../../i18n/pl/libirdaapplet.ts | 20 | TRANSLATIONS += ../../../i18n/ko/libirdaapplet.ts |
21 | TRANSLATIONS += ../../i18n/pt/libirdaapplet.ts | 21 | TRANSLATIONS += ../../../i18n/no/libirdaapplet.ts |
22 | TRANSLATIONS += ../../i18n/pt_BR/libirdaapplet.ts | 22 | TRANSLATIONS += ../../../i18n/pl/libirdaapplet.ts |
23 | TRANSLATIONS += ../../i18n/sl/libirdaapplet.ts | 23 | TRANSLATIONS += ../../../i18n/pt/libirdaapplet.ts |
24 | TRANSLATIONS += ../../i18n/zh_CN/libirdaapplet.ts | 24 | TRANSLATIONS += ../../../i18n/pt_BR/libirdaapplet.ts |
25 | TRANSLATIONS += ../../i18n/zh_TW/libirdaapplet.ts | 25 | TRANSLATIONS += ../../../i18n/sl/libirdaapplet.ts |
26 | TRANSLATIONS += ../../../i18n/zh_CN/libirdaapplet.ts | ||
27 | TRANSLATIONS += ../../../i18n/zh_TW/libirdaapplet.ts | ||
28 | |||
diff --git a/core/applets/irdaapplet/opie-irdaapplet.control b/core/applets/irdaapplet/opie-irdaapplet.control index 85c3386..5b901de 100644 --- a/core/applets/irdaapplet/opie-irdaapplet.control +++ b/core/applets/irdaapplet/opie-irdaapplet.control | |||
@@ -1,4 +1,4 @@ | |||
1 | Files: plugins/applets/libirdaapplet.so* pics/irdaapplet/* | 1 | Files: plugins/applets/libirdaapplet.so* pics/irdaapplet/* sounds/irdaapplet/*.wav |
2 | Priority: optional | 2 | Priority: optional |
3 | Section: opie/system | 3 | Section: opie/system |
4 | Maintainer: David Woodhouse <dwmw2@infradead.org> | 4 | Maintainer: David Woodhouse <dwmw2@infradead.org> |