summaryrefslogtreecommitdiff
path: root/noncore/applets/pcmcia/pcmcia.cpp
Side-by-side diff
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
@@ -25,12 +25,13 @@
Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
#include "pcmcia.h"
+#include "configdialog.h"
/* OPIE */
#include <opie2/odebug.h>
#include <opie2/odevice.h>
#include <opie2/oconfig.h>
#include <opie2/oprocess.h>
@@ -106,12 +107,13 @@ void PcmciaManager::popUp( QString message, QString icon )
void PcmciaManager::popupTimeout()
{
popupMenu->hide();
}
+enum { EJECT, INSERT, SUSPEND, RESUME, CONFIGURE };
void PcmciaManager::mousePressEvent( QMouseEvent* )
{
QPopupMenu* menu = new QPopupMenu( this );
QStringList cmd;
bool execute = true;
@@ -120,50 +122,30 @@ void PcmciaManager::mousePressEvent( QMouseEvent* )
OPcmciaSystem::CardIterator it = sys->iterator();
if ( !sys->count() ) return;
int i = 0;
while ( it.current() )
{
-
QPopupMenu* submenu = new QPopupMenu( menu );
- submenu->insertItem( "Eject" );
- submenu->insertItem( "Insert" );
- submenu->insertItem( "Suspend" );
- submenu->insertItem( "Resume" );
- submenu->insertItem( "Configure" );
-
+ submenu->insertItem( "&Eject", EJECT+i*100 );
+ submenu->insertItem( "&Insert", INSERT+i*100 );
+ submenu->insertItem( "&Suspend", SUSPEND+i*100 );
+ submenu->insertItem( "&Resume", RESUME+i*100 );
+ submenu->insertItem( "&Configure", CONFIGURE+i*100 );
+
+ submenu->setItemEnabled( EJECT+i*100, !it.current()->isEmpty() );
+ submenu->setItemEnabled( INSERT+i*100, it.current()->isEmpty() );
+ submenu->setItemEnabled( SUSPEND+i*100, !it.current()->isEmpty() && !it.current()->isSuspended() );
+ submenu->setItemEnabled( RESUME+i*100, !it.current()->isEmpty() && it.current()->isSuspended() );
+ submenu->setItemEnabled( CONFIGURE+i*100, !it.current()->isEmpty() );
+
+ connect( submenu, SIGNAL(activated(int)), this, SLOT(userCardAction(int)) );
menu->insertItem( tr( "%1: %2" ).arg( i++ ).arg( it.current()->identity() ), submenu, 1 );
++it;
}
-
-
- /* insert items depending on number of cards etc.
-
- if ( cardInSd ) {
- menu->insertItem( QIconSet( Opie::Core::OResource::loadPixmap( "cardmon/ide", Opie::Core::OResource::SmallIcon ) ),
- tr( "Eject SD/MMC card" ), 0 );
- }
-
-
-
- if ( cardInPcmcia0 ) {
- menu->
- insertItem( QIconSet
- ( Opie::Core::OResource::loadPixmap( "cardmon/" + cardInPcmcia0Type, Opie::Core::OResource::SmallIcon ) ),
- tr( "Eject card 0: %1" ).arg( cardInPcmcia0Name ), 1 );
- }
-
- if ( cardInPcmcia1 ) {
- menu->
- insertItem( QIconSet
- ( Opie::Core::OResource::loadPixmap( "cardmon/" + cardInPcmcia1Type, Opie::Core::OResource::SmallIcon ) ),
- tr( "Eject card 1: %1" ).arg( cardInPcmcia1Name ), 2 );
- }
- */
-
QPoint p = mapToGlobal( QPoint( 0, 0 ) );
QSize s = menu->sizeHint();
int opt = menu->exec( QPoint( p.x() + ( width() / 2 ) - ( s.width() / 2 ), p.y() - s.height() ), 0 );
qDebug( "pcmcia: menu result = %d", opt );
delete menu;
}
@@ -184,25 +166,26 @@ void PcmciaManager::cardMessage( const QCString & msg, const QByteArray & )
int nCards = cfg.readNumEntry( "nCards", 0 );
OPcmciaSystem* sys = OPcmciaSystem::instance();
OPcmciaSystem::CardIterator it = sys->iterator();
bool newCard = true;
- QString cardName;
+ OPcmciaSocket* theCard = 0;
while ( it.current() && newCard )
{
if ( it.current()->isEmpty() )
{
odebug << "skipping empty card in socket " << it.current()->number() << oendl;
++it;
continue;
}
else
{
- cardName = it.current()->identity();
+ OPcmciaSocket* theCard = it.current();
+ QString cardName = theCard->identity();
for ( int i = 0; i < nCards; ++i )
{
QString cardSection = QString( "Card_%1" ).arg( i );
cfg.setGroup( cardSection );
QString name = cfg.readEntry( "name" );
odebug << "comparing card '" << cardName << "' with known card '" << name << "'" << oendl;
@@ -216,32 +199,30 @@ void PcmciaManager::cardMessage( const QCString & msg, const QByteArray & )
}
}
if ( newCard )
{
odebug << "pcmcia: new card detected" << oendl;
cfg.setGroup( QString( "Card_%1" ).arg( nCards ) );
- cfg.writeEntry( "name", cardName );
+ cfg.writeEntry( "name", theCard->identity() );
+ cfg.writeEntry( "insert", "suspend" );
cfg.setGroup( "Global" );
cfg.writeEntry( "nCards", nCards+1 );
cfg.write();
int result = QMessageBox::information( qApp->desktop(),
tr( "PCMCIA/CF Subsystem" ),
- tr( "You have inserted a new card:\n%1\nDo you want to configure?" ).arg( cardName ),
+ tr( "You have inserted a new card:\n%1\nDo you want to configure?" ).arg( theCard->identity() ),
tr( "Yes" ), tr( "No" ), 0, 0, 1 );
odebug << "result = " << result << oendl;
if ( result == 0 )
{
- QMessageBox::information( qApp->desktop(),
- tr( "PCMCIA/CF Subsystem" ),
- tr( "Sorry, not yet implemented...\n~lart mickeyl :D" ),
- tr( "No Problem" ), 0, 0, 0 );
+ configure( theCard );
}
else
{
- odebug << "pcmcia: user doesn't want to configure " << cardName << " now." << oendl;
+ odebug << "pcmcia: user doesn't want to configure " << theCard->identity() << " now." << oendl;
}
}
else
{
odebug << "pcmcia: card has been previously inserted" << oendl;
}
@@ -249,14 +230,15 @@ void PcmciaManager::cardMessage( const QCString & msg, const QByteArray & )
}
void PcmciaManager::paintEvent( QPaintEvent * )
{
QPainter p( this );
- qDebug( "count = %d", (OPcmciaSystem::instance()->count() ) );
- if ( OPcmciaSystem::instance()->count() )
+ odebug << "sockets = " << OPcmciaSystem::instance()->count() << ", cards = " << OPcmciaSystem::instance()->cardCount() << oendl;
+
+ if ( OPcmciaSystem::instance()->cardCount() )
{
p.drawPixmap( 0, 0, pm );
show();
}
else
{
@@ -270,8 +252,30 @@ int PcmciaManager::position()
}
void PcmciaManager::execCommand( const QStringList &strList )
{
}
+void PcmciaManager::userCardAction( int action )
+{
+ odebug << "user action requested. action = " << action << oendl;
+
+ int socket = action / 100;
+ int what = action % 100;
+
+ switch ( what )
+ {
+ case CONFIGURE: configure( OPcmciaSystem::instance()->socket( socket ) ); break;
+ default: odebug << "not yet implemented";
+ }
+}
+
+void PcmciaManager::configure( OPcmciaSocket* card )
+{
+ ConfigDialog dialog( card->identity(), qApp->desktop() );
+ int configresult = dialog.exec();
+ odebug << "pcmcia: configresult = " << configresult << oendl;
+}
+
+
EXPORT_OPIE_APPLET_v1( PcmciaManager )