summaryrefslogtreecommitdiff
path: root/core/pim/today/plugins/todolist/todopluginwidget.cpp
Unidiff
Diffstat (limited to 'core/pim/today/plugins/todolist/todopluginwidget.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/plugins/todolist/todopluginwidget.cpp36
1 files changed, 19 insertions, 17 deletions
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
30TodolistPluginWidget::TodolistPluginWidget( QWidget *parent, const char* name) 30TodolistPluginWidget::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
50void TodolistPluginWidget::readConfig() { 51void 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 */
129void TodolistPluginWidget::startTodolist() { 131void 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}