author | harlekin <harlekin> | 2002-09-19 08:10:37 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-09-19 08:10:37 (UTC) |
commit | 390fc683967b74607aa93a176db33b30cd63b9c6 (patch) (unidiff) | |
tree | 1ac9846defcf76f180cc419c40b6a9f67fba7f5f | |
parent | 474222487ba86a76b7d494aefd250222327ca12e (diff) | |
download | opie-390fc683967b74607aa93a176db33b30cd63b9c6.zip opie-390fc683967b74607aa93a176db33b30cd63b9c6.tar.gz opie-390fc683967b74607aa93a176db33b30cd63b9c6.tar.bz2 |
fixed config option
4 files changed, 26 insertions, 28 deletions
diff --git a/core/pim/today/plugins/todolist/todoplugin.cpp b/core/pim/today/plugins/todolist/todoplugin.cpp index f5f6ed6..7ab27a0 100644 --- a/core/pim/today/plugins/todolist/todoplugin.cpp +++ b/core/pim/today/plugins/todolist/todoplugin.cpp | |||
@@ -32,7 +32,7 @@ QString TodolistPlugin::pluginName() const { | |||
32 | } | 32 | } |
33 | 33 | ||
34 | double TodolistPlugin::versionNumber() const { | 34 | double TodolistPlugin::versionNumber() const { |
35 | return 0.1; | 35 | return 0.7; |
36 | } | 36 | } |
37 | 37 | ||
38 | QString TodolistPlugin::pixmapNameWidget() const { | 38 | QString TodolistPlugin::pixmapNameWidget() const { |
@@ -40,7 +40,7 @@ QString TodolistPlugin::pixmapNameWidget() const { | |||
40 | } | 40 | } |
41 | 41 | ||
42 | QWidget* TodolistPlugin::widget( QWidget *wid ) { | 42 | QWidget* TodolistPlugin::widget( QWidget *wid ) { |
43 | return new TodolistPluginWidget( wid, "Todolist" ); | 43 | return new TodolistPluginWidget( wid, "Todolist" ); |
44 | } | 44 | } |
45 | 45 | ||
46 | QString TodolistPlugin::pixmapNameConfig() const { | 46 | QString TodolistPlugin::pixmapNameConfig() const { |
@@ -52,7 +52,7 @@ ConfigWidget* TodolistPlugin::configWidget( QWidget* wid ) { | |||
52 | } | 52 | } |
53 | 53 | ||
54 | QString TodolistPlugin::appName() const { | 54 | QString TodolistPlugin::appName() const { |
55 | return "Todolist"; | 55 | return QObject::tr( "Todolist" ); |
56 | } | 56 | } |
57 | 57 | ||
58 | int TodolistPlugin::minHeight() const { | 58 | int TodolistPlugin::minHeight() const { |
@@ -63,9 +63,3 @@ int TodolistPlugin::maxHeight() const { | |||
63 | return 100; | 63 | return 100; |
64 | } | 64 | } |
65 | 65 | ||
66 | |||
67 | |||
68 | |||
69 | int main() { | ||
70 | } | ||
71 | |||
diff --git a/core/pim/today/plugins/todolist/todopluginconfig.cpp b/core/pim/today/plugins/todolist/todopluginconfig.cpp index da81600..2d8f1b6 100644 --- a/core/pim/today/plugins/todolist/todopluginconfig.cpp +++ b/core/pim/today/plugins/todolist/todopluginconfig.cpp | |||
@@ -50,7 +50,7 @@ TodolistPluginConfig::TodolistPluginConfig( QWidget *parent, const char* name) | |||
50 | } | 50 | } |
51 | 51 | ||
52 | void TodolistPluginConfig::readConfig() { | 52 | void TodolistPluginConfig::readConfig() { |
53 | Config cfg( "todaydatebookplugin" ); | 53 | Config cfg( "todaytodoplugin" ); |
54 | cfg.setGroup( "config" ); | 54 | cfg.setGroup( "config" ); |
55 | m_max_lines_task = cfg.readNumEntry( "maxlinestask", 5 ); | 55 | m_max_lines_task = cfg.readNumEntry( "maxlinestask", 5 ); |
56 | SpinBox2->setValue( m_max_lines_task ); | 56 | SpinBox2->setValue( m_max_lines_task ); |
@@ -58,8 +58,9 @@ void TodolistPluginConfig::readConfig() { | |||
58 | 58 | ||
59 | 59 | ||
60 | void TodolistPluginConfig::writeConfig() { | 60 | void TodolistPluginConfig::writeConfig() { |
61 | Config cfg( "todaydatebookplugin" ); | 61 | Config cfg( "todaytodoplugin" ); |
62 | cfg.setGroup( "config" ); | 62 | cfg.setGroup( "config" ); |
63 | m_max_lines_task = SpinBox2->value(); | ||
63 | cfg.writeEntry( "maxlinestask", m_max_lines_task ); | 64 | cfg.writeEntry( "maxlinestask", m_max_lines_task ); |
64 | cfg.write(); | 65 | cfg.write(); |
65 | } | 66 | } |
diff --git a/core/pim/today/plugins/todolist/todopluginwidget.cpp b/core/pim/today/plugins/todolist/todopluginwidget.cpp index 2a0e5a3..4731b43 100644 --- a/core/pim/today/plugins/todolist/todopluginwidget.cpp +++ b/core/pim/today/plugins/todolist/todopluginwidget.cpp | |||
@@ -27,12 +27,12 @@ | |||
27 | #include <qpe/timestring.h> | 27 | #include <qpe/timestring.h> |
28 | #include <qpe/qcopenvelope_qws.h> | 28 | #include <qpe/qcopenvelope_qws.h> |
29 | 29 | ||
30 | TodolistPluginWidget::TodolistPluginWidget( QWidget *parent, const char* name) | 30 | TodolistPluginWidget::TodolistPluginWidget( QWidget *parent, const char* name ) |
31 | : QWidget(parent, name ) { | 31 | : QWidget( parent, name ) { |
32 | 32 | ||
33 | todoLabel= 0l; | 33 | todoLabel= 0l; |
34 | |||
35 | todo = 0l; | 34 | todo = 0l; |
35 | |||
36 | if ( todo ) { | 36 | if ( todo ) { |
37 | delete todo; | 37 | delete todo; |
38 | } | 38 | } |
@@ -47,10 +47,11 @@ TodolistPluginWidget::~TodolistPluginWidget() { | |||
47 | delete todo; | 47 | delete todo; |
48 | } | 48 | } |
49 | 49 | ||
50 | |||
50 | void TodolistPluginWidget::readConfig() { | 51 | void TodolistPluginWidget::readConfig() { |
51 | Config cfg( "todaytodolistplugin" ); | 52 | Config cfg( "todaytodoplugin" ); |
52 | cfg.setGroup( "config" ); | 53 | cfg.setGroup( "config" ); |
53 | m_maxLinesTask = cfg.readNumEntry( "maxlinestask", 5 ); | 54 | m_maxLinesTask = cfg.readNumEntry( "maxlinestask", 5 ); |
54 | } | 55 | } |
55 | 56 | ||
56 | 57 | ||
@@ -61,13 +62,14 @@ void TodolistPluginWidget::getTodo() { | |||
61 | 62 | ||
62 | QVBoxLayout* layoutTodo = new QVBoxLayout( this ); | 63 | QVBoxLayout* layoutTodo = new QVBoxLayout( this ); |
63 | 64 | ||
64 | if ( todoLabel ) { | 65 | if ( todoLabel ) { |
65 | delete todoLabel; | 66 | delete todoLabel; |
66 | } | 67 | } |
67 | 68 | ||
68 | todoLabel = new OClickableLabel( this ); | 69 | todoLabel = new OClickableLabel( this ); |
69 | todoLabel->setSizePolicy( QSizePolicy( QSizePolicy::Minimum, QSizePolicy::Minimum ) ); | 70 | todoLabel->setSizePolicy( QSizePolicy( QSizePolicy::Minimum, QSizePolicy::Minimum ) ); |
70 | connect( todoLabel, SIGNAL( clicked() ), this, SLOT( startTodolist() ) ); | 71 | connect( todoLabel, SIGNAL( clicked() ), this, SLOT( startTodolist() ) ); |
72 | |||
71 | QString output; | 73 | QString output; |
72 | QString tmpout; | 74 | QString tmpout; |
73 | int count = 0; | 75 | int count = 0; |
@@ -75,15 +77,15 @@ void TodolistPluginWidget::getTodo() { | |||
75 | 77 | ||
76 | // get overdue todos first | 78 | // get overdue todos first |
77 | QValueList<ToDoEvent> overDueList = todo->overDue(); | 79 | QValueList<ToDoEvent> overDueList = todo->overDue(); |
78 | qBubbleSort(overDueList); | 80 | qBubbleSort( overDueList ); |
79 | for ( QValueList<ToDoEvent>::Iterator it = overDueList.begin(); | 81 | for ( QValueList<ToDoEvent>::Iterator it = overDueList.begin(); |
80 | it!=overDueList.end(); ++it ) { | 82 | it != overDueList.end(); ++it ) { |
81 | if (!(*it).isCompleted() && ( ammount < m_maxLinesTask ) ) { | 83 | if (!(*it).isCompleted() && ( ammount < m_maxLinesTask ) ) { |
82 | QString desc = (*it).summary(); | 84 | QString desc = (*it).summary(); |
83 | if( desc.isEmpty() ) { | 85 | if( desc.isEmpty() ) { |
84 | desc = (*it).description(); | 86 | desc = (*it).description(); |
85 | } | 87 | } |
86 | tmpout += "<font color=#e00000><b>-" + desc.mid(0, m_maxCharClip) + "</b></font><br>"; | 88 | tmpout += "<font color=#e00000><b>-" + desc.mid( 0, m_maxCharClip ) + "</b></font><br>"; |
87 | ammount++; | 89 | ammount++; |
88 | } | 90 | } |
89 | } | 91 | } |
@@ -91,8 +93,8 @@ void TodolistPluginWidget::getTodo() { | |||
91 | // get total number of still open todos | 93 | // get total number of still open todos |
92 | QValueList<ToDoEvent> openTodo = todo->rawToDos(); | 94 | QValueList<ToDoEvent> openTodo = todo->rawToDos(); |
93 | qBubbleSort( openTodo ); | 95 | qBubbleSort( openTodo ); |
94 | for ( QValueList<ToDoEvent>::Iterator it=openTodo.begin(); | 96 | for ( QValueList<ToDoEvent>::Iterator it = openTodo.begin(); |
95 | it!=openTodo.end(); ++it ) { | 97 | it != openTodo.end(); ++it ) { |
96 | if ( !(*it).isCompleted() ){ | 98 | if ( !(*it).isCompleted() ){ |
97 | count +=1; | 99 | count +=1; |
98 | // not the overdues, we allready got them, and not if we are | 100 | // not the overdues, we allready got them, and not if we are |
@@ -102,7 +104,7 @@ void TodolistPluginWidget::getTodo() { | |||
102 | if( desc.isEmpty() ) { | 104 | if( desc.isEmpty() ) { |
103 | desc = (*it).description(); | 105 | desc = (*it).description(); |
104 | } | 106 | } |
105 | tmpout += "<b>-</b>" + desc.mid(0, m_maxCharClip) + "<br>"; | 107 | tmpout += "<b>-</b>" + desc.mid( 0, m_maxCharClip ) + "<br>"; |
106 | ammount++; | 108 | ammount++; |
107 | } | 109 | } |
108 | } | 110 | } |
@@ -113,12 +115,12 @@ void TodolistPluginWidget::getTodo() { | |||
113 | if( count == 1 ) { | 115 | if( count == 1 ) { |
114 | output += QObject::tr( "There is <b> 1</b> active task: <br>" ); | 116 | output += QObject::tr( "There is <b> 1</b> active task: <br>" ); |
115 | } else { | 117 | } else { |
116 | output += QObject::tr( "There are <b> %1</b> active tasks: <br>" ).arg(count); | 118 | output += QObject::tr( "There are <b> %1</b> active tasks: <br>" ).arg( count ); |
117 | } | 119 | } |
118 | output += tmpout; | 120 | output += tmpout; |
119 | } else { | 121 | } else { |
120 | output = QObject::tr( "No active tasks" ); | 122 | output = QObject::tr( "No active tasks" ); |
121 | } | 123 | } |
122 | todoLabel->setText( output ); | 124 | todoLabel->setText( output ); |
123 | layoutTodo->addWidget( todoLabel ); | 125 | layoutTodo->addWidget( todoLabel ); |
124 | } | 126 | } |
@@ -127,6 +129,6 @@ void TodolistPluginWidget::getTodo() { | |||
127 | * start the todolist | 129 | * start the todolist |
128 | */ | 130 | */ |
129 | void TodolistPluginWidget::startTodolist() { | 131 | void TodolistPluginWidget::startTodolist() { |
130 | QCopEnvelope e("QPE/System", "execute(QString)"); | 132 | QCopEnvelope e( "QPE/System", "execute(QString)" ); |
131 | e << QString("todolist"); | 133 | e << QString( "todolist" ); |
132 | } | 134 | } |
diff --git a/core/pim/today/plugins/todolist/todopluginwidget.h b/core/pim/today/plugins/todolist/todopluginwidget.h index ccc312a..970f430 100644 --- a/core/pim/today/plugins/todolist/todopluginwidget.h +++ b/core/pim/today/plugins/todolist/todopluginwidget.h | |||
@@ -38,6 +38,7 @@ protected slots: | |||
38 | private: | 38 | private: |
39 | OClickableLabel *todoLabel; | 39 | OClickableLabel *todoLabel; |
40 | ToDoDB *todo; | 40 | ToDoDB *todo; |
41 | |||
41 | void readConfig(); | 42 | void readConfig(); |
42 | void getTodo(); | 43 | void getTodo(); |
43 | int m_maxLinesTask; | 44 | int m_maxLinesTask; |