author | llornkcor <llornkcor> | 2002-10-21 13:05:02 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-10-21 13:05:02 (UTC) |
commit | 2c61d682a74f9ce2a216cf59c33c3dcecf00a213 (patch) (unidiff) | |
tree | 9a6e1ce51d4ae2e9f5dfecbe868297c9732e2eb7 | |
parent | 32817a02b4fae7010e7ef1212916168845a58831 (diff) | |
download | opie-2c61d682a74f9ce2a216cf59c33c3dcecf00a213.zip opie-2c61d682a74f9ce2a216cf59c33c3dcecf00a213.tar.gz opie-2c61d682a74f9ce2a216cf59c33c3dcecf00a213.tar.bz2 |
popupmenu now has parent 0 and gets deleted in timeout, to advoid a general slowdown of opie on resume/boot, which made it seem like opie was slow.
-rw-r--r-- | core/applets/cardmon/cardmon.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/applets/cardmon/cardmon.cpp b/core/applets/cardmon/cardmon.cpp index 1663af2..4199273 100644 --- a/core/applets/cardmon/cardmon.cpp +++ b/core/applets/cardmon/cardmon.cpp | |||
@@ -1,193 +1,195 @@ | |||
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 | ||
45 | using namespace Opie; | 45 | using namespace Opie; |
46 | 46 | ||
47 | CardMonitor::CardMonitor( QWidget *parent ) : QWidget( parent ), | 47 | CardMonitor::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 | ||
69 | CardMonitor::~CardMonitor() { | 69 | CardMonitor::~CardMonitor() { |
70 | if( popupMenu ) { | 70 | if( popupMenu ) { |
71 | delete popupMenu; | 71 | delete popupMenu; |
72 | } | 72 | } |
73 | } | 73 | } |
74 | 74 | ||
75 | void CardMonitor::popUp( QString message, QString icon ) { | 75 | void CardMonitor::popUp( QString message, QString icon ) { |
76 | if ( ! popupMenu ) { | 76 | if ( ! popupMenu ) { |
77 | popupMenu = new QPopupMenu(); | 77 | popupMenu = new QPopupMenu(0); |
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 | ||
96 | void CardMonitor::popupTimeout() { | 96 | void CardMonitor::popupTimeout() { |
97 | popupMenu->hide(); | 97 | popupMenu->hide(); |
98 | popupMenu=0; | ||
99 | if(popupMenu) delete popupMenu; | ||
98 | } | 100 | } |
99 | 101 | ||
100 | void CardMonitor::mousePressEvent( QMouseEvent * ) { | 102 | void CardMonitor::mousePressEvent( QMouseEvent * ) { |
101 | QPopupMenu *menu = new QPopupMenu(); | 103 | QPopupMenu *menu = new QPopupMenu(); |
102 | QString cmd; | 104 | QString cmd; |
103 | int err=0; | 105 | int err=0; |
104 | 106 | ||
105 | if ( cardInSd ) { | 107 | if ( cardInSd ) { |
106 | menu->insertItem( tr("Eject SD/MMC card"), 0 ); | 108 | menu->insertItem( tr("Eject SD/MMC card"), 0 ); |
107 | } | 109 | } |
108 | 110 | ||
109 | if ( cardInPcmcia0 ) { | 111 | if ( cardInPcmcia0 ) { |
110 | menu->insertItem( QIconSet ( Resource::loadPixmap ( "cardmon/" + cardInPcmcia0Type ) ), | 112 | menu->insertItem( QIconSet ( Resource::loadPixmap ( "cardmon/" + cardInPcmcia0Type ) ), |
111 | tr( "Eject card 0: %1" ).arg(cardInPcmcia0Name ), 1 ); | 113 | tr( "Eject card 0: %1" ).arg(cardInPcmcia0Name ), 1 ); |
112 | } | 114 | } |
113 | 115 | ||
114 | if ( cardInPcmcia1 ) { | 116 | if ( cardInPcmcia1 ) { |
115 | menu->insertItem( QIconSet ( Resource::loadPixmap ( "cardmon/" + cardInPcmcia1Type ) ), | 117 | menu->insertItem( QIconSet ( Resource::loadPixmap ( "cardmon/" + cardInPcmcia1Type ) ), |
116 | tr( "Eject card 1: %1" ).arg( cardInPcmcia1Name ), 2 ); | 118 | tr( "Eject card 1: %1" ).arg( cardInPcmcia1Name ), 2 ); |
117 | } | 119 | } |
118 | 120 | ||
119 | QPoint p = mapToGlobal ( QPoint ( 0, 0 ) ); | 121 | QPoint p = mapToGlobal ( QPoint ( 0, 0 ) ); |
120 | QSize s = menu->sizeHint (); | 122 | QSize s = menu->sizeHint (); |
121 | int opt = menu->exec( QPoint ( | 123 | int opt = menu->exec( QPoint ( |
122 | p. x ( ) + ( width ( ) / 2 ) - ( s. width ( ) / 2 ), | 124 | p. x ( ) + ( width ( ) / 2 ) - ( s. width ( ) / 2 ), |
123 | p. y ( ) - s. height ( ) ), 0); | 125 | p. y ( ) - s. height ( ) ), 0); |
124 | 126 | ||
125 | if ( opt == 1 ) { | 127 | if ( opt == 1 ) { |
126 | cmd = "/sbin/cardctl eject 0"; | 128 | cmd = "/sbin/cardctl eject 0"; |
127 | err = system( ( const char * ) cmd ); | 129 | err = system( ( const char * ) cmd ); |
128 | if ( ( err == 127 ) || ( err < 0 ) ) { | 130 | if ( ( err == 127 ) || ( err < 0 ) ) { |
129 | qDebug( "Could not execute `/sbin/cardctl eject 0'! err=%d", err ); | 131 | qDebug( "Could not execute `/sbin/cardctl eject 0'! err=%d", err ); |
130 | popUp( tr( "CF/PCMCIA card eject failed!" ) ); | 132 | popUp( tr( "CF/PCMCIA card eject failed!" ) ); |
131 | } | 133 | } |
132 | } else if ( opt == 0 ) { | 134 | } else if ( opt == 0 ) { |
133 | if ( ODevice::inst()->system() == System_Familiar ) { | 135 | if ( ODevice::inst()->system() == System_Familiar ) { |
134 | cmd = "umount /dev/mmc/part1"; | 136 | cmd = "umount /dev/mmc/part1"; |
135 | err = system( ( const char *) cmd ); | 137 | err = system( ( const char *) cmd ); |
136 | if ( ( err != 0 ) ) { | 138 | if ( ( err != 0 ) ) { |
137 | popUp( tr("SD/MMC card eject failed!") ); | 139 | popUp( tr("SD/MMC card eject failed!") ); |
138 | } | 140 | } |
139 | } else { | 141 | } else { |
140 | cmd = "/etc/sdcontrol compeject"; | 142 | cmd = "/etc/sdcontrol compeject"; |
141 | err = system( ( const char *) cmd ); | 143 | err = system( ( const char *) cmd ); |
142 | if ( ( err != 0 ) ) { | 144 | if ( ( err != 0 ) ) { |
143 | qDebug( "Could not execute `/etc/sdcontrol comeject'! err=%d", err ); | 145 | qDebug( "Could not execute `/etc/sdcontrol comeject'! err=%d", err ); |
144 | popUp( tr("SD/MMC card eject failed!") ); | 146 | popUp( tr("SD/MMC card eject failed!") ); |
145 | } | 147 | } |
146 | } | 148 | } |
147 | } else if ( opt == 2 ) { | 149 | } else if ( opt == 2 ) { |
148 | cmd = "/sbin/cardctl eject 1"; | 150 | cmd = "/sbin/cardctl eject 1"; |
149 | err = system( ( const char *) cmd ); | 151 | err = system( ( const char *) cmd ); |
150 | if ( ( err == 127 ) || ( err < 0 ) ) { | 152 | if ( ( err == 127 ) || ( err < 0 ) ) { |
151 | qDebug( "Could not execute `/sbin/cardctl eject 1'! err=%d", err ); | 153 | qDebug( "Could not execute `/sbin/cardctl eject 1'! err=%d", err ); |
152 | popUp( tr( "CF/PCMCIA card eject failed!" ) ); | 154 | popUp( tr( "CF/PCMCIA card eject failed!" ) ); |
153 | } | 155 | } |
154 | } | 156 | } |
155 | delete menu; | 157 | delete menu; |
156 | } | 158 | } |
157 | 159 | ||
158 | 160 | ||
159 | void CardMonitor::cardMessage( const QCString &msg, const QByteArray & ) { | 161 | void CardMonitor::cardMessage( const QCString &msg, const QByteArray & ) { |
160 | if ( msg == "stabChanged()" ) { | 162 | if ( msg == "stabChanged()" ) { |
161 | // qDebug("Pcmcia: stabchanged"); | 163 | // qDebug("Pcmcia: stabchanged"); |
162 | getStatusPcmcia(); | 164 | getStatusPcmcia(); |
163 | } else if ( msg == "mtabChanged()" ) { | 165 | } else if ( msg == "mtabChanged()" ) { |
164 | qDebug("CARDMONAPPLET: mtabchanged"); | 166 | qDebug("CARDMONAPPLET: mtabchanged"); |
165 | getStatusSd(); | 167 | getStatusSd(); |
166 | } | 168 | } |
167 | } | 169 | } |
168 | 170 | ||
169 | bool CardMonitor::getStatusPcmcia( int showPopUp ) { | 171 | bool CardMonitor::getStatusPcmcia( int showPopUp ) { |
170 | 172 | ||
171 | bool cardWas0 = cardInPcmcia0; // remember last state | 173 | bool cardWas0 = cardInPcmcia0; // remember last state |
172 | bool cardWas1 = cardInPcmcia1; | 174 | bool cardWas1 = cardInPcmcia1; |
173 | 175 | ||
174 | QString fileName; | 176 | QString fileName; |
175 | 177 | ||
176 | // one of these 3 files should exist | 178 | // one of these 3 files should exist |
177 | if ( QFile::exists( "/var/run/stab" ) ) { | 179 | if ( QFile::exists( "/var/run/stab" ) ) { |
178 | fileName = "/var/run/stab"; | 180 | fileName = "/var/run/stab"; |
179 | } else if (QFile::exists( "/var/state/pcmcia/stab" ) ) { | 181 | } else if (QFile::exists( "/var/state/pcmcia/stab" ) ) { |
180 | fileName = "/var/state/pcmcia/stab"; | 182 | fileName = "/var/state/pcmcia/stab"; |
181 | } else { | 183 | } else { |
182 | fileName = "/var/lib/pcmcia/stab"; | 184 | fileName = "/var/lib/pcmcia/stab"; |
183 | } | 185 | } |
184 | 186 | ||
185 | QFile f( fileName ); | 187 | QFile f( fileName ); |
186 | 188 | ||
187 | if ( f.open( IO_ReadOnly ) ) { | 189 | if ( f.open( IO_ReadOnly ) ) { |
188 | QStringList list; | 190 | QStringList list; |
189 | QTextStream stream ( &f ); | 191 | QTextStream stream ( &f ); |
190 | QString streamIn; | 192 | QString streamIn; |
191 | streamIn = stream.read(); | 193 | streamIn = stream.read(); |
192 | list = QStringList::split( "\n", streamIn ); | 194 | list = QStringList::split( "\n", streamIn ); |
193 | for( QStringList::Iterator line=list.begin(); line!=list.end(); line++ ) { | 195 | for( QStringList::Iterator line=list.begin(); line!=list.end(); line++ ) { |