summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/cardmon/cardmon.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/core/applets/cardmon/cardmon.cpp b/core/applets/cardmon/cardmon.cpp
index d6ac616..53497df 100644
--- a/core/applets/cardmon/cardmon.cpp
+++ b/core/applets/cardmon/cardmon.cpp
@@ -27,50 +27,51 @@
27#include <qpe/applnk.h> 27#include <qpe/applnk.h>
28#include <qpe/resource.h> 28#include <qpe/resource.h>
29using namespace Opie::Core; 29using namespace Opie::Core;
30using namespace Opie::Ui; 30using namespace Opie::Ui;
31 31
32/* QT */ 32/* QT */
33#include <qcopchannel_qws.h> 33#include <qcopchannel_qws.h>
34#include <qpainter.h> 34#include <qpainter.h>
35#include <qfile.h> 35#include <qfile.h>
36#include <qtextstream.h> 36#include <qtextstream.h>
37#include <qsound.h> 37#include <qsound.h>
38#include <qtimer.h> 38#include <qtimer.h>
39 39
40/* STD */ 40/* STD */
41#include <stdio.h> 41#include <stdio.h>
42#include <unistd.h> 42#include <unistd.h>
43#include <stdlib.h> 43#include <stdlib.h>
44#include <string.h> 44#include <string.h>
45#include <fcntl.h> 45#include <fcntl.h>
46#if defined(_OS_LINUX_) || defined(Q_OS_LINUX) 46#if defined(_OS_LINUX_) || defined(Q_OS_LINUX)
47#include <sys/vfs.h> 47#include <sys/vfs.h>
48#include <mntent.h> 48#include <mntent.h>
49#endif 49#endif
50 50
51CardMonitor::CardMonitor( QWidget * parent ) : QWidget( parent ), 51CardMonitor::CardMonitor( QWidget * parent ) : QWidget( parent )
52pm( Resource::loadPixmap( "cardmon/pcmcia" ) ) { 52{
53 pm = Resource::loadImage( "cardmon/pcmcia").smoothScale(AppLnk::smallIconSize(), AppLnk::smallIconSize());
53 54
54 QCopChannel * pcmciaChannel = new QCopChannel( "QPE/Card", this ); 55 QCopChannel * pcmciaChannel = new QCopChannel( "QPE/Card", this );
55 connect( pcmciaChannel, 56 connect( pcmciaChannel,
56 SIGNAL( received(const QCString&,const QByteArray&) ), this, 57 SIGNAL( received(const QCString&,const QByteArray&) ), this,
57 SLOT( cardMessage(const QCString&,const QByteArray&) ) ); 58 SLOT( cardMessage(const QCString&,const QByteArray&) ) );
58 59
59 QCopChannel *sdChannel = new QCopChannel( "QPE/Card", this ); 60 QCopChannel *sdChannel = new QCopChannel( "QPE/Card", this );
60 connect( sdChannel, 61 connect( sdChannel,
61 SIGNAL( received(const QCString&,const QByteArray&) ), this, 62 SIGNAL( received(const QCString&,const QByteArray&) ), this,
62 SLOT( cardMessage(const QCString&,const QByteArray&) ) ); 63 SLOT( cardMessage(const QCString&,const QByteArray&) ) );
63 64
64 cardInPcmcia0 = FALSE; 65 cardInPcmcia0 = FALSE;
65 cardInPcmcia1 = FALSE; 66 cardInPcmcia1 = FALSE;
66 cardInSd = FALSE; 67 cardInSd = FALSE;
67 m_process = 0; 68 m_process = 0;
68 69
69 setFocusPolicy( NoFocus ); 70 setFocusPolicy( NoFocus );
70 71
71 setFixedWidth ( AppLnk::smallIconSize() ); 72 setFixedWidth ( AppLnk::smallIconSize() );
72 setFixedHeight ( AppLnk::smallIconSize() ); 73 setFixedHeight ( AppLnk::smallIconSize() );
73 74
74 getStatusPcmcia( TRUE ); 75 getStatusPcmcia( TRUE );
75 getStatusSd( TRUE ); 76 getStatusSd( TRUE );
76 repaint( FALSE ); 77 repaint( FALSE );