summaryrefslogtreecommitdiff
path: root/noncore/todayplugins/fortune/fortunepluginwidget.h
Side-by-side diff
Diffstat (limited to 'noncore/todayplugins/fortune/fortunepluginwidget.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/todayplugins/fortune/fortunepluginwidget.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/noncore/todayplugins/fortune/fortunepluginwidget.h b/noncore/todayplugins/fortune/fortunepluginwidget.h
new file mode 100644
index 0000000..dd3cd6f
--- a/dev/null
+++ b/noncore/todayplugins/fortune/fortunepluginwidget.h
@@ -0,0 +1,49 @@
+/*
+ * fortunepluginwidget.h
+ *
+ * copyright : (c) 2002 by Chris Larson
+ * email : kergoth@handhelds.org
+ *
+ */
+/***************************************************************************
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ ***************************************************************************/
+
+#ifndef FORTUNE_PLUGIN_WIDGET_H
+#define FORTUNE_PLUGIN_WIDGET_H
+
+#include <qstring.h>
+#include <qwidget.h>
+
+#include <opie/oticker.h>
+#include <opie/oprocess.h>
+
+
+class FortunePluginWidget : public QWidget
+{
+
+ Q_OBJECT
+
+public:
+ FortunePluginWidget( QWidget *parent, const char *name );
+ ~FortunePluginWidget();
+
+protected slots:
+ void startFortune();
+
+private:
+ OTicker *fortune;
+ OProcess *fortuneProcess;
+
+ void getFortune();
+
+private slots:
+ void slotStdOut( OProcess*, char*, int );
+};
+
+#endif