summaryrefslogtreecommitdiff
path: root/core/pim/today/plugins/todolist/todoplugin.h
Unidiff
Diffstat (limited to 'core/pim/today/plugins/todolist/todoplugin.h') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/today/plugins/todolist/todoplugin.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/core/pim/today/plugins/todolist/todoplugin.h b/core/pim/today/plugins/todolist/todoplugin.h
new file mode 100644
index 0000000..77889d6
--- a/dev/null
+++ b/core/pim/today/plugins/todolist/todoplugin.h
@@ -0,0 +1,47 @@
1/*
2 * todoplugin.h
3 *
4 * copyright : (c) 2002 by Maximilian Reiß
5 * email : harlekin@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 TODOLIST_PLUGIN_H
18#define TODOLIST_PLUGIN_H
19
20#include <qstring.h>
21#include <qwidget.h>
22
23#include <opie/tododb.h>
24#include <opie/oclickablelabel.h>
25
26#include "../../todayplugininterface.h"
27#include "../../configwidget.h"
28
29class TodolistPlugin : public TodayPluginObject {
30
31
32public:
33 TodolistPlugin();
34 ~TodolistPlugin();
35
36 QString pluginName() const;
37 double versionNumber() const;
38 QString pixmapNameWidget() const;
39 QWidget* widget(QWidget *);
40 QString pixmapNameConfig() const;
41 ConfigWidget* configWidget(QWidget *);
42 QString appName() const;
43 virtual int minHeight() const;
44 virtual int maxHeight() const;
45};
46
47#endif