summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/applets/autorotateapplet/autorotate.cpp8
-rw-r--r--noncore/applets/memoryapplet/memorymeter.cpp26
-rw-r--r--noncore/applets/memoryapplet/memorystatus.cpp1
-rw-r--r--noncore/applets/memoryapplet/memorystatus.h4
-rw-r--r--noncore/applets/networkapplet/networkapplet.cpp7
-rw-r--r--noncore/applets/networkapplet/networkapplet.h18
-rw-r--r--noncore/applets/notesapplet/notes.cpp8
-rw-r--r--noncore/applets/wirelessapplet/wireless.cpp9
-rw-r--r--noncore/applets/wirelessapplet/wireless.h9
-rw-r--r--noncore/applets/zkbapplet/zkbwidget.cpp11
10 files changed, 51 insertions, 50 deletions
diff --git a/noncore/applets/autorotateapplet/autorotate.cpp b/noncore/applets/autorotateapplet/autorotate.cpp
index 94be0ae..ae7fbd0 100644
--- a/noncore/applets/autorotateapplet/autorotate.cpp
+++ b/noncore/applets/autorotateapplet/autorotate.cpp
@@ -13,26 +13,25 @@
13#include "autorotate.h" 13#include "autorotate.h"
14 14
15/* OPIE */ 15/* OPIE */
16#include <opie2/odevice.h> 16#include <opie2/odevice.h>
17#include <opie2/otaskbarapplet.h> 17#include <opie2/otaskbarapplet.h>
18#include <qpe/applnk.h> 18#include <qpe/applnk.h>
19#include <qpe/config.h> 19#include <qpe/config.h>
20#include <qpe/resource.h> 20#include <qpe/resource.h>
21 21
22/* QT */ 22/* QT */
23#include <qpainter.h> 23#include <qpainter.h>
24 24
25using namespace Opie; 25using namespace Opie::Ui;
26
27AutoRotate::AutoRotate(QWidget * parent):QWidget(parent) 26AutoRotate::AutoRotate(QWidget * parent):QWidget(parent)
28{ 27{
29 setFixedWidth( AppLnk::smallIconSize() ); 28 setFixedWidth( AppLnk::smallIconSize() );
30 setFixedHeight( AppLnk::smallIconSize() ); 29 setFixedHeight( AppLnk::smallIconSize() );
31 30
32 enabledPm.convertFromImage( Resource::loadImage("autorotate/rotate").smoothScale( height(), width() ) ); 31 enabledPm.convertFromImage( Resource::loadImage("autorotate/rotate").smoothScale( height(), width() ) );
33 disabledPm.convertFromImage( Resource::loadImage("autorotate/norotate").smoothScale( height(), width() ) ); 32 disabledPm.convertFromImage( Resource::loadImage("autorotate/norotate").smoothScale( height(), width() ) );
34 33
35 repaint(true); 34 repaint(true);
36 popupMenu = 0; 35 popupMenu = 0;
37 show(); 36 show();
38} 37}
@@ -85,17 +84,14 @@ bool AutoRotate::isRotateEnabled()
85 Config cfg( "qpe" ); 84 Config cfg( "qpe" );
86 cfg.setGroup( "Appearance" ); 85 cfg.setGroup( "Appearance" );
87 86
88 bool res = cfg.readBoolEntry( "rotateEnabled" ); 87 bool res = cfg.readBoolEntry( "rotateEnabled" );
89 88
90 if (res ) 89 if (res )
91 qDebug("Enabled"); 90 qDebug("Enabled");
92 else 91 else
93 qDebug("Disabled"); 92 qDebug("Disabled");
94 return res; 93 return res;
95} 94}
96 95
97Q_EXPORT_INTERFACE() 96EXPORT_OPIE_APPLET_v1( AutoRotate )
98{
99 Q_CREATE_INSTANCE( OTaskbarAppletWrapper<AutoRotate> );
100}
101 97
diff --git a/noncore/applets/memoryapplet/memorymeter.cpp b/noncore/applets/memoryapplet/memorymeter.cpp
index 9299f49..9cdeaf4 100644
--- a/noncore/applets/memoryapplet/memorymeter.cpp
+++ b/noncore/applets/memoryapplet/memorymeter.cpp
@@ -22,34 +22,35 @@
22 22
23#include <opie2/otaskbarapplet.h> 23#include <opie2/otaskbarapplet.h>
24#include <qtopia/power.h> 24#include <qtopia/power.h>
25#include <qtopia/config.h> 25#include <qtopia/config.h>
26#include <qtopia/qcopenvelope_qws.h> 26#include <qtopia/qcopenvelope_qws.h>
27 27
28#include <qpainter.h> 28#include <qpainter.h>
29#include <qtimer.h> 29#include <qtimer.h>
30#include <qapplication.h> 30#include <qapplication.h>
31 31
32#include <qtopia/applnk.h> 32#include <qtopia/applnk.h>
33 33
34using namespace Opie::Ui;
34MemoryMeter::MemoryMeter( QWidget *parent ) 35MemoryMeter::MemoryMeter( QWidget *parent )
35 : QWidget( parent ), memoryView(0) 36 : QWidget( parent ), memoryView(0)
36{ 37{
37 bvsz = QSize(); 38 bvsz = QSize();
38 if ( qApp->desktop()->height() >= 300 ) 39 if ( qApp->desktop()->height() >= 300 )
39 { 40 {
40 memoryView = new MemoryStatus( 0, WStyle_StaysOnTop | WType_Popup ); 41 memoryView = new MemoryStatus( 0, WStyle_StaysOnTop | WType_Popup );
41 memoryView->setFrameStyle( QFrame::Panel | QFrame::Raised ); 42 memoryView->setFrameStyle( QFrame::Panel | QFrame::Raised );
42 } 43 }
43 else 44 else
44 { 45 {
45 memoryView = new MemoryStatus( 0 ); 46 memoryView = new MemoryStatus( 0 );
46 memoryView->showMaximized(); 47 memoryView->showMaximized();
47 } 48 }
48 49
49 Config config("MemoryPlugin"); 50 Config config("MemoryPlugin");
50 config.setGroup("Warning levels"); 51 config.setGroup("Warning levels");
51 low = config.readNumEntry("low", 40); 52 low = config.readNumEntry("low", 40);
52 critical = config.readNumEntry("critical", 20); 53 critical = config.readNumEntry("critical", 20);
53 54
54 startTimer( 10000 ); 55 startTimer( 10000 );
55 setFixedWidth(10); 56 setFixedWidth(10);
@@ -70,50 +71,50 @@ int MemoryMeter::position()
70} 71}
71 72
72QSize MemoryMeter::sizeHint() const 73QSize MemoryMeter::sizeHint() const
73{ 74{
74 return QSize(10, AppLnk::smallIconSize()); 75 return QSize(10, AppLnk::smallIconSize());
75} 76}
76 77
77bool MemoryMeter::updateMemoryViewGeometry() 78bool MemoryMeter::updateMemoryViewGeometry()
78{ 79{
79 if (memoryView != 0) 80 if (memoryView != 0)
80 { 81 {
81 QSize sz = memoryView->sizeHint(); 82 QSize sz = memoryView->sizeHint();
82 if ( sz != bvsz ) 83 if ( sz != bvsz )
83 { 84 {
84 bvsz = sz; 85 bvsz = sz;
85 QRect r(memoryView->pos(), memoryView->sizeHint()); 86 QRect r(memoryView->pos(), memoryView->sizeHint());
86 if ( qApp->desktop()->height() >= 300 ) 87 if ( qApp->desktop()->height() >= 300 )
87 { 88 {
88 QPoint curPos = mapToGlobal( rect().topLeft() ); 89 QPoint curPos = mapToGlobal( rect().topLeft() );
89 int lp = qApp->desktop()->width() - memoryView->sizeHint().width(); 90 int lp = qApp->desktop()->width() - memoryView->sizeHint().width();
90 r.moveTopLeft( QPoint(lp, curPos.y() - memoryView->sizeHint().height()-1) ); 91 r.moveTopLeft( QPoint(lp, curPos.y() - memoryView->sizeHint().height()-1) );
91 } 92 }
92 memoryView->setGeometry(r); 93 memoryView->setGeometry(r);
93 return TRUE; 94 return TRUE;
94 } 95 }
95 return FALSE; 96 return FALSE;
96 } 97 }
97 98
98 return FALSE; 99 return FALSE;
99} 100}
100 101
101void MemoryMeter::mousePressEvent( QMouseEvent *) 102void MemoryMeter::mousePressEvent( QMouseEvent *)
102{ 103{
103 if ( memoryView->isVisible() ) 104 if ( memoryView->isVisible() )
104 { 105 {
105 memoryView->hide(); 106 memoryView->hide();
106 } 107 }
107 else 108 else
108 { 109 {
109 bvsz = QSize(); 110 bvsz = QSize();
110 updateMemoryViewGeometry(); 111 updateMemoryViewGeometry();
111 memoryView->raise(); 112 memoryView->raise();
112 memoryView->show(); 113 memoryView->show();
113 } 114 }
114} 115}
115 116
116void MemoryMeter::timerEvent( QTimerEvent * ) 117void MemoryMeter::timerEvent( QTimerEvent * )
117{ 118{
118 if (memoryView != 0) 119 if (memoryView != 0)
119 { 120 {
@@ -197,51 +198,48 @@ void MemoryMeter::paintEvent( QPaintEvent* )
197 198
198 // 199 //
199 // 100 - percent, since percent is amount remaining, and we draw 200 // 100 - percent, since percent is amount remaining, and we draw
200 // reverse to this. 201 // reverse to this.
201 // 202 //
202 used_height = percent * batt_height / 100; 203 used_height = percent * batt_height / 100;
203 if (used_height < 0) 204 if (used_height < 0)
204 used_height = 0; 205 used_height = 0;
205 206
206 // 207 //
207 // Drained section. 208 // Drained section.
208 // 209 //
209 if (used_height != 0) 210 if (used_height != 0)
210 { 211 {
211 p.setPen(NoPen); 212 p.setPen(NoPen);
212 p.setBrush(gray); 213 p.setBrush(gray);
213 p.drawRect(batt_xoffset, batt_yoffset, band_width, used_height); 214 p.drawRect(batt_xoffset, batt_yoffset, band_width, used_height);
214 p.drawRect(batt_xoffset + 2 * band_width, batt_yoffset, band_width, used_height); 215 p.drawRect(batt_xoffset + 2 * band_width, batt_yoffset, band_width, used_height);
215 216
216 p.setBrush(gray/*.light(130)*/); 217 p.setBrush(gray/*.light(130)*/);
217 p.drawRect(batt_xoffset + band_width, batt_yoffset, band_width, used_height); 218 p.drawRect(batt_xoffset + band_width, batt_yoffset, band_width, used_height);
218 219
219 p.setBrush(gray/*.dark(120)*/); 220 p.setBrush(gray/*.dark(120)*/);
220 p.drawRect(batt_xoffset + 3 * band_width, batt_yoffset, band_width, used_height); 221 p.drawRect(batt_xoffset + 3 * band_width, batt_yoffset, band_width, used_height);
221 } 222 }
222 223
223 // 224 //
224 // Unused section. 225 // Unused section.
225 // 226 //
226 if ( batt_height - used_height > 0 ) 227 if ( batt_height - used_height > 0 )
227 { 228 {
228 int unused_offset = used_height + batt_yoffset; 229 int unused_offset = used_height + batt_yoffset;
229 int unused_height = batt_height - used_height; 230 int unused_height = batt_height - used_height;
230 p.setPen(NoPen); 231 p.setPen(NoPen);
231 p.setBrush(c); 232 p.setBrush(c);
232 p.drawRect(batt_xoffset, unused_offset, band_width, unused_height); 233 p.drawRect(batt_xoffset, unused_offset, band_width, unused_height);
233 p.drawRect(batt_xoffset + 2 * band_width, unused_offset, band_width, unused_height); 234 p.drawRect(batt_xoffset + 2 * band_width, unused_offset, band_width, unused_height);
234 235
235 p.setBrush(lightc); 236 p.setBrush(lightc);
236 p.drawRect(batt_xoffset + band_width, unused_offset, band_width, unused_height); 237 p.drawRect(batt_xoffset + band_width, unused_offset, band_width, unused_height);
237 238
238 p.setBrush(darkc); 239 p.setBrush(darkc);
239 p.drawRect(batt_xoffset + 3 * band_width, unused_offset, band_width, unused_height); 240 p.drawRect(batt_xoffset + 3 * band_width, unused_offset, band_width, unused_height);
240 } 241 }
241} 242}
242 243
243Q_EXPORT_INTERFACE() 244EXPORT_OPIE_APPLET_v1( MemoryMeter )
244{
245 Q_CREATE_INSTANCE( OTaskbarAppletWrapper<MemoryMeter> );
246}
247 245
diff --git a/noncore/applets/memoryapplet/memorystatus.cpp b/noncore/applets/memoryapplet/memorystatus.cpp
index c01ba28..95ae06b 100644
--- a/noncore/applets/memoryapplet/memorystatus.cpp
+++ b/noncore/applets/memoryapplet/memorystatus.cpp
@@ -19,24 +19,25 @@
19**********************************************************************/ 19**********************************************************************/
20#include "memorystatus.h" 20#include "memorystatus.h"
21#include "../../settings/sysinfo/memory.h" 21#include "../../settings/sysinfo/memory.h"
22#include "swapfile.h" 22#include "swapfile.h"
23 23
24#include <qpainter.h> 24#include <qpainter.h>
25#include <qpushbutton.h> 25#include <qpushbutton.h>
26#include <qdrawutil.h> 26#include <qdrawutil.h>
27#include <qlabel.h> 27#include <qlabel.h>
28 28
29#include <qlayout.h> 29#include <qlayout.h>
30 30
31using namespace Opie::Ui;
31MemoryStatus::MemoryStatus(QWidget *parent, WFlags f ) 32MemoryStatus::MemoryStatus(QWidget *parent, WFlags f )
32 : QFrame(parent, 0, f), mi(0), sf(0) 33 : QFrame(parent, 0, f), mi(0), sf(0)
33{ 34{
34 setCaption( tr("Memory Status") ); 35 setCaption( tr("Memory Status") );
35 //resize( 220, 180 ); 36 //resize( 220, 180 );
36 37
37 QVBoxLayout *lay = new QVBoxLayout( this ); 38 QVBoxLayout *lay = new QVBoxLayout( this );
38 tab = new OTabWidget( this, "tabwidget", OTabWidget::Global ); 39 tab = new OTabWidget( this, "tabwidget", OTabWidget::Global );
39 lay->addWidget( tab ); 40 lay->addWidget( tab );
40 tab->addTab( mi = new MemoryInfo( tab ), "memory/memorytabicon", tr("Memory") ); 41 tab->addTab( mi = new MemoryInfo( tab ), "memory/memorytabicon", tr("Memory") );
41 tab->addTab( sf = new Swapfile( tab ), "memory/storagetabicon", tr("Swapfile") ); 42 tab->addTab( sf = new Swapfile( tab ), "memory/storagetabicon", tr("Swapfile") );
42 43
diff --git a/noncore/applets/memoryapplet/memorystatus.h b/noncore/applets/memoryapplet/memorystatus.h
index c3926db..d16787b 100644
--- a/noncore/applets/memoryapplet/memorystatus.h
+++ b/noncore/applets/memoryapplet/memorystatus.h
@@ -17,33 +17,33 @@
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20#ifndef MEMORY_STATUS_H 20#ifndef MEMORY_STATUS_H
21#define MEMORY_STATUS_H 21#define MEMORY_STATUS_H
22 22
23#include <qframe.h> 23#include <qframe.h>
24 24
25#include <opie2/otabwidget.h> 25#include <opie2/otabwidget.h>
26 26
27class MemoryInfo; 27class MemoryInfo;
28class Swapfile; 28class Swapfile;
29using Opie::OTabWidget; 29
30 30
31class MemoryStatus : public QFrame 31class MemoryStatus : public QFrame
32{ 32{
33 Q_OBJECT 33 Q_OBJECT
34public: 34public:
35 MemoryStatus(QWidget *parent = 0, WFlags f = 0); 35 MemoryStatus(QWidget *parent = 0, WFlags f = 0);
36 ~MemoryStatus(); 36 ~MemoryStatus();
37 37
38 QSize sizeHint() const; 38 QSize sizeHint() const;
39 MemoryInfo* mi; 39 MemoryInfo* mi;
40 Swapfile* sf; 40 Swapfile* sf;
41 41
42 int percent(); 42 int percent();
43 43
44private: 44private:
45 OTabWidget *tab; 45 Opie::Ui::OTabWidget *tab;
46}; 46};
47 47
48#endif 48#endif
49 49
diff --git a/noncore/applets/networkapplet/networkapplet.cpp b/noncore/applets/networkapplet/networkapplet.cpp
index 955ed2e..5eb5ad2 100644
--- a/noncore/applets/networkapplet/networkapplet.cpp
+++ b/noncore/applets/networkapplet/networkapplet.cpp
@@ -36,24 +36,26 @@
36#include <opie2/otaskbarapplet.h> 36#include <opie2/otaskbarapplet.h>
37#include <qpe/applnk.h> 37#include <qpe/applnk.h>
38#include <qpe/resource.h> 38#include <qpe/resource.h>
39#include <qpainter.h> 39#include <qpainter.h>
40 40
41/* QT */ 41/* QT */
42#include <qlabel.h> 42#include <qlabel.h>
43#include <qlayout.h> 43#include <qlayout.h>
44#include <qobjectlist.h> 44#include <qobjectlist.h>
45 45
46#include <assert.h> 46#include <assert.h>
47 47
48using namespace Opie::Ui;
49using namespace Opie::Net;
48IfaceUpDownButton::IfaceUpDownButton( QWidget* parent, const char* name ) 50IfaceUpDownButton::IfaceUpDownButton( QWidget* parent, const char* name )
49 :QToolButton( parent, name ) 51 :QToolButton( parent, name )
50{ 52{
51 _iface = ONetwork::instance()->interface( name ); 53 _iface = ONetwork::instance()->interface( name );
52 assert( _iface ); 54 assert( _iface );
53 setToggleButton( true ); 55 setToggleButton( true );
54 //setAutoRaise( true ); 56 //setAutoRaise( true );
55 setOnIconSet( QIconSet( Resource::loadPixmap( "up" ) ) ); 57 setOnIconSet( QIconSet( Resource::loadPixmap( "up" ) ) );
56 setOffIconSet( QIconSet( Resource::loadPixmap( "down" ) ) ); 58 setOffIconSet( QIconSet( Resource::loadPixmap( "down" ) ) );
57 setOn( _iface->isUp() ); 59 setOn( _iface->isUp() );
58 //setFixedWidth( 16 ); 60 //setFixedWidth( 16 );
59 connect( this, SIGNAL( clicked() ), this, SLOT( clicked() ) ); 61 connect( this, SIGNAL( clicked() ), this, SLOT( clicked() ) );
@@ -237,18 +239,15 @@ void NetworkApplet::paintEvent( QPaintEvent* )
237void NetworkApplet::mousePressEvent( QMouseEvent* ) 239void NetworkApplet::mousePressEvent( QMouseEvent* )
238{ 240{
239 if ( !_control->isVisible() ) 241 if ( !_control->isVisible() )
240 { 242 {
241 popup( _control ); 243 popup( _control );
242 } 244 }
243 else 245 else
244 { 246 {
245 _control->hide(); 247 _control->hide();
246 } 248 }
247} 249}
248 250
251EXPORT_OPIE_APPLET_v1( NetworkApplet )
249 252
250Q_EXPORT_INTERFACE()
251{
252 Q_CREATE_INSTANCE( OTaskbarAppletWrapper<NetworkApplet> );
253}
254 253
diff --git a/noncore/applets/networkapplet/networkapplet.h b/noncore/applets/networkapplet/networkapplet.h
index 8022537..1e2cac8 100644
--- a/noncore/applets/networkapplet/networkapplet.h
+++ b/noncore/applets/networkapplet/networkapplet.h
@@ -29,81 +29,87 @@
29*/ 29*/
30 30
31#ifndef NETWORKAPPLET_H 31#ifndef NETWORKAPPLET_H
32#define NETWORKAPPLET_H 32#define NETWORKAPPLET_H
33 33
34#include <opie2/otaskbarapplet.h> 34#include <opie2/otaskbarapplet.h>
35#include <qframe.h> 35#include <qframe.h>
36#include <qstring.h> 36#include <qstring.h>
37#include <qtoolbutton.h> 37#include <qtoolbutton.h>
38#include <qlineedit.h> 38#include <qlineedit.h>
39#include <qpixmap.h> 39#include <qpixmap.h>
40 40
41class ONetworkInterface; 41
42namespace Opie {
43namespace Net {
44 class ONetwork;
45 class ONetworkInterface;
46}
47}
42class QShowEvent; 48class QShowEvent;
43class QHideEvent; 49class QHideEvent;
44class QVBoxLayout; 50class QVBoxLayout;
45 51
46class IfaceUpDownButton : public QToolButton 52class IfaceUpDownButton : public QToolButton
47{ 53{
48 Q_OBJECT 54 Q_OBJECT
49 55
50 public: 56 public:
51 IfaceUpDownButton( QWidget* parent, const char* name ); 57 IfaceUpDownButton( QWidget* parent, const char* name );
52 virtual ~IfaceUpDownButton(); 58 virtual ~IfaceUpDownButton();
53 59
54 public slots: 60 public slots:
55 virtual void clicked(); 61 virtual void clicked();
56 62
57 private: 63 private:
58 ONetworkInterface* _iface; 64 Opie::Net::ONetworkInterface* _iface;
59}; 65};
60 66
61 67
62class IfaceIPAddress : public QLineEdit 68class IfaceIPAddress : public QLineEdit
63{ 69{
64 Q_OBJECT 70 Q_OBJECT
65 71
66 public: 72 public:
67 IfaceIPAddress( QWidget* parent, const char* name ); 73 IfaceIPAddress( QWidget* parent, const char* name );
68 virtual ~IfaceIPAddress(); 74 virtual ~IfaceIPAddress();
69 75
70 public slots: 76 public slots:
71 virtual void returnPressed(); 77 virtual void returnPressed();
72 78
73 private: 79 private:
74 ONetworkInterface* _iface; 80 Opie::Net::ONetworkInterface* _iface;
75}; 81};
76 82
77class NetworkAppletControl : public QFrame 83class NetworkAppletControl : public QFrame
78{ 84{
79 public: 85 public:
80 NetworkAppletControl( OTaskbarApplet* parent, const char* name = 0 ); 86 NetworkAppletControl( Opie::Ui::OTaskbarApplet* parent, const char* name = 0 );
81 ~NetworkAppletControl(); 87 ~NetworkAppletControl();
82 88
83 virtual QSize sizeHint() const; 89 virtual QSize sizeHint() const;
84 90
85 protected: 91 protected:
86 virtual void showEvent( QShowEvent* ); 92 virtual void showEvent( QShowEvent* );
87 virtual void hideEvent( QHideEvent* ); 93 virtual void hideEvent( QHideEvent* );
88 QString guessDevice( ONetworkInterface* iface ); 94 QString guessDevice( Opie::Net::ONetworkInterface* iface );
89 void build(); 95 void build();
90 96
91 private: 97 private:
92 QVBoxLayout* l; 98 QVBoxLayout* l;
93 99
94}; 100};
95 101
96 102
97class NetworkApplet : public OTaskbarApplet 103class NetworkApplet : public Opie::Ui::OTaskbarApplet
98{ 104{
99 public: 105 public:
100 NetworkApplet( QWidget* parent = 0, const char* name = 0 ); 106 NetworkApplet( QWidget* parent = 0, const char* name = 0 );
101 ~NetworkApplet(); 107 ~NetworkApplet();
102 108
103 static int position(); 109 static int position();
104 protected: 110 protected:
105 virtual void paintEvent( QPaintEvent* ); 111 virtual void paintEvent( QPaintEvent* );
106 virtual void mousePressEvent( QMouseEvent* ); 112 virtual void mousePressEvent( QMouseEvent* );
107 113
108 private: 114 private:
109 NetworkAppletControl* _control; 115 NetworkAppletControl* _control;
diff --git a/noncore/applets/notesapplet/notes.cpp b/noncore/applets/notesapplet/notes.cpp
index 9b5e475..13f7cf3 100644
--- a/noncore/applets/notesapplet/notes.cpp
+++ b/noncore/applets/notesapplet/notes.cpp
@@ -37,24 +37,25 @@
37#include <qdir.h> 37#include <qdir.h>
38#include <qfile.h> 38#include <qfile.h>
39#include <qpoint.h> 39#include <qpoint.h>
40#include <qpushbutton.h> 40#include <qpushbutton.h>
41#include <qpainter.h> 41#include <qpainter.h>
42#include <qlayout.h> 42#include <qlayout.h>
43#include <qframe.h> 43#include <qframe.h>
44#include <qpixmap.h> 44#include <qpixmap.h>
45#include <qstring.h> 45#include <qstring.h>
46#include <qtimer.h> 46#include <qtimer.h>
47 47
48/* XPM */ 48/* XPM */
49using namespace Opie::Ui;
49static char * notes_xpm[] = { 50static char * notes_xpm[] = {
50"16 16 11 1", 51"16 16 11 1",
51" c None", 52" c None",
52". c #000000", 53". c #000000",
53"+ c #7F7F7F", 54"+ c #7F7F7F",
54"@ c #BFBFBF", 55"@ c #BFBFBF",
55"# c #BFC1FF", 56"# c #BFC1FF",
56"$ c #FF0000", 57"$ c #FF0000",
57"% c #FFFFFF", 58"% c #FFFFFF",
58"& c #00037F", 59"& c #00037F",
59"* c #0006FF", 60"* c #0006FF",
60"= c #0005BF", 61"= c #0005BF",
@@ -499,16 +500,15 @@ void NotesApplet::mousePressEvent( QMouseEvent *) {
499 500
500 vc->load(); 501 vc->load();
501// this->setFocus(); 502// this->setFocus();
502 vc->view->setFocus(); 503 vc->view->setFocus();
503 } 504 }
504} 505}
505 506
506void NotesApplet::paintEvent( QPaintEvent* ) { 507void NotesApplet::paintEvent( QPaintEvent* ) {
507 QPainter p(this); 508 QPainter p(this);
508 p.drawPixmap( 0, 1, ( const char** ) notes_xpm ); 509 p.drawPixmap( 0, 1, ( const char** ) notes_xpm );
509} 510}
510 511
511Q_EXPORT_INTERFACE() 512
512{ 513EXPORT_OPIE_APPLET_v1( NotesApplet )
513 Q_CREATE_INSTANCE( OTaskbarAppletWrapper<NotesApplet> ); 514
514}
diff --git a/noncore/applets/wirelessapplet/wireless.cpp b/noncore/applets/wirelessapplet/wireless.cpp
index 6ef2e44..f244426 100644
--- a/noncore/applets/wirelessapplet/wireless.cpp
+++ b/noncore/applets/wirelessapplet/wireless.cpp
@@ -17,46 +17,49 @@
17#include "connect0.xpm" 17#include "connect0.xpm"
18#include "connect1.xpm" 18#include "connect1.xpm"
19#include "connect2.xpm" 19#include "connect2.xpm"
20#include "connect3.xpm" 20#include "connect3.xpm"
21#include "connect4.xpm" 21#include "connect4.xpm"
22#include "connect5.xpm" 22#include "connect5.xpm"
23#include "nowireless.xpm" 23#include "nowireless.xpm"
24 24
25/* OPIE */ 25/* OPIE */
26#include <opie2/onetwork.h> 26#include <opie2/onetwork.h>
27#include <opie2/otaskbarapplet.h> 27#include <opie2/otaskbarapplet.h>
28#include <qpe/config.h> 28#include <qpe/config.h>
29#include <qpe/qpeapplication.h>
29 30
30/* QT */ 31/* QT */
31#include <qradiobutton.h> 32#include <qradiobutton.h>
32#include <qpushbutton.h> 33#include <qpushbutton.h>
33#include <qpainter.h> 34#include <qpainter.h>
34#include <qlabel.h> 35#include <qlabel.h>
35#include <qslider.h> 36#include <qslider.h>
36#include <qbuttongroup.h> 37#include <qbuttongroup.h>
37#include <qlayout.h> 38#include <qlayout.h>
38#include <qfile.h> 39#include <qfile.h>
39#include <qtextstream.h> 40#include <qtextstream.h>
40 41
41/* STD */ 42/* STD */
42#include <sys/types.h> 43#include <sys/types.h>
43#include <signal.h> 44#include <signal.h>
44 45
45#define STYLE_BARS 0 46#define STYLE_BARS 0
46#define STYLE_ANTENNA 1 47#define STYLE_ANTENNA 1
47 48
48//#define MDEBUG 49//#define MDEBUG
49#undef MDEBUG 50#undef MDEBUG
50 51
52using namespace Opie::Ui;
53using namespace Opie::Net;
51WirelessControl::WirelessControl( WirelessApplet *applet, QWidget *parent, const char *name ) 54WirelessControl::WirelessControl( WirelessApplet *applet, QWidget *parent, const char *name )
52 : QFrame( parent, name, WStyle_StaysOnTop | WType_Popup ), applet( applet ) 55 : QFrame( parent, name, WStyle_StaysOnTop | WType_Popup ), applet( applet )
53{ 56{
54 57
55 readConfig(); 58 readConfig();
56 writeConfigEntry( "UpdateFrequency", updateFrequency ); 59 writeConfigEntry( "UpdateFrequency", updateFrequency );
57 writeConfigEntry( "DisplayStyle", displayStyle ); 60 writeConfigEntry( "DisplayStyle", displayStyle );
58 61
59 setFrameStyle( QFrame::PopupPanel | QFrame::Raised ); 62 setFrameStyle( QFrame::PopupPanel | QFrame::Raised );
60 QGridLayout *grid = new QGridLayout( this, 3, 2, 6, 2, "top layout" ); 63 QGridLayout *grid = new QGridLayout( this, 3, 2, 6, 2, "top layout" );
61 64
62 /* status label */ 65 /* status label */
@@ -541,18 +544,14 @@ void WirelessApplet::paintEvent( QPaintEvent* )
541 p.setPen ( color ); 544 p.setPen ( color );
542 p.drawLine( leftoffset, height() - bottomoffset - i, pixelWidth + leftoffset, height() - bottomoffset - i ); 545 p.drawLine( leftoffset, height() - bottomoffset - i, pixelWidth + leftoffset, height() - bottomoffset - i );
543 } 546 }
544 } 547 }
545} 548}
546 549
547 550
548int WirelessApplet::position() 551int WirelessApplet::position()
549{ 552{
550 return 6; 553 return 6;
551} 554}
552 555
553 556EXPORT_OPIE_APPLET_v1( WirelessApplet )
554Q_EXPORT_INTERFACE()
555{
556 Q_CREATE_INSTANCE( OTaskbarAppletWrapper<WirelessApplet> );
557}
558 557
diff --git a/noncore/applets/wirelessapplet/wireless.h b/noncore/applets/wirelessapplet/wireless.h
index 27f8c90..b475a46 100644
--- a/noncore/applets/wirelessapplet/wireless.h
+++ b/noncore/applets/wirelessapplet/wireless.h
@@ -10,25 +10,28 @@
10** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 10** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
11** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 11** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
12** 12**
13**********************************************************************/ 13**********************************************************************/
14 14
15#ifndef __WIRELESS_APPLET_H__ 15#ifndef __WIRELESS_APPLET_H__
16#define __WIRELESS_APPLET_H__ 16#define __WIRELESS_APPLET_H__
17 17
18#include <qwidget.h> 18#include <qwidget.h>
19#include <qframe.h> 19#include <qframe.h>
20#include <qpixmap.h> 20#include <qpixmap.h>
21 21
22class OWirelessNetworkInterface; 22namespace Opie {namespace Net {
23 class OWirelessNetworkInterface;
24}
25}
23class Y; 26class Y;
24class QLabel; 27class QLabel;
25class WirelessApplet; 28class WirelessApplet;
26class MGraph; 29class MGraph;
27 30
28class WirelessControl : public QFrame 31class WirelessControl : public QFrame
29{ 32{
30 Q_OBJECT 33 Q_OBJECT
31 public: 34 public:
32 WirelessControl( WirelessApplet* icon, QWidget *parent=0, const char *name=0 ); 35 WirelessControl( WirelessApplet* icon, QWidget *parent=0, const char *name=0 );
33 void show( bool ); 36 void show( bool );
34 37
@@ -77,29 +80,29 @@ class WirelessApplet : public QWidget
77 void checkInterface(); 80 void checkInterface();
78 void renewDHCP(); 81 void renewDHCP();
79 82
80 bool mustRepaint(); 83 bool mustRepaint();
81 void updatePopupWindow(); 84 void updatePopupWindow();
82 const char** getQualityPixmap(); 85 const char** getQualityPixmap();
83 86
84 private: 87 private:
85 QPixmap snapshotPixmap; 88 QPixmap snapshotPixmap;
86 int visualStyle; 89 int visualStyle;
87 int timer; 90 int timer;
88 91
89 OWirelessNetworkInterface* interface; 92 Opie::Net::OWirelessNetworkInterface* interface;
90 93
91 private: 94 private:
92 const char** oldpixmap; 95 const char** oldpixmap;
93 OWirelessNetworkInterface* oldiface; 96 Opie::Net::OWirelessNetworkInterface* oldiface;
94 int oldqualityH; 97 int oldqualityH;
95 int oldsignalH; 98 int oldsignalH;
96 int oldnoiseH; 99 int oldnoiseH;
97 100
98 QString oldESSID; 101 QString oldESSID;
99 QString oldAP; 102 QString oldAP;
100 QString oldMODE; 103 QString oldMODE;
101 double oldFREQ; 104 double oldFREQ;
102 105
103 bool rocESSID; 106 bool rocESSID;
104 bool rocFREQ; 107 bool rocFREQ;
105 bool rocAP; 108 bool rocAP;
diff --git a/noncore/applets/zkbapplet/zkbwidget.cpp b/noncore/applets/zkbapplet/zkbwidget.cpp
index 0083e9b..3acff1e 100644
--- a/noncore/applets/zkbapplet/zkbwidget.cpp
+++ b/noncore/applets/zkbapplet/zkbwidget.cpp
@@ -1,27 +1,28 @@
1#include <opie2/otaskbarapplet.h> 1#include <opie2/otaskbarapplet.h>
2#include <qpe/qcopenvelope_qws.h> 2#include <qpe/qcopenvelope_qws.h>
3#include <qpe/applnk.h> 3#include <qpe/applnk.h>
4#include <qpe/qpeapplication.h> 4#include <qpe/qpeapplication.h>
5#include <qpe/resource.h> 5#include <qpe/resource.h>
6#include <stdio.h> 6#include <stdio.h>
7#include <unistd.h> 7#include <unistd.h>
8#include "zkbwidget.h" 8#include "zkbwidget.h"
9#include "zkbcfg.h" 9#include "zkbcfg.h"
10 10
11using namespace Opie::Ui;
11ZkbWidget::ZkbWidget(QWidget* parent):QLabel(parent),keymap(0), 12ZkbWidget::ZkbWidget(QWidget* parent):QLabel(parent),keymap(0),
12 disabled(Resource::loadPixmap("zkb-disabled")) { 13 disabled(Resource::loadPixmap("zkb-disabled")) {
13 14
14 labels = new QPopupMenu(); 15 labels = new QPopupMenu();
15 connect(labels, SIGNAL(activated(int)), this, 16 connect(labels, SIGNAL(activated(int)), this,
16 SLOT(labelChanged(int))); 17 SLOT(labelChanged(int)));
17 18
18 loadKeymap(); 19 loadKeymap();
19 20
20 channel = new QCopChannel("QPE/zkb", this); 21 channel = new QCopChannel("QPE/zkb", this);
21 connect(channel, SIGNAL(received(const QCString&,const QByteArray&)), 22 connect(channel, SIGNAL(received(const QCString&,const QByteArray&)),
22 this, SLOT(signalReceived(const QCString&,const QByteArray&))); 23 this, SLOT(signalReceived(const QCString&,const QByteArray&)));
23 setFixedWidth ( AppLnk::smallIconSize() ); 24 setFixedWidth ( AppLnk::smallIconSize() );
24 setFixedHeight ( AppLnk::smallIconSize() ); 25 setFixedHeight ( AppLnk::smallIconSize() );
25} 26}
26 27
27ZkbWidget::~ZkbWidget() { 28ZkbWidget::~ZkbWidget() {
@@ -59,25 +60,25 @@ bool ZkbWidget::loadKeymap() {
59 60
60 if (oldkm != 0) { 61 if (oldkm != 0) {
61 delete oldkm; 62 delete oldkm;
62 } 63 }
63 64
64 setText(keymap->getCurrentLabel()); 65 setText(keymap->getCurrentLabel());
65 66
66 labels->clear(); 67 labels->clear();
67 QStringList l = keymap->listLabels(); 68 QStringList l = keymap->listLabels();
68 labels->insertItem(disabled, 0, 0); 69 labels->insertItem(disabled, 0, 0);
69 int n = 1; 70 int n = 1;
70 w = 0; 71 w = 0;
71 for(QStringList::Iterator it = l.begin(); it != l.end(); 72 for(QStringList::Iterator it = l.begin(); it != l.end();
72 ++it, n++) { 73 ++it, n++) {
73 74
74 // printf("label: %s\n", (const char*) (*it).utf8()); 75 // printf("label: %s\n", (const char*) (*it).utf8());
75 76
76 labels->insertItem(*it, n, n); 77 labels->insertItem(*it, n, n);
77 int lw = fm.width(*it); 78 int lw = fm.width(*it);
78 if (lw > w) { 79 if (lw > w) {
79 w = lw; 80 w = lw;
80 } 81 }
81 } 82 }
82 83
83 if (w == 0) { 84 if (w == 0) {
@@ -146,17 +147,15 @@ void ZkbWidget::signalReceived(const QCString& msg, const QByteArray& data) {
146 } 147 }
147 } else if (msg == "debug(QString)") { 148 } else if (msg == "debug(QString)") {
148 QString flag; 149 QString flag;
149 stream >> flag; 150 stream >> flag;
150 } 151 }
151} 152}
152 153
153void ZkbWidget::reload() { 154void ZkbWidget::reload() {
154 loadKeymap(); 155 loadKeymap();
155 QCopEnvelope("QPE/System", "notBusy()"); 156 QCopEnvelope("QPE/System", "notBusy()");
156} 157}
157 158
158Q_EXPORT_INTERFACE() 159EXPORT_OPIE_APPLET_v1( ZkbWidget )
159{ 160
160 Q_CREATE_INSTANCE( OTaskbarAppletWrapper<ZkbWidget> );
161}
162 161