author | zecke <zecke> | 2003-02-16 10:01:34 (UTC) |
---|---|---|
committer | zecke <zecke> | 2003-02-16 10:01:34 (UTC) |
commit | f1737ebd1afc35528c2452f6a281039c39a28f1f (patch) (side-by-side diff) | |
tree | 4172f2e55f7986c52562bf152b0379ede66712a4 | |
parent | 68675728278f9d47b200e6dd635d3bc1f524b5bf (diff) | |
download | opie-f1737ebd1afc35528c2452f6a281039c39a28f1f.zip opie-f1737ebd1afc35528c2452f6a281039c39a28f1f.tar.gz opie-f1737ebd1afc35528c2452f6a281039c39a28f1f.tar.bz2 |
Add some QCOP methods for the new OBEX dialog
-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 @@ ** Copyright (C) 2002 David Woodhouse <dwmw2@infradead.org> ** Max Reiss <harlekin@handhelds.org> [trivial stuff] ** Robert Griebl <sandman@handhelds.org> +** Holger Freyther <zecke@handhelds.org> QCOP Interface ** ** This file may be distributed and/or modified under the terms of the ** GNU General Public License version 2 as published by the Free Software @@ -13,6 +14,8 @@ ** **********************************************************************/ +#include <qcopchannel_qws.h> + #include <qpe/qpeapplication.h> #include <qpe/resource.h> #include <qpe/ir.h> @@ -54,6 +57,11 @@ IrdaApplet::IrdaApplet ( QWidget *parent, const char *name ) m_receive_active = false; m_receive_state_changed = false; m_popup = 0; + m_wasOn = false; + + QCopChannel* chan = new QCopChannel("QPE/IrDaApplet", this ); + connect(chan, SIGNAL(received(const QCString&,const QByteArray&) ), + this, SLOT(slotMessage(const QCString&, const QByteArray& ) ) ); } void IrdaApplet::show() @@ -311,3 +319,29 @@ void IrdaApplet::paintEvent ( QPaintEvent * ) if ( m_receive_active ) p. drawPixmap( 0, 1, m_receiveActivePixmap ); } +/* + * We know 3 calls + * a) enable + * b) disable + * a and b will temp enable the IrDa device and disable will disable it again if it wasn't on + * c) listDevices: We will return a list of known devices + */ +void IrdaApplet::slotMessage( const QCString& str, const QByteArray& ar ) { + if ( str == "enableIrda()") { + m_wasOn = checkIrdaStatus(); + if (!m_wasOn) + setIrdaStatus( true ); + }else if ( str == "disableIrda()") { + if (!m_wasOn) + setIrdaStatus( false ); + }else if ( str == "listDevices()") { + QCopEnvelope e("QPE/IrDaAppletBack", "devices(QStringList)"); + + QStringList list; + QMap<QString, QString>::Iterator it; + for (it = m_devices.begin(); it != m_devices.end(); ++it ) + list << (*it); + + e << list; + } +} 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: private slots: void popupTimeout ( ); + void slotMessage( const QCString& , const QByteArray& ); private: void popup( QString message, QString icon = QString::null ); @@ -66,6 +67,8 @@ private: int m_sockfd; QMap <QString, QString> m_devices; + + bool m_wasOn; // if IrDa was enabled }; |