summaryrefslogtreecommitdiff
authorllornkcor <llornkcor>2002-10-21 12:06:42 (UTC)
committer llornkcor <llornkcor>2002-10-21 12:06:42 (UTC)
commit31bfb8ab27d15ad2b94f437fd8e4bf547a019930 (patch) (unidiff)
tree2bbe46ef4cd4a766f1e89bf778bf5a5c3e85b7d9
parent2c163c9f70dabb90c189a93c1f34dbc2f54849f6 (diff)
downloadopie-31bfb8ab27d15ad2b94f437fd8e4bf547a019930.zip
opie-31bfb8ab27d15ad2b94f437fd8e4bf547a019930.tar.gz
opie-31bfb8ab27d15ad2b94f437fd8e4bf547a019930.tar.bz2
fix braces
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/cardmon/cardmon.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/core/applets/cardmon/cardmon.cpp b/core/applets/cardmon/cardmon.cpp
index 815c993..1663af2 100644
--- a/core/applets/cardmon/cardmon.cpp
+++ b/core/applets/cardmon/cardmon.cpp
@@ -1,317 +1,315 @@
1/* 1/*
2 * cardmon.cpp 2 * cardmon.cpp
3 * 3 *
4 * --------------------- 4 * ---------------------
5 * 5 *
6 * copyright : (c) 2002 by Maximilian Reiss 6 * copyright : (c) 2002 by Maximilian Reiss
7 * email : max.reiss@gmx.de 7 * email : max.reiss@gmx.de
8 * based on two apps by Devin Butterfield 8 * based on two apps by Devin Butterfield
9 */ 9 */
10/*************************************************************************** 10/***************************************************************************
11 * * 11 * *
12 * This program is free software; you can redistribute it and/or modify * 12 * This program is free software; you can redistribute it and/or modify *
13 * it under the terms of the GNU General Public License as published by * 13 * it under the terms of the GNU General Public License as published by *
14 * the Free Software Foundation; either version 2 of the License, or * 14 * the Free Software Foundation; either version 2 of the License, or *
15 * (at your option) any later version. * 15 * (at your option) any later version. *
16 * * 16 * *
17 ***************************************************************************/ 17 ***************************************************************************/
18 18
19 19
20#include "cardmon.h" 20#include "cardmon.h"
21 21
22#include <qpe/resource.h> 22#include <qpe/resource.h>
23 23
24#include <opie/odevice.h> 24#include <opie/odevice.h>
25 25
26#include <qcopchannel_qws.h> 26#include <qcopchannel_qws.h>
27#include <qpainter.h> 27#include <qpainter.h>
28#include <qmessagebox.h> 28#include <qmessagebox.h>
29#include <qfile.h> 29#include <qfile.h>
30#include <qtextstream.h> 30#include <qtextstream.h>
31#include <qtimer.h> 31#include <qtimer.h>
32 32
33#include <stdio.h> 33#include <stdio.h>
34#include <unistd.h> 34#include <unistd.h>
35#include <stdlib.h> 35#include <stdlib.h>
36#include <string.h> 36#include <string.h>
37#include <fcntl.h> 37#include <fcntl.h>
38#include <qsound.h> 38#include <qsound.h>
39 39
40#if defined(_OS_LINUX_) || defined(Q_OS_LINUX) 40#if defined(_OS_LINUX_) || defined(Q_OS_LINUX)
41#include <sys/vfs.h> 41#include <sys/vfs.h>
42#include <mntent.h> 42#include <mntent.h>
43#endif 43#endif
44 44
45using namespace Opie; 45using namespace Opie;
46 46
47CardMonitor::CardMonitor( QWidget *parent ) : QWidget( parent ), 47CardMonitor::CardMonitor( QWidget *parent ) : QWidget( parent ),
48 pm( Resource::loadPixmap( "cardmon/pcmcia" ) ) { 48 pm( Resource::loadPixmap( "cardmon/pcmcia" ) ) {
49 49
50 QCopChannel* pcmciaChannel = new QCopChannel( "QPE/Card", this ); 50 QCopChannel* pcmciaChannel = new QCopChannel( "QPE/Card", this );
51 connect( pcmciaChannel, SIGNAL( received( const QCString &, const QByteArray &) ), 51 connect( pcmciaChannel, SIGNAL( received( const QCString &, const QByteArray &) ),
52 this, SLOT( cardMessage( const QCString &, const QByteArray &) ) ); 52 this, SLOT( cardMessage( const QCString &, const QByteArray &) ) );
53 53
54 QCopChannel* sdChannel = new QCopChannel( "QPE/Card", this ); 54 QCopChannel* sdChannel = new QCopChannel( "QPE/Card", this );
55 connect( sdChannel, SIGNAL( received( const QCString &, const QByteArray &) ), 55 connect( sdChannel, SIGNAL( received( const QCString &, const QByteArray &) ),
56 this, SLOT( cardMessage( const QCString &, const QByteArray &) ) ); 56 this, SLOT( cardMessage( const QCString &, const QByteArray &) ) );
57 57
58 cardInPcmcia0 = FALSE; 58 cardInPcmcia0 = FALSE;
59 cardInPcmcia1 = FALSE; 59 cardInPcmcia1 = FALSE;
60 cardInSd = FALSE; 60 cardInSd = FALSE;
61 61
62 setFixedSize( pm.size() ); 62 setFixedSize( pm.size() );
63 getStatusPcmcia( TRUE ); 63 getStatusPcmcia( TRUE );
64 getStatusSd( TRUE ); 64 getStatusSd( TRUE );
65 repaint( FALSE ); 65 repaint( FALSE );
66 popupMenu = 0; 66 popupMenu = 0;
67} 67}
68 68
69CardMonitor::~CardMonitor() { 69CardMonitor::~CardMonitor() {
70 if( popupMenu ) { 70 if( popupMenu ) {
71 delete popupMenu; 71 delete popupMenu;
72 } 72 }
73} 73}
74 74
75void CardMonitor::popUp( QString message, QString icon ) { 75void CardMonitor::popUp( QString message, QString icon ) {
76 if ( ! popupMenu ) { 76 if ( ! popupMenu ) {
77 popupMenu = new QPopupMenu(); 77 popupMenu = new QPopupMenu();
78 } 78 }
79 79
80 popupMenu->clear(); 80 popupMenu->clear();
81 if( icon.isEmpty() ) { 81 if( icon.isEmpty() ) {
82 popupMenu->insertItem( message, 0 ); 82 popupMenu->insertItem( message, 0 );
83 } else { 83 } else {
84 popupMenu->insertItem( QIconSet ( Resource::loadPixmap ( icon ) ), message, 0 ); 84 popupMenu->insertItem( QIconSet ( Resource::loadPixmap ( icon ) ), message, 0 );
85 } 85 }
86 86
87 QPoint p = mapToGlobal ( QPoint ( 0, 0 ) ); 87 QPoint p = mapToGlobal ( QPoint ( 0, 0 ) );
88 QSize s = popupMenu->sizeHint (); 88 QSize s = popupMenu->sizeHint ();
89 popupMenu->popup( QPoint ( 89 popupMenu->popup( QPoint (
90 p. x ( ) + ( width ( ) / 2 ) - ( s. width ( ) / 2 ), 90 p. x ( ) + ( width ( ) / 2 ) - ( s. width ( ) / 2 ),
91 p. y ( ) - s. height ( ) ), 0); 91 p. y ( ) - s. height ( ) ), 0);
92 92
93 QTimer::singleShot( 2000, this, SLOT(popupTimeout() ) ); 93 QTimer::singleShot( 2000, this, SLOT(popupTimeout() ) );
94} 94}
95 95
96void CardMonitor::popupTimeout() { 96void CardMonitor::popupTimeout() {
97 popupMenu->hide(); 97 popupMenu->hide();
98} 98}
99 99
100void CardMonitor::mousePressEvent( QMouseEvent * ) { 100void CardMonitor::mousePressEvent( QMouseEvent * ) {
101 QPopupMenu *menu = new QPopupMenu(); 101 QPopupMenu *menu = new QPopupMenu();
102 QString cmd; 102 QString cmd;
103 int err=0; 103 int err=0;
104 104
105 if ( cardInSd ) { 105 if ( cardInSd ) {
106 menu->insertItem( tr("Eject SD/MMC card"), 0 ); 106 menu->insertItem( tr("Eject SD/MMC card"), 0 );
107 } 107 }
108 108
109 if ( cardInPcmcia0 ) { 109 if ( cardInPcmcia0 ) {
110 menu->insertItem( QIconSet ( Resource::loadPixmap ( "cardmon/" + cardInPcmcia0Type ) ), 110 menu->insertItem( QIconSet ( Resource::loadPixmap ( "cardmon/" + cardInPcmcia0Type ) ),
111 tr( "Eject card 0: %1" ).arg(cardInPcmcia0Name ), 1 ); 111 tr( "Eject card 0: %1" ).arg(cardInPcmcia0Name ), 1 );
112 } 112 }
113 113
114 if ( cardInPcmcia1 ) { 114 if ( cardInPcmcia1 ) {
115 menu->insertItem( QIconSet ( Resource::loadPixmap ( "cardmon/" + cardInPcmcia1Type ) ), 115 menu->insertItem( QIconSet ( Resource::loadPixmap ( "cardmon/" + cardInPcmcia1Type ) ),
116 tr( "Eject card 1: %1" ).arg( cardInPcmcia1Name ), 2 ); 116 tr( "Eject card 1: %1" ).arg( cardInPcmcia1Name ), 2 );
117 } 117 }
118 118
119 QPoint p = mapToGlobal ( QPoint ( 0, 0 ) ); 119 QPoint p = mapToGlobal ( QPoint ( 0, 0 ) );
120 QSize s = menu->sizeHint (); 120 QSize s = menu->sizeHint ();
121 int opt = menu->exec( QPoint ( 121 int opt = menu->exec( QPoint (
122 p. x ( ) + ( width ( ) / 2 ) - ( s. width ( ) / 2 ), 122 p. x ( ) + ( width ( ) / 2 ) - ( s. width ( ) / 2 ),
123 p. y ( ) - s. height ( ) ), 0); 123 p. y ( ) - s. height ( ) ), 0);
124 124
125 if ( opt == 1 ) { 125 if ( opt == 1 ) {
126 cmd = "/sbin/cardctl eject 0"; 126 cmd = "/sbin/cardctl eject 0";
127 err = system( ( const char * ) cmd ); 127 err = system( ( const char * ) cmd );
128 if ( ( err == 127 ) || ( err < 0 ) ) { 128 if ( ( err == 127 ) || ( err < 0 ) ) {
129 qDebug( "Could not execute `/sbin/cardctl eject 0'! err=%d", err ); 129 qDebug( "Could not execute `/sbin/cardctl eject 0'! err=%d", err );
130 popUp( tr( "CF/PCMCIA card eject failed!" ) ); 130 popUp( tr( "CF/PCMCIA card eject failed!" ) );
131 } 131 }
132 } else if ( opt == 0 ) { 132 } else if ( opt == 0 ) {
133 if ( ODevice::inst()->system() == System_Familiar ) { 133 if ( ODevice::inst()->system() == System_Familiar ) {
134 cmd = "umount /dev/mmc/part1"; 134 cmd = "umount /dev/mmc/part1";
135 err = system( ( const char *) cmd ); 135 err = system( ( const char *) cmd );
136 if ( ( err != 0 ) ) { 136 if ( ( err != 0 ) ) {
137 popUp( tr("SD/MMC card eject failed!") ); 137 popUp( tr("SD/MMC card eject failed!") );
138 } 138 }
139 } else { 139 } else {
140 cmd = "/etc/sdcontrol compeject"; 140 cmd = "/etc/sdcontrol compeject";
141 err = system( ( const char *) cmd ); 141 err = system( ( const char *) cmd );
142 if ( ( err != 0 ) ) { 142 if ( ( err != 0 ) ) {
143 qDebug( "Could not execute `/etc/sdcontrol comeject'! err=%d", err ); 143 qDebug( "Could not execute `/etc/sdcontrol comeject'! err=%d", err );
144 popUp( tr("SD/MMC card eject failed!") ); 144 popUp( tr("SD/MMC card eject failed!") );
145 } 145 }
146 } 146 }
147 } else if ( opt == 2 ) { 147 } else if ( opt == 2 ) {
148 cmd = "/sbin/cardctl eject 1"; 148 cmd = "/sbin/cardctl eject 1";
149 err = system( ( const char *) cmd ); 149 err = system( ( const char *) cmd );
150 if ( ( err == 127 ) || ( err < 0 ) ) { 150 if ( ( err == 127 ) || ( err < 0 ) ) {
151 qDebug( "Could not execute `/sbin/cardctl eject 1'! err=%d", err ); 151 qDebug( "Could not execute `/sbin/cardctl eject 1'! err=%d", err );
152 popUp( tr( "CF/PCMCIA card eject failed!" ) ); 152 popUp( tr( "CF/PCMCIA card eject failed!" ) );
153 } 153 }
154 } 154 }
155 delete menu; 155 delete menu;
156} 156}
157 157
158 158
159void CardMonitor::cardMessage( const QCString &msg, const QByteArray & ) { 159void CardMonitor::cardMessage( const QCString &msg, const QByteArray & ) {
160 if ( msg == "stabChanged()" ) { 160 if ( msg == "stabChanged()" ) {
161 // qDebug("Pcmcia: stabchanged"); 161 // qDebug("Pcmcia: stabchanged");
162 getStatusPcmcia(); 162 getStatusPcmcia();
163 }
164 } else if ( msg == "mtabChanged()" ) { 163 } else if ( msg == "mtabChanged()" ) {
165 qDebug("CARDMONAPPLET: mtabchanged"); 164 qDebug("CARDMONAPPLET: mtabchanged");
166 getStatusSd(); 165 getStatusSd();
167 } 166 }
168 }
169} 167}
170 168
171bool CardMonitor::getStatusPcmcia( int showPopUp ) { 169bool CardMonitor::getStatusPcmcia( int showPopUp ) {
172 170
173 bool cardWas0 = cardInPcmcia0; // remember last state 171 bool cardWas0 = cardInPcmcia0; // remember last state
174 bool cardWas1 = cardInPcmcia1; 172 bool cardWas1 = cardInPcmcia1;
175 173
176 QString fileName; 174 QString fileName;
177 175
178 // one of these 3 files should exist 176 // one of these 3 files should exist
179 if ( QFile::exists( "/var/run/stab" ) ) { 177 if ( QFile::exists( "/var/run/stab" ) ) {
180 fileName = "/var/run/stab"; 178 fileName = "/var/run/stab";
181 } else if (QFile::exists( "/var/state/pcmcia/stab" ) ) { 179 } else if (QFile::exists( "/var/state/pcmcia/stab" ) ) {
182 fileName = "/var/state/pcmcia/stab"; 180 fileName = "/var/state/pcmcia/stab";
183 } else { 181 } else {
184 fileName = "/var/lib/pcmcia/stab"; 182 fileName = "/var/lib/pcmcia/stab";
185 } 183 }
186 184
187 QFile f( fileName ); 185 QFile f( fileName );
188 186
189 if ( f.open( IO_ReadOnly ) ) { 187 if ( f.open( IO_ReadOnly ) ) {
190 QStringList list; 188 QStringList list;
191 QTextStream stream ( &f ); 189 QTextStream stream ( &f );
192 QString streamIn; 190 QString streamIn;
193 streamIn = stream.read(); 191 streamIn = stream.read();
194 list = QStringList::split( "\n", streamIn ); 192 list = QStringList::split( "\n", streamIn );
195 for( QStringList::Iterator line=list.begin(); line!=list.end(); line++ ) { 193 for( QStringList::Iterator line=list.begin(); line!=list.end(); line++ ) {
196 if( (*line).startsWith( "Socket 0:" ) ){ 194 if( (*line).startsWith( "Socket 0:" ) ){
197 if( (*line).startsWith( "Socket 0: empty" ) && cardInPcmcia0 ){ 195 if( (*line).startsWith( "Socket 0: empty" ) && cardInPcmcia0 ){
198 cardInPcmcia0 = FALSE; 196 cardInPcmcia0 = FALSE;
199 } else if ( !(*line).startsWith( "Socket 0: empty" ) && !cardInPcmcia0 ){ 197 } else if ( !(*line).startsWith( "Socket 0: empty" ) && !cardInPcmcia0 ){
200 cardInPcmcia0Name = (*line).mid( ( (*line).find( ':' ) + 1 ), (*line).length() - 9 ); 198 cardInPcmcia0Name = (*line).mid( ( (*line).find( ':' ) + 1 ), (*line).length() - 9 );
201 cardInPcmcia0Name.stripWhiteSpace(); 199 cardInPcmcia0Name.stripWhiteSpace();
202 cardInPcmcia0 = TRUE; 200 cardInPcmcia0 = TRUE;
203 show(); 201 show();
204 line++; 202 line++;
205 int pos=(*line).find('\t' ) + 1; 203 int pos=(*line).find('\t' ) + 1;
206 cardInPcmcia0Type = (*line).mid( pos, (*line).find( "\t" , pos) - pos ); 204 cardInPcmcia0Type = (*line).mid( pos, (*line).find( "\t" , pos) - pos );
207 } 205 }
208 } else if( (*line).startsWith( "Socket 1:" ) ){ 206 } else if( (*line).startsWith( "Socket 1:" ) ){
209 if( (*line).startsWith( "Socket 1: empty" ) && cardInPcmcia1 ) { 207 if( (*line).startsWith( "Socket 1: empty" ) && cardInPcmcia1 ) {
210 cardInPcmcia1 = FALSE; 208 cardInPcmcia1 = FALSE;
211 } else if ( !(*line).startsWith( "Socket 1: empty" ) && !cardInPcmcia1 ) { 209 } else if ( !(*line).startsWith( "Socket 1: empty" ) && !cardInPcmcia1 ) {
212 cardInPcmcia1Name = (*line).mid(((*line).find(':') + 1), (*line).length() - 9 ); 210 cardInPcmcia1Name = (*line).mid(((*line).find(':') + 1), (*line).length() - 9 );
213 cardInPcmcia1Name.stripWhiteSpace(); 211 cardInPcmcia1Name.stripWhiteSpace();
214 cardInPcmcia1 = TRUE; 212 cardInPcmcia1 = TRUE;
215 show(); 213 show();
216 line++; 214 line++;
217 int pos=(*line).find('\t') + 1; 215 int pos=(*line).find('\t') + 1;
218 cardInPcmcia1Type = (*line).mid( pos, (*line).find("\t", pos) - pos ); 216 cardInPcmcia1Type = (*line).mid( pos, (*line).find("\t", pos) - pos );
219 } 217 }
220 } 218 }
221 } 219 }
222 f.close(); 220 f.close();
223 221
224 if( !showPopUp && (cardWas0 != cardInPcmcia0 || cardWas1 != cardInPcmcia1) ) { 222 if( !showPopUp && (cardWas0 != cardInPcmcia0 || cardWas1 != cardInPcmcia1) ) {
225 QString text = QString::null; 223 QString text = QString::null;
226 QString what = QString::null; 224 QString what = QString::null;
227 if(cardWas0 != cardInPcmcia0) { 225 if(cardWas0 != cardInPcmcia0) {
228 if(cardInPcmcia0) { 226 if(cardInPcmcia0) {
229 text += tr( "New card: " ); 227 text += tr( "New card: " );
230 what="on"; 228 what="on";
231 } else { 229 } else {
232 text += tr( "Ejected: " ); 230 text += tr( "Ejected: " );
233 what="off"; 231 what="off";
234 } 232 }
235 text += cardInPcmcia0Name; 233 text += cardInPcmcia0Name;
236 popUp( text, "cardmon/" + cardInPcmcia0Type ); 234 popUp( text, "cardmon/" + cardInPcmcia0Type );
237 } 235 }
238 236
239 if( cardWas1 != cardInPcmcia1) { 237 if( cardWas1 != cardInPcmcia1) {
240 if( cardInPcmcia1) { 238 if( cardInPcmcia1) {
241 text += tr( "New card: " ); 239 text += tr( "New card: " );
242 what = "on"; 240 what = "on";
243 } else { 241 } else {
244 text += tr( "Ejected: " ); 242 text += tr( "Ejected: " );
245 what = "off"; 243 what = "off";
246 } 244 }
247 text += cardInPcmcia1Name; 245 text += cardInPcmcia1Name;
248 popUp( text, "cardmon/" + cardInPcmcia1Type ); 246 popUp( text, "cardmon/" + cardInPcmcia1Type );
249 } 247 }
250 QSound::play( Resource::findSound( "cardmon/card" + what) ); 248 QSound::play( Resource::findSound( "cardmon/card" + what) );
251 } 249 }
252 } else { 250 } else {
253 // no file found 251 // no file found
254 qDebug( "no file found" ); 252 qDebug( "no file found" );
255 cardInPcmcia0 = FALSE; 253 cardInPcmcia0 = FALSE;
256 cardInPcmcia1 = FALSE; 254 cardInPcmcia1 = FALSE;
257 } 255 }
258 return ( (cardWas0 == cardInPcmcia0 && cardWas1 == cardInPcmcia1 ) ? FALSE : TRUE ); 256 return ( (cardWas0 == cardInPcmcia0 && cardWas1 == cardInPcmcia1 ) ? FALSE : TRUE );
259} 257}
260 258
261 259
262bool CardMonitor::getStatusSd( int showPopUp ) { 260bool CardMonitor::getStatusSd( int showPopUp ) {
263 261
264 bool cardWas = cardInSd; // remember last state 262 bool cardWas = cardInSd; // remember last state
265 cardInSd = FALSE; 263 cardInSd = FALSE;
266 264
267#if defined(_OS_LINUX_) || defined(Q_OS_LINUX) 265#if defined(_OS_LINUX_) || defined(Q_OS_LINUX)
268 struct mntent *me; 266 struct mntent *me;
269 FILE *mntfp = setmntent( "/etc/mtab", "r" ); 267 FILE *mntfp = setmntent( "/etc/mtab", "r" );
270 268
271 if ( mntfp ) { 269 if ( mntfp ) {
272 while ( ( me = getmntent( mntfp ) ) != 0 ) { 270 while ( ( me = getmntent( mntfp ) ) != 0 ) {
273 QString fs = me->mnt_fsname; 271 QString fs = me->mnt_fsname;
274 //qDebug( fs ); 272 //qDebug( fs );
275 if ( fs.left( 14 ) == "/dev/mmc/part1" || fs.left( 7 ) == "/dev/sd" || fs.left( 9 ) == "/dev/mmcd" ) { 273 if ( fs.left( 14 ) == "/dev/mmc/part1" || fs.left( 7 ) == "/dev/sd" || fs.left( 9 ) == "/dev/mmcd" ) {
276 cardInSd = TRUE; 274 cardInSd = TRUE;
277 show(); 275 show();
278 } 276 }
279// else { 277// else {
280// cardInSd = FALSE; 278// cardInSd = FALSE;
281// } 279// }
282 } 280 }
283 endmntent( mntfp ); 281 endmntent( mntfp );
284 } 282 }
285 283
286 if( !showPopUp && cardWas != cardInSd ) { 284 if( !showPopUp && cardWas != cardInSd ) {
287 QString text = QString::null; 285 QString text = QString::null;
288 QString what = QString::null; 286 QString what = QString::null;
289 if( cardInSd ) { 287 if( cardInSd ) {
290 text += "SD Inserted"; 288 text += "SD Inserted";
291 what = "on"; 289 what = "on";
292 } else { 290 } else {
293 text += "SD Removed"; 291 text += "SD Removed";
294 what = "off"; 292 what = "off";
295 } 293 }
296 //qDebug("TEXT: " + text ); 294 //qDebug("TEXT: " + text );
297 QSound::play( Resource::findSound( "cardmon/card" + what ) ); 295 QSound::play( Resource::findSound( "cardmon/card" + what ) );
298 popUp( text, "cardmon/ide" ); // XX add SD pic 296 popUp( text, "cardmon/ide" ); // XX add SD pic
299 } 297 }
300#else 298#else
301#error "Not on Linux" 299#error "Not on Linux"
302#endif 300#endif
303 return ( ( cardWas == cardInSd) ? FALSE : TRUE ); 301 return ( ( cardWas == cardInSd) ? FALSE : TRUE );
304} 302}
305 303
306void CardMonitor::paintEvent( QPaintEvent * ) { 304void CardMonitor::paintEvent( QPaintEvent * ) {
307 305
308 QPainter p( this ); 306 QPainter p( this );
309 307
310 if ( cardInPcmcia0 || cardInPcmcia1 || cardInSd ) { 308 if ( cardInPcmcia0 || cardInPcmcia1 || cardInSd ) {
311 p.drawPixmap( 0, 0, pm ); 309 p.drawPixmap( 0, 0, pm );
312 show(); 310 show();
313 } else { 311 } else {
314 p.eraseRect( rect() ); 312 p.eraseRect( rect() );
315 hide(); 313 hide();
316 } 314 }
317} 315}