-rw-r--r-- | core/applets/irdaapplet/irda.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/core/applets/irdaapplet/irda.cpp b/core/applets/irdaapplet/irda.cpp index 5b23330..d986df4 100644 --- a/core/applets/irdaapplet/irda.cpp +++ b/core/applets/irdaapplet/irda.cpp | |||
@@ -6,276 +6,279 @@ | |||
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** 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 | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | **********************************************************************/ | 14 | **********************************************************************/ |
15 | 15 | ||
16 | #include "irda.h" | 16 | #include "irda.h" |
17 | #include <qapplication.h> | 17 | #include <qapplication.h> |
18 | #include <stdlib.h> | 18 | #include <stdlib.h> |
19 | 19 | ||
20 | 20 | ||
21 | #include <qpe/resource.h> | 21 | #include <qpe/resource.h> |
22 | #include <qpe/qpeapplication.h> | 22 | #include <qpe/qpeapplication.h> |
23 | #include <qpe/timestring.h> | 23 | #include <qpe/timestring.h> |
24 | #include <qpe/resource.h> | 24 | #include <qpe/resource.h> |
25 | #include <qpe/config.h> | 25 | #include <qpe/config.h> |
26 | #include <qpe/applnk.h> | 26 | #include <qpe/applnk.h> |
27 | #include <qpe/config.h> | 27 | #include <qpe/config.h> |
28 | #include <qpe/ir.h> | 28 | #include <qpe/ir.h> |
29 | #include <qpe/qcopenvelope_qws.h> | 29 | #include <qpe/qcopenvelope_qws.h> |
30 | 30 | ||
31 | #include <qdir.h> | 31 | #include <qdir.h> |
32 | #include <qfileinfo.h> | 32 | #include <qfileinfo.h> |
33 | #include <qpoint.h> | 33 | #include <qpoint.h> |
34 | #include <qpushbutton.h> | 34 | #include <qpushbutton.h> |
35 | #include <qpainter.h> | 35 | #include <qpainter.h> |
36 | #include <qcombobox.h> | 36 | #include <qcombobox.h> |
37 | #include <qspinbox.h> | 37 | #include <qspinbox.h> |
38 | #include <qslider.h> | 38 | #include <qslider.h> |
39 | #include <qlayout.h> | 39 | #include <qlayout.h> |
40 | #include <qframe.h> | 40 | #include <qframe.h> |
41 | #include <qpixmap.h> | 41 | #include <qpixmap.h> |
42 | #include <qstring.h> | 42 | #include <qstring.h> |
43 | #include <qfile.h> | 43 | #include <qfile.h> |
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 | 47 | ||
48 | #include <net/if.h> | 48 | #include <net/if.h> |
49 | #include <netinet/in.h> | 49 | #include <netinet/in.h> |
50 | #include <sys/types.h> | 50 | #include <sys/types.h> |
51 | #include <sys/socket.h> | 51 | #include <sys/socket.h> |
52 | #include <sys/ioctl.h> | 52 | #include <sys/ioctl.h> |
53 | 53 | ||
54 | 54 | ||
55 | //=========================================================================== | 55 | //=========================================================================== |
56 | 56 | ||
57 | IrdaApplet::IrdaApplet( QWidget *parent, const char *name ) | 57 | IrdaApplet::IrdaApplet( QWidget *parent, const char *name ) |
58 | : QWidget( parent, name ) { | 58 | : QWidget( parent, name ) { |
59 | setFixedHeight( 18 ); | 59 | setFixedHeight( 18 ); |
60 | setFixedWidth( 14 ); | 60 | setFixedWidth( 14 ); |
61 | sockfd = socket(PF_INET, SOCK_DGRAM, IPPROTO_IP); | 61 | sockfd = socket(PF_INET, SOCK_DGRAM, IPPROTO_IP); |
62 | irdaOnPixmap = Resource::loadPixmap( "irdaapplet/irdaon" ); | 62 | irdaOnPixmap = Resource::loadPixmap( "irdaapplet/irdaon" ); |
63 | irdaOffPixmap = Resource::loadPixmap( "irdaapplet/irdaoff" ); | 63 | irdaOffPixmap = Resource::loadPixmap( "irdaapplet/irdaoff" ); |
64 | irdaDiscoveryOnPixmap = Resource::loadPixmap( "irdaapplet/magglass" ); | 64 | irdaDiscoveryOnPixmap = Resource::loadPixmap( "irdaapplet/magglass" ); |
65 | receiveActivePixmap = Resource::loadPixmap("irdaapplet/receive"); | 65 | receiveActivePixmap = Resource::loadPixmap("irdaapplet/receive"); |
66 | receiveActive = false; | 66 | receiveActive = false; |
67 | startTimer(5000); | 67 | startTimer(5000); |
68 | timerEvent(NULL); | 68 | timerEvent(NULL); |
69 | } | 69 | } |
70 | 70 | ||
71 | IrdaApplet::~IrdaApplet() { | 71 | IrdaApplet::~IrdaApplet() { |
72 | close(sockfd); | 72 | close(sockfd); |
73 | } | 73 | } |
74 | 74 | ||
75 | int IrdaApplet::checkIrdaStatus() { | 75 | int IrdaApplet::checkIrdaStatus() { |
76 | struct ifreq ifr; | 76 | struct ifreq ifr; |
77 | 77 | ||
78 | strcpy(ifr.ifr_name, "irda0"); | 78 | strcpy(ifr.ifr_name, "irda0"); |
79 | 79 | ||
80 | if (ioctl(sockfd, SIOCGIFFLAGS, &ifr)) | 80 | if (ioctl(sockfd, SIOCGIFFLAGS, &ifr)) |
81 | return -1; | 81 | return -1; |
82 | 82 | ||
83 | return (ifr.ifr_flags & IFF_UP)?1:0; | 83 | return (ifr.ifr_flags & IFF_UP)?1:0; |
84 | } | 84 | } |
85 | 85 | ||
86 | int IrdaApplet::setIrdaStatus(int c) { | 86 | int IrdaApplet::setIrdaStatus(int c) { |
87 | struct ifreq ifr; | 87 | struct ifreq ifr; |
88 | 88 | ||
89 | strcpy(ifr.ifr_name, "irda0"); | 89 | strcpy(ifr.ifr_name, "irda0"); |
90 | 90 | ||
91 | if (ioctl(sockfd, SIOCGIFFLAGS, &ifr)) | 91 | if (ioctl(sockfd, SIOCGIFFLAGS, &ifr)) |
92 | return -1; | 92 | return -1; |
93 | 93 | ||
94 | if (c) | 94 | if (c) |
95 | ifr.ifr_flags |= IFF_UP; | 95 | ifr.ifr_flags |= IFF_UP; |
96 | else | 96 | else |
97 | ifr.ifr_flags &= ~IFF_UP; | 97 | ifr.ifr_flags &= ~IFF_UP; |
98 | 98 | ||
99 | if (ioctl(sockfd, SIOCSIFFLAGS, &ifr)) | 99 | if (ioctl(sockfd, SIOCSIFFLAGS, &ifr)) |
100 | return -1; | 100 | return -1; |
101 | 101 | ||
102 | return 0; | 102 | return 0; |
103 | } | 103 | } |
104 | 104 | ||
105 | int IrdaApplet::checkIrdaDiscoveryStatus() { | 105 | int IrdaApplet::checkIrdaDiscoveryStatus() { |
106 | 106 | ||
107 | QFile discovery("/proc/sys/net/irda/discovery"); | 107 | QFile discovery("/proc/sys/net/irda/discovery"); |
108 | 108 | ||
109 | QString streamIn = "0"; | 109 | QString streamIn = "0"; |
110 | 110 | ||
111 | if (discovery.open(IO_ReadOnly) ) { | 111 | if (discovery.open(IO_ReadOnly) ) { |
112 | QTextStream stream ( &discovery ); | 112 | QTextStream stream ( &discovery ); |
113 | streamIn = stream.read(); | 113 | streamIn = stream.read(); |
114 | } | 114 | } |
115 | 115 | ||
116 | discovery.close(); | 116 | discovery.close(); |
117 | 117 | ||
118 | return( streamIn.toInt() ); | 118 | return( streamIn.toInt() ); |
119 | } | 119 | } |
120 | 120 | ||
121 | 121 | ||
122 | int IrdaApplet::setIrdaDiscoveryStatus(int d) { | 122 | int IrdaApplet::setIrdaDiscoveryStatus(int d) { |
123 | QFile discovery("/proc/sys/net/irda/discovery"); | 123 | QFile discovery("/proc/sys/net/irda/discovery"); |
124 | 124 | ||
125 | discovery.open( IO_WriteOnly|IO_Raw ); | 125 | discovery.open( IO_WriteOnly|IO_Raw ); |
126 | 126 | ||
127 | if (d) | 127 | if (d) |
128 | discovery.putch('1'); | 128 | discovery.putch('1'); |
129 | else | 129 | else |
130 | discovery.putch('0'); | 130 | discovery.putch('0'); |
131 | 131 | ||
132 | discovery.close(); | 132 | discovery.close(); |
133 | 133 | ||
134 | return 0; | 134 | return 0; |
135 | } | 135 | } |
136 | 136 | ||
137 | 137 | ||
138 | void IrdaApplet::showDiscovered() { | 138 | void IrdaApplet::showDiscovered() { |
139 | QFile discovery("/proc/net/irda/discovery"); | 139 | QFile discovery("/proc/net/irda/discovery"); |
140 | 140 | ||
141 | if (discovery.open(IO_ReadOnly) ) { | 141 | if (discovery.open(IO_ReadOnly) ) { |
142 | QStringList list; | 142 | QStringList list; |
143 | // since it is /proc we _must_ use QTextStream | 143 | // since it is /proc we _must_ use QTextStream |
144 | QTextStream stream ( &discovery); | 144 | QTextStream stream ( &discovery); |
145 | QString streamIn; | 145 | QString streamIn; |
146 | streamIn = stream.read(); | 146 | streamIn = stream.read(); |
147 | list = QStringList::split("\n", streamIn); | 147 | list = QStringList::split("\n", streamIn); |
148 | 148 | ||
149 | for(QStringList::Iterator line=list.begin(); line!=list.end(); line++) { | 149 | for(QStringList::Iterator line=list.begin(); line!=list.end(); line++) { |
150 | if( (*line).startsWith("nickname:") ){ | 150 | if( (*line).startsWith("nickname:") ){ |
151 | discoveredDevice = (*line).mid(((*line).find(':'))+1,(*line).find(',')-(*line).find(':')-1); | 151 | discoveredDevice = (*line).mid(((*line).find(':'))+1,(*line).find(',')-(*line).find(':')-1); |
152 | qDebug(discoveredDevice); | 152 | qDebug(discoveredDevice); |
153 | } | 153 | } |
154 | } | 154 | } |
155 | } | 155 | } |
156 | 156 | ||
157 | } | 157 | } |
158 | 158 | ||
159 | void IrdaApplet::mousePressEvent( QMouseEvent *) { | 159 | void IrdaApplet::mousePressEvent( QMouseEvent *) { |
160 | QPopupMenu *menu = new QPopupMenu(); | 160 | QPopupMenu *menu = new QPopupMenu(); |
161 | QString cmd; | 161 | QString cmd; |
162 | int ret=0; | 162 | int ret=0; |
163 | showDiscovered(); | 163 | showDiscovered(); |
164 | 164 | ||
165 | /* Refresh active state */ | 165 | /* Refresh active state */ |
166 | timerEvent(NULL); | 166 | timerEvent(NULL); |
167 | 167 | ||
168 | //menu->insertItem( tr("More..."), 4 ); | 168 | //menu->insertItem( tr("More..."), 4 ); |
169 | 169 | ||
170 | menu->insertItem( tr("Discovered Device:"), 9); | 170 | menu->insertItem( tr("Discovered Device:"), 9); |
171 | 171 | ||
172 | if ( !discoveredDevice.isEmpty() ) { | 172 | if ( !discoveredDevice.isEmpty() ) { |
173 | menu->insertItem( discoveredDevice ,7 ); | 173 | menu->insertItem( discoveredDevice ,7 ); |
174 | } else { | 174 | } else { |
175 | menu->insertItem( tr("None"), 8); | 175 | menu->insertItem( tr("None"), 8); |
176 | } | 176 | } |
177 | 177 | ||
178 | menu->insertSeparator(); | 178 | menu->insertSeparator(); |
179 | 179 | ||
180 | if (irdaactive) { | 180 | if (irdaactive) { |
181 | menu->insertItem( tr("Disable IrDA"), 0 ); | 181 | menu->insertItem( tr("Disable IrDA"), 0 ); |
182 | } else { | 182 | } else { |
183 | menu->insertItem( tr("Enable IrDA"), 1 ); | 183 | menu->insertItem( tr("Enable IrDA"), 1 ); |
184 | } | 184 | } |
185 | 185 | ||
186 | if (irdaDiscoveryActive) { | 186 | if (irdaDiscoveryActive) { |
187 | menu->insertItem( tr("Disable Discovery"), 2 ); | 187 | menu->insertItem( tr("Disable Discovery"), 2 ); |
188 | } else { | 188 | } else { |
189 | menu->insertItem( tr("Enable Discovery"), 3 ); | 189 | menu->insertItem( tr("Enable Discovery"), 3 ); |
190 | } | 190 | } |
191 | 191 | ||
192 | if( receiveActive ){ | 192 | if( receiveActive ){ |
193 | menu->insertItem( tr("Disable Receive"), 5 ); | 193 | menu->insertItem( tr("Disable Receive"), 5 ); |
194 | } else { | 194 | } else { |
195 | menu->insertItem( tr("Enable Receive"), 4 ); | 195 | menu->insertItem( tr("Enable Receive"), 4 ); |
196 | } | 196 | } |
197 | 197 | ||
198 | QPoint p = mapToGlobal( QPoint(1, menu->sizeHint().height()-1) ); | 198 | QPoint p = mapToGlobal ( QPoint ( 0, 0 )); |
199 | ret = menu->exec(p, 2); | 199 | QSize s = menu-> sizeHint ( ); |
200 | ret = menu->exec( QPoint ( | ||
201 | p. x ( ) + ( width ( ) / 2 ) - ( s. width ( ) / 2 ), | ||
202 | p. y ( ) - s. height ( ) ), 0); | ||
200 | 203 | ||
201 | qDebug("ret was %d\n", ret); | 204 | qDebug("ret was %d\n", ret); |
202 | 205 | ||
203 | switch(ret) { | 206 | switch(ret) { |
204 | case 0: | 207 | case 0: |
205 | setIrdaStatus(0); | 208 | setIrdaStatus(0); |
206 | timerEvent(NULL); | 209 | timerEvent(NULL); |
207 | break; | 210 | break; |
208 | case 1: | 211 | case 1: |
209 | setIrdaStatus(1); | 212 | setIrdaStatus(1); |
210 | timerEvent(NULL); | 213 | timerEvent(NULL); |
211 | break; | 214 | break; |
212 | case 2: | 215 | case 2: |
213 | setIrdaDiscoveryStatus(0); | 216 | setIrdaDiscoveryStatus(0); |
214 | timerEvent(NULL); | 217 | timerEvent(NULL); |
215 | break; | 218 | break; |
216 | case 3: | 219 | case 3: |
217 | setIrdaDiscoveryStatus(1); | 220 | setIrdaDiscoveryStatus(1); |
218 | timerEvent(NULL); // NULL is undefined in c++ use 0 or 0l | 221 | timerEvent(NULL); // NULL is undefined in c++ use 0 or 0l |
219 | break; | 222 | break; |
220 | case 4: { // enable receive | 223 | case 4: { // enable receive |
221 | qWarning("Enable receive" ); | 224 | qWarning("Enable receive" ); |
222 | QCopEnvelope e("QPE/Obex", "receive(int)" ); | 225 | QCopEnvelope e("QPE/Obex", "receive(int)" ); |
223 | e << 1; | 226 | e << 1; |
224 | receiveActive = true; | 227 | receiveActive = true; |
225 | receiveStateChanged = true; | 228 | receiveStateChanged = true; |
226 | timerEvent(NULL); | 229 | timerEvent(NULL); |
227 | break; | 230 | break; |
228 | } | 231 | } |
229 | case 5: { // disable receive | 232 | case 5: { // disable receive |
230 | qWarning("Disable receive" ); | 233 | qWarning("Disable receive" ); |
231 | QCopEnvelope e("QPE/Obex", "receive(int)" ); | 234 | QCopEnvelope e("QPE/Obex", "receive(int)" ); |
232 | e << 0; | 235 | e << 0; |
233 | receiveActive = false; | 236 | receiveActive = false; |
234 | receiveStateChanged = true; | 237 | receiveStateChanged = true; |
235 | timerEvent(NULL); | 238 | timerEvent(NULL); |
236 | break; | 239 | break; |
237 | } | 240 | } |
238 | case 6: | 241 | case 6: |
239 | qDebug("FIXME: Bring up pretty menu...\n"); | 242 | qDebug("FIXME: Bring up pretty menu...\n"); |
240 | // With table of currently-detected devices. | 243 | // With table of currently-detected devices. |
241 | } | 244 | } |
242 | 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 | 245 | 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 |
243 | } | 246 | } |
244 | 247 | ||
245 | void IrdaApplet::timerEvent( QTimerEvent * ) { | 248 | void IrdaApplet::timerEvent( QTimerEvent * ) { |
246 | int oldactive = irdaactive; | 249 | int oldactive = irdaactive; |
247 | int olddiscovery = irdaDiscoveryActive; | 250 | int olddiscovery = irdaDiscoveryActive; |
248 | bool receiveUpdate = false; | 251 | bool receiveUpdate = false; |
249 | 252 | ||
250 | if (receiveStateChanged) { | 253 | if (receiveStateChanged) { |
251 | receiveUpdate = true; | 254 | receiveUpdate = true; |
252 | receiveStateChanged = false; | 255 | receiveStateChanged = false; |
253 | } | 256 | } |
254 | 257 | ||
255 | irdaactive = checkIrdaStatus(); | 258 | irdaactive = checkIrdaStatus(); |
256 | irdaDiscoveryActive = checkIrdaDiscoveryStatus(); | 259 | irdaDiscoveryActive = checkIrdaDiscoveryStatus(); |
257 | 260 | ||
258 | if ((irdaactive != oldactive) || (irdaDiscoveryActive != olddiscovery) || receiveUpdate ) { | 261 | if ((irdaactive != oldactive) || (irdaDiscoveryActive != olddiscovery) || receiveUpdate ) { |
259 | paintEvent(NULL); | 262 | paintEvent(NULL); |
260 | } | 263 | } |
261 | 264 | ||
262 | } | 265 | } |
263 | 266 | ||
264 | void IrdaApplet::paintEvent( QPaintEvent* ) { | 267 | void IrdaApplet::paintEvent( QPaintEvent* ) { |
265 | QPainter p(this); | 268 | QPainter p(this); |
266 | qDebug("paint irda pixmap"); | 269 | qDebug("paint irda pixmap"); |
267 | 270 | ||
268 | p.eraseRect ( 0, 0, this->width(), this->height() ); | 271 | p.eraseRect ( 0, 0, this->width(), this->height() ); |
269 | if (irdaactive > 0) { | 272 | if (irdaactive > 0) { |
270 | p.drawPixmap( 0, 1, irdaOnPixmap ); | 273 | p.drawPixmap( 0, 1, irdaOnPixmap ); |
271 | } else { | 274 | } else { |
272 | p.drawPixmap( 0, 1, irdaOffPixmap ); | 275 | p.drawPixmap( 0, 1, irdaOffPixmap ); |
273 | } | 276 | } |
274 | 277 | ||
275 | if (irdaDiscoveryActive > 0) { | 278 | if (irdaDiscoveryActive > 0) { |
276 | p.drawPixmap( 0, 1, irdaDiscoveryOnPixmap ); | 279 | p.drawPixmap( 0, 1, irdaDiscoveryOnPixmap ); |
277 | } | 280 | } |
278 | if (receiveActive) { | 281 | if (receiveActive) { |
279 | p.drawPixmap( 0, 1, receiveActivePixmap); | 282 | p.drawPixmap( 0, 1, receiveActivePixmap); |
280 | } | 283 | } |
281 | } | 284 | } |