summaryrefslogtreecommitdiff
path: root/noncore/applets/pcmcia/pcmcia.cpp
Unidiff
Diffstat (limited to 'noncore/applets/pcmcia/pcmcia.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/applets/pcmcia/pcmcia.cpp92
1 files changed, 48 insertions, 44 deletions
diff --git a/noncore/applets/pcmcia/pcmcia.cpp b/noncore/applets/pcmcia/pcmcia.cpp
index a1deb6b..4fcc189 100644
--- a/noncore/applets/pcmcia/pcmcia.cpp
+++ b/noncore/applets/pcmcia/pcmcia.cpp
@@ -30,2 +30,3 @@
30#include "pcmcia.h" 30#include "pcmcia.h"
31#include "configdialog.h"
31 32
@@ -111,2 +112,3 @@ void PcmciaManager::popupTimeout()
111 112
113enum { EJECT, INSERT, SUSPEND, RESUME, CONFIGURE };
112 114
@@ -125,10 +127,16 @@ void PcmciaManager::mousePressEvent( QMouseEvent* )
125 { 127 {
126
127 QPopupMenu* submenu = new QPopupMenu( menu ); 128 QPopupMenu* submenu = new QPopupMenu( menu );
128 submenu->insertItem( "Eject" ); 129 submenu->insertItem( "&Eject", EJECT+i*100 );
129 submenu->insertItem( "Insert" ); 130 submenu->insertItem( "&Insert", INSERT+i*100 );
130 submenu->insertItem( "Suspend" ); 131 submenu->insertItem( "&Suspend", SUSPEND+i*100 );
131 submenu->insertItem( "Resume" ); 132 submenu->insertItem( "&Resume", RESUME+i*100 );
132 submenu->insertItem( "Configure" ); 133 submenu->insertItem( "&Configure", CONFIGURE+i*100 );
133 134
135 submenu->setItemEnabled( EJECT+i*100, !it.current()->isEmpty() );
136 submenu->setItemEnabled( INSERT+i*100, it.current()->isEmpty() );
137 submenu->setItemEnabled( SUSPEND+i*100, !it.current()->isEmpty() && !it.current()->isSuspended() );
138 submenu->setItemEnabled( RESUME+i*100, !it.current()->isEmpty() && it.current()->isSuspended() );
139 submenu->setItemEnabled( CONFIGURE+i*100, !it.current()->isEmpty() );
140
141 connect( submenu, SIGNAL(activated(int)), this, SLOT(userCardAction(int)) );
134 menu->insertItem( tr( "%1: %2" ).arg( i++ ).arg( it.current()->identity() ), submenu, 1 ); 142 menu->insertItem( tr( "%1: %2" ).arg( i++ ).arg( it.current()->identity() ), submenu, 1 );
@@ -137,28 +145,2 @@ void PcmciaManager::mousePressEvent( QMouseEvent* )
137 145
138
139
140 /* insert items depending on number of cards etc.
141
142 if ( cardInSd ) {
143 menu->insertItem( QIconSet( Opie::Core::OResource::loadPixmap( "cardmon/ide", Opie::Core::OResource::SmallIcon ) ),
144 tr( "Eject SD/MMC card" ), 0 );
145 }
146
147
148
149 if ( cardInPcmcia0 ) {
150 menu->
151 insertItem( QIconSet
152 ( Opie::Core::OResource::loadPixmap( "cardmon/" + cardInPcmcia0Type, Opie::Core::OResource::SmallIcon ) ),
153 tr( "Eject card 0: %1" ).arg( cardInPcmcia0Name ), 1 );
154 }
155
156 if ( cardInPcmcia1 ) {
157 menu->
158 insertItem( QIconSet
159 ( Opie::Core::OResource::loadPixmap( "cardmon/" + cardInPcmcia1Type, Opie::Core::OResource::SmallIcon ) ),
160 tr( "Eject card 1: %1" ).arg( cardInPcmcia1Name ), 2 );
161 }
162 */
163
164 QPoint p = mapToGlobal( QPoint( 0, 0 ) ); 146 QPoint p = mapToGlobal( QPoint( 0, 0 ) );
@@ -189,3 +171,3 @@ void PcmciaManager::cardMessage( const QCString & msg, const QByteArray & )
189 bool newCard = true; 171 bool newCard = true;
190 QString cardName; 172 OPcmciaSocket* theCard = 0;
191 173
@@ -201,3 +183,4 @@ void PcmciaManager::cardMessage( const QCString & msg, const QByteArray & )
201 { 183 {
202 cardName = it.current()->identity(); 184 OPcmciaSocket* theCard = it.current();
185 QString cardName = theCard->identity();
203 for ( int i = 0; i < nCards; ++i ) 186 for ( int i = 0; i < nCards; ++i )
@@ -221,3 +204,4 @@ void PcmciaManager::cardMessage( const QCString & msg, const QByteArray & )
221 cfg.setGroup( QString( "Card_%1" ).arg( nCards ) ); 204 cfg.setGroup( QString( "Card_%1" ).arg( nCards ) );
222 cfg.writeEntry( "name", cardName ); 205 cfg.writeEntry( "name", theCard->identity() );
206 cfg.writeEntry( "insert", "suspend" );
223 cfg.setGroup( "Global" ); 207 cfg.setGroup( "Global" );
@@ -228,3 +212,3 @@ void PcmciaManager::cardMessage( const QCString & msg, const QByteArray & )
228 tr( "PCMCIA/CF Subsystem" ), 212 tr( "PCMCIA/CF Subsystem" ),
229 tr( "You have inserted a new card:\n%1\nDo you want to configure?" ).arg( cardName ), 213 tr( "You have inserted a new card:\n%1\nDo you want to configure?" ).arg( theCard->identity() ),
230 tr( "Yes" ), tr( "No" ), 0, 0, 1 ); 214 tr( "Yes" ), tr( "No" ), 0, 0, 1 );
@@ -233,6 +217,3 @@ void PcmciaManager::cardMessage( const QCString & msg, const QByteArray & )
233 { 217 {
234 QMessageBox::information( qApp->desktop(), 218 configure( theCard );
235 tr( "PCMCIA/CF Subsystem" ),
236 tr( "Sorry, not yet implemented...\n~lart mickeyl :D" ),
237 tr( "No Problem" ), 0, 0, 0 );
238 } 219 }
@@ -240,3 +221,3 @@ void PcmciaManager::cardMessage( const QCString & msg, const QByteArray & )
240 { 221 {
241 odebug << "pcmcia: user doesn't want to configure " << cardName << " now." << oendl; 222 odebug << "pcmcia: user doesn't want to configure " << theCard->identity() << " now." << oendl;
242 } 223 }
@@ -254,4 +235,5 @@ void PcmciaManager::paintEvent( QPaintEvent * )
254 QPainter p( this ); 235 QPainter p( this );
255 qDebug( "count = %d", (OPcmciaSystem::instance()->count() ) ); 236 odebug << "sockets = " << OPcmciaSystem::instance()->count() << ", cards = " << OPcmciaSystem::instance()->cardCount() << oendl;
256 if ( OPcmciaSystem::instance()->count() ) 237
238 if ( OPcmciaSystem::instance()->cardCount() )
257 { 239 {
@@ -275,2 +257,24 @@ void PcmciaManager::execCommand( const QStringList &strList )
275 257
258void PcmciaManager::userCardAction( int action )
259{
260 odebug << "user action requested. action = " << action << oendl;
261
262 int socket = action / 100;
263 int what = action % 100;
264
265 switch ( what )
266 {
267 case CONFIGURE: configure( OPcmciaSystem::instance()->socket( socket ) ); break;
268 default: odebug << "not yet implemented";
269 }
270}
271
272void PcmciaManager::configure( OPcmciaSocket* card )
273{
274 ConfigDialog dialog( card->identity(), qApp->desktop() );
275 int configresult = dialog.exec();
276 odebug << "pcmcia: configresult = " << configresult << oendl;
277}
278
279
276EXPORT_OPIE_APPLET_v1( PcmciaManager ) 280EXPORT_OPIE_APPLET_v1( PcmciaManager )