summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/applet/bluezapplet.cpp
Unidiff
Diffstat (limited to 'noncore/net/opietooth/applet/bluezapplet.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opietooth/applet/bluezapplet.cpp51
1 files changed, 51 insertions, 0 deletions
diff --git a/noncore/net/opietooth/applet/bluezapplet.cpp b/noncore/net/opietooth/applet/bluezapplet.cpp
index 8925803..48698b6 100644
--- a/noncore/net/opietooth/applet/bluezapplet.cpp
+++ b/noncore/net/opietooth/applet/bluezapplet.cpp
@@ -54,33 +54,41 @@ using namespace Opie::Core;
54#include <device.h> 54#include <device.h>
55 55
56namespace OpieTooth { 56namespace OpieTooth {
57 57
58 BluezApplet::BluezApplet( QWidget *parent, const char *name ) : QWidget( parent, name ) { 58 BluezApplet::BluezApplet( QWidget *parent, const char *name ) : QWidget( parent, name ) {
59 setFixedHeight( AppLnk::smallIconSize() ); 59 setFixedHeight( AppLnk::smallIconSize() );
60 setFixedWidth( AppLnk::smallIconSize() ); 60 setFixedWidth( AppLnk::smallIconSize() );
61 bluezOnPixmap = Resource::loadImage( "bluetoothapplet/bluezon" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ); 61 bluezOnPixmap = Resource::loadImage( "bluetoothapplet/bluezon" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() );
62 bluezOffPixmap = Resource::loadImage( "bluetoothapplet/bluezoff" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ); 62 bluezOffPixmap = Resource::loadImage( "bluetoothapplet/bluezoff" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() );
63 //bluezDiscoveryOnPixmap = Resource::loadImage( "bluetoothapplet/magglass" )smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize()); 63 //bluezDiscoveryOnPixmap = Resource::loadImage( "bluetoothapplet/magglass" )smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize());
64 startTimer(4000); 64 startTimer(4000);
65 btDevice = 0; 65 btDevice = 0;
66 btManager = 0;
66 bluezactive = false; 67 bluezactive = false;
67 bluezDiscoveryActive = false; 68 bluezDiscoveryActive = false;
68 69
70 // TODO: determine whether this channel has to be closed at destruction time.
71 QCopChannel* chan = new QCopChannel("QPE/Bluetooth", this );
72 connect(chan, SIGNAL(received(const QCString&,const QByteArray&) ),
73 this, SLOT(slotMessage(const QCString&,const QByteArray&) ) );
69 } 74 }
70 75
71 BluezApplet::~BluezApplet() { 76 BluezApplet::~BluezApplet() {
72 if ( btDevice ) { 77 if ( btDevice ) {
73 delete btDevice; 78 delete btDevice;
74 } 79 }
80 if ( btManager ) {
81 delete btManager;
82 }
75 } 83 }
76 84
77int BluezApplet::position() 85int BluezApplet::position()
78{ 86{
79 return 6; 87 return 6;
80} 88}
81 89
82 90
83 bool BluezApplet::checkBluezStatus() { 91 bool BluezApplet::checkBluezStatus() {
84 if (btDevice) { 92 if (btDevice) {
85 if (btDevice->isLoaded() ) { 93 if (btDevice->isLoaded() ) {
86 return true; 94 return true;
@@ -109,27 +117,70 @@ int BluezApplet::position()
109 break; 117 break;
110 } 118 }
111 } else { 119 } else {
112 if ( btDevice ) { 120 if ( btDevice ) {
113 delete btDevice; 121 delete btDevice;
114 btDevice = 0; 122 btDevice = 0;
115 } 123 }
116 } 124 }
117 return 0; 125 return 0;
118 } 126 }
119 127
120 int BluezApplet::checkBluezDiscoveryStatus() { 128 int BluezApplet::checkBluezDiscoveryStatus() {
129 return bluezDiscoveryActive;
121 } 130 }
122 131
123 int BluezApplet::setBluezDiscoveryStatus(int d) { 132 int BluezApplet::setBluezDiscoveryStatus(int d) {
133 return bluezDiscoveryActive=d;
134 }
135
136 // FIXME mbhaynie
137 // receiver for QCopChannel("QPE/Bluetooth") messages.
138 void BluezApplet::slotMessage( const QCString& str, const QByteArray& )
139 {
140 if ( str == "enableBluetooth()") {
141 if (!checkBluezStatus()) {
142 setBluezStatus(1);
143 }
144 } else if ( str == "disableBluetooth()") {
145 if (checkBluezStatus()) {
146 // setBluezStatus(0);
147 }
148 } else if ( str == "listDevices()") {
149 if (!btManager)
150 {
151 btManager = new Manager("hci0");
152 connect( btManager, SIGNAL( foundDevices(const QString&,RemoteDevice::ValueList) ),
153 this, SLOT( fillList(const QString&,RemoteDevice::ValueList) ) ) ;
154 }
155
156 btManager->searchDevices();
157 }
158 }
159
160 // Once the hcitool scan is complete, report back.
161 void BluezApplet::fillList(const QString&, RemoteDevice::ValueList deviceList)
162 {
163 QCopEnvelope e("QPE/BluetoothBack", "devices(QStringMap)");
164
165 QStringList list;
166 QMap<QString, QString> btmap;
167
168 RemoteDevice::ValueList::Iterator it;
169 for( it = deviceList.begin(); it != deviceList.end(); ++it )
170 {
171 btmap[(*it).name()] = (*it).mac();
172 }
173
174 e << btmap;
124 } 175 }
125 176
126 void BluezApplet::mousePressEvent( QMouseEvent *) { 177 void BluezApplet::mousePressEvent( QMouseEvent *) {
127 178
128 QPopupMenu *menu = new QPopupMenu(); 179 QPopupMenu *menu = new QPopupMenu();
129 QPopupMenu *signal = new QPopupMenu(); 180 QPopupMenu *signal = new QPopupMenu();
130 int ret=0; 181 int ret=0;
131 182
132 /* Refresh active state */ 183 /* Refresh active state */
133 timerEvent( 0 ); 184 timerEvent( 0 );
134 185
135 186