summaryrefslogtreecommitdiff
path: root/core/pim/today/plugins/datebook/datebookpluginconfig.h
authorharlekin <harlekin>2002-09-15 21:13:47 (UTC)
committer harlekin <harlekin>2002-09-15 21:13:47 (UTC)
commit87cd421d72df1d7706925285a48c008007471310 (patch) (unidiff)
treeeb7805bd6702f2820aac159baa4a9c5592a52ee4 /core/pim/today/plugins/datebook/datebookpluginconfig.h
parent251fd5b1687994c30e8bea1091e893468086223f (diff)
downloadopie-87cd421d72df1d7706925285a48c008007471310.zip
opie-87cd421d72df1d7706925285a48c008007471310.tar.gz
opie-87cd421d72df1d7706925285a48c008007471310.tar.bz2
plugins for the new today
Diffstat (limited to 'core/pim/today/plugins/datebook/datebookpluginconfig.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/plugins/datebook/datebookpluginconfig.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/core/pim/today/plugins/datebook/datebookpluginconfig.h b/core/pim/today/plugins/datebook/datebookpluginconfig.h
new file mode 100644
index 0000000..33d3c4e
--- a/dev/null
+++ b/core/pim/today/plugins/datebook/datebookpluginconfig.h
@@ -0,0 +1,48 @@
1
2#ifndef DATEBOOK_PLUGIN_CONFIG_H
3#define DATEBOOK_PLUGIN_CONFIG_H
4
5#include <qwidget.h>
6#include <qcheckbox.h>
7#include <qspinbox.h>
8
9#include "../../configwidget.h"
10
11class DatebookPluginConfig : public ConfigWidget {
12
13 Q_OBJECT
14
15public:
16 DatebookPluginConfig( QWidget *parent, const char *name );
17 ~DatebookPluginConfig();
18
19 void writeConfig();
20private:
21 /**
22 * if changed then save
23 */
24 bool changed();
25 void readConfig();
26
27 QCheckBox* CheckBox2;
28 QCheckBox* CheckBox1;
29 QCheckBox* CheckBox3;
30 QSpinBox* SpinBox1;
31
32 // how many lines should be showed in the datebook section
33 int m_max_lines_meet;
34 // If location is to be showed too, 1 to activate it.
35 int m_show_location;
36 // if notes should be shown
37 int m_show_notes;
38 // should only later appointments be shown or all for the current day.
39 int m_only_later;
40
41
42};
43
44
45
46
47
48#endif