summaryrefslogtreecommitdiff
path: root/core/pim/today/plugins/addressbook/addresspluginconfig.h
Side-by-side diff
Diffstat (limited to 'core/pim/today/plugins/addressbook/addresspluginconfig.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/plugins/addressbook/addresspluginconfig.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/core/pim/today/plugins/addressbook/addresspluginconfig.h b/core/pim/today/plugins/addressbook/addresspluginconfig.h
new file mode 100644
index 0000000..6f128d4
--- a/dev/null
+++ b/core/pim/today/plugins/addressbook/addresspluginconfig.h
@@ -0,0 +1,60 @@
+/*
+ * addresspluginconfig.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_CONFIG_H
+#define ADDRESSBOOK_PLUGIN_CONFIG_H
+
+#include <qwidget.h>
+#include <qspinbox.h>
+
+#include <opie/todayconfigwidget.h>
+
+class AddressBookPluginConfig : public TodayConfigWidget {
+
+
+public:
+
+ AddressBookPluginConfig( QWidget *parent, const char *name );
+ ~AddressBookPluginConfig();
+
+private:
+ /**
+ * if changed then save
+ */
+ bool changed();
+ void readConfig();
+ void writeConfig();
+
+ QSpinBox* SpinBox2;
+ QSpinBox* SpinBoxClip;
+ QSpinBox* SpinDaysClip;
+
+ // how many lines should be showed in the AddressBook section
+ int m_max_lines_task;
+ // clip the lines after X chars
+ int m_maxCharClip;
+ // How many days look ahead
+ int m_daysLookAhead;
+
+};
+
+
+
+
+
+#endif