-rw-r--r-- | noncore/net/opietooth/applet/bluezapplet.cpp | 16 | ||||
-rw-r--r-- | noncore/net/opietooth/applet/bluezapplet.h | 2 |
2 files changed, 9 insertions, 9 deletions
diff --git a/noncore/net/opietooth/applet/bluezapplet.cpp b/noncore/net/opietooth/applet/bluezapplet.cpp index 48698b6..e1c2341 100644 --- a/noncore/net/opietooth/applet/bluezapplet.cpp +++ b/noncore/net/opietooth/applet/bluezapplet.cpp | |||
@@ -28,20 +28,20 @@ | |||
28 | 28 | ||
29 | 29 | ||
30 | #include "bluezapplet.h" | 30 | #include "bluezapplet.h" |
31 | 31 | ||
32 | /* OPIE */ | 32 | /* OPIE */ |
33 | #include <opie2/otaskbarapplet.h> | 33 | #include <opie2/otaskbarapplet.h> |
34 | #include <opie2/odevice.h> | 34 | #include <opie2/odevice.h> |
35 | #include <opie2/odebug.h> | 35 | #include <opie2/odebug.h> |
36 | #include <opie2/oresource.h> | ||
36 | #include <qpe/applnk.h> | 37 | #include <qpe/applnk.h> |
37 | #include <qpe/qcopenvelope_qws.h> | 38 | #include <qpe/qcopenvelope_qws.h> |
38 | #include <qpe/config.h> | 39 | #include <qpe/config.h> |
39 | #include <qpe/resource.h> | ||
40 | using namespace Opie::Core; | 40 | using namespace Opie::Core; |
41 | 41 | ||
42 | /* QT */ | 42 | /* QT */ |
43 | #include <qapplication.h> | 43 | #include <qapplication.h> |
44 | #include <qpoint.h> | 44 | #include <qpoint.h> |
45 | #include <qpainter.h> | 45 | #include <qpainter.h> |
46 | #include <qlayout.h> | 46 | #include <qlayout.h> |
47 | #include <qframe.h> | 47 | #include <qframe.h> |
@@ -53,22 +53,22 @@ using namespace Opie::Core; | |||
53 | /* STD */ | 53 | /* STD */ |
54 | #include <device.h> | 54 | #include <device.h> |
55 | 55 | ||
56 | namespace OpieTooth { | 56 | namespace OpieTooth { |
57 | 57 | ||
58 | BluezApplet::BluezApplet( QWidget *parent, const char *name ) : QWidget( parent, name ) { | 58 | BluezApplet::BluezApplet( QWidget *parent, const char *name ) : QWidget( parent, name ) { |
59 | setFixedHeight( AppLnk::smallIconSize() ); | 59 | setFixedHeight( AppLnk::smallIconSize() ); |
60 | setFixedWidth( AppLnk::smallIconSize() ); | 60 | setFixedWidth( AppLnk::smallIconSize() ); |
61 | bluezOnPixmap = Resource::loadImage( "bluetoothapplet/bluezon" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ); | 61 | bluezOnPixmap = OResource::loadImage( "bluetoothapplet/bluezon", OResource::SmallIcon ); |
62 | bluezOffPixmap = Resource::loadImage( "bluetoothapplet/bluezoff" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ); | 62 | bluezOffPixmap = OResource::loadImage( "bluetoothapplet/bluezoff", Opie::Core::OResource::SmallIcon ); |
63 | //bluezDiscoveryOnPixmap = Resource::loadImage( "bluetoothapplet/magglass" )smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize()); | 63 | bluezDiscoveryOnPixmap = OResource::loadImage( "bluetoothapplet/bluezondiscovery", Opie::Core::OResource::SmallIcon ); |
64 | startTimer(4000); | 64 | startTimer(4000); |
65 | btDevice = 0; | 65 | btDevice = 0; |
66 | btManager = 0; | 66 | btManager = 0; |
67 | bluezactive = false; | 67 | bluezactive = false; |
68 | bluezDiscoveryActive = false; | 68 | bluezDiscoveryActive = false; |
69 | 69 | ||
70 | // TODO: determine whether this channel has to be closed at destruction time. | 70 | // TODO: determine whether this channel has to be closed at destruction time. |
71 | QCopChannel* chan = new QCopChannel("QPE/Bluetooth", this ); | 71 | QCopChannel* chan = new QCopChannel("QPE/Bluetooth", this ); |
72 | connect(chan, SIGNAL(received(const QCString&,const QByteArray&) ), | 72 | connect(chan, SIGNAL(received(const QCString&,const QByteArray&) ), |
73 | this, SLOT(slotMessage(const QCString&,const QByteArray&) ) ); | 73 | this, SLOT(slotMessage(const QCString&,const QByteArray&) ) ); |
74 | } | 74 | } |
@@ -265,21 +265,21 @@ int BluezApplet::position() | |||
265 | * Implementation of the paint event | 265 | * Implementation of the paint event |
266 | * @param the QPaintEvent | 266 | * @param the QPaintEvent |
267 | */ | 267 | */ |
268 | void BluezApplet::paintEvent( QPaintEvent* ) { | 268 | void BluezApplet::paintEvent( QPaintEvent* ) { |
269 | QPainter p(this); | 269 | QPainter p(this); |
270 | odebug << "paint bluetooth pixmap" << oendl; | 270 | odebug << "paint bluetooth pixmap" << oendl; |
271 | 271 | ||
272 | if (bluezactive > 0) { | 272 | if (bluezactive > 0) { |
273 | p.drawPixmap( 0, 1, bluezOnPixmap ); | 273 | p.drawPixmap( 0, 0, bluezOnPixmap ); |
274 | } else { | 274 | } else { |
275 | p.drawPixmap( 0, 1, bluezOffPixmap ); | 275 | p.drawPixmap( 0, 0, bluezOffPixmap ); |
276 | } | 276 | } |
277 | 277 | ||
278 | if (bluezDiscoveryActive > 0) { | 278 | if (bluezDiscoveryActive > 0) { |
279 | p.drawPixmap( 0, 1, bluezDiscoveryOnPixmap ); | 279 | p.drawPixmap( 0, 0, bluezDiscoveryOnPixmap ); |
280 | } | 280 | } |
281 | } | 281 | } |
282 | }; | 282 | }; |
283 | 283 | ||
284 | EXPORT_OPIE_APPLET_v1( OpieTooth::BluezApplet ) | 284 | EXPORT_OPIE_APPLET_v1( OpieTooth::BluezApplet ) |
285 | 285 | ||
diff --git a/noncore/net/opietooth/applet/bluezapplet.h b/noncore/net/opietooth/applet/bluezapplet.h index 3b99c0f..c096e29 100644 --- a/noncore/net/opietooth/applet/bluezapplet.h +++ b/noncore/net/opietooth/applet/bluezapplet.h | |||
@@ -55,17 +55,17 @@ public slots: | |||
55 | void launchManager(); | 55 | void launchManager(); |
56 | bool checkBluezStatus(); | 56 | bool checkBluezStatus(); |
57 | int setBluezStatus(int); | 57 | int setBluezStatus(int); |
58 | int checkBluezDiscoveryStatus(); | 58 | int checkBluezDiscoveryStatus(); |
59 | int setBluezDiscoveryStatus(int); | 59 | int setBluezDiscoveryStatus(int); |
60 | 60 | ||
61 | private: | 61 | private: |
62 | Device* btDevice; | 62 | Device* btDevice; |
63 | Manager *btManager; | 63 | Manager *btManager; |
64 | QPixmap bluezOnPixmap; | 64 | QPixmap bluezOnPixmap; |
65 | QPixmap bluezOffPixmap; | 65 | QPixmap bluezOffPixmap; |
66 | QPixmap bluezDiscoveryOnPixmap; | 66 | QPixmap bluezDiscoveryOnPixmap; |
67 | bool bluezactive; | 67 | bool bluezactive; |
68 | bool bluezDiscoveryActive; | 68 | bool bluezDiscoveryActive; |
69 | 69 | ||
70 | private slots: | 70 | private slots: |
71 | void slotMessage( const QCString& , const QByteArray& ); | 71 | void slotMessage( const QCString& , const QByteArray& ); |