-rw-r--r-- | core/applets/irdaapplet/irda.cpp | 34 | ||||
-rw-r--r-- | core/applets/irdaapplet/irda.h | 3 |
2 files changed, 37 insertions, 0 deletions
diff --git a/core/applets/irdaapplet/irda.cpp b/core/applets/irdaapplet/irda.cpp index c3ddff2..84c656f 100644 --- a/core/applets/irdaapplet/irda.cpp +++ b/core/applets/irdaapplet/irda.cpp | |||
@@ -2,6 +2,7 @@ | |||
2 | ** Copyright (C) 2002 David Woodhouse <dwmw2@infradead.org> | 2 | ** Copyright (C) 2002 David Woodhouse <dwmw2@infradead.org> |
3 | ** Max Reiss <harlekin@handhelds.org> [trivial stuff] | 3 | ** Max Reiss <harlekin@handhelds.org> [trivial stuff] |
4 | ** Robert Griebl <sandman@handhelds.org> | 4 | ** Robert Griebl <sandman@handhelds.org> |
5 | ** Holger Freyther <zecke@handhelds.org> QCOP Interface | ||
5 | ** | 6 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 7 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 8 | ** GNU General Public License version 2 as published by the Free Software |
@@ -13,6 +14,8 @@ | |||
13 | ** | 14 | ** |
14 | **********************************************************************/ | 15 | **********************************************************************/ |
15 | 16 | ||
17 | #include <qcopchannel_qws.h> | ||
18 | |||
16 | #include <qpe/qpeapplication.h> | 19 | #include <qpe/qpeapplication.h> |
17 | #include <qpe/resource.h> | 20 | #include <qpe/resource.h> |
18 | #include <qpe/ir.h> | 21 | #include <qpe/ir.h> |
@@ -54,6 +57,11 @@ IrdaApplet::IrdaApplet ( QWidget *parent, const char *name ) | |||
54 | m_receive_active = false; | 57 | m_receive_active = false; |
55 | m_receive_state_changed = false; | 58 | m_receive_state_changed = false; |
56 | m_popup = 0; | 59 | m_popup = 0; |
60 | m_wasOn = false; | ||
61 | |||
62 | QCopChannel* chan = new QCopChannel("QPE/IrDaApplet", this ); | ||
63 | connect(chan, SIGNAL(received(const QCString&,const QByteArray&) ), | ||
64 | this, SLOT(slotMessage(const QCString&, const QByteArray& ) ) ); | ||
57 | } | 65 | } |
58 | 66 | ||
59 | void IrdaApplet::show() | 67 | void IrdaApplet::show() |
@@ -311,3 +319,29 @@ void IrdaApplet::paintEvent ( QPaintEvent * ) | |||
311 | if ( m_receive_active ) | 319 | if ( m_receive_active ) |
312 | p. drawPixmap( 0, 1, m_receiveActivePixmap ); | 320 | p. drawPixmap( 0, 1, m_receiveActivePixmap ); |
313 | } | 321 | } |
322 | /* | ||
323 | * We know 3 calls | ||
324 | * a) enable | ||
325 | * b) disable | ||
326 | * a and b will temp enable the IrDa device and disable will disable it again if it wasn't on | ||
327 | * c) listDevices: We will return a list of known devices | ||
328 | */ | ||
329 | void IrdaApplet::slotMessage( const QCString& str, const QByteArray& ar ) { | ||
330 | if ( str == "enableIrda()") { | ||
331 | m_wasOn = checkIrdaStatus(); | ||
332 | if (!m_wasOn) | ||
333 | setIrdaStatus( true ); | ||
334 | }else if ( str == "disableIrda()") { | ||
335 | if (!m_wasOn) | ||
336 | setIrdaStatus( false ); | ||
337 | }else if ( str == "listDevices()") { | ||
338 | QCopEnvelope e("QPE/IrDaAppletBack", "devices(QStringList)"); | ||
339 | |||
340 | QStringList list; | ||
341 | QMap<QString, QString>::Iterator it; | ||
342 | for (it = m_devices.begin(); it != m_devices.end(); ++it ) | ||
343 | list << (*it); | ||
344 | |||
345 | e << list; | ||
346 | } | ||
347 | } | ||
diff --git a/core/applets/irdaapplet/irda.h b/core/applets/irdaapplet/irda.h index 1b5faa6..675f874 100644 --- a/core/applets/irdaapplet/irda.h +++ b/core/applets/irdaapplet/irda.h | |||
@@ -38,6 +38,7 @@ protected: | |||
38 | 38 | ||
39 | private slots: | 39 | private slots: |
40 | void popupTimeout ( ); | 40 | void popupTimeout ( ); |
41 | void slotMessage( const QCString& , const QByteArray& ); | ||
41 | 42 | ||
42 | private: | 43 | private: |
43 | void popup( QString message, QString icon = QString::null ); | 44 | void popup( QString message, QString icon = QString::null ); |
@@ -66,6 +67,8 @@ private: | |||
66 | int m_sockfd; | 67 | int m_sockfd; |
67 | 68 | ||
68 | QMap <QString, QString> m_devices; | 69 | QMap <QString, QString> m_devices; |
70 | |||
71 | bool m_wasOn; // if IrDa was enabled | ||
69 | }; | 72 | }; |
70 | 73 | ||
71 | 74 | ||