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