author | harlekin <harlekin> | 2002-06-22 22:25:56 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-06-22 22:25:56 (UTC) |
commit | b6f6bab5e56f352a4f71dadb40530d6cdcaea3cc (patch) (side-by-side diff) | |
tree | b58cfac35b73d8a85944b42aad3344dee0a979a2 | |
parent | dc0bab1611d87c39d3729aa05d8b01f639120052 (diff) | |
download | opie-b6f6bab5e56f352a4f71dadb40530d6cdcaea3cc.zip opie-b6f6bab5e56f352a4f71dadb40530d6cdcaea3cc.tar.gz opie-b6f6bab5e56f352a4f71dadb40530d6cdcaea3cc.tar.bz2 |
nicer card inserted popup + cleanups
-rw-r--r-- | core/applets/cardmon/cardmon.cpp | 45 | ||||
-rw-r--r-- | core/applets/cardmon/cardmon.h | 7 |
2 files changed, 40 insertions, 12 deletions
diff --git a/core/applets/cardmon/cardmon.cpp b/core/applets/cardmon/cardmon.cpp index ac2aea2..3dd9f54 100644 --- a/core/applets/cardmon/cardmon.cpp +++ b/core/applets/cardmon/cardmon.cpp @@ -25,7 +25,7 @@ #include <qpainter.h> #include <qmessagebox.h> -#include <qpopupmenu.h> #include <qfile.h> #include <qtextstream.h> +#include <qtimer.h> #include <stdio.h> @@ -55,4 +55,6 @@ CardMonitor::CardMonitor( QWidget *parent ) : QWidget( parent ), getStatusSd(TRUE); repaint(FALSE); + popUpMenu = 0; + popUpMenuTimer = 0; } @@ -60,4 +62,30 @@ CardMonitor::~CardMonitor() { } +void CardMonitor::popUp(QString message) { + if ( ! popUpMenu ) { + popUpMenu = new QPopupMenu(); + } + popUpMenu->clear(); + popUpMenu->insertItem( message, 0 ); + + QPoint p = mapToGlobal ( QPoint ( 0, 0 )); + QSize s = popUpMenu->sizeHint ( ); + popUpMenu->popup( QPoint ( + p. x ( ) + ( width ( ) / 2 ) - ( s. width ( ) / 2 ), + p. y ( ) - s. height ( ) ), 0); + + if ( ! popUpMenuTimer ) { + popUpMenuTimer = new QTimer( this ); + connect( popUpMenuTimer, SIGNAL(timeout()), this, SLOT(popUpTimeout()) ); + } + timerEvent(0); + popUpMenuTimer->start( 2000 ); +} + +void CardMonitor::popUpTimeout() { + popUpMenu->hide(); + popUpMenuTimer->stop(); +} + void CardMonitor::mousePressEvent( QMouseEvent * ) { QPopupMenu *menu = new QPopupMenu(); @@ -89,6 +117,5 @@ void CardMonitor::mousePressEvent( QMouseEvent * ) { if ( ( err == 127 ) || ( err < 0 ) ) { qDebug("Could not execute `/sbin/cardctl eject 0'! err=%d", err); - QMessageBox::warning( this, tr("CardMonitor"), tr("CF/PCMCIA card eject failed!"), - tr("&OK") ); + popUp( tr("CF/PCMCIA card eject failed!")); } } else if ( opt == 0 ) { @@ -97,6 +124,5 @@ void CardMonitor::mousePressEvent( QMouseEvent * ) { if ( ( err != 0 ) ) { qDebug("Could not execute `/etc/sdcontrol comeject'! err=%d", err); - QMessageBox::warning( this, tr("CardMonitor"), tr("SD/MMC card eject failed!"), - tr("&OK") ); + popUp( tr("SD/MMC card eject failed!")); } } else if ( opt == 2 ) { @@ -105,6 +131,5 @@ void CardMonitor::mousePressEvent( QMouseEvent * ) { if ( ( err == 127 ) || ( err < 0 ) ) { qDebug("Could not execute `/sbin/cardctl eject 1'! err=%d", err); - QMessageBox::warning( this, tr("CardMonitor"), tr("CF/PCMCIA card eject failed!"), - tr("&OK") ); + popUp( tr("CF/PCMCIA card eject failed!")); } } @@ -202,6 +227,5 @@ bool CardMonitor::getStatusPcmcia( int showPopUp = FALSE ) { text += cardInPcmcia1Name; } - QMessageBox::warning( this, tr("CardMonitor"), text, - tr("&OK") ); + popUp( text ); } @@ -234,6 +258,5 @@ bool CardMonitor::getStatusSd( int showPopUp = FALSE ) { if(cardInSd) { text += "SD Inserted"; } else { text += "SD Removed"; } - QMessageBox::warning( this, tr("CardMonitor"), text, - tr("&OK") ); + popUp( text ); } diff --git a/core/applets/cardmon/cardmon.h b/core/applets/cardmon/cardmon.h index f9e3819..34b8d95 100644 --- a/core/applets/cardmon/cardmon.h +++ b/core/applets/cardmon/cardmon.h @@ -22,4 +22,6 @@ #include <qwidget.h> #include <qpixmap.h> +#include <qpopupmenu.h> +#include <qtimer.h> class CardMonitor : public QWidget { @@ -33,4 +35,5 @@ public: private slots: void cardMessage( const QCString &msg, const QByteArray & ); + void popUpTimeout(); protected: @@ -39,4 +42,6 @@ protected: private: QPixmap pm; + QPopupMenu *popUpMenu; + QTimer *popUpMenuTimer; // pcmcia socket 0 bool cardInPcmcia0; @@ -47,5 +52,5 @@ private: bool cardInSd; void iconShow(); - + void popUp(QString message); }; |