summaryrefslogtreecommitdiff
path: root/noncore/todayplugins/fortune/fortuneplugin.h
Unidiff
Diffstat (limited to 'noncore/todayplugins/fortune/fortuneplugin.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/todayplugins/fortune/fortuneplugin.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/noncore/todayplugins/fortune/fortuneplugin.h b/noncore/todayplugins/fortune/fortuneplugin.h
new file mode 100644
index 0000000..9376771
--- a/dev/null
+++ b/noncore/todayplugins/fortune/fortuneplugin.h
@@ -0,0 +1,43 @@
1/*
2 * fortuneplugin.h
3 *
4 * copyright : (c) 2002 by Chris Larson
5 * email : kergoth@handhelds.org
6 *
7 */
8/***************************************************************************
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 ***************************************************************************/
16
17#ifndef FORTUNE_PLUGIN_H
18#define FORTUNE_PLUGIN_H
19
20#include <qstring.h>
21#include <qwidget.h>
22
23#include <opie/oclickablelabel.h>
24#include <opie/todayplugininterface.h>
25
26class FortunePlugin : public TodayPluginObject
27{
28
29public:
30 FortunePlugin();
31 ~FortunePlugin();
32
33 QString pluginName() const;
34 double versionNumber() const;
35 QString pixmapNameWidget() const;
36 QWidget* widget( QWidget * );
37 QString pixmapNameConfig() const;
38 TodayConfigWidget* configWidget( QWidget * );
39 QString appName() const;
40 bool excludeFromRefresh() const;
41};
42
43#endif