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
@@ -29,8 +29,8 @@
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 ) {
@@ -49,6 +49,7 @@ TodolistPluginWidget::~TodolistPluginWidget() {
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}
@@ -63,3 +64,3 @@ void TodolistPluginWidget::getTodo() {
63 64
64 if ( todoLabel ) { 65 if ( todoLabel ) {
65 delete todoLabel; 66 delete todoLabel;
@@ -69,3 +70,4 @@ void TodolistPluginWidget::getTodo() {
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;
@@ -77,5 +79,5 @@ void TodolistPluginWidget::getTodo() {
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 ) ) {
@@ -85,3 +87,3 @@ void TodolistPluginWidget::getTodo() {
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++;
@@ -93,4 +95,4 @@ void TodolistPluginWidget::getTodo() {
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() ){
@@ -104,3 +106,3 @@ void TodolistPluginWidget::getTodo() {
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++;
@@ -115,3 +117,3 @@ void TodolistPluginWidget::getTodo() {
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 }
@@ -120,3 +122,3 @@ void TodolistPluginWidget::getTodo() {
120 output = QObject::tr( "No active tasks" ); 122 output = QObject::tr( "No active tasks" );
121 } 123 }
122 todoLabel->setText( output ); 124 todoLabel->setText( output );
@@ -129,4 +131,4 @@ void TodolistPluginWidget::getTodo() {
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}