summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/cardmon/cardmon.cpp57
-rw-r--r--core/applets/cardmon/cardmon.h8
2 files changed, 38 insertions, 27 deletions
diff --git a/core/applets/cardmon/cardmon.cpp b/core/applets/cardmon/cardmon.cpp
index 43ccce2..fb140fe 100644
--- a/core/applets/cardmon/cardmon.cpp
+++ b/core/applets/cardmon/cardmon.cpp
@@ -108,7 +108,8 @@ void CardMonitor::popupTimeout() {
108 108
109void CardMonitor::mousePressEvent( QMouseEvent * ) { 109void CardMonitor::mousePressEvent( QMouseEvent * ) {
110 QPopupMenu * menu = new QPopupMenu( this ); 110 QPopupMenu * menu = new QPopupMenu( this );
111 QString cmd; 111 QStringList cmd;
112 bool execute = true;
112 113
113 if ( cardInSd ) { 114 if ( cardInSd ) {
114 menu->insertItem( QIconSet( Resource::loadPixmap( "cardmon/ide" ) ), 115 menu->insertItem( QIconSet( Resource::loadPixmap( "cardmon/ide" ) ),
@@ -135,15 +136,20 @@ void CardMonitor::mousePressEvent( QMouseEvent * ) {
135 p.y() - s.height() ), 0 ); 136 p.y() - s.height() ), 0 );
136 137
137 if ( opt == 1 ) { 138 if ( opt == 1 ) {
138 m_commandOrig = 1; 139 m_commandOrig = PCMCIA_Socket1;
139 execCommand("/sbin/cardctl eject 0"); 140 cmd << "/sbin/cardctl" << "eject" << "0";
140 } else if ( opt == 0 ) { 141 } else if ( opt == 0 ) {
141 m_commandOrig = 2; 142 m_commandOrig = MMC_Socket;
142 execCommand( QString("umount %1").arg(cardSdName)); 143 cmd << "umount" << cardSdName;
143 } else if ( opt == 2 ) { 144 } else if ( opt == 2 ) {
144 m_commandOrig = 3; 145 m_commandOrig = PCMCIA_Socket2;
145 execCommand( "/sbin/cardctl eject 1" ); 146 cmd << "/sbin/cardctl" << "eject" << "1";
146 } 147 }else
148 execute = false;
149
150 if ( execute )
151 execCommand( cmd );
152
147 delete menu; 153 delete menu;
148} 154}
149 155
@@ -333,20 +339,20 @@ int CardMonitor::position() {
333 return 7; 339 return 7;
334} 340}
335 341
336void CardMonitor::execCommand( const QString &command ) { 342void CardMonitor::execCommand( const QStringList &strList ) {
337 delete m_process; 343 delete m_process;
338 m_process = 0; 344 m_process = 0;
339 345
340 if ( m_process == 0 ) { 346 if ( m_process == 0 ) {
341 m_process = new OProcess(); 347 m_process = new OProcess();
342 QStringList strList = QStringList::split( " ", command );
343 348
344 for ( QStringList::Iterator it = strList.begin(); it != strList.end(); ++it ) {
345 *m_process << *it;
346 }
347 349
348 connect(m_process, SIGNAL( processExited(Opie::Core::OProcess*) ), 350 for ( QStringList::ConstIterator it = strList.begin(); it != strList.end(); ++it ) {
349 this, SLOT( slotExited(Opie::Core::OProcess* ) ) ); 351 *m_process << *it;
352 }
353
354 connect(m_process, SIGNAL(processExited(Opie::Core::OProcess*)),
355 this, SLOT( slotExited(Opie::Core::OProcess*)));
350 356
351 if(!m_process->start(OProcess::NotifyOnExit, OProcess::AllOutput ) ) { 357 if(!m_process->start(OProcess::NotifyOnExit, OProcess::AllOutput ) ) {
352 delete m_process; 358 delete m_process;
@@ -358,17 +364,16 @@ void CardMonitor::execCommand( const QString &command ) {
358void CardMonitor::slotExited( OProcess* ) { 364void CardMonitor::slotExited( OProcess* ) {
359 365
360 if( m_process->normalExit() ) { 366 if( m_process->normalExit() ) {
361 int ret = m_process->exitStatus(); 367 int ret = m_process->exitStatus();
362 if( ret != 0 ) { 368 if( ret != 0 ) {
363 if ( m_commandOrig == 1 ) { 369 if ( m_commandOrig == PCMCIA_Socket1 ||
364 popUp( tr( "CF/PCMCIA card eject failed!" ) ); 370 m_commandOrig == PCMCIA_Socket2 ) {
365 } else if ( m_commandOrig == 2 ) { 371 popUp( tr( "CF/PCMCIA card eject failed!" ) );
366 popUp( tr( "SD/MMC card eject failed!" ) ); 372 } else if ( m_commandOrig == MMC_Socket ) {
367 } else if ( m_commandOrig == 3 ) { 373 popUp( tr( "SD/MMC card eject failed!" ) );
368 popUp( tr( "CF/PCMCIA card eject failed!" ) ); 374 }
369 } 375 }
370 } 376 }
371 }
372} 377}
373 378
374EXPORT_OPIE_APPLET_v1( CardMonitor ) 379EXPORT_OPIE_APPLET_v1( CardMonitor )
diff --git a/core/applets/cardmon/cardmon.h b/core/applets/cardmon/cardmon.h
index b02c8b1..400f5ae 100644
--- a/core/applets/cardmon/cardmon.h
+++ b/core/applets/cardmon/cardmon.h
@@ -32,6 +32,12 @@ namespace Opie {
32class CardMonitor : public QWidget { 32class CardMonitor : public QWidget {
33 Q_OBJECT 33 Q_OBJECT
34public: 34public:
35 enum {
36 PCMCIA_Socket1,
37 PCMCIA_Socket2,
38 MMC_Socket
39 };
40
35 CardMonitor( QWidget *parent = 0 ); 41 CardMonitor( QWidget *parent = 0 );
36 ~CardMonitor(); 42 ~CardMonitor();
37 bool getStatusPcmcia( int showPopUp = FALSE ); 43 bool getStatusPcmcia( int showPopUp = FALSE );
@@ -47,7 +53,7 @@ protected:
47 void mousePressEvent( QMouseEvent * ); 53 void mousePressEvent( QMouseEvent * );
48 54
49private: 55private:
50 void execCommand( const QString &command ); 56 void execCommand( const QStringList &command );
51 int m_commandOrig; 57 int m_commandOrig;
52 QPixmap pm; 58 QPixmap pm;
53 // pcmcia socket 0 59 // pcmcia socket 0