summaryrefslogtreecommitdiff
path: root/core
authormickeyl <mickeyl>2004-03-01 14:24:18 (UTC)
committer mickeyl <mickeyl>2004-03-01 14:24:18 (UTC)
commit3cdec2fe5b3201a121cfbb2352162fe0cbae0a1d (patch) (side-by-side diff)
tree409756ff03a1ceabfa85d37e08ed12a14c72289a /core
parent60cc11a7c619bebec117e953f3b34bbf213d0fb2 (diff)
downloadopie-3cdec2fe5b3201a121cfbb2352162fe0cbae0a1d.zip
opie-3cdec2fe5b3201a121cfbb2352162fe0cbae0a1d.tar.gz
opie-3cdec2fe5b3201a121cfbb2352162fe0cbae0a1d.tar.bz2
libopie1->libopie2
Diffstat (limited to 'core') (more/less context) (show whitespace changes)
-rw-r--r--core/applets/cardmon/cardmon.cpp178
-rw-r--r--core/applets/cardmon/cardmon.h2
-rw-r--r--core/applets/cardmon/cardmon.pro6
-rw-r--r--core/applets/cardmon/cardmonimpl.cpp42
-rw-r--r--core/applets/cardmon/cardmonimpl.h18
5 files changed, 129 insertions, 117 deletions
diff --git a/core/applets/cardmon/cardmon.cpp b/core/applets/cardmon/cardmon.cpp
index 4ed09b8..8ffaada 100644
--- a/core/applets/cardmon/cardmon.cpp
+++ b/core/applets/cardmon/cardmon.cpp
@@ -13,35 +13,36 @@
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
-
#include "cardmon.h"
-#include <qpe/resource.h>
-
-#include <opie/odevice.h>
-
+/* OPIE */
+#include <opie2/odevice.h>
+#include <opie2/otaskbarapplet.h>
#include <qpe/applnk.h>
+#include <qpe/resource.h>
+/* QT */
+#include <qapplication.h>
#include <qcopchannel_qws.h>
#include <qpainter.h>
#include <qmessagebox.h>
#include <qfile.h>
#include <qtextstream.h>
+#include <qsound.h>
#include <qtimer.h>
-#include <qapplication.h>
+/* STD */
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
-#include <qsound.h>
#if defined(_OS_LINUX_) || defined(Q_OS_LINUX)
#include <sys/vfs.h>
#include <mntent.h>
#endif
@@ -75,27 +76,32 @@ CardMonitor::CardMonitor(QWidget * parent):QWidget(parent),
repaint(FALSE);
popupMenu = 0;
}
CardMonitor::~CardMonitor()
{
- if (popupMenu) {
+ if ( popupMenu )
+ {
delete popupMenu;
}
}
void CardMonitor::popUp(QString message, QString icon)
{
- if (!popupMenu) {
+ if ( !popupMenu )
+ {
popupMenu = new QPopupMenu(this);
}
popupMenu->clear();
- if (icon.isEmpty()) {
+ if ( icon.isEmpty() )
+ {
popupMenu->insertItem(message, 0);
- } else {
+ }
+ else
+ {
popupMenu->insertItem(QIconSet(Resource::loadPixmap(icon)),
message, 0);
}
QPoint p = mapToGlobal(QPoint(0, 0));
QSize s = popupMenu->sizeHint();
@@ -113,73 +119,90 @@ void CardMonitor::popupTimeout()
void CardMonitor::mousePressEvent(QMouseEvent *)
{
QPopupMenu *menu = new QPopupMenu(this);
QString cmd;
int err = 0;
- if (cardInSd) {
+ if ( cardInSd )
+ {
menu->insertItem(QIconSet(Resource::loadPixmap("cardmon/ide")),
tr("Eject SD/MMC card"), 0);
}
- if (cardInPcmcia0) {
+ if ( cardInPcmcia0 )
+ {
menu->
insertItem(QIconSet
(Resource::loadPixmap("cardmon/" + cardInPcmcia0Type)),
tr("Eject card 0: %1").arg(cardInPcmcia0Name), 1);
}
- if (cardInPcmcia1) {
+ if ( cardInPcmcia1 )
+ {
menu->
insertItem(QIconSet
(Resource::loadPixmap("cardmon/" + cardInPcmcia1Type)),
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);
- if (opt == 1) {
+ if ( opt == 1 )
+ {
cmd = "/sbin/cardctl eject 0";
err = system((const char *) cmd);
- if (err != 0) {
+ if ( err != 0 )
+ {
qDebug("Could not execute `/sbin/cardctl eject 0'! err=%d",
err);
popUp(tr("CF/PCMCIA card eject failed!"));
}
- } else if (opt == 0) {
- if (ODevice::inst()->system() == System_Familiar) {
+ }
+ else if ( opt == 0 )
+ {
+ if ( ODevice::inst() ->system() == System_Familiar )
+ {
cmd = "umount /dev/mmc/part1";
- } else {
+ }
+ else
+ {
cmd = "umount /dev/mmcda1";
}
err = system((const char *) cmd);
- if (err != 0) {
+ if ( err != 0 )
+ {
popUp(tr("SD/MMC card eject failed!"));
}
- } else if (opt == 2) {
+ }
+ else if ( opt == 2 )
+ {
cmd = "/sbin/cardctl eject 1";
err = system((const char *) cmd);
- if (err != 0) {
+ if ( err != 0 )
+ {
qDebug("Could not execute `/sbin/cardctl eject 1'! err=%d",
err);
popUp(tr("CF/PCMCIA card eject failed!"));
}
}
delete menu;
}
void CardMonitor::cardMessage(const QCString & msg, const QByteArray &)
{
- if (msg == "stabChanged()") {
+ if ( msg == "stabChanged()" )
+ {
// qDebug("Pcmcia: stabchanged");
getStatusPcmcia();
- } else if (msg == "mtabChanged()") {
+ }
+ else if ( msg == "mtabChanged()" )
+ {
// qDebug("CARDMONAPPLET: mtabchanged");
getStatusSd();
}
}
bool CardMonitor::getStatusPcmcia(int showPopUp)
@@ -188,51 +211,67 @@ bool CardMonitor::getStatusPcmcia(int showPopUp)
bool cardWas0 = cardInPcmcia0; // remember last state
bool cardWas1 = cardInPcmcia1;
QString fileName;
// one of these 3 files should exist
- if (QFile::exists("/var/run/stab")) {
+ if ( QFile::exists( "/var/run/stab" ) )
+ {
fileName = "/var/run/stab";
- } else if (QFile::exists("/var/state/pcmcia/stab")) {
+ }
+ else if ( QFile::exists( "/var/state/pcmcia/stab" ) )
+ {
fileName = "/var/state/pcmcia/stab";
- } else {
+ }
+ else
+ {
fileName = "/var/lib/pcmcia/stab";
}
QFile f(fileName);
- if (f.open(IO_ReadOnly)) {
+ if ( f.open( IO_ReadOnly ) )
+ {
QStringList list;
QTextStream stream(&f);
QString streamIn;
streamIn = stream.read();
list = QStringList::split("\n", streamIn);
for (QStringList::Iterator line = list.begin(); line != list.end();
- line++) {
- if ((*line).startsWith("Socket 0:")) {
- if ((*line).startsWith("Socket 0: empty") && cardInPcmcia0) {
+ line++ )
+ {
+ if ( ( *line ).startsWith( "Socket 0:" ) )
+ {
+ if ( ( *line ).startsWith( "Socket 0: empty" ) && cardInPcmcia0 )
+ {
cardInPcmcia0 = FALSE;
- } else if (!(*line).startsWith("Socket 0: empty")
- && !cardInPcmcia0) {
+ }
+ else if ( !( *line ).startsWith( "Socket 0: empty" )
+ && !cardInPcmcia0 )
+ {
cardInPcmcia0Name =
(*line).mid(((*line).find(':') + 1),
(*line).length() - 9);
cardInPcmcia0Name.stripWhiteSpace();
cardInPcmcia0 = TRUE;
show();
line++;
int pos = (*line).find('\t') + 1;
cardInPcmcia0Type =
(*line).mid(pos, (*line).find("\t", pos) - pos);
}
- } else if ((*line).startsWith("Socket 1:")) {
- if ((*line).startsWith("Socket 1: empty") && cardInPcmcia1) {
+ }
+ else if ( ( *line ).startsWith( "Socket 1:" ) )
+ {
+ if ( ( *line ).startsWith( "Socket 1: empty" ) && cardInPcmcia1 )
+ {
cardInPcmcia1 = FALSE;
- } else if (!(*line).startsWith("Socket 1: empty")
- && !cardInPcmcia1) {
+ }
+ else if ( !( *line ).startsWith( "Socket 1: empty" )
+ && !cardInPcmcia1 )
+ {
cardInPcmcia1Name =
(*line).mid(((*line).find(':') + 1),
(*line).length() - 9);
cardInPcmcia1Name.stripWhiteSpace();
cardInPcmcia1 = TRUE;
show();
@@ -243,43 +282,55 @@ bool CardMonitor::getStatusPcmcia(int showPopUp)
}
}
}
f.close();
if (!showPopUp
- && (cardWas0 != cardInPcmcia0 || cardWas1 != cardInPcmcia1)) {
+ && ( cardWas0 != cardInPcmcia0 || cardWas1 != cardInPcmcia1 ) )
+ {
QString text = QString::null;
QString what = QString::null;
- if (cardWas0 != cardInPcmcia0) {
- if (cardInPcmcia0) {
+ if ( cardWas0 != cardInPcmcia0 )
+ {
+ if ( cardInPcmcia0 )
+ {
text += tr("New card: ");
what = "on";
- } else {
+ }
+ else
+ {
text += tr("Ejected: ");
what = "off";
}
text += cardInPcmcia0Name;
popUp(text, "cardmon/" + cardInPcmcia0Type);
}
- if (cardWas1 != cardInPcmcia1) {
- if (cardInPcmcia1) {
+ if ( cardWas1 != cardInPcmcia1 )
+ {
+ if ( cardInPcmcia1 )
+ {
text += tr("New card: ");
what = "on";
- } else {
+ }
+ else
+ {
text += tr("Ejected: ");
what = "off";
}
text += cardInPcmcia1Name;
popUp(text, "cardmon/" + cardInPcmcia1Type);
}
#ifndef QT_NO_SOUND
QSound::play(Resource::findSound("cardmon/card" + what));
#endif
+
}
- } else {
+ }
+ else
+ {
// no file found
qDebug("no file found");
cardInPcmcia0 = FALSE;
cardInPcmcia1 = FALSE;
}
repaint( FALSE );
@@ -296,35 +347,42 @@ bool CardMonitor::getStatusSd(int showPopUp)
cardInSd = FALSE;
#if defined(_OS_LINUX_) || defined(Q_OS_LINUX)
struct mntent *me;
FILE *mntfp = setmntent("/etc/mtab", "r");
- if (mntfp) {
- while ((me = getmntent(mntfp)) != 0) {
+ if ( mntfp )
+ {
+ while ( ( me = getmntent( mntfp ) ) != 0 )
+ {
QString fs = me->mnt_fsname;
//qDebug( fs );
if (fs.left(14) == "/dev/mmc/part1" || fs.left(7) == "/dev/sd"
- || fs.left(9) == "/dev/mmcd") {
+ || fs.left( 9 ) == "/dev/mmcd" )
+ {
cardInSd = TRUE;
show();
}
// else {
// cardInSd = FALSE;
// }
}
endmntent(mntfp);
}
- if (!showPopUp && cardWas != cardInSd) {
+ if ( !showPopUp && cardWas != cardInSd )
+ {
QString text = QString::null;
QString what = QString::null;
- if (cardInSd) {
+ if ( cardInSd )
+ {
text += "New card: SD/MMC";
what = "on";
- } else {
+ }
+ else
+ {
text += "Ejected: SD/MMC";
what = "off";
}
//qDebug("TEXT: " + text );
#ifndef QT_NO_SOUND
QSound::play(Resource::findSound("cardmon/card" + what));
@@ -340,14 +398,28 @@ bool CardMonitor::getStatusSd(int showPopUp)
void CardMonitor::paintEvent(QPaintEvent *)
{
QPainter p(this);
- if ( cardInPcmcia0 || cardInPcmcia1 || cardInSd ) {
+ if ( cardInPcmcia0 || cardInPcmcia1 || cardInSd )
+ {
p.drawPixmap(0, 0, pm );
show();
- } else {
+ }
+ else
+ {
//p.eraseRect(rect());
hide();
}
}
+
+int CardMonitor::position()
+{
+ return 7;
+}
+
+Q_EXPORT_INTERFACE()
+{
+ Q_CREATE_INSTANCE( OTaskbarAppletWrapper<CardMonitor> );
+}
+
diff --git a/core/applets/cardmon/cardmon.h b/core/applets/cardmon/cardmon.h
index 4f00920..37de366 100644
--- a/core/applets/cardmon/cardmon.h
+++ b/core/applets/cardmon/cardmon.h
@@ -27,13 +27,13 @@ class CardMonitor : public QWidget {
Q_OBJECT
public:
CardMonitor( QWidget *parent = 0 );
~CardMonitor();
bool getStatusPcmcia( int showPopUp = FALSE );
bool getStatusSd( int showPopUp = FALSE );
-
+ static int position();
private slots:
void cardMessage( const QCString &msg, const QByteArray & );
void popupTimeout();
protected:
void paintEvent( QPaintEvent* );
diff --git a/core/applets/cardmon/cardmon.pro b/core/applets/cardmon/cardmon.pro
index 1e8f86f..7c0c739 100644
--- a/core/applets/cardmon/cardmon.pro
+++ b/core/applets/cardmon/cardmon.pro
@@ -1,13 +1,13 @@
TEMPLATE = lib
CONFIG += qt plugin warn_on release
-HEADERS = cardmon.h cardmonimpl.h
-SOURCES = cardmon.cpp cardmonimpl.cpp
+HEADERS = cardmon.h
+SOURCES = cardmon.cpp
TARGET = cardmonapplet
DESTDIR = $(OPIEDIR)/plugins/applets
INCLUDEPATH += $(OPIEDIR)/include
DEPENDPATH += $(OPIEDIR)/include ../launcher
-LIBS += -lqpe -lopie
+LIBS += -lqpe -lopiecore2
VERSION = 1.0.0
include ( $(OPIEDIR)/include.pro )
target.path = $$prefix/plugins/applets
diff --git a/core/applets/cardmon/cardmonimpl.cpp b/core/applets/cardmon/cardmonimpl.cpp
deleted file mode 100644
index 7b144d4..0000000
--- a/core/applets/cardmon/cardmonimpl.cpp
+++ b/dev/null
@@ -1,42 +0,0 @@
-#include "cardmon.h"
-#include "cardmonimpl.h"
-
-
-CardMonitorImpl::CardMonitorImpl()
- : cardMonitor(0) {
-}
-
-CardMonitorImpl::~CardMonitorImpl() {
- delete cardMonitor;
-}
-
-QWidget *CardMonitorImpl::applet( QWidget *parent ) {
- if ( !cardMonitor ) {
- cardMonitor = new CardMonitor( parent );
- }
- return cardMonitor;
-}
-
-int CardMonitorImpl::position() const {
- return 7;
-}
-
-QRESULT CardMonitorImpl::queryInterface( const QUuid &uuid, QUnknownInterface **iface ) {
- *iface = 0;
- if ( uuid == IID_QUnknown ) {
- *iface = this;
- } else if ( uuid == IID_TaskbarApplet ) {
- *iface = this;
- } else {
- return QS_FALSE;
- }
-
- if ( *iface ) {
- (*iface)->addRef();
- }
- return QS_OK;
-}
-
-Q_EXPORT_INTERFACE() {
- Q_CREATE_INSTANCE( CardMonitorImpl )
-}
diff --git a/core/applets/cardmon/cardmonimpl.h b/core/applets/cardmon/cardmonimpl.h
deleted file mode 100644
index 26b7fe5..0000000
--- a/core/applets/cardmon/cardmonimpl.h
+++ b/dev/null
@@ -1,18 +0,0 @@
-#include <qpe/taskbarappletinterface.h>
-
-class CardMonitor;
-
-class CardMonitorImpl : public TaskbarAppletInterface {
-public:
- CardMonitorImpl();
- virtual ~CardMonitorImpl();
-
- QRESULT queryInterface( const QUuid&, QUnknownInterface** );
- Q_REFCOUNT
-
- virtual QWidget *applet( QWidget *parent );
- virtual int position() const;
-
-private:
- CardMonitor *cardMonitor;
-};