summaryrefslogtreecommitdiff
path: root/core/pim/today/plugins/addressbook/addresspluginwidget.h
authoreilers <eilers>2003-01-03 13:15:30 (UTC)
committer eilers <eilers>2003-01-03 13:15:30 (UTC)
commit19ee7f3b3e06fcf434dcd6a104e912b12220af3b (patch) (side-by-side diff)
treebf813eecb39d52da95591b561e9bd1c3cc329432 /core/pim/today/plugins/addressbook/addresspluginwidget.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/addresspluginwidget.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/plugins/addressbook/addresspluginwidget.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/core/pim/today/plugins/addressbook/addresspluginwidget.h b/core/pim/today/plugins/addressbook/addresspluginwidget.h
new file mode 100644
index 0000000..75e223a
--- a/dev/null
+++ b/core/pim/today/plugins/addressbook/addresspluginwidget.h
@@ -0,0 +1,57 @@
+/*
+ * addresspluginwidget.h
+ *
+ * copyright : (c) 2003 by Stefan Eilers
+ * email : eilers.stefan@epost.de
+ *
+ * This implementation was derived from the todolist plugin implementation
+ *
+ */
+/***************************************************************************
+ * *
+ * 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 ADDRESSBOOK_PLUGIN_WIDGET_H
+#define ADDRESSBOOK_PLUGIN_WIDGET_H
+
+#include <qstring.h>
+#include <qwidget.h>
+#include <qlayout.h>
+
+#include <opie/ocontactaccess.h>
+#include <opie/oclickablelabel.h>
+
+
+class AddressBookPluginWidget : public QWidget {
+
+ Q_OBJECT
+
+public:
+ AddressBookPluginWidget( QWidget *parent, const char *name );
+ ~AddressBookPluginWidget();
+
+protected slots:
+ void startAddressBook();
+ void refresh( const OContactAccess* db );
+
+private:
+ OClickableLabel* addressLabel;
+ QVBoxLayout* layoutTodo;
+ OContactAccess * m_contactdb;
+
+ OContactAccess::List m_list;
+ OContactAccess::List::Iterator m_it;
+
+ void readConfig();
+ void getAddress();
+ int m_maxLinesTask;
+ int m_maxCharClip;
+ int m_daysLookAhead;
+};
+
+#endif