summaryrefslogtreecommitdiff
path: root/noncore/applets/pyquicklaunch/pyquicklaunch.h
authormickeyl <mickeyl>2004-05-28 09:19:18 (UTC)
committer mickeyl <mickeyl>2004-05-28 09:19:18 (UTC)
commit568d43a21aa45c402bff7570202467f0e7631634 (patch) (side-by-side diff)
treedff88c1aed244b622b791b7272d1266139cca760 /noncore/applets/pyquicklaunch/pyquicklaunch.h
parent4f7c3c4d0d634706d13950b3827714b168e279e3 (diff)
downloadopie-568d43a21aa45c402bff7570202467f0e7631634.zip
opie-568d43a21aa45c402bff7570202467f0e7631634.tar.gz
opie-568d43a21aa45c402bff7570202467f0e7631634.tar.bz2
add sceleton for the pyquicklaunchapplet, an applet which mimicks the quicklaunch
technology for PyQt applications hence giving them a startup boost
Diffstat (limited to 'noncore/applets/pyquicklaunch/pyquicklaunch.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/applets/pyquicklaunch/pyquicklaunch.h57
1 files changed, 57 insertions, 0 deletions
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
+