From 855e272549619c02efac516b2cd17828d7a3ad68 Mon Sep 17 00:00:00 2001 From: mickeyl Date: Thu, 09 Jun 2005 14:30:24 +0000 Subject: update dialog and start with code reading possible PCMCIA devices and classes --- (limited to 'noncore/applets') diff --git a/noncore/applets/pcmcia/configdialog.cpp b/noncore/applets/pcmcia/configdialog.cpp index c08926e..e7c97c1 100644 --- a/noncore/applets/pcmcia/configdialog.cpp +++ b/noncore/applets/pcmcia/configdialog.cpp @@ -36,17 +36,20 @@ using namespace Opie::Core; /* QT */ #include +#include +#include ConfigDialog::ConfigDialog( const QString& cardname, QWidget* parent ) :ConfigDialogBase( parent, "pcmcia config dialog", true ) { - setCaption( tr( "Configure %1" ).arg( cardname ) ); - + //setCaption( tr( "Configure %1" ).arg( cardname ) ); + textCardName->setText( cardname ); + OConfig cfg( "PCMCIA" ); cfg.setGroup( "Global" ); int nCards = cfg.readNumEntry( "nCards", 0 ); QString insert; - + for ( int i = 0; i < nCards; ++i ) { QString cardSection = QString( "Card_%1" ).arg( i ); @@ -60,12 +63,22 @@ ConfigDialog::ConfigDialog( const QString& cardname, QWidget* parent ) } } odebug << "preferred action for card '" << cardname << "' seems to be '" << insert << "'" << oendl; - + if ( !insert.isEmpty() ) { for ( int i; i < cbAction->count(); ++i ) if ( cbAction->text( i ) == insert ) cbAction->setCurrentItem( i ); } + + // parse possible device and class names out of /etc/pcmcia/*.conf + QStringList deviceNames; + QStringList classNames; + + QDir pcmciaconfdir( "/etc/pcmcia", "*.conf" ); + + for ( int i = 0; i < pcmciaconfdir.count(); ++i ) + odebug << "found conf file '" << pcmciaconfdir[i] << "'" << oendl; + } ConfigDialog::~ConfigDialog() diff --git a/noncore/applets/pcmcia/configdialog.h b/noncore/applets/pcmcia/configdialog.h index 12500c4..f79d7a6 100644 --- a/noncore/applets/pcmcia/configdialog.h +++ b/noncore/applets/pcmcia/configdialog.h @@ -36,7 +36,7 @@ class ConfigDialog : public ConfigDialogBase { Q_OBJECT public: - + ConfigDialog( const QString& cardname, QWidget* parent ); ~ConfigDialog(); }; diff --git a/noncore/applets/pcmcia/configdialogbase.ui b/noncore/applets/pcmcia/configdialogbase.ui index d8dd983..a9682c5 100644 --- a/noncore/applets/pcmcia/configdialogbase.ui +++ b/noncore/applets/pcmcia/configdialogbase.ui @@ -11,8 +11,8 @@ 0 0 - 214 - 44 + 234 + 130 @@ -28,13 +28,13 @@ margin - 11 + 7 spacing - 6 + 4 - + QLabel name @@ -45,7 +45,18 @@ card - + + QLabel + + name + TextLabel2 + + + text + Upon insertion, + + + QComboBox @@ -76,15 +87,62 @@ cbAction - + + QComboBox + + name + cbBindTo + + + + Line + + name + Line1 + + + orientation + Horizontal + + + QLabel name - TextLabel2 + textBindTo text - Upon insertion, + Bind to: + + + + QLabel + + name + textClassName + + + text + Classname: + + + + QComboBox + + name + cbClassName + + + + QLabel + + name + textCardName + + + text + CardName diff --git a/noncore/applets/pcmcia/pcmcia.cpp b/noncore/applets/pcmcia/pcmcia.cpp index 4fcc189..6c18e86 100644 --- a/noncore/applets/pcmcia/pcmcia.cpp +++ b/noncore/applets/pcmcia/pcmcia.cpp @@ -131,13 +131,13 @@ void PcmciaManager::mousePressEvent( QMouseEvent* ) 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; @@ -170,7 +170,7 @@ void PcmciaManager::cardMessage( const QCString & msg, const QByteArray & ) bool newCard = true; OPcmciaSocket* theCard = 0; - + while ( it.current() && newCard ) { if ( it.current()->isEmpty() ) @@ -234,7 +234,7 @@ void PcmciaManager::paintEvent( QPaintEvent * ) { QPainter p( this ); odebug << "sockets = " << OPcmciaSystem::instance()->count() << ", cards = " << OPcmciaSystem::instance()->cardCount() << oendl; - + if ( OPcmciaSystem::instance()->cardCount() ) { p.drawPixmap( 0, 0, pm ); @@ -258,10 +258,10 @@ 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; -- cgit v0.9.0.2