summaryrefslogtreecommitdiff
path: root/core/pim/today/plugins/todolist/todopluginconfig.h
authorllornkcor <llornkcor>2003-11-05 10:50:43 (UTC)
committer llornkcor <llornkcor>2003-11-05 10:50:43 (UTC)
commit7f271d89922254226280f039ae53c5fee63ef94d (patch) (unidiff)
tree796b3b98bc7978bf460181d31032c78c0ea5bc51 /core/pim/today/plugins/todolist/todopluginconfig.h
parent8ae3f2f96308505b3a02f5acfedfd45a01fefe1c (diff)
downloadopie-7f271d89922254226280f039ae53c5fee63ef94d.zip
opie-7f271d89922254226280f039ae53c5fee63ef94d.tar.gz
opie-7f271d89922254226280f039ae53c5fee63ef94d.tar.bz2
fix compile. probably wont work. who knows.
Diffstat (limited to 'core/pim/today/plugins/todolist/todopluginconfig.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/plugins/todolist/todopluginconfig.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/pim/today/plugins/todolist/todopluginconfig.h b/core/pim/today/plugins/todolist/todopluginconfig.h
index 54d35cf..a2d7d2c 100644
--- a/core/pim/today/plugins/todolist/todopluginconfig.h
+++ b/core/pim/today/plugins/todolist/todopluginconfig.h
@@ -3,49 +3,48 @@
3 * 3 *
4 * copyright : (c) 2002, 2003 by Maximilian Reiß 4 * copyright : (c) 2002, 2003 by Maximilian Reiß
5 * email : harlekin@handhelds.org 5 * email : harlekin@handhelds.org
6 * 6 *
7 */ 7 */
8/*************************************************************************** 8/***************************************************************************
9 * * 9 * *
10 * This program is free software; you can redistribute it and/or modify * 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 * 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 * 12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. * 13 * (at your option) any later version. *
14 * * 14 * *
15 ***************************************************************************/ 15 ***************************************************************************/
16 16
17#ifndef TODOLIST_PLUGIN_CONFIG_H 17#ifndef TODOLIST_PLUGIN_CONFIG_H
18#define TODOLIST_PLUGIN_CONFIG_H 18#define TODOLIST_PLUGIN_CONFIG_H
19 19
20#include <qspinbox.h> 20#include <qspinbox.h>
21 21
22#include <opie/todayconfigwidget.h> 22#include <opie/todayconfigwidget.h>
23 23
24#include "todopluginconfigbase.h" 24#include "todopluginconfigbase.h"
25 25
26class TodolistPluginConfig : public TodayConfigWidget { 26class TodolistPluginConfig : public TodayConfigWidget {
27
28 Q_OBJECT 27 Q_OBJECT
29 28
30public: 29public:
31 30
32 TodolistPluginConfig( QWidget *parent, const char *name ); 31 TodolistPluginConfig( QWidget *parent, const char *name );
33 ~TodolistPluginConfig(); 32 ~TodolistPluginConfig();
34 33
35private: 34private:
36 /** 35 /**
37 * if changed then save 36 * if changed then save
38 */ 37 */
39 bool changed(); 38 bool changed();
40 void readConfig(); 39 void readConfig();
41 void writeConfig(); 40 void writeConfig();
42 41
43 TodoPluginConfigBase *m_gui; 42 TodoPluginConfigBase *m_gui;
44 43
45 44
46 // how many lines should be showed in the todolist section 45 // how many lines should be showed in the todolist section
47 int m_max_lines_task; 46 int m_max_lines_task;
48 // clip the lines after X chars 47 // clip the lines after X chars
49 int m_maxCharClip; 48 int m_maxCharClip;
50 49
51 50