summaryrefslogtreecommitdiff
path: root/core/applets/cardmon/cardmon.cpp
Side-by-side diff
Diffstat (limited to 'core/applets/cardmon/cardmon.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/cardmon/cardmon.cpp45
1 files changed, 34 insertions, 11 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
@@ -26,5 +26,5 @@
#include <qmessagebox.h>
-#include <qpopupmenu.h>
#include <qfile.h>
#include <qtextstream.h>
+#include <qtimer.h>
@@ -56,2 +56,4 @@ CardMonitor::CardMonitor( QWidget *parent ) : QWidget( parent ),
repaint(FALSE);
+ popUpMenu = 0;
+ popUpMenuTimer = 0;
}
@@ -61,2 +63,28 @@ 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 * ) {
@@ -90,4 +118,3 @@ void CardMonitor::mousePressEvent( QMouseEvent * ) {
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!"));
}
@@ -98,4 +125,3 @@ void CardMonitor::mousePressEvent( QMouseEvent * ) {
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!"));
}
@@ -106,4 +132,3 @@ void CardMonitor::mousePressEvent( QMouseEvent * ) {
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!"));
}
@@ -203,4 +228,3 @@ bool CardMonitor::getStatusPcmcia( int showPopUp = FALSE ) {
}
- QMessageBox::warning( this, tr("CardMonitor"), text,
- tr("&OK") );
+ popUp( text );
}
@@ -235,4 +259,3 @@ bool CardMonitor::getStatusSd( int showPopUp = FALSE ) {
else { text += "SD Removed"; }
- QMessageBox::warning( this, tr("CardMonitor"), text,
- tr("&OK") );
+ popUp( text );
}