summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/applets/pyquicklaunch/.cvsignore6
-rw-r--r--noncore/applets/pyquicklaunch/config.in4
-rw-r--r--noncore/applets/pyquicklaunch/pyquicklaunch.cpp109
-rw-r--r--noncore/applets/pyquicklaunch/pyquicklaunch.h57
-rw-r--r--noncore/applets/pyquicklaunch/pyquicklaunch.pro13
-rw-r--r--packages1
6 files changed, 190 insertions, 0 deletions
diff --git a/noncore/applets/pyquicklaunch/.cvsignore b/noncore/applets/pyquicklaunch/.cvsignore
new file mode 100644
index 0000000..0f79c04
--- a/dev/null
+++ b/noncore/applets/pyquicklaunch/.cvsignore
@@ -0,0 +1,6 @@
+Makefile*
+advancedconfigbase.cpp
+advancedconfigbase.h
+moc_*
+.moc
+.obj
diff --git a/noncore/applets/pyquicklaunch/config.in b/noncore/applets/pyquicklaunch/config.in
new file mode 100644
index 0000000..f4828d3
--- a/dev/null
+++ b/noncore/applets/pyquicklaunch/config.in
@@ -0,0 +1,4 @@
+ config WIRELESSAPPLET
+ boolean "opie-wirelessapplet (view wireless signal strength, and renew IP on AP change)"
+ default "y"
+ depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE2CORE && LIBOPIE2NET
diff --git a/noncore/applets/pyquicklaunch/pyquicklaunch.cpp b/noncore/applets/pyquicklaunch/pyquicklaunch.cpp
new file mode 100644
index 0000000..2ee8e17
--- a/dev/null
+++ b/noncore/applets/pyquicklaunch/pyquicklaunch.cpp
@@ -0,0 +1,109 @@
+/**********************************************************************
+** Copyright (C) 2004 Michael 'Mickey' Lauer <mickey@vanille.de>
+** All rights reserved.
+**
+** This file may be distributed and/or modified under the terms of the
+** GNU General Public License version 2 as published by the Free Software
+** Foundation and appearing in the file LICENSE.GPL included in the
+** packaging of this file.
+**
+** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
+** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+**
+**********************************************************************/
+
+#include "pyquicklaunch.h"
+
+/* OPIE */
+#include <opie2/odebug.h>
+#include <opie2/otaskbarapplet.h>
+#include <qpe/qpeapplication.h>
+#include <qpe/config.h>
+using namespace Opie::Core;
+
+/* QT */
+#include <qpainter.h>
+#include <qframe.h>
+
+PyQuicklaunchControl::PyQuicklaunchControl( PyQuicklaunchApplet *applet, QWidget *parent, const char *name )
+ : QFrame( parent, name, WStyle_StaysOnTop | WType_Popup ), applet( applet )
+{
+
+ setFrameStyle( QFrame::PopupPanel | QFrame::Raised );
+ setFixedSize( sizeHint() );
+ setFocusPolicy( QWidget::NoFocus );
+}
+
+
+void PyQuicklaunchControl::show( bool )
+{
+ QPoint curPos = applet->mapToGlobal( QPoint ( 0, 0 ) );
+
+ int w = sizeHint().width();
+ int x = curPos.x() - ( w / 2 );
+
+ if ( ( x + w ) > QPEApplication::desktop() ->width() )
+ x = QPEApplication::desktop ( ) -> width ( ) - w;
+
+ move( x, curPos.y () - sizeHint().height () );
+ QFrame::show();
+}
+
+void PyQuicklaunchControl::readConfig()
+{
+ Config cfg( "qpe" );
+ cfg.setGroup( "PyQuicklaunch" );
+
+ // ...
+}
+
+void PyQuicklaunchControl::writeConfigEntry( const char *entry, int val )
+{
+ Config cfg( "qpe" );
+ cfg.setGroup( "PyQuicklaunch" );
+ cfg.writeEntry( entry, val );
+}
+
+//===========================================================================
+
+PyQuicklaunchApplet::PyQuicklaunchApplet( QWidget *parent, const char *name )
+ : QWidget( parent, name )
+{
+ setFixedHeight( 18 );
+ setFixedWidth( 14 );
+ status = new PyQuicklaunchControl( this, this, "Python Quicklaunch Status" );
+}
+
+
+PyQuicklaunchApplet::~PyQuicklaunchApplet()
+{}
+
+
+void PyQuicklaunchApplet::timerEvent( QTimerEvent* )
+{
+ // FIXME
+}
+
+void PyQuicklaunchApplet::mousePressEvent( QMouseEvent * )
+{
+ status->isVisible() ? status->hide() : status->show( true );
+}
+
+void PyQuicklaunchApplet::paintEvent( QPaintEvent* )
+{
+ QPainter p( this );
+ int h = height();
+ int w = width();
+
+ // FIXME
+
+}
+
+
+int PyQuicklaunchApplet::position()
+{
+ return 6;
+}
+
+EXPORT_OPIE_APPLET_v1( PyQuicklaunchApplet )
+
diff --git a/noncore/applets/pyquicklaunch/pyquicklaunch.h b/noncore/applets/pyquicklaunch/pyquicklaunch.h
new file mode 100644
index 0000000..e99f780
--- a/dev/null
+++ b/noncore/applets/pyquicklaunch/pyquicklaunch.h
@@ -0,0 +1,57 @@
+/**********************************************************************
+** Copyright (C) 2004 Michael 'Mickey' Lauer <mickey@Vanille.de>
+** All rights reserved.
+**
+** This file may be distributed and/or modified under the terms of the
+** GNU General Public License version 2 as published by the Free Software
+** Foundation and appearing in the file LICENSE.GPL included in the
+** packaging of this file.
+**
+** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
+** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+**
+**********************************************************************/
+
+#ifndef PYQUICKLAUNCHAPPLET_H
+#define PYQUICKLAUNCHAPPLET_H
+
+#include <qwidget.h>
+#include <qframe.h>
+#include <qpixmap.h>
+
+class PyQuicklaunchApplet;
+
+class PyQuicklaunchControl : public QFrame
+{
+ Q_OBJECT
+ public:
+ PyQuicklaunchControl( PyQuicklaunchApplet* icon, QWidget *parent=0, const char *name=0 );
+ void show( bool );
+
+ void readConfig();
+ void writeConfigEntry( const char* entry, int val );
+
+ public slots:
+
+ private:
+ PyQuicklaunchApplet* applet;
+};
+
+class PyQuicklaunchApplet : public QWidget
+{
+ Q_OBJECT
+ public:
+ PyQuicklaunchApplet( QWidget *parent = 0, const char *name=0 );
+ ~PyQuicklaunchApplet();
+ static int position();
+ PyQuicklaunchControl* status;
+
+ virtual void timerEvent( QTimerEvent* );
+
+ protected:
+ virtual void mousePressEvent( QMouseEvent * );
+ virtual void paintEvent( QPaintEvent* );
+};
+
+#endif // PYQUICKLAUNCHAPPLET_H
+
diff --git a/noncore/applets/pyquicklaunch/pyquicklaunch.pro b/noncore/applets/pyquicklaunch/pyquicklaunch.pro
new file mode 100644
index 0000000..901781e
--- a/dev/null
+++ b/noncore/applets/pyquicklaunch/pyquicklaunch.pro
@@ -0,0 +1,13 @@
+TEMPLATE = lib
+CONFIG += qt plugin warn_on
+HEADERS = pyquicklaunch.h
+SOURCES = pyquicklaunch.cpp
+INTERFACES =
+TARGET = pyquicklaunch
+DESTDIR = $(OPIEDIR)/plugins/applets
+INCLUDEPATH += $(OPIEDIR)/include
+DEPENDPATH += $(OPIEDIR)/include
+LIBS += -lqpe -lopiecore2
+VERSION = 0.0.1
+
+include ( $(OPIEDIR)/include.pro )
diff --git a/packages b/packages
index 7cc36f0..7f54e4f 100644
--- a/packages
+++ b/packages
@@ -145,6 +145,7 @@ CONFIG_PARASHOOT noncore/games/parashoot parashoot.pro
CONFIG_PICKBOARD inputmethods/pickboard pickboard.pro
CONFIG_POWERCHORD noncore/multimedia/powerchord powerchord.pro
CONFIG_PPP noncore/settings/networksettings/ppp ppp.pro
+CONFIG_PYQUICKLAUNCH noncore/applets/pyquicklaunch pyquicklaunch.pro
CONFIG_QASHMONEY noncore/apps/qashmoney qashmoney.pro
CONFIG_QASTEROIDS noncore/games/qasteroids qasteroids.pro
CONFIG_QCOP core/apps/qcop qcop.pro