From 55753b4e3550f950497fe073488a206d924b75be Mon Sep 17 00:00:00 2001 From: mickeyl Date: Sat, 21 May 2005 20:23:42 +0000 Subject: add first card configuration bits and config dialog skeleton --- (limited to 'noncore/applets') diff --git a/noncore/applets/pcmcia/configdialog.cpp b/noncore/applets/pcmcia/configdialog.cpp new file mode 100644 index 0000000..c08926e --- a/dev/null +++ b/noncore/applets/pcmcia/configdialog.cpp @@ -0,0 +1,73 @@ +/* +                 This file is part of the Opie Project + =. (C) 2005 Michael 'Mickey' Lauer + .=l. +           .>+-= + _;:,     .>    :=|. This program is free software; you can +.> <`_,   >  .   <= redistribute it and/or modify it under +:`=1 )Y*s>-.--   : the terms of the GNU Library General Public +.="- .-=="i,     .._ License as published by the Free Software + - .   .-<_>     .<> Foundation; either version 2 of the License, +     ._= =}       : or (at your option) any later version. +    .%`+i>       _;_. +    .i_,=:_.      -`: PARTICULAR PURPOSE. See the GNU +..}^=.=       =       ; Library General Public License for more +++=   -.     .`     .: details. + :     =  ...= . :.=- + -.   .:....=;==+<; You should have received a copy of the GNU +  -_. . .   )=.  = Library General Public License along with +    --        :-=` this library; see the file COPYING.LIB. + If not, write to the Free Software Foundation, + Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + +*/ + +#include "configdialog.h" + +/* OPIE */ +#include +#include +using namespace Opie::Core; + +/* QT */ +#include + +ConfigDialog::ConfigDialog( const QString& cardname, QWidget* parent ) + :ConfigDialogBase( parent, "pcmcia config dialog", true ) +{ + setCaption( tr( "Configure %1" ).arg( 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 ); + cfg.setGroup( cardSection ); + QString name = cfg.readEntry( "name" ); + odebug << "comparing card '" << cardname << "' with known card '" << name << "'" << oendl; + if ( cardname == name ) + { + insert = cfg.readEntry( "insert" ); + break; + } + } + 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 ); + } +} + +ConfigDialog::~ConfigDialog() +{ +} diff --git a/noncore/applets/pcmcia/configdialog.h b/noncore/applets/pcmcia/configdialog.h new file mode 100644 index 0000000..12500c4 --- a/dev/null +++ b/noncore/applets/pcmcia/configdialog.h @@ -0,0 +1,44 @@ +/* +                 This file is part of the Opie Project + =. (C) 2005 Michael 'Mickey' Lauer + .=l. +           .>+-= + _;:,     .>    :=|. This program is free software; you can +.> <`_,   >  .   <= redistribute it and/or modify it under +:`=1 )Y*s>-.--   : the terms of the GNU Library General Public +.="- .-=="i,     .._ License as published by the Free Software + - .   .-<_>     .<> Foundation; either version 2 of the License, +     ._= =}       : or (at your option) any later version. +    .%`+i>       _;_. +    .i_,=:_.      -`: PARTICULAR PURPOSE. See the GNU +..}^=.=       =       ; Library General Public License for more +++=   -.     .`     .: details. + :     =  ...= . :.=- + -.   .:....=;==+<; You should have received a copy of the GNU +  -_. . .   )=.  = Library General Public License along with +    --        :-=` this library; see the file COPYING.LIB. + If not, write to the Free Software Foundation, + Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + +*/ + +#ifndef CONFIGDIALOG_H +#define CONFIGDIALOG_H + +#include "configdialogbase.h" + +class ConfigDialog : public ConfigDialogBase +{ + Q_OBJECT + public: + + ConfigDialog( const QString& cardname, QWidget* parent ); + ~ConfigDialog(); +}; + +#endif diff --git a/noncore/applets/pcmcia/configdialogbase.ui b/noncore/applets/pcmcia/configdialogbase.ui new file mode 100644 index 0000000..d8dd983 --- a/dev/null +++ b/noncore/applets/pcmcia/configdialogbase.ui @@ -0,0 +1,92 @@ + +ConfigDialogBase + + QDialog + + name + ConfigDialogBase + + + geometry + + 0 + 0 + 214 + 44 + + + + caption + Configure PCMCIA/CF Card + + + layoutMargin + + + layoutSpacing + + + + margin + 11 + + + spacing + 6 + + + QLabel + + name + TextLabel3 + + + text + card + + + + QComboBox + + + text + suspend + + + + + text + activate + + + + + text + eject + + + + + text + prompt for + + + + name + cbAction + + + + QLabel + + name + TextLabel2 + + + text + Upon insertion, + + + + + 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 @@ -28,6 +28,7 @@ */ #include "pcmcia.h" +#include "configdialog.h" /* OPIE */ #include @@ -109,6 +110,7 @@ void PcmciaManager::popupTimeout() popupMenu->hide(); } +enum { EJECT, INSERT, SUSPEND, RESUME, CONFIGURE }; void PcmciaManager::mousePressEvent( QMouseEvent* ) { @@ -123,44 +125,24 @@ void PcmciaManager::mousePressEvent( QMouseEvent* ) 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 ); @@ -187,7 +169,7 @@ void PcmciaManager::cardMessage( const QCString & msg, const QByteArray & ) OPcmciaSystem::CardIterator it = sys->iterator(); bool newCard = true; - QString cardName; + OPcmciaSocket* theCard = 0; while ( it.current() && newCard ) { @@ -199,7 +181,8 @@ void PcmciaManager::cardMessage( const QCString & msg, const QByteArray & ) } 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 ); @@ -219,26 +202,24 @@ void PcmciaManager::cardMessage( const QCString & msg, const QByteArray & ) { 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 @@ -252,8 +233,9 @@ 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(); @@ -273,5 +255,27 @@ 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 ) diff --git a/noncore/applets/pcmcia/pcmcia.h b/noncore/applets/pcmcia/pcmcia.h index 5c20433..ed86579 100644 --- a/noncore/applets/pcmcia/pcmcia.h +++ b/noncore/applets/pcmcia/pcmcia.h @@ -34,6 +34,8 @@ #include #include +namespace Opie { namespace Core { class OPcmciaSocket; } }; + class PcmciaManager : public QWidget { Q_OBJECT @@ -44,6 +46,7 @@ class PcmciaManager : public QWidget private slots: void cardMessage( const QCString& msg, const QByteArray& ); + void userCardAction( int action ); void popupTimeout(); protected: @@ -51,6 +54,7 @@ class PcmciaManager : public QWidget void mousePressEvent( QMouseEvent * ); private: + void configure( Opie::Core::OPcmciaSocket* ); void execCommand( const QStringList &command ); void popUp(QString message, QString icon = QString::null ); diff --git a/noncore/applets/pcmcia/pcmcia.pro b/noncore/applets/pcmcia/pcmcia.pro index c4f7b62..4a893b5 100644 --- a/noncore/applets/pcmcia/pcmcia.pro +++ b/noncore/applets/pcmcia/pcmcia.pro @@ -1,12 +1,18 @@ TEMPLATE = lib CONFIG += qt plugin warn_on -HEADERS = pcmcia.h -SOURCES = pcmcia.cpp + +INTERFACES = configdialogbase.ui +HEADERS = pcmcia.h \ + configdialog.h +SOURCES = pcmcia.cpp \ + configdialog.cpp TARGET = pcmciaapplet + DESTDIR = $(OPIEDIR)/plugins/applets INCLUDEPATH += $(OPIEDIR)/include DEPENDPATH += $(OPIEDIR)/include + LIBS += -lqpe -lopiecore2 -VERSION = 0.1.0 +VERSION = 0.2.0 include( $(OPIEDIR)/include.pro ) -- cgit v0.9.0.2