summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/irdaapplet/irda.cpp14
1 files changed, 10 insertions, 4 deletions
diff --git a/core/applets/irdaapplet/irda.cpp b/core/applets/irdaapplet/irda.cpp
index e21f191..5b23330 100644
--- a/core/applets/irdaapplet/irda.cpp
+++ b/core/applets/irdaapplet/irda.cpp
@@ -1,243 +1,249 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2002 David Woodhouse <dwmw2@infradead.org> 2** Copyright (C) 2002 David Woodhouse <dwmw2@infradead.org>
3** Heavily based on volumeapplet, (C) 2002 L.J. Potter ljp@llornkcor.com 3** Heavily based on volumeapplet, (C) 2002 L.J. Potter ljp@llornkcor.com
4** All rights reserved. 4** All rights reserved.
5** 5**
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
57IrdaApplet::IrdaApplet( QWidget *parent, const char *name ) 57IrdaApplet::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
71IrdaApplet::~IrdaApplet() { 71IrdaApplet::~IrdaApplet() {
72 close(sockfd); 72 close(sockfd);
73} 73}
74 74
75int IrdaApplet::checkIrdaStatus() { 75int 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
86int IrdaApplet::setIrdaStatus(int c) { 86int 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
105int IrdaApplet::checkIrdaDiscoveryStatus() { 105int IrdaApplet::checkIrdaDiscoveryStatus() {
106
106 QFile discovery("/proc/sys/net/irda/discovery"); 107 QFile discovery("/proc/sys/net/irda/discovery");
107 char status;
108 108
109 discovery.open( IO_ReadOnly|IO_Raw ); 109 QString streamIn = "0";
110 discovery.readBlock (&status, 1); 110
111 if (discovery.open(IO_ReadOnly) ) {
112 QTextStream stream ( &discovery );
113 streamIn = stream.read();
114 }
115
111 discovery.close(); 116 discovery.close();
112 117
113 return atoi(&status); 118 return( streamIn.toInt() );
114} 119}
115 120
121
116int IrdaApplet::setIrdaDiscoveryStatus(int d) { 122int IrdaApplet::setIrdaDiscoveryStatus(int d) {
117 QFile discovery("/proc/sys/net/irda/discovery"); 123 QFile discovery("/proc/sys/net/irda/discovery");
118 124
119 discovery.open( IO_WriteOnly|IO_Raw ); 125 discovery.open( IO_WriteOnly|IO_Raw );
120 126
121 if (d) 127 if (d)
122 discovery.putch('1'); 128 discovery.putch('1');
123 else 129 else
124 discovery.putch('0'); 130 discovery.putch('0');
125 131
126 discovery.close(); 132 discovery.close();
127 133
128 return 0; 134 return 0;
129} 135}
130 136
131 137
132void IrdaApplet::showDiscovered() { 138void IrdaApplet::showDiscovered() {
133 QFile discovery("/proc/net/irda/discovery"); 139 QFile discovery("/proc/net/irda/discovery");
134 140
135 if (discovery.open(IO_ReadOnly) ) { 141 if (discovery.open(IO_ReadOnly) ) {
136 QStringList list; 142 QStringList list;
137 // since it is /proc we _must_ use QTextStream 143 // since it is /proc we _must_ use QTextStream
138 QTextStream stream ( &discovery); 144 QTextStream stream ( &discovery);
139 QString streamIn; 145 QString streamIn;
140 streamIn = stream.read(); 146 streamIn = stream.read();
141 list = QStringList::split("\n", streamIn); 147 list = QStringList::split("\n", streamIn);
142 148
143 for(QStringList::Iterator line=list.begin(); line!=list.end(); line++) { 149 for(QStringList::Iterator line=list.begin(); line!=list.end(); line++) {
144 if( (*line).startsWith("nickname:") ){ 150 if( (*line).startsWith("nickname:") ){
145 discoveredDevice = (*line).mid(((*line).find(':'))+1,(*line).find(',')-(*line).find(':')-1); 151 discoveredDevice = (*line).mid(((*line).find(':'))+1,(*line).find(',')-(*line).find(':')-1);
146 qDebug(discoveredDevice); 152 qDebug(discoveredDevice);
147 } 153 }
148 } 154 }
149 } 155 }
150 156
151} 157}
152 158
153void IrdaApplet::mousePressEvent( QMouseEvent *) { 159void IrdaApplet::mousePressEvent( QMouseEvent *) {
154 QPopupMenu *menu = new QPopupMenu(); 160 QPopupMenu *menu = new QPopupMenu();
155 QString cmd; 161 QString cmd;
156 int ret=0; 162 int ret=0;
157 showDiscovered(); 163 showDiscovered();
158 164
159 /* Refresh active state */ 165 /* Refresh active state */
160 timerEvent(NULL); 166 timerEvent(NULL);
161 167
162 //menu->insertItem( tr("More..."), 4 ); 168 //menu->insertItem( tr("More..."), 4 );
163 169
164 menu->insertItem( tr("Discovered Device:"), 9); 170 menu->insertItem( tr("Discovered Device:"), 9);
165 171
166 if ( !discoveredDevice.isEmpty() ) { 172 if ( !discoveredDevice.isEmpty() ) {
167 menu->insertItem( discoveredDevice ,7 ); 173 menu->insertItem( discoveredDevice ,7 );
168 } else { 174 } else {
169 menu->insertItem( tr("None"), 8); 175 menu->insertItem( tr("None"), 8);
170 } 176 }
171 177
172 menu->insertSeparator(); 178 menu->insertSeparator();
173 179
174 if (irdaactive) { 180 if (irdaactive) {
175 menu->insertItem( tr("Disable IrDA"), 0 ); 181 menu->insertItem( tr("Disable IrDA"), 0 );
176 } else { 182 } else {
177 menu->insertItem( tr("Enable IrDA"), 1 ); 183 menu->insertItem( tr("Enable IrDA"), 1 );
178 } 184 }
179 185
180 if (irdaDiscoveryActive) { 186 if (irdaDiscoveryActive) {
181 menu->insertItem( tr("Disable Discovery"), 2 ); 187 menu->insertItem( tr("Disable Discovery"), 2 );
182 } else { 188 } else {
183 menu->insertItem( tr("Enable Discovery"), 3 ); 189 menu->insertItem( tr("Enable Discovery"), 3 );
184 } 190 }
185 191
186 if( receiveActive ){ 192 if( receiveActive ){
187 menu->insertItem( tr("Disable Receive"), 5 ); 193 menu->insertItem( tr("Disable Receive"), 5 );
188 } else { 194 } else {
189 menu->insertItem( tr("Enable Receive"), 4 ); 195 menu->insertItem( tr("Enable Receive"), 4 );
190 } 196 }
191 197
192 QPoint p = mapToGlobal( QPoint(1, menu->sizeHint().height()-1) ); 198 QPoint p = mapToGlobal( QPoint(1, menu->sizeHint().height()-1) );
193 ret = menu->exec(p, 2); 199 ret = menu->exec(p, 2);
194 200
195 qDebug("ret was %d\n", ret); 201 qDebug("ret was %d\n", ret);
196 202
197 switch(ret) { 203 switch(ret) {
198 case 0: 204 case 0:
199 setIrdaStatus(0); 205 setIrdaStatus(0);
200 timerEvent(NULL); 206 timerEvent(NULL);
201 break; 207 break;
202 case 1: 208 case 1:
203 setIrdaStatus(1); 209 setIrdaStatus(1);
204 timerEvent(NULL); 210 timerEvent(NULL);
205 break; 211 break;
206 case 2: 212 case 2:
207 setIrdaDiscoveryStatus(0); 213 setIrdaDiscoveryStatus(0);
208 timerEvent(NULL); 214 timerEvent(NULL);
209 break; 215 break;
210 case 3: 216 case 3:
211 setIrdaDiscoveryStatus(1); 217 setIrdaDiscoveryStatus(1);
212 timerEvent(NULL); // NULL is undefined in c++ use 0 or 0l 218 timerEvent(NULL); // NULL is undefined in c++ use 0 or 0l
213 break; 219 break;
214 case 4: { // enable receive 220 case 4: { // enable receive
215 qWarning("Enable receive" ); 221 qWarning("Enable receive" );
216 QCopEnvelope e("QPE/Obex", "receive(int)" ); 222 QCopEnvelope e("QPE/Obex", "receive(int)" );
217 e << 1; 223 e << 1;
218 receiveActive = true; 224 receiveActive = true;
219 receiveStateChanged = true; 225 receiveStateChanged = true;
220 timerEvent(NULL); 226 timerEvent(NULL);
221 break; 227 break;
222 } 228 }
223 case 5: { // disable receive 229 case 5: { // disable receive
224 qWarning("Disable receive" ); 230 qWarning("Disable receive" );
225 QCopEnvelope e("QPE/Obex", "receive(int)" ); 231 QCopEnvelope e("QPE/Obex", "receive(int)" );
226 e << 0; 232 e << 0;
227 receiveActive = false; 233 receiveActive = false;
228 receiveStateChanged = true; 234 receiveStateChanged = true;
229 timerEvent(NULL); 235 timerEvent(NULL);
230 break; 236 break;
231 } 237 }
232 case 6: 238 case 6:
233 qDebug("FIXME: Bring up pretty menu...\n"); 239 qDebug("FIXME: Bring up pretty menu...\n");
234 // With table of currently-detected devices. 240 // With table of currently-detected devices.
235 } 241 }
236 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 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
237} 243}
238 244
239void IrdaApplet::timerEvent( QTimerEvent * ) { 245void IrdaApplet::timerEvent( QTimerEvent * ) {
240 int oldactive = irdaactive; 246 int oldactive = irdaactive;
241 int olddiscovery = irdaDiscoveryActive; 247 int olddiscovery = irdaDiscoveryActive;
242 bool receiveUpdate = false; 248 bool receiveUpdate = false;
243 249