summaryrefslogtreecommitdiff
path: root/core
authorharlekin <harlekin>2002-06-22 22:25:56 (UTC)
committer harlekin <harlekin>2002-06-22 22:25:56 (UTC)
commitb6f6bab5e56f352a4f71dadb40530d6cdcaea3cc (patch) (side-by-side diff)
treeb58cfac35b73d8a85944b42aad3344dee0a979a2 /core
parentdc0bab1611d87c39d3729aa05d8b01f639120052 (diff)
downloadopie-b6f6bab5e56f352a4f71dadb40530d6cdcaea3cc.zip
opie-b6f6bab5e56f352a4f71dadb40530d6cdcaea3cc.tar.gz
opie-b6f6bab5e56f352a4f71dadb40530d6cdcaea3cc.tar.bz2
nicer card inserted popup + cleanups
Diffstat (limited to 'core') (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/cardmon/cardmon.cpp45
-rw-r--r--core/applets/cardmon/cardmon.h7
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
@@ -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 );
}
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
@@ -23,2 +23,4 @@
#include <qpixmap.h>
+#include <qpopupmenu.h>
+#include <qtimer.h>
@@ -34,2 +36,3 @@ private slots:
void cardMessage( const QCString &msg, const QByteArray & );
+ void popUpTimeout();
@@ -40,2 +43,4 @@ private:
QPixmap pm;
+ QPopupMenu *popUpMenu;
+ QTimer *popUpMenuTimer;
// pcmcia socket 0
@@ -48,3 +53,3 @@ private:
void iconShow();
-
+ void popUp(QString message);
};