summaryrefslogtreecommitdiff
path: root/core/pim/today/plugins/addressbook/addressplugin.h
authoreilers <eilers>2003-01-03 13:15:30 (UTC)
committer eilers <eilers>2003-01-03 13:15:30 (UTC)
commit19ee7f3b3e06fcf434dcd6a104e912b12220af3b (patch) (unidiff)
treebf813eecb39d52da95591b561e9bd1c3cc329432 /core/pim/today/plugins/addressbook/addressplugin.h
parent54ebecbfd86a9ce6782dc55dad7ae15c73adef21 (diff)
downloadopie-19ee7f3b3e06fcf434dcd6a104e912b12220af3b.zip
opie-19ee7f3b3e06fcf434dcd6a104e912b12220af3b.tar.gz
opie-19ee7f3b3e06fcf434dcd6a104e912b12220af3b.tar.bz2
NEW: This plugin shows the next birthdays and anniversaries for the next
n days !
Diffstat (limited to 'core/pim/today/plugins/addressbook/addressplugin.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/plugins/addressbook/addressplugin.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/core/pim/today/plugins/addressbook/addressplugin.h b/core/pim/today/plugins/addressbook/addressplugin.h
new file mode 100644
index 0000000..5b655f5
--- a/dev/null
+++ b/core/pim/today/plugins/addressbook/addressplugin.h
@@ -0,0 +1,44 @@
1/*
2 * addressplugin.h
3 *
4 * copyright : (c) 2003 by Stefan Eilers
5 * email : eilers.stefan@epost.de
6 *
7 * This implementation was derived from the todolist plugin implementation
8 *
9 */
10/***************************************************************************
11 * *
12 * This program is free software; you can redistribute it and/or modify *
13 * it under the terms of the GNU General Public License as published by *
14 * the Free Software Foundation; either version 2 of the License, or *
15 * (at your option) any later version. *
16 * *
17 ***************************************************************************/
18
19#ifndef ADDRESSBOOK_PLUGIN_H
20#define ADDRESSBOOK_PLUGIN_H
21
22#include <qstring.h>
23#include <qwidget.h>
24
25#include <opie/oclickablelabel.h>
26#include <opie/todayplugininterface.h>
27
28class AddressBookPlugin : public TodayPluginObject {
29
30public:
31 AddressBookPlugin();
32 ~AddressBookPlugin();
33
34 QString pluginName() const;
35 double versionNumber() const;
36 QString pixmapNameWidget() const;
37 QWidget* widget(QWidget *);
38 QString pixmapNameConfig() const;
39 TodayConfigWidget* configWidget(QWidget *);
40 QString appName() const;
41 bool excludeFromRefresh() const;
42};
43
44#endif