summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/applet/bluezapplet.cpp15
-rw-r--r--noncore/net/opietooth/applet/bluezapplet.h4
2 files changed, 12 insertions, 7 deletions
diff --git a/noncore/net/opietooth/applet/bluezapplet.cpp b/noncore/net/opietooth/applet/bluezapplet.cpp
index 94e29c7..8bb7a93 100644
--- a/noncore/net/opietooth/applet/bluezapplet.cpp
+++ b/noncore/net/opietooth/applet/bluezapplet.cpp
@@ -59,21 +59,21 @@ namespace OpieTooth {
59 59
60 } 60 }
61 61
62 BluezApplet::~BluezApplet() { 62 BluezApplet::~BluezApplet() {
63 } 63 }
64 64
65 int BluezApplet::checkBluezStatus() { 65 bool BluezApplet::checkBluezStatus() {
66 if (btDevice) { 66 if (btDevice) {
67 if (btDevice->isLoaded() ) { 67 if (btDevice->isLoaded() ) {
68 return 1; 68 return true;
69 } else { 69 } else {
70 return 0; 70 return false;
71 } 71 }
72 } else { 72 } else {
73 return 0; 73 return false;
74 } 74 }
75 } 75 }
76 76
77 int BluezApplet::setBluezStatus(int c) { 77 int BluezApplet::setBluezStatus(int c) {
78 78
79 if (c == 1) { 79 if (c == 1) {
@@ -125,25 +125,30 @@ namespace OpieTooth {
125 QPoint p = mapToGlobal( QPoint(1, -menu->sizeHint().height()-1) ); 125 QPoint p = mapToGlobal( QPoint(1, -menu->sizeHint().height()-1) );
126 ret = menu->exec(p, 0); 126 ret = menu->exec(p, 0);
127 127
128 switch(ret) { 128 switch(ret) {
129 case 0: 129 case 0:
130 setBluezStatus(0); 130 setBluezStatus(0);
131 timerEvent(NULL);
131 break; 132 break;
132 case 1: 133 case 1:
133 setBluezStatus(1); 134 setBluezStatus(1);
135 timerEvent(NULL);
134 break; 136 break;
135 case 2: 137 case 2:
136 // start bluetoothmanager 138 // start bluetoothmanager
137 launchManager(); 139 launchManager();
140 timerEvent(NULL);
138 break; 141 break;
139 case 3: 142 case 3:
140 setBluezDiscoveryStatus(0); 143 setBluezDiscoveryStatus(0);
144 timerEvent(NULL);
141 break; 145 break;
142 case 4: 146 case 4:
143 setBluezDiscoveryStatus(1); 147 setBluezDiscoveryStatus(1);
148 timerEvent(NULL);
144 break; 149 break;
145 //case 7: 150 //case 7:
146 // With table of currently-detected devices. 151 // With table of currently-detected devices.
147 } 152 }
148 153
149 timerEvent(NULL); 154 timerEvent(NULL);
@@ -162,13 +167,13 @@ namespace OpieTooth {
162 167
163/** 168/**
164 * Refresh timer 169 * Refresh timer
165 * @param the timer event 170 * @param the timer event
166 */ 171 */
167 void BluezApplet::timerEvent( QTimerEvent * ) { 172 void BluezApplet::timerEvent( QTimerEvent * ) {
168 int oldactive = bluezactive; 173 bool oldactive = bluezactive;
169 int olddiscovery = bluezDiscoveryActive; 174 int olddiscovery = bluezDiscoveryActive;
170 175
171 bluezactive = checkBluezStatus(); 176 bluezactive = checkBluezStatus();
172 bluezDiscoveryActive = checkBluezDiscoveryStatus(); 177 bluezDiscoveryActive = checkBluezDiscoveryStatus();
173 178
174 if ((bluezactive != oldactive) || (bluezDiscoveryActive != olddiscovery)) { 179 if ((bluezactive != oldactive) || (bluezDiscoveryActive != olddiscovery)) {
diff --git a/noncore/net/opietooth/applet/bluezapplet.h b/noncore/net/opietooth/applet/bluezapplet.h
index da05a18..6a8a00e 100644
--- a/noncore/net/opietooth/applet/bluezapplet.h
+++ b/noncore/net/opietooth/applet/bluezapplet.h
@@ -47,24 +47,24 @@ namespace OpieTooth {
47 47
48public slots: 48public slots:
49 private: 49 private:
50 void mousePressEvent( QMouseEvent * ); 50 void mousePressEvent( QMouseEvent * );
51 void paintEvent( QPaintEvent* ); 51 void paintEvent( QPaintEvent* );
52 void launchManager(); 52 void launchManager();
53 int checkBluezStatus(); 53 bool checkBluezStatus();
54 int setBluezStatus(int); 54 int setBluezStatus(int);
55 int checkBluezDiscoveryStatus(); 55 int checkBluezDiscoveryStatus();
56 int setBluezDiscoveryStatus(int); 56 int setBluezDiscoveryStatus(int);
57 int sockfd; 57 int sockfd;
58 58
59 private: 59 private:
60 Device* btDevice; 60 Device* btDevice;
61 QPixmap bluezOnPixmap; 61 QPixmap bluezOnPixmap;
62 QPixmap bluezOffPixmap; 62 QPixmap bluezOffPixmap;
63 QPixmap bluezDiscoveryOnPixmap; 63 QPixmap bluezDiscoveryOnPixmap;
64 int bluezactive; 64 bool bluezactive;
65 int bluezDiscoveryActive; 65 int bluezDiscoveryActive;
66 66
67private slots: 67private slots:
68 68
69 69
70 }; 70 };