summaryrefslogtreecommitdiffabout
path: root/korganizer
Unidiff
Diffstat (limited to 'korganizer') (more/less context) (ignore whitespace changes)
-rw-r--r--korganizer/calendarview.cpp6
-rw-r--r--korganizer/kotodoview.cpp24
-rw-r--r--korganizer/kotodoviewitem.cpp66
3 files changed, 76 insertions, 20 deletions
diff --git a/korganizer/calendarview.cpp b/korganizer/calendarview.cpp
index 7044e90..f9685e9 100644
--- a/korganizer/calendarview.cpp
+++ b/korganizer/calendarview.cpp
@@ -1,4820 +1,4820 @@
1/* 1/*
2 This file is part of KOrganizer. 2 This file is part of KOrganizer.
3 3
4 Requires the Qt and KDE widget libraries, available at no cost at 4 Requires the Qt and KDE widget libraries, available at no cost at
5 http://www.troll.no and http://www.kde.org respectively 5 http://www.troll.no and http://www.kde.org respectively
6 6
7 Copyright (c) 1997, 1998, 1999 7 Copyright (c) 1997, 1998, 1999
8 Preston Brown (preton.brown@yale.edu) 8 Preston Brown (preton.brown@yale.edu)
9 Fester Zigterman (F.J.F.ZigtermanRustenburg@student.utwente.nl) 9 Fester Zigterman (F.J.F.ZigtermanRustenburg@student.utwente.nl)
10 Ian Dawes (iadawes@globalserve.net) 10 Ian Dawes (iadawes@globalserve.net)
11 Laszlo Boloni (boloni@cs.purdue.edu) 11 Laszlo Boloni (boloni@cs.purdue.edu)
12 12
13 Copyright (c) 2000, 2001, 2002 13 Copyright (c) 2000, 2001, 2002
14 Cornelius Schumacher <schumacher@kde.org> 14 Cornelius Schumacher <schumacher@kde.org>
15 15
16 This program is free software; you can redistribute it and/or modify 16 This program is free software; you can redistribute it and/or modify
17 it under the terms of the GNU General Public License as published by 17 it under the terms of the GNU General Public License as published by
18 the Free Software Foundation; either version 2 of the License, or 18 the Free Software Foundation; either version 2 of the License, or
19 (at your option) any later version. 19 (at your option) any later version.
20 20
21 This program is distributed in the hope that it will be useful, 21 This program is distributed in the hope that it will be useful,
22 but WITHOUT ANY WARRANTY; without even the implied warranty of 22 but WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the 23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
24 GNU General Public License for more details. 24 GNU General Public License for more details.
25 25
26 You should have received a copy of the GNU General Public License 26 You should have received a copy of the GNU General Public License
27 along with this program; if not, write to the Free Software 27 along with this program; if not, write to the Free Software
28 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 28 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
29*/ 29*/
30 30
31#include <stdlib.h> 31#include <stdlib.h>
32 32
33#include <qapplication.h> 33#include <qapplication.h>
34#include <qradiobutton.h> 34#include <qradiobutton.h>
35#include <qbuttongroup.h> 35#include <qbuttongroup.h>
36#include <qlayout.h> 36#include <qlayout.h>
37#include <qclipboard.h> 37#include <qclipboard.h>
38#include <qcursor.h> 38#include <qcursor.h>
39#include <qmessagebox.h> 39#include <qmessagebox.h>
40#include <qprogressbar.h> 40#include <qprogressbar.h>
41#include <qmultilineedit.h> 41#include <qmultilineedit.h>
42#include <qtimer.h> 42#include <qtimer.h>
43#include <qwidgetstack.h> 43#include <qwidgetstack.h>
44#include <qptrlist.h> 44#include <qptrlist.h>
45#include <qregexp.h> 45#include <qregexp.h>
46#include <qgroupbox.h> 46#include <qgroupbox.h>
47#include <qfile.h> 47#include <qfile.h>
48#include <qdir.h> 48#include <qdir.h>
49#ifndef KORG_NOSPLITTER 49#ifndef KORG_NOSPLITTER
50#include <qsplitter.h> 50#include <qsplitter.h>
51#endif 51#endif
52 52
53#include <kglobal.h> 53#include <kglobal.h>
54#include <kdebug.h> 54#include <kdebug.h>
55#include <kstandarddirs.h> 55#include <kstandarddirs.h>
56#include <kfiledialog.h> 56#include <kfiledialog.h>
57#include <kmessagebox.h> 57#include <kmessagebox.h>
58#include <knotifyclient.h> 58#include <knotifyclient.h>
59#include <kconfig.h> 59#include <kconfig.h>
60 60
61#include <libkdepim/ksyncprefsdialog.h> 61#include <libkdepim/ksyncprefsdialog.h>
62#include <krun.h> 62#include <krun.h>
63#include <kdirwatch.h> 63#include <kdirwatch.h>
64#include <libkdepim/kdatepicker.h> 64#include <libkdepim/kdatepicker.h>
65#include <libkdepim/ksyncprofile.h> 65#include <libkdepim/ksyncprofile.h>
66#include <libkdepim/kpimglobalprefs.h> 66#include <libkdepim/kpimglobalprefs.h>
67 67
68#include <libkcal/vcaldrag.h> 68#include <libkcal/vcaldrag.h>
69#include <libkcal/icaldrag.h> 69#include <libkcal/icaldrag.h>
70#include <libkcal/icalformat.h> 70#include <libkcal/icalformat.h>
71#include <libkcal/vcalformat.h> 71#include <libkcal/vcalformat.h>
72#include <libkcal/scheduler.h> 72#include <libkcal/scheduler.h>
73#include <libkcal/calendarlocal.h> 73#include <libkcal/calendarlocal.h>
74#include <libkcal/journal.h> 74#include <libkcal/journal.h>
75#include <libkcal/calfilter.h> 75#include <libkcal/calfilter.h>
76#include <libkcal/attendee.h> 76#include <libkcal/attendee.h>
77#include <libkcal/dndfactory.h> 77#include <libkcal/dndfactory.h>
78#include <libkcal/freebusy.h> 78#include <libkcal/freebusy.h>
79#include <libkcal/filestorage.h> 79#include <libkcal/filestorage.h>
80#include <libkcal/calendarresources.h> 80#include <libkcal/calendarresources.h>
81#include <libkcal/qtopiaformat.h> 81#include <libkcal/qtopiaformat.h>
82#include "../kalarmd/alarmdialog.h" 82#include "../kalarmd/alarmdialog.h"
83 83
84#ifndef DESKTOP_VERSION 84#ifndef DESKTOP_VERSION
85#include <libkcal/sharpformat.h> 85#include <libkcal/sharpformat.h>
86#include <externalapphandler.h> 86#include <externalapphandler.h>
87#endif 87#endif
88#include <libkcal/phoneformat.h> 88#include <libkcal/phoneformat.h>
89#ifndef KORG_NOMAIL 89#ifndef KORG_NOMAIL
90#include "komailclient.h" 90#include "komailclient.h"
91#endif 91#endif
92#ifndef KORG_NOPRINTER 92#ifndef KORG_NOPRINTER
93#include "calprinter.h" 93#include "calprinter.h"
94#endif 94#endif
95#ifndef KORG_NOPLUGINS 95#ifndef KORG_NOPLUGINS
96#include "kocore.h" 96#include "kocore.h"
97#endif 97#endif
98#include "koeventeditor.h" 98#include "koeventeditor.h"
99#include "kotodoeditor.h" 99#include "kotodoeditor.h"
100#include "koprefs.h" 100#include "koprefs.h"
101#include "koeventviewerdialog.h" 101#include "koeventviewerdialog.h"
102#include "publishdialog.h" 102#include "publishdialog.h"
103#include "kofilterview.h" 103#include "kofilterview.h"
104#include "koglobals.h" 104#include "koglobals.h"
105#include "koviewmanager.h" 105#include "koviewmanager.h"
106#include "koagendaview.h" 106#include "koagendaview.h"
107#include "koagenda.h" 107#include "koagenda.h"
108#include "kodialogmanager.h" 108#include "kodialogmanager.h"
109#include "outgoingdialog.h" 109#include "outgoingdialog.h"
110#include "incomingdialog.h" 110#include "incomingdialog.h"
111#include "datenavigatorcontainer.h" 111#include "datenavigatorcontainer.h"
112#include "statusdialog.h" 112#include "statusdialog.h"
113#include "kdatenavigator.h" 113#include "kdatenavigator.h"
114#include "kotodoview.h" 114#include "kotodoview.h"
115#include "datenavigator.h" 115#include "datenavigator.h"
116#include "resourceview.h" 116#include "resourceview.h"
117#include "navigatorbar.h" 117#include "navigatorbar.h"
118#include "searchdialog.h" 118#include "searchdialog.h"
119#include "mainwindow.h" 119#include "mainwindow.h"
120#include "categoryeditdialog.h" 120#include "categoryeditdialog.h"
121 121
122#include "calendarview.h" 122#include "calendarview.h"
123#ifndef DESKTOP_VERSION 123#ifndef DESKTOP_VERSION
124#include <qtopia/alarmserver.h> 124#include <qtopia/alarmserver.h>
125#endif 125#endif
126#ifndef _WIN32_ 126#ifndef _WIN32_
127#include <stdlib.h> 127#include <stdlib.h>
128#include <stdio.h> 128#include <stdio.h>
129#include <unistd.h> 129#include <unistd.h>
130#else 130#else
131#include <qprocess.h> 131#include <qprocess.h>
132#endif 132#endif
133 133
134#ifdef DESKTOP_VERSION 134#ifdef DESKTOP_VERSION
135#include <kabc/stdaddressbook.h> 135#include <kabc/stdaddressbook.h>
136#endif 136#endif
137using namespace KOrg; 137using namespace KOrg;
138using namespace KCal; 138using namespace KCal;
139extern int globalFlagBlockAgenda; 139extern int globalFlagBlockAgenda;
140extern int globalFlagBlockStartup; 140extern int globalFlagBlockStartup;
141 141
142 142
143MissedAlarmTextBrowser::MissedAlarmTextBrowser(QWidget *parent, QPtrList<Incidence> alarms,QDateTime start ) : QTextBrowser(parent) 143MissedAlarmTextBrowser::MissedAlarmTextBrowser(QWidget *parent, QPtrList<Incidence> alarms,QDateTime start ) : QTextBrowser(parent)
144 144
145{ 145{
146 mAlarms = alarms; 146 mAlarms = alarms;
147 viewport()->setBackgroundColor( QColor( 255, 255, 255 ) ); 147 viewport()->setBackgroundColor( QColor( 255, 255, 255 ) );
148 QString mText = "<table width=\"100%\">\n"; 148 QString mText = "<table width=\"100%\">\n";
149 //mText += "<tr bgcolor=\"#3679AD\"><td><h2>"; 149 //mText += "<tr bgcolor=\"#3679AD\"><td><h2>";
150#ifdef DESKTOP_VERSION 150#ifdef DESKTOP_VERSION
151 mText += "<tr bgcolor=\"#5699CD\"><td align=\"center\"><h2>"; 151 mText += "<tr bgcolor=\"#5699CD\"><td align=\"center\"><h2>";
152#else 152#else
153 mText += "<tr bgcolor=\"#5699CD\"><td align=\"center\"><h3>"; 153 mText += "<tr bgcolor=\"#5699CD\"><td align=\"center\"><h3>";
154#endif 154#endif
155 // mText += "<img src=\""; 155 // mText += "<img src=\"";
156 // mText += ipath; 156 // mText += ipath;
157 // mText += "\">"; 157 // mText += "\">";
158 //mEventDate = QDate::currentDate(); 158 //mEventDate = QDate::currentDate();
159#ifdef DESKTOP_VERSION 159#ifdef DESKTOP_VERSION
160 mText += "<font color=\"#FFFFFF\"> <em>" + i18n("You missed the alarms for the following events or todos:")+"</em></font></h2>"; 160 mText += "<font color=\"#FFFFFF\"> <em>" + i18n("You missed the alarms for the following events or todos:")+"</em></font></h2>";
161#else 161#else
162 mText += "<font color=\"#FFFFFF\"> <em>" + i18n("You missed the alarms for the following events or todos:")+"</em></font></h3>"; 162 mText += "<font color=\"#FFFFFF\"> <em>" + i18n("You missed the alarms for the following events or todos:")+"</em></font></h3>";
163#endif 163#endif
164 //mText += "</td></tr>\n<tr bgcolor=\"#FF997D\"><td>"; 164 //mText += "</td></tr>\n<tr bgcolor=\"#FF997D\"><td>";
165 165
166 Incidence * inc = getNextInc( start ); 166 Incidence * inc = getNextInc( start );
167 int time = 0; 167 int time = 0;
168 //mText += "<table>"; 168 //mText += "<table>";
169 while ( inc ) { 169 while ( inc ) {
170 QDateTime dt ; 170 QDateTime dt ;
171 QString tempText = "<a "; 171 QString tempText = "<a ";
172 bool ok; 172 bool ok;
173 dt = inc->getNextOccurence( start, &ok ); 173 dt = inc->getNextOccurence( start, &ok );
174 if ( !ok ) continue; 174 if ( !ok ) continue;
175 if ( inc->typeID() == eventID ) { 175 if ( inc->typeID() == eventID ) {
176 tempText += "href=\"event:"; 176 tempText += "href=\"event:";
177 } else if ( inc->typeID() == todoID ) { 177 } else if ( inc->typeID() == todoID ) {
178 tempText += "href=\"todo:"; 178 tempText += "href=\"todo:";
179 } 179 }
180 tempText += inc->uid() + "\">"; 180 tempText += inc->uid() + "\">";
181 if ( inc->typeID() == todoID ) 181 if ( inc->typeID() == todoID )
182 tempText += i18n("Todo: "); 182 tempText += i18n("Todo: ");
183 if ( inc->summary().length() > 0 ) 183 if ( inc->summary().length() > 0 )
184 tempText += inc->summary(); 184 tempText += inc->summary();
185 else 185 else
186 tempText += i18n("-no summary-"); 186 tempText += i18n("-no summary-");
187 QString timestr; 187 QString timestr;
188 if (!inc->doesFloat()) 188 if (!inc->doesFloat())
189 timestr = KGlobal::locale()->formatDateTime( dt, KOPrefs::instance()->mShortDateInViewer) +": "; 189 timestr = KGlobal::locale()->formatDateTime( dt, KOPrefs::instance()->mShortDateInViewer) +": ";
190 else 190 else
191 timestr = KGlobal::locale()->formatDate( dt.date() , KOPrefs::instance()->mShortDateInViewer) +": "; 191 timestr = KGlobal::locale()->formatDate( dt.date() , KOPrefs::instance()->mShortDateInViewer) +": ";
192 if ( dt.date() < QDate::currentDate() && time == 0 ) { 192 if ( dt.date() < QDate::currentDate() && time == 0 ) {
193 mText += "</td></tr>\n<tr bgcolor=\"#FF997D\"><td>"; 193 mText += "</td></tr>\n<tr bgcolor=\"#FF997D\"><td>";
194 mText += "<table>"; 194 mText += "<table>";
195 time = 1; 195 time = 1;
196 } 196 }
197 if ( dt.date() == QDate::currentDate() && time <= 1 ) { 197 if ( dt.date() == QDate::currentDate() && time <= 1 ) {
198 if ( time > 0 ) 198 if ( time > 0 )
199 mText +="</table>"; 199 mText +="</table>";
200 mText += "</td></tr>\n<tr bgcolor=\"#FFDC64\"><td>"; 200 mText += "</td></tr>\n<tr bgcolor=\"#FFDC64\"><td>";
201 mText += "<table>"; 201 mText += "<table>";
202 time = 2; 202 time = 2;
203 203
204 } 204 }
205 if ( dt.date() > QDate::currentDate() && time <= 2 ) { 205 if ( dt.date() > QDate::currentDate() && time <= 2 ) {
206 if ( time > 0 ) 206 if ( time > 0 )
207 mText +="</table>"; 207 mText +="</table>";
208 mText += "</td></tr>\n<tr bgcolor=\"#6AFF6A\"><td>"; 208 mText += "</td></tr>\n<tr bgcolor=\"#6AFF6A\"><td>";
209 mText += "<table>"; 209 mText += "<table>";
210 time = 3; 210 time = 3;
211 } 211 }
212 mText +="<tr><td><b>"; 212 mText +="<tr><td><b>";
213 mText += timestr; 213 mText += timestr;
214 mText += "</b></td><td>"; 214 mText += "</b></td><td>";
215 mText += tempText; 215 mText += tempText;
216 mText += "</td></tr>\n"; 216 mText += "</td></tr>\n";
217 inc = getNextInc( start ); 217 inc = getNextInc( start );
218 } 218 }
219 mText +="</table>"; 219 mText +="</table>";
220 setText( mText ); 220 setText( mText );
221} 221}
222 222
223MissedAlarmTextBrowser::~MissedAlarmTextBrowser() 223MissedAlarmTextBrowser::~MissedAlarmTextBrowser()
224{ 224{
225 //qDebug("delete MissedAlarmTextBrowser::~MissedAlarmTextBrowser() "); 225 //qDebug("delete MissedAlarmTextBrowser::~MissedAlarmTextBrowser() ");
226} 226}
227Incidence * MissedAlarmTextBrowser::getNextInc( QDateTime start ) 227Incidence * MissedAlarmTextBrowser::getNextInc( QDateTime start )
228{ 228{
229 QDateTime dt ; 229 QDateTime dt ;
230 Incidence * retInc; 230 Incidence * retInc;
231 Incidence * inc = mAlarms.first(); 231 Incidence * inc = mAlarms.first();
232 if ( inc == 0 ) 232 if ( inc == 0 )
233 return 0; 233 return 0;
234 bool ok; 234 bool ok;
235 dt = inc->getNextOccurence( start, &ok ); 235 dt = inc->getNextOccurence( start, &ok );
236 if ( ! ok ) return 0; 236 if ( ! ok ) return 0;
237 QDateTime dtn ; 237 QDateTime dtn ;
238 retInc = inc; 238 retInc = inc;
239 inc = mAlarms.next(); 239 inc = mAlarms.next();
240 while ( inc ) { 240 while ( inc ) {
241 dtn = inc->getNextOccurence( start, &ok ); 241 dtn = inc->getNextOccurence( start, &ok );
242 if ( ! ok ) return 0; 242 if ( ! ok ) return 0;
243 if ( dtn < dt ) { 243 if ( dtn < dt ) {
244 dt = dtn; 244 dt = dtn;
245 retInc = inc; 245 retInc = inc;
246 } 246 }
247 inc = mAlarms.next(); 247 inc = mAlarms.next();
248 } 248 }
249 mAlarms.remove( retInc ); 249 mAlarms.remove( retInc );
250 return retInc; 250 return retInc;
251 251
252} 252}
253void MissedAlarmTextBrowser::setSource(const QString & n) 253void MissedAlarmTextBrowser::setSource(const QString & n)
254{ 254{
255 if (n.startsWith("event:")) { 255 if (n.startsWith("event:")) {
256#ifdef DESKTOP_VERSION 256#ifdef DESKTOP_VERSION
257 emit showIncidence(n.mid(8)); 257 emit showIncidence(n.mid(8));
258#else 258#else
259 emit showIncidence(n.mid(6)); 259 emit showIncidence(n.mid(6));
260#endif 260#endif
261 return; 261 return;
262 } else if (n.startsWith("todo:")) { 262 } else if (n.startsWith("todo:")) {
263#ifdef DESKTOP_VERSION 263#ifdef DESKTOP_VERSION
264 emit showIncidence(n.mid(7)); 264 emit showIncidence(n.mid(7));
265#else 265#else
266 emit showIncidence(n.mid(5)); 266 emit showIncidence(n.mid(5));
267#endif 267#endif
268 return; 268 return;
269 } 269 }
270} 270}
271 271
272 272
273class KOBeamPrefs : public QDialog 273class KOBeamPrefs : public QDialog
274{ 274{
275 public: 275 public:
276 KOBeamPrefs( QWidget *parent=0, const char *name=0 ) : 276 KOBeamPrefs( QWidget *parent=0, const char *name=0 ) :
277 QDialog( parent, name, true ) 277 QDialog( parent, name, true )
278 { 278 {
279 setCaption( i18n("Beam Options") ); 279 setCaption( i18n("Beam Options") );
280 QVBoxLayout* lay = new QVBoxLayout( this ); 280 QVBoxLayout* lay = new QVBoxLayout( this );
281 lay->setSpacing( 3 ); 281 lay->setSpacing( 3 );
282 lay->setMargin( 3 ); 282 lay->setMargin( 3 );
283 QButtonGroup* format = new QButtonGroup( 1, Horizontal, i18n("File format"), this ); 283 QButtonGroup* format = new QButtonGroup( 1, Horizontal, i18n("File format"), this );
284 lay->addWidget( format ); 284 lay->addWidget( format );
285 format->setExclusive ( true ) ; 285 format->setExclusive ( true ) ;
286 QButtonGroup* time = new QButtonGroup(1, Horizontal, i18n("Time format"), this ); 286 QButtonGroup* time = new QButtonGroup(1, Horizontal, i18n("Time format"), this );
287 lay->addWidget( time ); time->setExclusive ( true ) ; 287 lay->addWidget( time ); time->setExclusive ( true ) ;
288 vcal = new QRadioButton(" vCalendar ", format ); 288 vcal = new QRadioButton(" vCalendar ", format );
289 ical = new QRadioButton(" iCalendar ", format ); 289 ical = new QRadioButton(" iCalendar ", format );
290 vcal->setChecked( true ); 290 vcal->setChecked( true );
291 tz = new QRadioButton(i18n(" With timezone "), time ); 291 tz = new QRadioButton(i18n(" With timezone "), time );
292 local = new QRadioButton(i18n(" Local time "), time ); 292 local = new QRadioButton(i18n(" Local time "), time );
293 tz->setChecked( true ); 293 tz->setChecked( true );
294 QPushButton * ok = new QPushButton( i18n("Beam via IR!"), this ); 294 QPushButton * ok = new QPushButton( i18n("Beam via IR!"), this );
295 lay->addWidget( ok ); 295 lay->addWidget( ok );
296 QPushButton * cancel = new QPushButton( i18n("Cancel"), this ); 296 QPushButton * cancel = new QPushButton( i18n("Cancel"), this );
297 lay->addWidget( cancel ); 297 lay->addWidget( cancel );
298 connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) ); 298 connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) );
299 connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) ); 299 connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) );
300 resize( 200, 200 ); 300 resize( 200, 200 );
301 } 301 }
302 302
303 bool beamVcal() { return vcal->isChecked(); } 303 bool beamVcal() { return vcal->isChecked(); }
304 bool beamLocal() { return local->isChecked(); } 304 bool beamLocal() { return local->isChecked(); }
305private: 305private:
306 QRadioButton* vcal, *ical, *local, *tz; 306 QRadioButton* vcal, *ical, *local, *tz;
307}; 307};
308class KOCatPrefs : public QDialog 308class KOCatPrefs : public QDialog
309{ 309{
310 public: 310 public:
311 KOCatPrefs( QWidget *parent=0, const char *name=0 ) : 311 KOCatPrefs( QWidget *parent=0, const char *name=0 ) :
312 QDialog( parent, name, true ) 312 QDialog( parent, name, true )
313 { 313 {
314 setCaption( i18n("Manage new Categories") ); 314 setCaption( i18n("Manage new Categories") );
315 QVBoxLayout* lay = new QVBoxLayout( this ); 315 QVBoxLayout* lay = new QVBoxLayout( this );
316 lay->setSpacing( 3 ); 316 lay->setSpacing( 3 );
317 lay->setMargin( 3 ); 317 lay->setMargin( 3 );
318 QLabel * lab = new QLabel( i18n("After importing/loading/syncing there may be new categories in events or todos which are not added automatically to the category list. Please choose what to do <b>now</b>:"), this ); 318 QLabel * lab = new QLabel( i18n("After importing/loading/syncing there may be new categories in events or todos which are not added automatically to the category list. Please choose what to do <b>now</b>:"), this );
319 lay->addWidget( lab ); 319 lay->addWidget( lab );
320 QButtonGroup* format = new QButtonGroup( 1, Horizontal, i18n("New categories not in list:"), this ); 320 QButtonGroup* format = new QButtonGroup( 1, Horizontal, i18n("New categories not in list:"), this );
321 lay->addWidget( format ); 321 lay->addWidget( format );
322 format->setExclusive ( true ) ; 322 format->setExclusive ( true ) ;
323 addCatBut = new QRadioButton(i18n("Add to category list"), format ); 323 addCatBut = new QRadioButton(i18n("Add to category list"), format );
324 new QRadioButton(i18n("Remove from Events/Todos"), format ); 324 new QRadioButton(i18n("Remove from Events/Todos"), format );
325 addCatBut->setChecked( true ); 325 addCatBut->setChecked( true );
326 QPushButton * ok = new QPushButton( i18n("Change category list now!"), this ); 326 QPushButton * ok = new QPushButton( i18n("Change category list now!"), this );
327 lay->addWidget( ok ); 327 lay->addWidget( ok );
328 QPushButton * cancel = new QPushButton( i18n("Cancel"), this ); 328 QPushButton * cancel = new QPushButton( i18n("Cancel"), this );
329 lay->addWidget( cancel ); 329 lay->addWidget( cancel );
330 connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) ); 330 connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) );
331 connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) ); 331 connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) );
332 resize( 200, 200 ); 332 resize( 200, 200 );
333 } 333 }
334 334
335 bool addCat() { return addCatBut->isChecked(); } 335 bool addCat() { return addCatBut->isChecked(); }
336private: 336private:
337 QRadioButton* addCatBut; 337 QRadioButton* addCatBut;
338}; 338};
339 339
340 340
341 341
342CalendarView::CalendarView( CalendarResources *calendar, 342CalendarView::CalendarView( CalendarResources *calendar,
343 QWidget *parent, const char *name ) 343 QWidget *parent, const char *name )
344 : CalendarViewBase( parent, name ), 344 : CalendarViewBase( parent, name ),
345 mCalendar( calendar ), 345 mCalendar( calendar ),
346 mResourceManager( calendar->resourceManager() ) 346 mResourceManager( calendar->resourceManager() )
347{ 347{
348 348
349 mEventEditor = 0; 349 mEventEditor = 0;
350 mTodoEditor = 0; 350 mTodoEditor = 0;
351 351
352 init(); 352 init();
353} 353}
354 354
355CalendarView::CalendarView( Calendar *calendar, 355CalendarView::CalendarView( Calendar *calendar,
356 QWidget *parent, const char *name ) 356 QWidget *parent, const char *name )
357 : CalendarViewBase( parent, name ), 357 : CalendarViewBase( parent, name ),
358 mCalendar( calendar ), 358 mCalendar( calendar ),
359 mResourceManager( 0 ) 359 mResourceManager( 0 )
360{ 360{
361 361
362 mEventEditor = 0; 362 mEventEditor = 0;
363 mTodoEditor = 0; 363 mTodoEditor = 0;
364 init(); 364 init();
365} 365}
366 366
367void CalendarView::init() 367void CalendarView::init()
368{ 368{
369 mNextAlarmDateTime = QDateTime::currentDateTime(); 369 mNextAlarmDateTime = QDateTime::currentDateTime();
370 setFocusPolicy ( NoFocus ); 370 //setFocusPolicy ( NoFocus );
371 mViewerCallerIsSearchDialog = false; 371 mViewerCallerIsSearchDialog = false;
372 mBlockShowDates = false; 372 mBlockShowDates = false;
373 373
374 mDatePickerMode = 0; 374 mDatePickerMode = 0;
375 mCurrentSyncDevice = ""; 375 mCurrentSyncDevice = "";
376 mViewManager = new KOViewManager( this ); 376 mViewManager = new KOViewManager( this );
377 mDialogManager = new KODialogManager( this ); 377 mDialogManager = new KODialogManager( this );
378 mEventViewerDialog = 0; 378 mEventViewerDialog = 0;
379 mModified = false; 379 mModified = false;
380 mReadOnly = false; 380 mReadOnly = false;
381 mSelectedIncidence = 0; 381 mSelectedIncidence = 0;
382 mCalPrinter = 0; 382 mCalPrinter = 0;
383 mFilters.setAutoDelete(true); 383 mFilters.setAutoDelete(true);
384 384
385 mCalendar->registerObserver( this ); 385 mCalendar->registerObserver( this );
386 // TODO: Make sure that view is updated, when calendar is changed. 386 // TODO: Make sure that view is updated, when calendar is changed.
387 387
388 mStorage = new FileStorage( mCalendar ); 388 mStorage = new FileStorage( mCalendar );
389 mNavigator = new DateNavigator( this, "datevav", mViewManager ); 389 mNavigator = new DateNavigator( this, "datevav", mViewManager );
390 390
391 QBoxLayout *topLayout = (QBoxLayout*)layout(); 391 QBoxLayout *topLayout = (QBoxLayout*)layout();
392#ifndef KORG_NOSPLITTER 392#ifndef KORG_NOSPLITTER
393 // create the main layout frames. 393 // create the main layout frames.
394 mPanner = new QSplitter(QSplitter::Horizontal,this,"CalendarView::Panner"); 394 mPanner = new QSplitter(QSplitter::Horizontal,this,"CalendarView::Panner");
395 topLayout->addWidget(mPanner); 395 topLayout->addWidget(mPanner);
396 396
397 mLeftSplitter = new QSplitter(QSplitter::Vertical,mPanner, 397 mLeftSplitter = new QSplitter(QSplitter::Vertical,mPanner,
398 "CalendarView::LeftFrame"); 398 "CalendarView::LeftFrame");
399 mPanner->setResizeMode(mLeftSplitter,QSplitter::KeepSize); 399 mPanner->setResizeMode(mLeftSplitter,QSplitter::KeepSize);
400 400
401 mDateNavigator = new DateNavigatorContainer( mLeftSplitter, 401 mDateNavigator = new DateNavigatorContainer( mLeftSplitter,
402 "CalendarView::DateNavigator" ); 402 "CalendarView::DateNavigator" );
403 403
404 mLeftSplitter->setResizeMode(mDateNavigator,QSplitter::KeepSize); 404 mLeftSplitter->setResizeMode(mDateNavigator,QSplitter::KeepSize);
405 mTodoList = new KOTodoView(mCalendar, mLeftSplitter, "todolist_small2"); 405 mTodoList = new KOTodoView(mCalendar, mLeftSplitter, "todolist_small2");
406 mTodoList->setNavigator( mNavigator ); 406 mTodoList->setNavigator( mNavigator );
407 mFilterView = new KOFilterView(&mFilters,mLeftSplitter,"CalendarView::FilterView"); 407 mFilterView = new KOFilterView(&mFilters,mLeftSplitter,"CalendarView::FilterView");
408 408
409#ifdef KORG_NORESOURCEVIEW 409#ifdef KORG_NORESOURCEVIEW
410 mResourceView = 0; 410 mResourceView = 0;
411#else 411#else
412 if ( mResourceManager ) { 412 if ( mResourceManager ) {
413 mResourceView = new ResourceView( mResourceManager, mLeftSplitter ); 413 mResourceView = new ResourceView( mResourceManager, mLeftSplitter );
414 mResourceView->updateView(); 414 mResourceView->updateView();
415 connect( mResourceView, SIGNAL( resourcesChanged() ), 415 connect( mResourceView, SIGNAL( resourcesChanged() ),
416 SLOT( updateView() ) ); 416 SLOT( updateView() ) );
417 } else { 417 } else {
418 mResourceView = 0; 418 mResourceView = 0;
419 } 419 }
420#endif 420#endif
421 QWidget *rightBox = new QWidget( mPanner ); 421 QWidget *rightBox = new QWidget( mPanner );
422 QBoxLayout *rightLayout = new QVBoxLayout( rightBox ); 422 QBoxLayout *rightLayout = new QVBoxLayout( rightBox );
423 423
424 mRightFrame = new QWidgetStack( rightBox ); 424 mRightFrame = new QWidgetStack( rightBox );
425 rightLayout->addWidget( mRightFrame, 1 ); 425 rightLayout->addWidget( mRightFrame, 1 );
426 426
427 mLeftFrame = mLeftSplitter; 427 mLeftFrame = mLeftSplitter;
428#else 428#else
429 //QWidget *mainBox = new QWidget( this ); 429 //QWidget *mainBox = new QWidget( this );
430 //QWidget *leftFrame = new QWidget( mainBox ); 430 //QWidget *leftFrame = new QWidget( mainBox );
431 //QBoxLayout * mainBoxLayout; 431 //QBoxLayout * mainBoxLayout;
432 if ( KOPrefs::instance()->mVerticalScreen ) { 432 if ( KOPrefs::instance()->mVerticalScreen ) {
433 //mainBoxLayout = new QVBoxLayout(mainBox); 433 //mainBoxLayout = new QVBoxLayout(mainBox);
434 //leftFrameLayout = new QHBoxLayout(leftFrame ); 434 //leftFrameLayout = new QHBoxLayout(leftFrame );
435 mMainFrame = new KDGanttMinimizeSplitter( Qt::Vertical, this ); 435 mMainFrame = new KDGanttMinimizeSplitter( Qt::Vertical, this );
436 mMainFrame->setMinimizeDirection ( KDGanttMinimizeSplitter::Up ); 436 mMainFrame->setMinimizeDirection ( KDGanttMinimizeSplitter::Up );
437 mLeftFrame = new KDGanttMinimizeSplitter( Qt::Horizontal, mMainFrame);; 437 mLeftFrame = new KDGanttMinimizeSplitter( Qt::Horizontal, mMainFrame);;
438 mLeftFrame->setMinimizeDirection ( KDGanttMinimizeSplitter::Right ); 438 mLeftFrame->setMinimizeDirection ( KDGanttMinimizeSplitter::Right );
439 } else { 439 } else {
440 //mainBoxLayout = new QHBoxLayout(mainBox); 440 //mainBoxLayout = new QHBoxLayout(mainBox);
441 //leftFrameLayout = new QVBoxLayout(leftFrame ); 441 //leftFrameLayout = new QVBoxLayout(leftFrame );
442 mMainFrame = new KDGanttMinimizeSplitter( Qt::Horizontal, this); 442 mMainFrame = new KDGanttMinimizeSplitter( Qt::Horizontal, this);
443 mMainFrame->setMinimizeDirection ( KDGanttMinimizeSplitter::Left); 443 mMainFrame->setMinimizeDirection ( KDGanttMinimizeSplitter::Left);
444 mLeftFrame = new KDGanttMinimizeSplitter( Qt::Vertical, mMainFrame); 444 mLeftFrame = new KDGanttMinimizeSplitter( Qt::Vertical, mMainFrame);
445 mLeftFrame->setMinimizeDirection ( KDGanttMinimizeSplitter::Up ); 445 mLeftFrame->setMinimizeDirection ( KDGanttMinimizeSplitter::Up );
446 } 446 }
447 mMainFrame->setSizePolicy( QSizePolicy (QSizePolicy::Expanding,QSizePolicy::Expanding) ); 447 mMainFrame->setSizePolicy( QSizePolicy (QSizePolicy::Expanding,QSizePolicy::Expanding) );
448 //QBoxLayout * leftFrameLayout; 448 //QBoxLayout * leftFrameLayout;
449 topLayout->addWidget( mMainFrame ); 449 topLayout->addWidget( mMainFrame );
450#ifdef DESKTOP_VERSION 450#ifdef DESKTOP_VERSION
451 mDateScrollBar = new QScrollBar ( 1, 365, 1,30, 200,QScrollBar::Horizontal, this ); 451 mDateScrollBar = new QScrollBar ( 1, 365, 1,30, 200,QScrollBar::Horizontal, this );
452 topLayout->addWidget( mDateScrollBar ); 452 topLayout->addWidget( mDateScrollBar );
453 connect( mDateScrollBar, SIGNAL( valueChanged ( int ) ),this, SLOT( scrollBarValue( int )) ); 453 connect( mDateScrollBar, SIGNAL( valueChanged ( int ) ),this, SLOT( scrollBarValue( int )) );
454 if ( QApplication::desktop()->width() < 800 ) 454 if ( QApplication::desktop()->width() < 800 )
455 mDateScrollBar->hide(); 455 mDateScrollBar->hide();
456#endif 456#endif
457 //mainBoxLayout->addWidget (mLeftFrame); 457 //mainBoxLayout->addWidget (mLeftFrame);
458 mDateNavigator = new DateNavigatorContainer( mLeftFrame, 458 mDateNavigator = new DateNavigatorContainer( mLeftFrame,
459 "CalendarView::DateNavigator" ); 459 "CalendarView::DateNavigator" );
460#if 0 460#if 0
461 // FIXME 461 // FIXME
462 mDateNavigator = new KDateNavigator(mLeftFrame, mCalendar, TRUE, 462 mDateNavigator = new KDateNavigator(mLeftFrame, mCalendar, TRUE,
463 "CalendarView::DateNavigator", QDate::currentDate()); 463 "CalendarView::DateNavigator", QDate::currentDate());
464#endif 464#endif
465 // mDateNavigator->blockSignals( true ); 465 // mDateNavigator->blockSignals( true );
466 //leftFrameLayout->addWidget( mDateNavigator ); 466 //leftFrameLayout->addWidget( mDateNavigator );
467 mTodoList = new KOTodoView(mCalendar, mLeftFrame, "todolistsmall"); 467 mTodoList = new KOTodoView(mCalendar, mLeftFrame, "todolistsmall");
468 mFilterView = new KOFilterView(&mFilters,mLeftFrame,"CalendarView::FilterView"); 468 mFilterView = new KOFilterView(&mFilters,mLeftFrame,"CalendarView::FilterView");
469 mCalEditView = new KOCalEditView(mLeftFrame,"CalendarView::CaleditView"); 469 mCalEditView = new KOCalEditView(mLeftFrame,"CalendarView::CaleditView");
470 connect( mCalEditView, SIGNAL( calendarEnabled (int,bool) ),mCalendar, SLOT( setCalendarEnabled(int,bool)) ); 470 connect( mCalEditView, SIGNAL( calendarEnabled (int,bool) ),mCalendar, SLOT( setCalendarEnabled(int,bool)) );
471 connect( mCalEditView, SIGNAL( alarmEnabled(int,bool) ),mCalendar, SLOT( setAlarmEnabled(int,bool)) ); 471 connect( mCalEditView, SIGNAL( alarmEnabled(int,bool) ),mCalendar, SLOT( setAlarmEnabled(int,bool)) );
472 connect( mCalEditView, SIGNAL( calendarReadonly(int,bool) ),this, SLOT( setCalReadOnly(int,bool)) ); 472 connect( mCalEditView, SIGNAL( calendarReadonly(int,bool) ),this, SLOT( setCalReadOnly(int,bool)) );
473 connect( mCalEditView, SIGNAL( setCalendarDefault(int) ),mCalendar, SLOT( setDefaultCalendar(int)) ); 473 connect( mCalEditView, SIGNAL( setCalendarDefault(int) ),mCalendar, SLOT( setDefaultCalendar(int)) );
474 connect( mCalEditView, SIGNAL( setCalendarDefault(int) ),mViewManager, SLOT( setDefaultCalendar(int)) ); 474 connect( mCalEditView, SIGNAL( setCalendarDefault(int) ),mViewManager, SLOT( setDefaultCalendar(int)) );
475 connect( mCalEditView, SIGNAL( removeCalendar(int) ),mCalendar, SLOT( setCalendarRemove(int)) ); 475 connect( mCalEditView, SIGNAL( removeCalendar(int) ),mCalendar, SLOT( setCalendarRemove(int)) );
476 connect( mCalEditView, SIGNAL( calendarAdded(int) ),this, SLOT( addCalendarId(int)) ); 476 connect( mCalEditView, SIGNAL( calendarAdded(int) ),this, SLOT( addCalendarId(int)) );
477 connect( mCalEditView, SIGNAL( needsUpdate() ),this, SLOT( updateView()) ); 477 connect( mCalEditView, SIGNAL( needsUpdate() ),this, SLOT( updateView()) );
478 connect( mCalEditView, SIGNAL( checkCalendar() ),this, SLOT( checkFiles() )); 478 connect( mCalEditView, SIGNAL( checkCalendar() ),this, SLOT( checkFiles() ));
479 connect( mCalEditView, SIGNAL( needsUpdate() ),this, SLOT( updateUnmanagedViews()) ); 479 connect( mCalEditView, SIGNAL( needsUpdate() ),this, SLOT( updateUnmanagedViews()) );
480 480
481 mTodoList->setNavigator( mNavigator ); 481 mTodoList->setNavigator( mNavigator );
482#if 0 482#if 0
483 if ( QApplication::desktop()->width() < 480 ) { 483 if ( QApplication::desktop()->width() < 480 ) {
484 leftFrameLayout->addWidget(mFilterView); 484 leftFrameLayout->addWidget(mFilterView);
485 leftFrameLayout->addWidget(mTodoList, 2 ); 485 leftFrameLayout->addWidget(mTodoList, 2 );
486 486
487 } else { 487 } else {
488 leftFrameLayout->addWidget(mTodoList,2 ); 488 leftFrameLayout->addWidget(mTodoList,2 );
489 leftFrameLayout->addWidget(mFilterView ); 489 leftFrameLayout->addWidget(mFilterView );
490 } 490 }
491#endif 491#endif
492 mFilterView->hide(); 492 mFilterView->hide();
493 mCalEditView->hide(); 493 mCalEditView->hide();
494 QWidget *rightBox = new QWidget( mMainFrame ); 494 QWidget *rightBox = new QWidget( mMainFrame );
495 //mainBoxLayout->addWidget ( rightBox, 10 ); 495 //mainBoxLayout->addWidget ( rightBox, 10 );
496 QBoxLayout *rightLayout = new QVBoxLayout( rightBox ); 496 QBoxLayout *rightLayout = new QVBoxLayout( rightBox );
497 mRightFrame = new QWidgetStack( rightBox ); 497 mRightFrame = new QWidgetStack( rightBox );
498 rightLayout->addWidget( mRightFrame, 10 ); 498 rightLayout->addWidget( mRightFrame, 10 );
499 499
500 //mLeftFrame = (QWidget *)leftFrame; 500 //mLeftFrame = (QWidget *)leftFrame;
501 if ( KOPrefs::instance()->mVerticalScreen ) { 501 if ( KOPrefs::instance()->mVerticalScreen ) {
502 //mDateNavigator->setFixedHeight( mDateNavigator->sizeHint().height() ); 502 //mDateNavigator->setFixedHeight( mDateNavigator->sizeHint().height() );
503 //mDateNavigator->setMinimumWidth( mDateNavigator->sizeHint().width() ); 503 //mDateNavigator->setMinimumWidth( mDateNavigator->sizeHint().width() );
504 //mTodoList->setFixedHeight( mDateNavigator->sizeHint().height() ); 504 //mTodoList->setFixedHeight( mDateNavigator->sizeHint().height() );
505 //leftFrame->setFixedHeight( mDateNavigator->sizeHint().height() ); 505 //leftFrame->setFixedHeight( mDateNavigator->sizeHint().height() );
506 } else { 506 } else {
507 //mDateNavigator->setFixedWidth( mDateNavigator->sizeHint().width() ); 507 //mDateNavigator->setFixedWidth( mDateNavigator->sizeHint().width() );
508 //mTodoList->setFixedWidth( mDateNavigator->sizeHint().width() ); 508 //mTodoList->setFixedWidth( mDateNavigator->sizeHint().width() );
509 //leftFrame->setFixedWidth( mDateNavigator->sizeHint().width() ); 509 //leftFrame->setFixedWidth( mDateNavigator->sizeHint().width() );
510 } 510 }
511 if ( !KOPrefs::instance()->mShowDateNavigator) 511 if ( !KOPrefs::instance()->mShowDateNavigator)
512 mDateNavigator->hide(); 512 mDateNavigator->hide();
513 //qDebug("Calendarview Size %d %d ", width(), height()); 513 //qDebug("Calendarview Size %d %d ", width(), height());
514#endif 514#endif
515 515
516 connect( mNavigator, SIGNAL( datesSelected( const KCal::DateList & ) ), 516 connect( mNavigator, SIGNAL( datesSelected( const KCal::DateList & ) ),
517 SLOT( showDates( const KCal::DateList & ) ) ); 517 SLOT( showDates( const KCal::DateList & ) ) );
518 518
519 connect( mNavigator, SIGNAL( datesSelected( const KCal::DateList & ) ), 519 connect( mNavigator, SIGNAL( datesSelected( const KCal::DateList & ) ),
520 mDateNavigator, SLOT( selectDates( const KCal::DateList & ) ) ); 520 mDateNavigator, SLOT( selectDates( const KCal::DateList & ) ) );
521 521
522 522
523 523
524 connect( mDateNavigator, SIGNAL( showMonth( const QDate & ) ), 524 connect( mDateNavigator, SIGNAL( showMonth( const QDate & ) ),
525 mViewManager, SLOT( showMonth( const QDate & ) ) ); 525 mViewManager, SLOT( showMonth( const QDate & ) ) );
526 526
527 connect( mDateNavigator, SIGNAL( weekClicked( const QDate & ) ), 527 connect( mDateNavigator, SIGNAL( weekClicked( const QDate & ) ),
528 mNavigator, SLOT( selectWeek( const QDate & ) ) ); 528 mNavigator, SLOT( selectWeek( const QDate & ) ) );
529 529
530 connect( mDateNavigator, SIGNAL( goPrevYear() ), 530 connect( mDateNavigator, SIGNAL( goPrevYear() ),
531 mNavigator, SLOT( selectPreviousYear() ) ); 531 mNavigator, SLOT( selectPreviousYear() ) );
532 connect( mDateNavigator, SIGNAL( goNextYear() ), 532 connect( mDateNavigator, SIGNAL( goNextYear() ),
533 mNavigator, SLOT( selectNextYear() ) ); 533 mNavigator, SLOT( selectNextYear() ) );
534 connect( mDateNavigator, SIGNAL( goPrevMonth() ), 534 connect( mDateNavigator, SIGNAL( goPrevMonth() ),
535 mNavigator, SLOT( selectPreviousMonth() ) ); 535 mNavigator, SLOT( selectPreviousMonth() ) );
536 connect( mDateNavigator, SIGNAL( goNextMonth() ), 536 connect( mDateNavigator, SIGNAL( goNextMonth() ),
537 mNavigator, SLOT( selectNextMonth() ) ); 537 mNavigator, SLOT( selectNextMonth() ) );
538 538
539 connect( mDateNavigator, SIGNAL( goPrevious() ), 539 connect( mDateNavigator, SIGNAL( goPrevious() ),
540 mNavigator, SLOT( selectPrevious() ) ); 540 mNavigator, SLOT( selectPrevious() ) );
541 connect( mDateNavigator, SIGNAL( goNext() ), 541 connect( mDateNavigator, SIGNAL( goNext() ),
542 mNavigator, SLOT( selectNext() ) ); 542 mNavigator, SLOT( selectNext() ) );
543 connect( mDateNavigator, SIGNAL( monthSelected ( int ) ), 543 connect( mDateNavigator, SIGNAL( monthSelected ( int ) ),
544 mNavigator, SLOT( slotMonthSelect( int ) ) ); 544 mNavigator, SLOT( slotMonthSelect( int ) ) );
545 545
546 connect( mDateNavigator, SIGNAL( datesSelected( const KCal::DateList & ) ), 546 connect( mDateNavigator, SIGNAL( datesSelected( const KCal::DateList & ) ),
547 mNavigator, SLOT( selectDates( const KCal::DateList & ) ) ); 547 mNavigator, SLOT( selectDates( const KCal::DateList & ) ) );
548#if 0 548#if 0
549 connect( mDateNavigator, SIGNAL( incidenceDropped( Incidence * ) ), 549 connect( mDateNavigator, SIGNAL( incidenceDropped( Incidence * ) ),
550 SLOT( incidenceAdded( Incidence *) ) ); 550 SLOT( incidenceAdded( Incidence *) ) );
551#endif 551#endif
552 // connect(mDateNavigator,SIGNAL(dayPassed(QDate)),SLOT(updateView())); 552 // connect(mDateNavigator,SIGNAL(dayPassed(QDate)),SLOT(updateView()));
553 553
554 connect( this, SIGNAL( configChanged() ), 554 connect( this, SIGNAL( configChanged() ),
555 mDateNavigator, SLOT( updateConfig() ) ); 555 mDateNavigator, SLOT( updateConfig() ) );
556 556
557 connect( mTodoList, SIGNAL( newTodoSignal() ), 557 connect( mTodoList, SIGNAL( newTodoSignal() ),
558 SLOT( newTodo() ) ); 558 SLOT( newTodo() ) );
559 connect( mTodoList, SIGNAL( newSubTodoSignal( Todo *) ), 559 connect( mTodoList, SIGNAL( newSubTodoSignal( Todo *) ),
560 SLOT( newSubTodo( Todo * ) ) ); 560 SLOT( newSubTodo( Todo * ) ) );
561 connect( mTodoList, SIGNAL( editTodoSignal( Todo * ) ), 561 connect( mTodoList, SIGNAL( editTodoSignal( Todo * ) ),
562 SLOT( editTodo( Todo * ) ) ); 562 SLOT( editTodo( Todo * ) ) );
563 connect( mTodoList, SIGNAL( showTodoSignal( Todo * ) ), 563 connect( mTodoList, SIGNAL( showTodoSignal( Todo * ) ),
564 SLOT( showTodo( Todo *) ) ); 564 SLOT( showTodo( Todo *) ) );
565 connect( mTodoList, SIGNAL( deleteTodoSignal( Todo *) ), 565 connect( mTodoList, SIGNAL( deleteTodoSignal( Todo *) ),
566 SLOT( deleteTodo( Todo *) ) ); 566 SLOT( deleteTodo( Todo *) ) );
567 connect( this, SIGNAL( configChanged()), mTodoList, SLOT( updateConfig() ) ); 567 connect( this, SIGNAL( configChanged()), mTodoList, SLOT( updateConfig() ) );
568 connect( mTodoList, SIGNAL( purgeCompletedSignal() ), 568 connect( mTodoList, SIGNAL( purgeCompletedSignal() ),
569 SLOT( purgeCompleted() ) ); 569 SLOT( purgeCompleted() ) );
570 connect( mTodoList, SIGNAL( todoModifiedSignal( Todo *, int ) ), 570 connect( mTodoList, SIGNAL( todoModifiedSignal( Todo *, int ) ),
571 SIGNAL( todoModified( Todo *, int ) ) ); 571 SIGNAL( todoModified( Todo *, int ) ) );
572 572
573 connect( mTodoList, SIGNAL( cloneTodoSignal( Incidence * ) ), 573 connect( mTodoList, SIGNAL( cloneTodoSignal( Incidence * ) ),
574 this, SLOT ( cloneIncidence( Incidence * ) ) ); 574 this, SLOT ( cloneIncidence( Incidence * ) ) );
575 connect( mTodoList, SIGNAL( cancelTodoSignal( Incidence * ) ), 575 connect( mTodoList, SIGNAL( cancelTodoSignal( Incidence * ) ),
576 this, SLOT (cancelIncidence( Incidence * ) ) ); 576 this, SLOT (cancelIncidence( Incidence * ) ) );
577 577
578 connect( mTodoList, SIGNAL( moveTodoSignal( Incidence * ) ), 578 connect( mTodoList, SIGNAL( moveTodoSignal( Incidence * ) ),
579 this, SLOT ( moveIncidence( Incidence * ) ) ); 579 this, SLOT ( moveIncidence( Incidence * ) ) );
580 connect( mTodoList, SIGNAL( beamTodoSignal( Incidence * ) ), 580 connect( mTodoList, SIGNAL( beamTodoSignal( Incidence * ) ),
581 this, SLOT ( beamIncidence( Incidence * ) ) ); 581 this, SLOT ( beamIncidence( Incidence * ) ) );
582 582
583 connect( mTodoList, SIGNAL( unparentTodoSignal( Todo * ) ), 583 connect( mTodoList, SIGNAL( unparentTodoSignal( Todo * ) ),
584 this, SLOT ( todo_unsub( Todo * ) ) ); 584 this, SLOT ( todo_unsub( Todo * ) ) );
585 585
586 connect( mTodoList, SIGNAL( reparentTodoSignal( Todo *,Todo * ) ), 586 connect( mTodoList, SIGNAL( reparentTodoSignal( Todo *,Todo * ) ),
587 this, SLOT ( todo_resub( Todo *,Todo * ) ) ); 587 this, SLOT ( todo_resub( Todo *,Todo * ) ) );
588 connect( this, SIGNAL( todoModified( Todo *, int )), mTodoList, 588 connect( this, SIGNAL( todoModified( Todo *, int )), mTodoList,
589 SLOT( updateTodo( Todo *, int ) ) ); 589 SLOT( updateTodo( Todo *, int ) ) );
590 connect( this, SIGNAL( todoModified( Todo *, int )), this, 590 connect( this, SIGNAL( todoModified( Todo *, int )), this,
591 SLOT( changeTodoDisplay( Todo *, int ) ) ); 591 SLOT( changeTodoDisplay( Todo *, int ) ) );
592 592
593 593
594 connect( mFilterView, SIGNAL( filterChanged() ), SLOT( updateFilter() ) ); 594 connect( mFilterView, SIGNAL( filterChanged() ), SLOT( updateFilter() ) );
595 connect( mFilterView, SIGNAL( editFilters() ), SLOT( editFilters() ) ); 595 connect( mFilterView, SIGNAL( editFilters() ), SLOT( editFilters() ) );
596 connect( mCalendar, SIGNAL( addAlarm(const QDateTime &, const QString & ) ), SLOT( addAlarm(const QDateTime &, const QString & ) ) ); 596 connect( mCalendar, SIGNAL( addAlarm(const QDateTime &, const QString & ) ), SLOT( addAlarm(const QDateTime &, const QString & ) ) );
597 connect( mCalendar, SIGNAL( removeAlarm(const QDateTime &, const QString & ) ), SLOT( removeAlarm(const QDateTime &, const QString & ) ) ); 597 connect( mCalendar, SIGNAL( removeAlarm(const QDateTime &, const QString & ) ), SLOT( removeAlarm(const QDateTime &, const QString & ) ) );
598 598
599 599
600 600
601 601
602 602
603 connect(QApplication::clipboard(),SIGNAL(dataChanged()), 603 connect(QApplication::clipboard(),SIGNAL(dataChanged()),
604 SLOT(checkClipboard())); 604 SLOT(checkClipboard()));
605 connect( mTodoList,SIGNAL( incidenceSelected( Incidence * ) ), 605 connect( mTodoList,SIGNAL( incidenceSelected( Incidence * ) ),
606 SLOT( processTodoListSelection( Incidence * ) ) ); 606 SLOT( processTodoListSelection( Incidence * ) ) );
607 connect(mTodoList,SIGNAL(isModified(bool)),SLOT(setModified(bool))); 607 connect(mTodoList,SIGNAL(isModified(bool)),SLOT(setModified(bool)));
608 608
609 // kdDebug() << "CalendarView::CalendarView() done" << endl; 609 // kdDebug() << "CalendarView::CalendarView() done" << endl;
610 610
611 mDateFrame = new QVBox(0,0,WType_Popup); 611 mDateFrame = new QVBox(0,0,WType_Popup);
612 //mDateFrame->setFrameStyle(QFrame::PopupPanel | QFrame::Raised); 612 //mDateFrame->setFrameStyle(QFrame::PopupPanel | QFrame::Raised);
613 mDateFrame->setFrameStyle( QFrame::WinPanel |QFrame::Raised ); 613 mDateFrame->setFrameStyle( QFrame::WinPanel |QFrame::Raised );
614 mDateFrame->setLineWidth(3); 614 mDateFrame->setLineWidth(3);
615 mDateFrame->hide(); 615 mDateFrame->hide();
616 mDateFrame->setCaption( i18n( "Pick a date to display")); 616 mDateFrame->setCaption( i18n( "Pick a date to display"));
617 mDatePicker = new KDatePicker ( mDateFrame , QDate::currentDate() ); 617 mDatePicker = new KDatePicker ( mDateFrame , QDate::currentDate() );
618 618
619 connect(mDatePicker,SIGNAL(dateSelected(QDate)),SLOT(slotSelectPickerDate(QDate))); 619 connect(mDatePicker,SIGNAL(dateSelected(QDate)),SLOT(slotSelectPickerDate(QDate)));
620 620
621 mEventEditor = mDialogManager->getEventEditor(); 621 mEventEditor = mDialogManager->getEventEditor();
622 mTodoEditor = mDialogManager->getTodoEditor(); 622 mTodoEditor = mDialogManager->getTodoEditor();
623 623
624 mFlagEditDescription = false; 624 mFlagEditDescription = false;
625 625
626 mSuspendTimer = new QTimer( this ); 626 mSuspendTimer = new QTimer( this );
627 mAlarmTimer = new QTimer( this ); 627 mAlarmTimer = new QTimer( this );
628 mRecheckAlarmTimer = new QTimer( this ); 628 mRecheckAlarmTimer = new QTimer( this );
629 connect( mRecheckAlarmTimer, SIGNAL( timeout () ), SLOT( recheckTimerAlarm() ) ); 629 connect( mRecheckAlarmTimer, SIGNAL( timeout () ), SLOT( recheckTimerAlarm() ) );
630 connect( mSuspendTimer, SIGNAL( timeout () ), SLOT( suspendAlarm() ) ); 630 connect( mSuspendTimer, SIGNAL( timeout () ), SLOT( suspendAlarm() ) );
631 connect( mAlarmTimer, SIGNAL( timeout () ), SLOT( timerAlarm() ) ); 631 connect( mAlarmTimer, SIGNAL( timeout () ), SLOT( timerAlarm() ) );
632 mAlarmDialog = new AlarmDialog( this ); 632 mAlarmDialog = new AlarmDialog( this );
633 connect( mAlarmDialog, SIGNAL( addAlarm(const QDateTime &, const QString & ) ), SLOT( addSuspendAlarm(const QDateTime &, const QString & ) ) ); 633 connect( mAlarmDialog, SIGNAL( addAlarm(const QDateTime &, const QString & ) ), SLOT( addSuspendAlarm(const QDateTime &, const QString & ) ) );
634 mAlarmDialog->setServerNotification( false ); 634 mAlarmDialog->setServerNotification( false );
635 mAlarmDialog->setSuspendTime( KOPrefs::instance()->mAlarmSuspendTime ); 635 mAlarmDialog->setSuspendTime( KOPrefs::instance()->mAlarmSuspendTime );
636 636
637 637
638#ifndef DESKTOP_VERSION 638#ifndef DESKTOP_VERSION
639//US listen for arriving address resultsets 639//US listen for arriving address resultsets
640 connect(ExternalAppHandler::instance(), SIGNAL(receivedBirthdayListEvent(const QString&, const QStringList&, const QStringList&, const QStringList&, const QStringList&, const QStringList&, const QStringList&)), 640 connect(ExternalAppHandler::instance(), SIGNAL(receivedBirthdayListEvent(const QString&, const QStringList&, const QStringList&, const QStringList&, const QStringList&, const QStringList&, const QStringList&)),
641 this, SLOT(insertBirthdays(const QString&, const QStringList&, const QStringList&, const QStringList&, const QStringList&, const QStringList&, const QStringList&))); 641 this, SLOT(insertBirthdays(const QString&, const QStringList&, const QStringList&, const QStringList&, const QStringList&, const QStringList&, const QStringList&)));
642#endif 642#endif
643 mDateNavigator->setCalendar( mCalendar ); 643 mDateNavigator->setCalendar( mCalendar );
644} 644}
645 645
646 646
647CalendarView::~CalendarView() 647CalendarView::~CalendarView()
648{ 648{
649 // kdDebug() << "~CalendarView()" << endl; 649 // kdDebug() << "~CalendarView()" << endl;
650 //qDebug("CalendarView::~CalendarView() "); 650 //qDebug("CalendarView::~CalendarView() ");
651 delete mDialogManager; 651 delete mDialogManager;
652 delete mViewManager; 652 delete mViewManager;
653 delete mStorage; 653 delete mStorage;
654 delete mDateFrame ; 654 delete mDateFrame ;
655 delete mEventViewerDialog; 655 delete mEventViewerDialog;
656 //kdDebug() << "~CalendarView() done" << endl; 656 //kdDebug() << "~CalendarView() done" << endl;
657} 657}
658void CalendarView::nextConflict( bool all, bool allday ) 658void CalendarView::nextConflict( bool all, bool allday )
659{ 659{
660 660
661 QPtrList<Event> testlist = mCalendar->events(); 661 QPtrList<Event> testlist = mCalendar->events();
662 Event * test = testlist.first(); 662 Event * test = testlist.first();
663 while ( test ) { 663 while ( test ) {
664 test->setTagged( false ); 664 test->setTagged( false );
665 test = testlist.next(); 665 test = testlist.next();
666 } 666 }
667 QTime st ( 0,0,0); 667 QTime st ( 0,0,0);
668 if ( mViewManager->currentView() == mViewManager->agendaView() ) 668 if ( mViewManager->currentView() == mViewManager->agendaView() )
669 st = mViewManager->agendaView()->agenda()->getEndTime(); 669 st = mViewManager->agendaView()->agenda()->getEndTime();
670 //qDebug("time %s ", st.toString().latin1()); 670 //qDebug("time %s ", st.toString().latin1());
671 QDateTime startDT = QDateTime (mNavigator->selectedDates().first(),st); 671 QDateTime startDT = QDateTime (mNavigator->selectedDates().first(),st);
672 QDateTime conflict; 672 QDateTime conflict;
673 QDateTime retVal; 673 QDateTime retVal;
674 bool found = false; 674 bool found = false;
675 Event * cE = 0; 675 Event * cE = 0;
676 Event * cE2 = 0; 676 Event * cE2 = 0;
677 QPtrList<Event> testlist2 = testlist; 677 QPtrList<Event> testlist2 = testlist;
678 test = testlist.first(); 678 test = testlist.first();
679 bool skip = false; 679 bool skip = false;
680 while ( test ) { 680 while ( test ) {
681 skip = false; 681 skip = false;
682 if ( !all ) skip = ( allday != test->doesFloat() ); 682 if ( !all ) skip = ( allday != test->doesFloat() );
683 if ( !skip ) { 683 if ( !skip ) {
684 Event * test2 = testlist2.first(); 684 Event * test2 = testlist2.first();
685 while ( test2 ) { 685 while ( test2 ) {
686 skip = false; 686 skip = false;
687 if ( !all ) skip = ( allday != test2->doesFloat() ); 687 if ( !all ) skip = ( allday != test2->doesFloat() );
688 if ( !skip ) { 688 if ( !skip ) {
689 if ( !test2->isTagged() ) { 689 if ( !test2->isTagged() ) {
690 if ( test->isOverlapping ( test2, &retVal, &startDT ) ) { 690 if ( test->isOverlapping ( test2, &retVal, &startDT ) ) {
691 //qDebug("overlap "); 691 //qDebug("overlap ");
692 if ( ! found ) { 692 if ( ! found ) {
693 if ( retVal >= startDT ) { 693 if ( retVal >= startDT ) {
694 conflict = retVal; 694 conflict = retVal;
695 cE = test; 695 cE = test;
696 cE2 = test2; 696 cE2 = test2;
697 found = true; 697 found = true;
698 } 698 }
699 } else { 699 } else {
700 if ( retVal >= startDT && retVal < conflict ) { 700 if ( retVal >= startDT && retVal < conflict ) {
701 conflict = retVal; 701 conflict = retVal;
702 cE = test; 702 cE = test;
703 cE2 = test2; 703 cE2 = test2;
704 } 704 }
705 } 705 }
706 } 706 }
707 } 707 }
708 } 708 }
709 test2 = testlist2.next(); 709 test2 = testlist2.next();
710 } 710 }
711 } 711 }
712 test->setTagged( true ); 712 test->setTagged( true );
713 test = testlist.next(); 713 test = testlist.next();
714 } 714 }
715 if ( found ) { 715 if ( found ) {
716 if ( mViewManager->currentView() != mViewManager->agendaView() || mNavigator->selectedDates().count() > 1 ) 716 if ( mViewManager->currentView() != mViewManager->agendaView() || mNavigator->selectedDates().count() > 1 )
717 mViewManager->showDayView(); 717 mViewManager->showDayView();
718 mNavigator->slotDaySelect( conflict.date() ); 718 mNavigator->slotDaySelect( conflict.date() );
719 int hour = conflict.time().hour(); 719 int hour = conflict.time().hour();
720 mViewManager->agendaView()->setStartHour( hour ); 720 mViewManager->agendaView()->setStartHour( hour );
721 topLevelWidget()->setCaption( i18n("Conflict %1 <-> %2"). arg( cE->summary().left( 20 ) ).arg( cE2->summary().left( 20 ) ) ); 721 topLevelWidget()->setCaption( i18n("Conflict %1 <-> %2"). arg( cE->summary().left( 20 ) ).arg( cE2->summary().left( 20 ) ) );
722 return; 722 return;
723 } 723 }
724 724
725 topLevelWidget()->setCaption( i18n("No conflict found") ); 725 topLevelWidget()->setCaption( i18n("No conflict found") );
726 qDebug("No conflict found "); 726 qDebug("No conflict found ");
727 return; 727 return;
728} 728}
729 729
730void CalendarView::conflictAll() 730void CalendarView::conflictAll()
731{ 731{
732 nextConflict ( true, true ); 732 nextConflict ( true, true );
733} 733}
734void CalendarView::conflictAllday() 734void CalendarView::conflictAllday()
735{ 735{
736 nextConflict ( false, true ); 736 nextConflict ( false, true );
737} 737}
738void CalendarView::conflictNotAll() 738void CalendarView::conflictNotAll()
739{ 739{
740 nextConflict ( false, false ); 740 nextConflict ( false, false );
741} 741}
742 742
743void CalendarView::setCalReadOnly( int id, bool readO ) 743void CalendarView::setCalReadOnly( int id, bool readO )
744{ 744{
745 if ( readO ) { 745 if ( readO ) {
746 emit save(); 746 emit save();
747 } 747 }
748 mCalendar->setReadOnly( id, readO ); 748 mCalendar->setReadOnly( id, readO );
749} 749}
750void CalendarView::setScrollBarStep(int val ) 750void CalendarView::setScrollBarStep(int val )
751{ 751{
752#ifdef DESKTOP_VERSION 752#ifdef DESKTOP_VERSION
753 mDateScrollBar->setLineStep ( val ); 753 mDateScrollBar->setLineStep ( val );
754#endif 754#endif
755} 755}
756void CalendarView::scrollBarValue(int val ) 756void CalendarView::scrollBarValue(int val )
757{ 757{
758#ifdef DESKTOP_VERSION 758#ifdef DESKTOP_VERSION
759 if ( QApplication::desktop()->width() < 800 ) return; 759 if ( QApplication::desktop()->width() < 800 ) return;
760 static bool block = false; 760 static bool block = false;
761 if ( block ) return; 761 if ( block ) return;
762 block = true; 762 block = true;
763 int count = mNavigator->selectedDates().count(); 763 int count = mNavigator->selectedDates().count();
764 int day = mNavigator->selectedDates().first().dayOfYear(); 764 int day = mNavigator->selectedDates().first().dayOfYear();
765 int stepdays = val; 765 int stepdays = val;
766 if ( mDateScrollBar->lineStep () <= count ) { 766 if ( mDateScrollBar->lineStep () <= count ) {
767 //val = val/mDateScrollBar->lineStep ()*mDateScrollBar->lineStep(); 767 //val = val/mDateScrollBar->lineStep ()*mDateScrollBar->lineStep();
768 //qDebug("VAL %d ",val ); 768 //qDebug("VAL %d ",val );
769 stepdays = (val-day)/mDateScrollBar->lineStep ()*mDateScrollBar->lineStep(); 769 stepdays = (val-day)/mDateScrollBar->lineStep ()*mDateScrollBar->lineStep();
770 stepdays = day+stepdays; 770 stepdays = day+stepdays;
771 if ( stepdays < 0 ) stepdays = 0; 771 if ( stepdays < 0 ) stepdays = 0;
772 } 772 }
773 if ( stepdays == day ) { 773 if ( stepdays == day ) {
774 block = false; 774 block = false;
775 return; 775 return;
776 } 776 }
777 int year = mNavigator->selectedDates().first().year(); 777 int year = mNavigator->selectedDates().first().year();
778 QDate d ( year,1,1 ); 778 QDate d ( year,1,1 );
779 mNavigator->selectDates( d.addDays( stepdays-1) , count ); 779 mNavigator->selectDates( d.addDays( stepdays-1) , count );
780 block = false; 780 block = false;
781#endif 781#endif
782 782
783} 783}
784void CalendarView::updateView(const QDate &start, const QDate &end) 784void CalendarView::updateView(const QDate &start, const QDate &end)
785{ 785{
786#ifdef DESKTOP_VERSION 786#ifdef DESKTOP_VERSION
787 if ( ! mDateScrollBar->draggingSlider () ) { 787 if ( ! mDateScrollBar->draggingSlider () ) {
788 int dof = start.dayOfYear(); 788 int dof = start.dayOfYear();
789 //qDebug("dof %d day %d val %d ", dof, start.dayOfYear(),mDateScrollBar->value() ); 789 //qDebug("dof %d day %d val %d ", dof, start.dayOfYear(),mDateScrollBar->value() );
790 if ( dof != mDateScrollBar->value() ) { 790 if ( dof != mDateScrollBar->value() ) {
791 mDateScrollBar->blockSignals( true ); 791 mDateScrollBar->blockSignals( true );
792 mDateScrollBar->setValue( start.dayOfYear()); 792 mDateScrollBar->setValue( start.dayOfYear());
793 mDateScrollBar->blockSignals( false ); 793 mDateScrollBar->blockSignals( false );
794 } 794 }
795 } 795 }
796#endif 796#endif
797 mTodoList->updateView(); 797 mTodoList->updateView();
798 mViewManager->updateView(start, end); 798 mViewManager->updateView(start, end);
799 //mDateNavigator->updateView(); 799 //mDateNavigator->updateView();
800} 800}
801 801
802 802
803 803
804void CalendarView::checkFiles() 804void CalendarView::checkFiles()
805{ 805{
806 QString message; 806 QString message;
807 QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars; 807 QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars;
808 KopiCalendarFile * cal = calendars.first(); 808 KopiCalendarFile * cal = calendars.first();
809 while ( cal ) { 809 while ( cal ) {
810 if ( cal->mErrorOnLoad ) { 810 if ( cal->mErrorOnLoad ) {
811 message += cal->mName +"\n"+KGlobal::formatMessage ( "(" +i18n( "Filepath: ")+ cal->mFileName+")" ,0 )+"\n"; 811 message += cal->mName +"\n"+KGlobal::formatMessage ( "(" +i18n( "Filepath: ")+ cal->mFileName+")" ,0 )+"\n";
812 } 812 }
813 cal = calendars.next(); 813 cal = calendars.next();
814 } 814 }
815 if ( !message.isEmpty() ) { 815 if ( !message.isEmpty() ) {
816 message = KGlobal::formatMessage( i18n("Calendar(s) not loaded:"),0 )+"\n" + message +KGlobal::formatMessage(i18n("You can try to reload the calendar in the Resource View!"),0); 816 message = KGlobal::formatMessage( i18n("Calendar(s) not loaded:"),0 )+"\n" + message +KGlobal::formatMessage(i18n("You can try to reload the calendar in the Resource View!"),0);
817 KMessageBox::error(this,message, i18n("Loding of calendar(s) failed")); 817 KMessageBox::error(this,message, i18n("Loding of calendar(s) failed"));
818 } 818 }
819 QTimer::singleShot( 2000, this, SLOT ( checkAlarms() )); 819 QTimer::singleShot( 2000, this, SLOT ( checkAlarms() ));
820} 820}
821void CalendarView::checkAlarms() 821void CalendarView::checkAlarms()
822{ 822{
823 823
824 824
825 KConfig *config = KOGlobals::config(); 825 KConfig *config = KOGlobals::config();
826 config->setGroup( "AppRun" ); 826 config->setGroup( "AppRun" );
827 QDateTime dt ( QDate (2005,1,1), QTime( 0,0,0 ) ); 827 QDateTime dt ( QDate (2005,1,1), QTime( 0,0,0 ) );
828 int daysto = dt.daysTo( QDate::currentDate() ); 828 int daysto = dt.daysTo( QDate::currentDate() );
829 int days = config->readNumEntry( "LatestProgramStopDays" , daysto); 829 int days = config->readNumEntry( "LatestProgramStopDays" , daysto);
830 dt = dt.addDays( days ); 830 dt = dt.addDays( days );
831 int secto = dt.secsTo( QDateTime::currentDateTime() ); 831 int secto = dt.secsTo( QDateTime::currentDateTime() );
832 int secs = config->readNumEntry( "LatestProgramStopSecs" , secto) - 30; 832 int secs = config->readNumEntry( "LatestProgramStopSecs" , secto) - 30;
833 //qDebug("KO: Reading program stop %d ", secs); 833 //qDebug("KO: Reading program stop %d ", secs);
834 //secs -= ( 3600 * 24*3 ); // debug only 834 //secs -= ( 3600 * 24*3 ); // debug only
835 QDateTime latest = dt.addSecs ( secs ); 835 QDateTime latest = dt.addSecs ( secs );
836 qDebug("KO: Last termination on %s ", latest.toString().latin1()); 836 qDebug("KO: Last termination on %s ", latest.toString().latin1());
837 //qDebug("KO: Current Time %s ",QDateTime::currentDateTime().toString().latin1() ); 837 //qDebug("KO: Current Time %s ",QDateTime::currentDateTime().toString().latin1() );
838 QPtrList<Incidence> el = mCalendar->rawIncidences(); 838 QPtrList<Incidence> el = mCalendar->rawIncidences();
839 QPtrList<Incidence> al; 839 QPtrList<Incidence> al;
840 Incidence* inL = el.first(); 840 Incidence* inL = el.first();
841 QDateTime cur = QDateTime::currentDateTime().addSecs(-59); 841 QDateTime cur = QDateTime::currentDateTime().addSecs(-59);
842 qDebug("KO: Checking alarm until %s ", cur.toString().latin1()); 842 qDebug("KO: Checking alarm until %s ", cur.toString().latin1());
843 while ( inL ) { 843 while ( inL ) {
844 bool ok = false; 844 bool ok = false;
845 int offset = 0; 845 int offset = 0;
846 QDateTime next = inL->getNextAlarmDateTime(& ok, &offset, latest ) ; 846 QDateTime next = inL->getNextAlarmDateTime(& ok, &offset, latest ) ;
847 if ( ok ) { 847 if ( ok ) {
848 //qDebug("OK %s",next.toString().latin1()); 848 //qDebug("OK %s",next.toString().latin1());
849 if ( next < cur ) { 849 if ( next < cur ) {
850 al.append( inL ); 850 al.append( inL );
851 //qDebug("found missed alarm: %s ", inL->summary().latin1() ); 851 //qDebug("found missed alarm: %s ", inL->summary().latin1() );
852 } 852 }
853 } 853 }
854 inL = el.next(); 854 inL = el.next();
855 } 855 }
856 if ( al.count() ) { 856 if ( al.count() ) {
857 QDialog* dia = new QDialog( this, "huhu", false, WDestructiveClose | WStyle_StaysOnTop ); 857 QDialog* dia = new QDialog( this, "huhu", false, WDestructiveClose | WStyle_StaysOnTop );
858 dia->setCaption( i18n("KO/Pi: Missing alarms!") ); 858 dia->setCaption( i18n("KO/Pi: Missing alarms!") );
859 QVBoxLayout* lay = new QVBoxLayout( dia ); 859 QVBoxLayout* lay = new QVBoxLayout( dia );
860 lay->setSpacing( 0 ); 860 lay->setSpacing( 0 );
861 lay->setMargin( 0 ); 861 lay->setMargin( 0 );
862 MissedAlarmTextBrowser* matb = new MissedAlarmTextBrowser ( dia, al, latest ); 862 MissedAlarmTextBrowser* matb = new MissedAlarmTextBrowser ( dia, al, latest );
863 connect( matb, SIGNAL( showIncidence( QString ) ),SLOT( showIncidence( QString ) )); 863 connect( matb, SIGNAL( showIncidence( QString ) ),SLOT( showIncidence( QString ) ));
864 lay->addWidget( matb ); 864 lay->addWidget( matb );
865 if ( QApplication::desktop()->width() == 480 || QApplication::desktop()->width() == 640 ) { 865 if ( QApplication::desktop()->width() == 480 || QApplication::desktop()->width() == 640 ) {
866 int wid = 210; 866 int wid = 210;
867 int x = QApplication::desktop()->width() - wid - 7; 867 int x = QApplication::desktop()->width() - wid - 7;
868 int y = QApplication::desktop()->height() - wid - 70; 868 int y = QApplication::desktop()->height() - wid - 70;
869 dia->setGeometry ( x,y,wid,wid); 869 dia->setGeometry ( x,y,wid,wid);
870 } else { 870 } else {
871 int si = 220; 871 int si = 220;
872 if ( QApplication::desktop()->width() > 470 ) 872 if ( QApplication::desktop()->width() > 470 )
873 si = 400; 873 si = 400;
874 dia->resize(si,si/2); 874 dia->resize(si,si/2);
875 } 875 }
876 dia->setBackgroundColor( QColor( 255, 255, 255 ) ); 876 dia->setBackgroundColor( QColor( 255, 255, 255 ) );
877 dia->show(); 877 dia->show();
878 878
879 } 879 }
880} 880}
881void CalendarView::showDay( QDate d ) 881void CalendarView::showDay( QDate d )
882{ 882{
883 dateNavigator()->blockSignals( true ); 883 dateNavigator()->blockSignals( true );
884 dateNavigator()->selectDate( d ); 884 dateNavigator()->selectDate( d );
885 dateNavigator()->blockSignals( false ); 885 dateNavigator()->blockSignals( false );
886 mViewManager->showDayView(); 886 mViewManager->showDayView();
887 //dateNavigator()->selectDate( d ); 887 //dateNavigator()->selectDate( d );
888} 888}
889void CalendarView::timerAlarm() 889void CalendarView::timerAlarm()
890{ 890{
891 //qDebug("CalendarView::timerAlarm() "); 891 //qDebug("CalendarView::timerAlarm() ");
892 computeAlarm(mAlarmNotification ); 892 computeAlarm(mAlarmNotification );
893} 893}
894 894
895void CalendarView::suspendAlarm() 895void CalendarView::suspendAlarm()
896{ 896{
897 //qDebug(" CalendarView::suspendAlarm() "); 897 //qDebug(" CalendarView::suspendAlarm() ");
898 computeAlarm(mSuspendAlarmNotification ); 898 computeAlarm(mSuspendAlarmNotification );
899 899
900} 900}
901 901
902void CalendarView::startAlarm( QString mess , QString filename) 902void CalendarView::startAlarm( QString mess , QString filename)
903{ 903{
904 904
905 topLevelWidget()->showNormal(); 905 topLevelWidget()->showNormal();
906 topLevelWidget()->setActiveWindow(); 906 topLevelWidget()->setActiveWindow();
907 topLevelWidget()->raise(); 907 topLevelWidget()->raise();
908 908
909 mAlarmDialog->eventNotification( mess, KOPrefs::instance()->mAlarmPlayBeeps, filename, true,KOPrefs::instance()->mAlarmBeepInterval ,KOPrefs::instance()->mAlarmSuspendCount ); 909 mAlarmDialog->eventNotification( mess, KOPrefs::instance()->mAlarmPlayBeeps, filename, true,KOPrefs::instance()->mAlarmBeepInterval ,KOPrefs::instance()->mAlarmSuspendCount );
910 QTimer::singleShot( 2000, this, SLOT( checkNextTimerAlarm() ) ); 910 QTimer::singleShot( 2000, this, SLOT( checkNextTimerAlarm() ) );
911 911
912} 912}
913 913
914void CalendarView::checkNextTimerAlarm() 914void CalendarView::checkNextTimerAlarm()
915{ 915{
916 mCalendar->checkAlarmForIncidence( 0, true ); 916 mCalendar->checkAlarmForIncidence( 0, true );
917} 917}
918 918
919void CalendarView::computeAlarm( QString msg ) 919void CalendarView::computeAlarm( QString msg )
920{ 920{
921 921
922 QString mess = msg; 922 QString mess = msg;
923 QString mAlarmMessage = mess.mid( 9 ); 923 QString mAlarmMessage = mess.mid( 9 );
924 QString filename = MainWindow::resourcePath(); 924 QString filename = MainWindow::resourcePath();
925 filename += "koalarm.wav"; 925 filename += "koalarm.wav";
926 QString tempfilename; 926 QString tempfilename;
927 if ( mess.left( 13 ) == "suspend_alarm") { 927 if ( mess.left( 13 ) == "suspend_alarm") {
928 bool error = false; 928 bool error = false;
929 int len = mess.mid( 13 ).find("+++"); 929 int len = mess.mid( 13 ).find("+++");
930 if ( len < 2 ) 930 if ( len < 2 )
931 error = true; 931 error = true;
932 else { 932 else {
933 tempfilename = mess.mid( 13, len ); 933 tempfilename = mess.mid( 13, len );
934 if ( !QFile::exists( tempfilename ) ) 934 if ( !QFile::exists( tempfilename ) )
935 error = true; 935 error = true;
936 } 936 }
937 if ( ! error ) { 937 if ( ! error ) {
938 filename = tempfilename; 938 filename = tempfilename;
939 } 939 }
940 mAlarmMessage = mess.mid( 13+len+3 ); 940 mAlarmMessage = mess.mid( 13+len+3 );
941 //qDebug("suspend file %s ",tempfilename.latin1() ); 941 //qDebug("suspend file %s ",tempfilename.latin1() );
942 startAlarm( mAlarmMessage, filename); 942 startAlarm( mAlarmMessage, filename);
943 return; 943 return;
944 } 944 }
945 if ( mess.left( 11 ) == "timer_alarm") { 945 if ( mess.left( 11 ) == "timer_alarm") {
946 //mTimerTime = 0; 946 //mTimerTime = 0;
947 startAlarm( mess.mid( 11 ), filename ); 947 startAlarm( mess.mid( 11 ), filename );
948 return; 948 return;
949 } 949 }
950 if ( mess.left( 10 ) == "proc_alarm") { 950 if ( mess.left( 10 ) == "proc_alarm") {
951 bool error = false; 951 bool error = false;
952 int len = mess.mid( 10 ).find("+++"); 952 int len = mess.mid( 10 ).find("+++");
953 if ( len < 2 ) 953 if ( len < 2 )
954 error = true; 954 error = true;
955 else { 955 else {
956 tempfilename = mess.mid( 10, len ); 956 tempfilename = mess.mid( 10, len );
957 if ( !QFile::exists( tempfilename ) ) 957 if ( !QFile::exists( tempfilename ) )
958 error = true; 958 error = true;
959 } 959 }
960 if ( error ) { 960 if ( error ) {
961 mAlarmMessage = "Procedure Alarm\nError - File not found\n"; 961 mAlarmMessage = "Procedure Alarm\nError - File not found\n";
962 mAlarmMessage += mess.mid( 10+len+3+9 ); 962 mAlarmMessage += mess.mid( 10+len+3+9 );
963 } else { 963 } else {
964 //QCopEnvelope e("QPE/Application/kopi", "-writeFileSilent"); 964 //QCopEnvelope e("QPE/Application/kopi", "-writeFileSilent");
965 //qDebug("-----system command %s ",tempfilename.latin1() ); 965 //qDebug("-----system command %s ",tempfilename.latin1() );
966#ifndef _WIN32_ 966#ifndef _WIN32_
967 if ( vfork () == 0 ) { 967 if ( vfork () == 0 ) {
968 execl ( tempfilename.latin1(), 0 ); 968 execl ( tempfilename.latin1(), 0 );
969 return; 969 return;
970 } 970 }
971#else 971#else
972 QProcess* p = new QProcess(); 972 QProcess* p = new QProcess();
973 p->addArgument( tempfilename.latin1() ); 973 p->addArgument( tempfilename.latin1() );
974 p->start(); 974 p->start();
975 return; 975 return;
976#endif 976#endif
977 977
978 return; 978 return;
979 } 979 }
980 980
981 //qDebug("+++++++system command %s ",tempfilename.latin1() ); 981 //qDebug("+++++++system command %s ",tempfilename.latin1() );
982 } 982 }
983 if ( mess.left( 11 ) == "audio_alarm") { 983 if ( mess.left( 11 ) == "audio_alarm") {
984 bool error = false; 984 bool error = false;
985 int len = mess.mid( 11 ).find("+++"); 985 int len = mess.mid( 11 ).find("+++");
986 if ( len < 2 ) 986 if ( len < 2 )
987 error = true; 987 error = true;
988 else { 988 else {
989 tempfilename = mess.mid( 11, len ); 989 tempfilename = mess.mid( 11, len );
990 if ( !QFile::exists( tempfilename ) ) 990 if ( !QFile::exists( tempfilename ) )
991 error = true; 991 error = true;
992 } 992 }
993 if ( ! error ) { 993 if ( ! error ) {
994 filename = tempfilename; 994 filename = tempfilename;
995 } 995 }
996 mAlarmMessage = mess.mid( 11+len+3+9 ); 996 mAlarmMessage = mess.mid( 11+len+3+9 );
997 //qDebug("audio file command %s ",tempfilename.latin1() ); 997 //qDebug("audio file command %s ",tempfilename.latin1() );
998 } 998 }
999 if ( mess.left( 9 ) == "cal_alarm") { 999 if ( mess.left( 9 ) == "cal_alarm") {
1000 mAlarmMessage = mess.mid( 9 ) ; 1000 mAlarmMessage = mess.mid( 9 ) ;
1001 } 1001 }
1002 1002
1003 startAlarm( mAlarmMessage, filename ); 1003 startAlarm( mAlarmMessage, filename );
1004 1004
1005 1005
1006} 1006}
1007 1007
1008void CalendarView::addSuspendAlarm(const QDateTime &qdt, const QString &noti ) 1008void CalendarView::addSuspendAlarm(const QDateTime &qdt, const QString &noti )
1009{ 1009{
1010 //qDebug("+++++addSUSPENDAlarm %s %s ", qdt.toString().latin1() , noti.latin1() ); 1010 //qDebug("+++++addSUSPENDAlarm %s %s ", qdt.toString().latin1() , noti.latin1() );
1011 1011
1012 mSuspendAlarmNotification = noti; 1012 mSuspendAlarmNotification = noti;
1013 int ms = QDateTime::currentDateTime().secsTo( qdt )*1000; 1013 int ms = QDateTime::currentDateTime().secsTo( qdt )*1000;
1014 //qDebug("Suspend Alarm timer started with secs: %d ", ms/1000); 1014 //qDebug("Suspend Alarm timer started with secs: %d ", ms/1000);
1015 mSuspendTimer->start( ms , true ); 1015 mSuspendTimer->start( ms , true );
1016 1016
1017} 1017}
1018 1018
1019void CalendarView::addAlarm(const QDateTime &qdt, const QString &noti ) 1019void CalendarView::addAlarm(const QDateTime &qdt, const QString &noti )
1020{ 1020{
1021 mNextAlarmDateTime = qdt; 1021 mNextAlarmDateTime = qdt;
1022 //qDebug("+++++addAlarm %s %s ", qdt.toString().latin1() , noti.latin1() ); 1022 //qDebug("+++++addAlarm %s %s ", qdt.toString().latin1() , noti.latin1() );
1023 if ( ! KOPrefs::instance()->mUseInternalAlarmNotification ) { 1023 if ( ! KOPrefs::instance()->mUseInternalAlarmNotification ) {
1024#ifndef DESKTOP_VERSION 1024#ifndef DESKTOP_VERSION
1025 AlarmServer::addAlarm ( qdt,"koalarm", noti.utf8() ); 1025 AlarmServer::addAlarm ( qdt,"koalarm", noti.utf8() );
1026#endif 1026#endif
1027 return; 1027 return;
1028 } 1028 }
1029 int maxSec; 1029 int maxSec;
1030 //maxSec = 5; //testing only 1030 //maxSec = 5; //testing only
1031 maxSec = 86400+3600; // one day+1hour 1031 maxSec = 86400+3600; // one day+1hour
1032 mAlarmNotification = noti; 1032 mAlarmNotification = noti;
1033 int sec = QDateTime::currentDateTime().secsTo( qdt ); 1033 int sec = QDateTime::currentDateTime().secsTo( qdt );
1034 if ( sec > maxSec ) { 1034 if ( sec > maxSec ) {
1035 mRecheckAlarmTimer->start( maxSec * 1000 ); 1035 mRecheckAlarmTimer->start( maxSec * 1000 );
1036 // qDebug("recheck Alarm timer started with secs: %d next alarm in sec:%d", maxSec,sec ); 1036 // qDebug("recheck Alarm timer started with secs: %d next alarm in sec:%d", maxSec,sec );
1037 return; 1037 return;
1038 } else { 1038 } else {
1039 mRecheckAlarmTimer->stop(); 1039 mRecheckAlarmTimer->stop();
1040 } 1040 }
1041 //qDebug("Alarm timer started with secs: %d ", sec); 1041 //qDebug("Alarm timer started with secs: %d ", sec);
1042 mAlarmTimer->start( sec *1000 , true ); 1042 mAlarmTimer->start( sec *1000 , true );
1043 1043
1044} 1044}
1045// called by mRecheckAlarmTimer to get next alarm 1045// called by mRecheckAlarmTimer to get next alarm
1046// we need this, because a QTimer has only a max range of 25 days 1046// we need this, because a QTimer has only a max range of 25 days
1047void CalendarView::recheckTimerAlarm() 1047void CalendarView::recheckTimerAlarm()
1048{ 1048{
1049 mAlarmTimer->stop(); 1049 mAlarmTimer->stop();
1050 mRecheckAlarmTimer->stop(); 1050 mRecheckAlarmTimer->stop();
1051 mCalendar->checkAlarmForIncidence( 0, true ); 1051 mCalendar->checkAlarmForIncidence( 0, true );
1052} 1052}
1053#ifndef DESKTOP_VERSION 1053#ifndef DESKTOP_VERSION
1054void CalendarView::removeAlarm(const QDateTime &qdt, const QString &noti ) 1054void CalendarView::removeAlarm(const QDateTime &qdt, const QString &noti )
1055#else 1055#else
1056void CalendarView::removeAlarm(const QDateTime &, const QString & ) 1056void CalendarView::removeAlarm(const QDateTime &, const QString & )
1057#endif 1057#endif
1058{ 1058{
1059 //qDebug("-----removeAlarm %s %s ", qdt.toString().latin1() , noti.latin1() ); 1059 //qDebug("-----removeAlarm %s %s ", qdt.toString().latin1() , noti.latin1() );
1060 if ( ! KOPrefs::instance()->mUseInternalAlarmNotification ) { 1060 if ( ! KOPrefs::instance()->mUseInternalAlarmNotification ) {
1061#ifndef DESKTOP_VERSION 1061#ifndef DESKTOP_VERSION
1062 AlarmServer::deleteAlarm (qdt ,"koalarm" ,noti.utf8() ); 1062 AlarmServer::deleteAlarm (qdt ,"koalarm" ,noti.utf8() );
1063#endif 1063#endif
1064 return; 1064 return;
1065 } 1065 }
1066 mAlarmTimer->stop(); 1066 mAlarmTimer->stop();
1067} 1067}
1068void CalendarView::selectWeekNum ( int num ) 1068void CalendarView::selectWeekNum ( int num )
1069{ 1069{
1070 dateNavigator()->blockSignals( true ); 1070 dateNavigator()->blockSignals( true );
1071 dateNavigator()->selectWeek( num ); 1071 dateNavigator()->selectWeek( num );
1072 dateNavigator()->blockSignals( false ); 1072 dateNavigator()->blockSignals( false );
1073 mViewManager->showWeekView(); 1073 mViewManager->showWeekView();
1074} 1074}
1075KOViewManager *CalendarView::viewManager() 1075KOViewManager *CalendarView::viewManager()
1076{ 1076{
1077 return mViewManager; 1077 return mViewManager;
1078} 1078}
1079 1079
1080KODialogManager *CalendarView::dialogManager() 1080KODialogManager *CalendarView::dialogManager()
1081{ 1081{
1082 return mDialogManager; 1082 return mDialogManager;
1083} 1083}
1084 1084
1085QDate CalendarView::startDate() 1085QDate CalendarView::startDate()
1086{ 1086{
1087 DateList dates = mNavigator->selectedDates(); 1087 DateList dates = mNavigator->selectedDates();
1088 1088
1089 return dates.first(); 1089 return dates.first();
1090} 1090}
1091 1091
1092QDate CalendarView::endDate() 1092QDate CalendarView::endDate()
1093{ 1093{
1094 DateList dates = mNavigator->selectedDates(); 1094 DateList dates = mNavigator->selectedDates();
1095 1095
1096 return dates.last(); 1096 return dates.last();
1097} 1097}
1098 1098
1099 1099
1100void CalendarView::createPrinter() 1100void CalendarView::createPrinter()
1101{ 1101{
1102#ifndef KORG_NOPRINTER 1102#ifndef KORG_NOPRINTER
1103 if (!mCalPrinter) { 1103 if (!mCalPrinter) {
1104 mCalPrinter = new CalPrinter(this, mCalendar); 1104 mCalPrinter = new CalPrinter(this, mCalendar);
1105 connect(this, SIGNAL(configChanged()), mCalPrinter, SLOT(updateConfig())); 1105 connect(this, SIGNAL(configChanged()), mCalPrinter, SLOT(updateConfig()));
1106 } 1106 }
1107#endif 1107#endif
1108} 1108}
1109 1109
1110 1110
1111//KOPrefs::instance()->mWriteBackFile 1111//KOPrefs::instance()->mWriteBackFile
1112//KOPrefs::instance()->mWriteBackExistingOnly 1112//KOPrefs::instance()->mWriteBackExistingOnly
1113 1113
1114// 0 syncPrefsGroup->addRadio(i18n("Take local entry on conflict")); 1114// 0 syncPrefsGroup->addRadio(i18n("Take local entry on conflict"));
1115// 1 syncPrefsGroup->addRadio(i18n("Take remote entry on conflict")); 1115// 1 syncPrefsGroup->addRadio(i18n("Take remote entry on conflict"));
1116// 2 syncPrefsGroup->addRadio(i18n("Take newest entry on conflict")); 1116// 2 syncPrefsGroup->addRadio(i18n("Take newest entry on conflict"));
1117// 3 syncPrefsGroup->addRadio(i18n("Ask for every entry on conflict")); 1117// 3 syncPrefsGroup->addRadio(i18n("Ask for every entry on conflict"));
1118// 4 syncPrefsGroup->addRadio(i18n("Force take local entry always")); 1118// 4 syncPrefsGroup->addRadio(i18n("Force take local entry always"));
1119// 5 syncPrefsGroup->addRadio(i18n("Force take remote entry always")); 1119// 5 syncPrefsGroup->addRadio(i18n("Force take remote entry always"));
1120 1120
1121int CalendarView::takeEvent( Incidence* local, Incidence* remote, int mode , bool full ) 1121int CalendarView::takeEvent( Incidence* local, Incidence* remote, int mode , bool full )
1122{ 1122{
1123 1123
1124 // 0 equal 1124 // 0 equal
1125 // 1 take local 1125 // 1 take local
1126 // 2 take remote 1126 // 2 take remote
1127 // 3 cancel 1127 // 3 cancel
1128 QDateTime lastSync = mLastCalendarSync; 1128 QDateTime lastSync = mLastCalendarSync;
1129 QDateTime localMod = local->lastModified(); 1129 QDateTime localMod = local->lastModified();
1130 QDateTime remoteMod = remote->lastModified(); 1130 QDateTime remoteMod = remote->lastModified();
1131 if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { 1131 if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) {
1132 bool remCh, locCh; 1132 bool remCh, locCh;
1133 remCh = ( remote->getCsum(mCurrentSyncDevice) != local->getCsum(mCurrentSyncDevice) ); 1133 remCh = ( remote->getCsum(mCurrentSyncDevice) != local->getCsum(mCurrentSyncDevice) );
1134 //if ( remCh ) 1134 //if ( remCh )
1135 //qDebug("loc %s rem %s", local->getCsum(mCurrentSyncDevice).latin1(), remote->getCsum(mCurrentSyncDevice).latin1() ); 1135 //qDebug("loc %s rem %s", local->getCsum(mCurrentSyncDevice).latin1(), remote->getCsum(mCurrentSyncDevice).latin1() );
1136 locCh = ( localMod > mLastCalendarSync ); 1136 locCh = ( localMod > mLastCalendarSync );
1137 if ( !remCh && ! locCh ) { 1137 if ( !remCh && ! locCh ) {
1138 //qDebug("both not changed "); 1138 //qDebug("both not changed ");
1139 lastSync = localMod.addDays(1); 1139 lastSync = localMod.addDays(1);
1140 if ( mode <= SYNC_PREF_ASK ) 1140 if ( mode <= SYNC_PREF_ASK )
1141 return 0; 1141 return 0;
1142 } else { 1142 } else {
1143 if ( locCh ) { 1143 if ( locCh ) {
1144 //qDebug("loc changed %d %s %s", local->revision() , localMod.toString().latin1(), mLastCalendarSync.toString().latin1()); 1144 //qDebug("loc changed %d %s %s", local->revision() , localMod.toString().latin1(), mLastCalendarSync.toString().latin1());
1145 lastSync = localMod.addDays( -1 ); 1145 lastSync = localMod.addDays( -1 );
1146 if ( !remCh ) 1146 if ( !remCh )
1147 remoteMod = ( lastSync.addDays( -1 ) ); 1147 remoteMod = ( lastSync.addDays( -1 ) );
1148 } else { 1148 } else {
1149 //qDebug(" not loc changed "); 1149 //qDebug(" not loc changed ");
1150 lastSync = localMod.addDays( 1 ); 1150 lastSync = localMod.addDays( 1 );
1151 if ( remCh ) 1151 if ( remCh )
1152 remoteMod =( lastSync.addDays( 1 ) ); 1152 remoteMod =( lastSync.addDays( 1 ) );
1153 1153
1154 } 1154 }
1155 } 1155 }
1156 full = true; 1156 full = true;
1157 if ( mode < SYNC_PREF_ASK ) 1157 if ( mode < SYNC_PREF_ASK )
1158 mode = SYNC_PREF_ASK; 1158 mode = SYNC_PREF_ASK;
1159 } else { 1159 } else {
1160 if ( localMod == remoteMod ) 1160 if ( localMod == remoteMod )
1161 // if ( local->revision() == remote->revision() ) 1161 // if ( local->revision() == remote->revision() )
1162 return 0; 1162 return 0;
1163 1163
1164 } 1164 }
1165 // qDebug(" %d %d conflict on %s %s ", mode, full, local->summary().latin1(), remote->summary().latin1() ); 1165 // qDebug(" %d %d conflict on %s %s ", mode, full, local->summary().latin1(), remote->summary().latin1() );
1166 1166
1167 //qDebug("%s %d %s %d", localMod.toString().latin1() , local->revision(), remoteMod.toString().latin1(), remote->revision()); 1167 //qDebug("%s %d %s %d", localMod.toString().latin1() , local->revision(), remoteMod.toString().latin1(), remote->revision());
1168 //qDebug("%d %d %d %d ", localMod.time().second(), localMod.time().msec(), remoteMod.time().second(), remoteMod.time().msec() ); 1168 //qDebug("%d %d %d %d ", localMod.time().second(), localMod.time().msec(), remoteMod.time().second(), remoteMod.time().msec() );
1169 //full = true; //debug only 1169 //full = true; //debug only
1170 if ( full ) { 1170 if ( full ) {
1171 bool equ = false; 1171 bool equ = false;
1172 if ( local->typeID() == eventID ) { 1172 if ( local->typeID() == eventID ) {
1173 equ = (*((Event*) local) == *((Event*) remote)); 1173 equ = (*((Event*) local) == *((Event*) remote));
1174 } 1174 }
1175 else if ( local->typeID() == todoID ) 1175 else if ( local->typeID() == todoID )
1176 equ = (*((Todo*) local) == (*(Todo*) remote)); 1176 equ = (*((Todo*) local) == (*(Todo*) remote));
1177 else if ( local->typeID() == journalID ) 1177 else if ( local->typeID() == journalID )
1178 equ = (*((Journal*) local) == *((Journal*) remote)); 1178 equ = (*((Journal*) local) == *((Journal*) remote));
1179 if ( equ ) { 1179 if ( equ ) {
1180 //qDebug("equal "); 1180 //qDebug("equal ");
1181 if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { 1181 if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) {
1182 local->setCsum( mCurrentSyncDevice, remote->getCsum(mCurrentSyncDevice) ); 1182 local->setCsum( mCurrentSyncDevice, remote->getCsum(mCurrentSyncDevice) );
1183 } 1183 }
1184 if ( mode < SYNC_PREF_FORCE_LOCAL ) 1184 if ( mode < SYNC_PREF_FORCE_LOCAL )
1185 return 0; 1185 return 0;
1186 1186
1187 }//else //debug only 1187 }//else //debug only
1188 //qDebug("not equal %s %s ", local->summary().latin1(), remote->summary().latin1()); 1188 //qDebug("not equal %s %s ", local->summary().latin1(), remote->summary().latin1());
1189 } 1189 }
1190 int result; 1190 int result;
1191 bool localIsNew; 1191 bool localIsNew;
1192 //qDebug("%s -- %s mLastCalendarSync %s lastsync %s --- local %s remote %s ",local->summary().latin1(), remote->summary().latin1(),mLastCalendarSync.toString().latin1() ,lastSync.toString().latin1() , localMod.toString().latin1() , remoteMod.toString().latin1() ); 1192 //qDebug("%s -- %s mLastCalendarSync %s lastsync %s --- local %s remote %s ",local->summary().latin1(), remote->summary().latin1(),mLastCalendarSync.toString().latin1() ,lastSync.toString().latin1() , localMod.toString().latin1() , remoteMod.toString().latin1() );
1193 1193
1194 1194
1195 // ************************************************ 1195 // ************************************************
1196 // ************************************************ 1196 // ************************************************
1197 // ************************************************ 1197 // ************************************************
1198 // We may have that lastSync > remoteMod AND lastSync > localMod 1198 // We may have that lastSync > remoteMod AND lastSync > localMod
1199 // BUT remoteMod != localMod 1199 // BUT remoteMod != localMod
1200 1200
1201 1201
1202 if ( full && mode < SYNC_PREF_NEWEST ) 1202 if ( full && mode < SYNC_PREF_NEWEST )
1203 mode = SYNC_PREF_ASK; 1203 mode = SYNC_PREF_ASK;
1204 1204
1205 switch( mode ) { 1205 switch( mode ) {
1206 case SYNC_PREF_LOCAL: 1206 case SYNC_PREF_LOCAL:
1207 if ( lastSync > remoteMod ) 1207 if ( lastSync > remoteMod )
1208 return 1; 1208 return 1;
1209 if ( lastSync > localMod ) 1209 if ( lastSync > localMod )
1210 return 2; 1210 return 2;
1211 return 1; 1211 return 1;
1212 break; 1212 break;
1213 case SYNC_PREF_REMOTE: 1213 case SYNC_PREF_REMOTE:
1214 if ( lastSync > localMod ) 1214 if ( lastSync > localMod )
1215 return 2; 1215 return 2;
1216 if ( lastSync > remoteMod ) 1216 if ( lastSync > remoteMod )
1217 return 1; 1217 return 1;
1218 return 2; 1218 return 2;
1219 break; 1219 break;
1220 case SYNC_PREF_NEWEST: 1220 case SYNC_PREF_NEWEST:
1221 if ( localMod >= remoteMod ) 1221 if ( localMod >= remoteMod )
1222 return 1; 1222 return 1;
1223 else 1223 else
1224 return 2; 1224 return 2;
1225 break; 1225 break;
1226 case SYNC_PREF_ASK: 1226 case SYNC_PREF_ASK:
1227 qDebug("lsy %s --- lo %s --- re %s ", lastSync.toString().latin1(), localMod.toString().latin1(), remoteMod.toString().latin1() ); 1227 qDebug("lsy %s --- lo %s --- re %s ", lastSync.toString().latin1(), localMod.toString().latin1(), remoteMod.toString().latin1() );
1228 if ( lastSync > remoteMod && lastSync > localMod) 1228 if ( lastSync > remoteMod && lastSync > localMod)
1229 return 0; 1229 return 0;
1230 if ( lastSync > remoteMod ) 1230 if ( lastSync > remoteMod )
1231 return 1; 1231 return 1;
1232 if ( lastSync > localMod ) 1232 if ( lastSync > localMod )
1233 return 2; 1233 return 2;
1234 qDebug("lsy %s --- lo %s --- re %s ", lastSync.toString().latin1(), localMod.toString().latin1(), remoteMod.toString().latin1() ); 1234 qDebug("lsy %s --- lo %s --- re %s ", lastSync.toString().latin1(), localMod.toString().latin1(), remoteMod.toString().latin1() );
1235 localIsNew = localMod >= remoteMod; 1235 localIsNew = localMod >= remoteMod;
1236 if ( localIsNew ) 1236 if ( localIsNew )
1237 getEventViewerDialog()->setColorMode( 1 ); 1237 getEventViewerDialog()->setColorMode( 1 );
1238 else 1238 else
1239 getEventViewerDialog()->setColorMode( 2 ); 1239 getEventViewerDialog()->setColorMode( 2 );
1240 getEventViewerDialog()->setIncidence(local); 1240 getEventViewerDialog()->setIncidence(local);
1241 if ( localIsNew ) 1241 if ( localIsNew )
1242 getEventViewerDialog()->setColorMode( 2 ); 1242 getEventViewerDialog()->setColorMode( 2 );
1243 else 1243 else
1244 getEventViewerDialog()->setColorMode( 1 ); 1244 getEventViewerDialog()->setColorMode( 1 );
1245 getEventViewerDialog()->addIncidence(remote); 1245 getEventViewerDialog()->addIncidence(remote);
1246 getEventViewerDialog()->setColorMode( 0 ); 1246 getEventViewerDialog()->setColorMode( 0 );
1247 //qDebug("local %d remote %d ",local->relatedTo(),remote->relatedTo() ); 1247 //qDebug("local %d remote %d ",local->relatedTo(),remote->relatedTo() );
1248 getEventViewerDialog()->setCaption( mCurrentSyncDevice +i18n(" : Conflict! Please choose entry!")); 1248 getEventViewerDialog()->setCaption( mCurrentSyncDevice +i18n(" : Conflict! Please choose entry!"));
1249 getEventViewerDialog()->showMe(); 1249 getEventViewerDialog()->showMe();
1250 result = getEventViewerDialog()->executeS( localIsNew ); 1250 result = getEventViewerDialog()->executeS( localIsNew );
1251 return result; 1251 return result;
1252 1252
1253 break; 1253 break;
1254 case SYNC_PREF_FORCE_LOCAL: 1254 case SYNC_PREF_FORCE_LOCAL:
1255 return 1; 1255 return 1;
1256 break; 1256 break;
1257 case SYNC_PREF_FORCE_REMOTE: 1257 case SYNC_PREF_FORCE_REMOTE:
1258 return 2; 1258 return 2;
1259 break; 1259 break;
1260 1260
1261 default: 1261 default:
1262 // SYNC_PREF_TAKE_BOTH not implemented 1262 // SYNC_PREF_TAKE_BOTH not implemented
1263 break; 1263 break;
1264 } 1264 }
1265 return 0; 1265 return 0;
1266} 1266}
1267Event* CalendarView::getLastSyncEvent() 1267Event* CalendarView::getLastSyncEvent()
1268{ 1268{
1269 Event* lse; 1269 Event* lse;
1270 //qDebug("CurrentSyncDevice %s ",mCurrentSyncDevice .latin1() ); 1270 //qDebug("CurrentSyncDevice %s ",mCurrentSyncDevice .latin1() );
1271 lse = mCalendar->event( "last-syncEvent-"+mCurrentSyncDevice ); 1271 lse = mCalendar->event( "last-syncEvent-"+mCurrentSyncDevice );
1272 if (!lse) { 1272 if (!lse) {
1273 lse = new Event(); 1273 lse = new Event();
1274 lse->setUid( "last-syncEvent-"+mCurrentSyncDevice ); 1274 lse->setUid( "last-syncEvent-"+mCurrentSyncDevice );
1275 QString sum = ""; 1275 QString sum = "";
1276 if ( mSyncManager->mExternSyncProfiles.contains( mCurrentSyncDevice ) ) 1276 if ( mSyncManager->mExternSyncProfiles.contains( mCurrentSyncDevice ) )
1277 sum = "E: "; 1277 sum = "E: ";
1278 lse->setSummary(sum+mCurrentSyncDevice + i18n(" - sync event")); 1278 lse->setSummary(sum+mCurrentSyncDevice + i18n(" - sync event"));
1279 lse->setDtStart( mLastCalendarSync ); 1279 lse->setDtStart( mLastCalendarSync );
1280 lse->setDtEnd( mLastCalendarSync.addSecs( 7200 ) ); 1280 lse->setDtEnd( mLastCalendarSync.addSecs( 7200 ) );
1281 lse->setCategories( i18n("SyncEvent") ); 1281 lse->setCategories( i18n("SyncEvent") );
1282 lse->setReadOnly( true ); 1282 lse->setReadOnly( true );
1283 mCalendar->addEvent( lse ); 1283 mCalendar->addEvent( lse );
1284 } 1284 }
1285 1285
1286 return lse; 1286 return lse;
1287 1287
1288} 1288}
1289 1289
1290// we check, if the to delete event has a id for a profile 1290// we check, if the to delete event has a id for a profile
1291// if yes, we set this id in the profile to delete 1291// if yes, we set this id in the profile to delete
1292void CalendarView::checkExternSyncEvent( QPtrList<Event> lastSync , Incidence* toDelete ) 1292void CalendarView::checkExternSyncEvent( QPtrList<Event> lastSync , Incidence* toDelete )
1293{ 1293{
1294 if ( lastSync.count() == 0 ) { 1294 if ( lastSync.count() == 0 ) {
1295 //qDebug(" lastSync.count() == 0"); 1295 //qDebug(" lastSync.count() == 0");
1296 return; 1296 return;
1297 } 1297 }
1298 if ( toDelete->typeID() == journalID ) 1298 if ( toDelete->typeID() == journalID )
1299 return; 1299 return;
1300 1300
1301 Event* eve = lastSync.first(); 1301 Event* eve = lastSync.first();
1302 1302
1303 while ( eve ) { 1303 while ( eve ) {
1304 QString id = toDelete->getID( eve->uid().mid( 15 ) ); // this is the sync profile name 1304 QString id = toDelete->getID( eve->uid().mid( 15 ) ); // this is the sync profile name
1305 if ( !id.isEmpty() ) { 1305 if ( !id.isEmpty() ) {
1306 QString des = eve->description(); 1306 QString des = eve->description();
1307 QString pref = "e"; 1307 QString pref = "e";
1308 if ( toDelete->typeID() == todoID ) 1308 if ( toDelete->typeID() == todoID )
1309 pref = "t"; 1309 pref = "t";
1310 des += pref+ id + ","; 1310 des += pref+ id + ",";
1311 eve->setReadOnly( false ); 1311 eve->setReadOnly( false );
1312 eve->setDescription( des ); 1312 eve->setDescription( des );
1313 //qDebug("setdes %s ", des.latin1()); 1313 //qDebug("setdes %s ", des.latin1());
1314 eve->setReadOnly( true ); 1314 eve->setReadOnly( true );
1315 } 1315 }
1316 eve = lastSync.next(); 1316 eve = lastSync.next();
1317 } 1317 }
1318 1318
1319} 1319}
1320void CalendarView::checkExternalId( Incidence * inc ) 1320void CalendarView::checkExternalId( Incidence * inc )
1321{ 1321{
1322 QPtrList<Event> lastSync = mCalendar->getExternLastSyncEvents() ; 1322 QPtrList<Event> lastSync = mCalendar->getExternLastSyncEvents() ;
1323 checkExternSyncEvent( lastSync, inc ); 1323 checkExternSyncEvent( lastSync, inc );
1324 1324
1325} 1325}
1326bool CalendarView::synchronizeCalendar( Calendar* local, Calendar* remote, int mode ) 1326bool CalendarView::synchronizeCalendar( Calendar* local, Calendar* remote, int mode )
1327{ 1327{
1328 bool syncOK = true; 1328 bool syncOK = true;
1329 int addedEvent = 0; 1329 int addedEvent = 0;
1330 int addedEventR = 0; 1330 int addedEventR = 0;
1331 int deletedEventR = 0; 1331 int deletedEventR = 0;
1332 int deletedEventL = 0; 1332 int deletedEventL = 0;
1333 int changedLocal = 0; 1333 int changedLocal = 0;
1334 int changedRemote = 0; 1334 int changedRemote = 0;
1335 int filteredIN = 0; 1335 int filteredIN = 0;
1336 int filteredOUT = 0; 1336 int filteredOUT = 0;
1337 //QPtrList<Event> el = local->rawEvents(); 1337 //QPtrList<Event> el = local->rawEvents();
1338 Event* eventR; 1338 Event* eventR;
1339 QString uid; 1339 QString uid;
1340 int take; 1340 int take;
1341 Event* eventRSync; 1341 Event* eventRSync;
1342 Event* eventLSync; 1342 Event* eventLSync;
1343 clearAllViews(); 1343 clearAllViews();
1344 QPtrList<Event> eventRSyncSharp = remote->getExternLastSyncEvents(); 1344 QPtrList<Event> eventRSyncSharp = remote->getExternLastSyncEvents();
1345 QPtrList<Event> eventLSyncSharp = local->getExternLastSyncEvents(); 1345 QPtrList<Event> eventLSyncSharp = local->getExternLastSyncEvents();
1346 bool fullDateRange = false; 1346 bool fullDateRange = false;
1347 local->resetTempSyncStat(); 1347 local->resetTempSyncStat();
1348 mLastCalendarSync = QDateTime::currentDateTime(); 1348 mLastCalendarSync = QDateTime::currentDateTime();
1349 if ( mSyncManager->syncWithDesktop() ) { 1349 if ( mSyncManager->syncWithDesktop() ) {
1350 remote->resetPilotStat(1); 1350 remote->resetPilotStat(1);
1351 if ( KSyncManager::mRequestedSyncEvent.isValid() ) { 1351 if ( KSyncManager::mRequestedSyncEvent.isValid() ) {
1352 mLastCalendarSync = KSyncManager::mRequestedSyncEvent; 1352 mLastCalendarSync = KSyncManager::mRequestedSyncEvent;
1353 qDebug("KO: using extern time for calendar sync: %s ", mLastCalendarSync.toString().latin1() ); 1353 qDebug("KO: using extern time for calendar sync: %s ", mLastCalendarSync.toString().latin1() );
1354 } else { 1354 } else {
1355 qDebug("KSyncManager::mRequestedSyncEvent has invalid datatime "); 1355 qDebug("KSyncManager::mRequestedSyncEvent has invalid datatime ");
1356 } 1356 }
1357 } 1357 }
1358 QDateTime modifiedCalendar = mLastCalendarSync; 1358 QDateTime modifiedCalendar = mLastCalendarSync;
1359 eventLSync = getLastSyncEvent(); 1359 eventLSync = getLastSyncEvent();
1360 eventR = remote->event("last-syncEvent-"+mCurrentSyncName ); 1360 eventR = remote->event("last-syncEvent-"+mCurrentSyncName );
1361 if ( eventR ) { 1361 if ( eventR ) {
1362 qDebug("last-syncEvent on remote found "); 1362 qDebug("last-syncEvent on remote found ");
1363 eventRSync = (Event*) eventR->clone(); 1363 eventRSync = (Event*) eventR->clone();
1364 remote->deleteEvent(eventR ); 1364 remote->deleteEvent(eventR );
1365 1365
1366 } else { 1366 } else {
1367 if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL || mSyncManager->syncWithDesktop()) { 1367 if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL || mSyncManager->syncWithDesktop()) {
1368 eventRSync = (Event*)eventLSync->clone(); 1368 eventRSync = (Event*)eventLSync->clone();
1369 } else { 1369 } else {
1370 fullDateRange = true; 1370 fullDateRange = true;
1371 eventRSync = new Event(); 1371 eventRSync = new Event();
1372 eventRSync->setSummary(mCurrentSyncName + i18n(" - sync event")); 1372 eventRSync->setSummary(mCurrentSyncName + i18n(" - sync event"));
1373 eventRSync->setUid("last-syncEvent-"+mCurrentSyncName ); 1373 eventRSync->setUid("last-syncEvent-"+mCurrentSyncName );
1374 eventRSync->setDtStart( mLastCalendarSync ); 1374 eventRSync->setDtStart( mLastCalendarSync );
1375 eventRSync->setDtEnd( mLastCalendarSync.addSecs( 7200 ) ); 1375 eventRSync->setDtEnd( mLastCalendarSync.addSecs( 7200 ) );
1376 eventRSync->setCategories( i18n("SyncEvent") ); 1376 eventRSync->setCategories( i18n("SyncEvent") );
1377 } 1377 }
1378 } 1378 }
1379 if ( eventLSync->dtStart() == mLastCalendarSync ) 1379 if ( eventLSync->dtStart() == mLastCalendarSync )
1380 fullDateRange = true; 1380 fullDateRange = true;
1381 1381
1382 if ( ! fullDateRange ) { 1382 if ( ! fullDateRange ) {
1383 if ( eventLSync->dtStart() != eventRSync->dtStart() ) { 1383 if ( eventLSync->dtStart() != eventRSync->dtStart() ) {
1384 1384
1385 qDebug("set fulldate to true %s %s" ,eventLSync->dtStart().toString().latin1(), eventRSync->dtStart().toString().latin1() ); 1385 qDebug("set fulldate to true %s %s" ,eventLSync->dtStart().toString().latin1(), eventRSync->dtStart().toString().latin1() );
1386 //qDebug("%d %d %d %d ", eventLSync->dtStart().time().second(), eventLSync->dtStart().time().msec() , eventRSync->dtStart().time().second(), eventRSync->dtStart().time().msec()); 1386 //qDebug("%d %d %d %d ", eventLSync->dtStart().time().second(), eventLSync->dtStart().time().msec() , eventRSync->dtStart().time().second(), eventRSync->dtStart().time().msec());
1387 fullDateRange = true; 1387 fullDateRange = true;
1388 } 1388 }
1389 } 1389 }
1390 if ( mSyncManager->syncWithDesktop() ) { 1390 if ( mSyncManager->syncWithDesktop() ) {
1391 fullDateRange = ( eventLSync->dtStart() <= mLastCalendarSync && eventLSync->dtStart().addSecs(1) >= mLastCalendarSync ); 1391 fullDateRange = ( eventLSync->dtStart() <= mLastCalendarSync && eventLSync->dtStart().addSecs(1) >= mLastCalendarSync );
1392 } 1392 }
1393 if ( fullDateRange ) 1393 if ( fullDateRange )
1394 mLastCalendarSync = QDateTime::currentDateTime().addDays( -100*365); 1394 mLastCalendarSync = QDateTime::currentDateTime().addDays( -100*365);
1395 else 1395 else
1396 mLastCalendarSync = eventLSync->dtStart(); 1396 mLastCalendarSync = eventLSync->dtStart();
1397 // for resyncing if own file has changed 1397 // for resyncing if own file has changed
1398 if ( mCurrentSyncDevice == "deleteaftersync" ) { 1398 if ( mCurrentSyncDevice == "deleteaftersync" ) {
1399 mLastCalendarSync = loadedFileVersion; 1399 mLastCalendarSync = loadedFileVersion;
1400 //qDebug("setting mLastCalendarSync "); 1400 //qDebug("setting mLastCalendarSync ");
1401 } 1401 }
1402 //qDebug("*************************** "); 1402 //qDebug("*************************** ");
1403 qDebug("KO: mLastCalendarSync %s .Full: %d",mLastCalendarSync.toString().latin1(), fullDateRange); 1403 qDebug("KO: mLastCalendarSync %s .Full: %d",mLastCalendarSync.toString().latin1(), fullDateRange);
1404 QPtrList<Incidence> er = remote->rawIncidences(); 1404 QPtrList<Incidence> er = remote->rawIncidences();
1405 Incidence* inR = er.first(); 1405 Incidence* inR = er.first();
1406 Incidence* inL; 1406 Incidence* inL;
1407 QProgressBar bar( er.count(),0 ); 1407 QProgressBar bar( er.count(),0 );
1408 bar.setCaption (i18n("Syncing - close to abort!") ); 1408 bar.setCaption (i18n("Syncing - close to abort!") );
1409 1409
1410 // ************** setting up filter ************* 1410 // ************** setting up filter *************
1411 CalFilter *filterIN = 0; 1411 CalFilter *filterIN = 0;
1412 CalFilter *filterOUT = 0; 1412 CalFilter *filterOUT = 0;
1413 CalFilter *filter = mFilters.first(); 1413 CalFilter *filter = mFilters.first();
1414 while(filter) { 1414 while(filter) {
1415 if ( filter->name() == mSyncManager->mFilterInCal ) 1415 if ( filter->name() == mSyncManager->mFilterInCal )
1416 filterIN = filter; 1416 filterIN = filter;
1417 if ( filter->name() == mSyncManager->mFilterOutCal ) 1417 if ( filter->name() == mSyncManager->mFilterOutCal )
1418 filterOUT = filter; 1418 filterOUT = filter;
1419 filter = mFilters.next(); 1419 filter = mFilters.next();
1420 } 1420 }
1421 int w = 300; 1421 int w = 300;
1422 if ( QApplication::desktop()->width() < 320 ) 1422 if ( QApplication::desktop()->width() < 320 )
1423 w = 220; 1423 w = 220;
1424 int h = bar.sizeHint().height() ; 1424 int h = bar.sizeHint().height() ;
1425 int dw = QApplication::desktop()->width(); 1425 int dw = QApplication::desktop()->width();
1426 int dh = QApplication::desktop()->height(); 1426 int dh = QApplication::desktop()->height();
1427 bar.setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); 1427 bar.setGeometry( (dw-w)/2, (dh - h )/2 ,w,h );
1428 bar.show(); 1428 bar.show();
1429 int modulo = (er.count()/10)+1; 1429 int modulo = (er.count()/10)+1;
1430 int incCounter = 0; 1430 int incCounter = 0;
1431 while ( inR ) { 1431 while ( inR ) {
1432 if ( ! bar.isVisible() ) 1432 if ( ! bar.isVisible() )
1433 return false; 1433 return false;
1434 if ( incCounter % modulo == 0 ) 1434 if ( incCounter % modulo == 0 )
1435 bar.setProgress( incCounter ); 1435 bar.setProgress( incCounter );
1436 ++incCounter; 1436 ++incCounter;
1437 uid = inR->uid(); 1437 uid = inR->uid();
1438 bool skipIncidence = false; 1438 bool skipIncidence = false;
1439 if ( uid.left(15) == QString("last-syncEvent-") ) 1439 if ( uid.left(15) == QString("last-syncEvent-") )
1440 skipIncidence = true; 1440 skipIncidence = true;
1441 QString idS; 1441 QString idS;
1442 qApp->processEvents(); 1442 qApp->processEvents();
1443 if ( !skipIncidence ) { 1443 if ( !skipIncidence ) {
1444 inL = local->incidenceForUid( uid , false ); 1444 inL = local->incidenceForUid( uid , false );
1445 if ( inL ) { // maybe conflict - same uid in both calendars 1445 if ( inL ) { // maybe conflict - same uid in both calendars
1446 if ( (take = takeEvent( inL, inR, mode, fullDateRange )) > 0 ) { 1446 if ( (take = takeEvent( inL, inR, mode, fullDateRange )) > 0 ) {
1447 //qDebug("take %d %s ", take, inL->summary().latin1()); 1447 //qDebug("take %d %s ", take, inL->summary().latin1());
1448 if ( take == 3 ) 1448 if ( take == 3 )
1449 return false; 1449 return false;
1450 if ( take == 1 ) {// take local ********************** 1450 if ( take == 1 ) {// take local **********************
1451 if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) 1451 if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL )
1452 inL->setCsum( mCurrentSyncDevice, inR->getCsum(mCurrentSyncDevice) ); 1452 inL->setCsum( mCurrentSyncDevice, inR->getCsum(mCurrentSyncDevice) );
1453 else 1453 else
1454 idS = inR->IDStr(); 1454 idS = inR->IDStr();
1455 int calID = inR->calID(); 1455 int calID = inR->calID();
1456 remote->deleteIncidence( inR ); 1456 remote->deleteIncidence( inR );
1457 inR = inL->clone(); 1457 inR = inL->clone();
1458 inR->setCalID( calID ); 1458 inR->setCalID( calID );
1459 inR->setTempSyncStat( SYNC_TEMPSTATE_INITIAL ); 1459 inR->setTempSyncStat( SYNC_TEMPSTATE_INITIAL );
1460 if ( mGlobalSyncMode != SYNC_MODE_EXTERNAL ) 1460 if ( mGlobalSyncMode != SYNC_MODE_EXTERNAL )
1461 inR->setIDStr( idS ); 1461 inR->setIDStr( idS );
1462 remote->addIncidence( inR ); 1462 remote->addIncidence( inR );
1463 if ( mSyncManager->syncWithDesktop() ) 1463 if ( mSyncManager->syncWithDesktop() )
1464 inR->setPilotId( 2 ); 1464 inR->setPilotId( 2 );
1465 ++changedRemote; 1465 ++changedRemote;
1466 } else {// take remote ********************** 1466 } else {// take remote **********************
1467 if ( !inL->isReadOnly() ) { 1467 if ( !inL->isReadOnly() ) {
1468 idS = inL->IDStr(); 1468 idS = inL->IDStr();
1469 int pid = inL->pilotId(); 1469 int pid = inL->pilotId();
1470 int calID = inL->calID(); 1470 int calID = inL->calID();
1471 local->deleteIncidence( inL ); 1471 local->deleteIncidence( inL );
1472 inL = inR->clone(); 1472 inL = inR->clone();
1473 inL->setCalID( calID ); 1473 inL->setCalID( calID );
1474 if ( mSyncManager->syncWithDesktop() ) 1474 if ( mSyncManager->syncWithDesktop() )
1475 inL->setPilotId( pid ); 1475 inL->setPilotId( pid );
1476 inL->setIDStr( idS ); 1476 inL->setIDStr( idS );
1477 if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { 1477 if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) {
1478 inL->setCsum( mCurrentSyncDevice, inR->getCsum(mCurrentSyncDevice) ); 1478 inL->setCsum( mCurrentSyncDevice, inR->getCsum(mCurrentSyncDevice) );
1479 inL->setID( mCurrentSyncDevice, inR->getID(mCurrentSyncDevice) ); 1479 inL->setID( mCurrentSyncDevice, inR->getID(mCurrentSyncDevice) );
1480 } 1480 }
1481 local->addIncidence( inL ); 1481 local->addIncidence( inL );
1482 ++changedLocal; 1482 ++changedLocal;
1483 } 1483 }
1484 } 1484 }
1485 } 1485 }
1486 } else { // no conflict ********** add or delete remote 1486 } else { // no conflict ********** add or delete remote
1487 if ( !filterIN || filterIN->filterCalendarItem( inR ) ){ 1487 if ( !filterIN || filterIN->filterCalendarItem( inR ) ){
1488 if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { 1488 if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) {
1489 QString des = eventLSync->description(); 1489 QString des = eventLSync->description();
1490 QString pref = "e"; 1490 QString pref = "e";
1491 if ( inR->typeID() == todoID ) 1491 if ( inR->typeID() == todoID )
1492 pref = "t"; 1492 pref = "t";
1493 if ( des.find(pref+ inR->getID(mCurrentSyncDevice) +"," ) >= 0 && mode != 5) { // delete it 1493 if ( des.find(pref+ inR->getID(mCurrentSyncDevice) +"," ) >= 0 && mode != 5) { // delete it
1494 inR->setTempSyncStat( SYNC_TEMPSTATE_DELETE ); 1494 inR->setTempSyncStat( SYNC_TEMPSTATE_DELETE );
1495 //remote->deleteIncidence( inR ); 1495 //remote->deleteIncidence( inR );
1496 ++deletedEventR; 1496 ++deletedEventR;
1497 } else { 1497 } else {
1498 inR->setLastModified( modifiedCalendar ); 1498 inR->setLastModified( modifiedCalendar );
1499 inL = inR->clone(); 1499 inL = inR->clone();
1500 inL->setIDStr( ":" ); 1500 inL->setIDStr( ":" );
1501 inL->setCsum( mCurrentSyncDevice, inR->getCsum(mCurrentSyncDevice) ); 1501 inL->setCsum( mCurrentSyncDevice, inR->getCsum(mCurrentSyncDevice) );
1502 inL->setID( mCurrentSyncDevice, inR->getID(mCurrentSyncDevice) ); 1502 inL->setID( mCurrentSyncDevice, inR->getID(mCurrentSyncDevice) );
1503 1503
1504 inL->setCalID( 0 );// add to default cal 1504 inL->setCalID( 0 );// add to default cal
1505 local->addIncidence( inL ); 1505 local->addIncidence( inL );
1506 ++addedEvent; 1506 ++addedEvent;
1507 1507
1508 } 1508 }
1509 } else { 1509 } else {
1510 if ( inR->lastModified() > mLastCalendarSync || mode == 5 ) { 1510 if ( inR->lastModified() > mLastCalendarSync || mode == 5 ) {
1511 inR->setLastModified( modifiedCalendar ); 1511 inR->setLastModified( modifiedCalendar );
1512 inL = inR->clone(); 1512 inL = inR->clone();
1513 inL->setIDStr( ":" ); 1513 inL->setIDStr( ":" );
1514 inL->setCalID( 0 );// add to default cal 1514 inL->setCalID( 0 );// add to default cal
1515 local->addIncidence( inL ); 1515 local->addIncidence( inL );
1516 ++addedEvent; 1516 ++addedEvent;
1517 1517
1518 } else { 1518 } else {
1519 checkExternSyncEvent(eventRSyncSharp, inR); 1519 checkExternSyncEvent(eventRSyncSharp, inR);
1520 remote->deleteIncidence( inR ); 1520 remote->deleteIncidence( inR );
1521 ++deletedEventR; 1521 ++deletedEventR;
1522 } 1522 }
1523 } 1523 }
1524 } else { 1524 } else {
1525 ++filteredIN; 1525 ++filteredIN;
1526 } 1526 }
1527 } 1527 }
1528 } 1528 }
1529 inR = er.next(); 1529 inR = er.next();
1530 } 1530 }
1531 QPtrList<Incidence> el = local->rawIncidences(); 1531 QPtrList<Incidence> el = local->rawIncidences();
1532 inL = el.first(); 1532 inL = el.first();
1533 modulo = (el.count()/10)+1; 1533 modulo = (el.count()/10)+1;
1534 bar.setCaption (i18n("Add / remove events") ); 1534 bar.setCaption (i18n("Add / remove events") );
1535 bar.setTotalSteps ( el.count() ) ; 1535 bar.setTotalSteps ( el.count() ) ;
1536 bar.show(); 1536 bar.show();
1537 incCounter = 0; 1537 incCounter = 0;
1538 1538
1539 while ( inL ) { 1539 while ( inL ) {
1540 1540
1541 qApp->processEvents(); 1541 qApp->processEvents();
1542 if ( ! bar.isVisible() ) 1542 if ( ! bar.isVisible() )
1543 return false; 1543 return false;
1544 if ( incCounter % modulo == 0 ) 1544 if ( incCounter % modulo == 0 )
1545 bar.setProgress( incCounter ); 1545 bar.setProgress( incCounter );
1546 ++incCounter; 1546 ++incCounter;
1547 uid = inL->uid(); 1547 uid = inL->uid();
1548 bool skipIncidence = false; 1548 bool skipIncidence = false;
1549 if ( uid.left(15) == QString("last-syncEvent-") ) 1549 if ( uid.left(15) == QString("last-syncEvent-") )
1550 skipIncidence = true; 1550 skipIncidence = true;
1551 if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL && inL->typeID() == journalID ) 1551 if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL && inL->typeID() == journalID )
1552 skipIncidence = true; 1552 skipIncidence = true;
1553 if ( !skipIncidence ) { 1553 if ( !skipIncidence ) {
1554 inR = remote->incidenceForUid( uid , true ); 1554 inR = remote->incidenceForUid( uid , true );
1555 if ( ! inR ) { 1555 if ( ! inR ) {
1556 if ( !filterOUT || filterOUT->filterCalendarItem( inL ) ){ 1556 if ( !filterOUT || filterOUT->filterCalendarItem( inL ) ){
1557 // no conflict ********** add or delete local 1557 // no conflict ********** add or delete local
1558 if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { 1558 if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) {
1559 if ( !inL->getID(mCurrentSyncDevice).isEmpty() && mode != 4 ) { 1559 if ( !inL->getID(mCurrentSyncDevice).isEmpty() && mode != 4 ) {
1560 checkExternSyncEvent(eventLSyncSharp, inL); 1560 checkExternSyncEvent(eventLSyncSharp, inL);
1561 local->deleteIncidence( inL ); 1561 local->deleteIncidence( inL );
1562 ++deletedEventL; 1562 ++deletedEventL;
1563 } else { 1563 } else {
1564 if ( ! mSyncManager->mWriteBackExistingOnly ) { 1564 if ( ! mSyncManager->mWriteBackExistingOnly ) {
1565 inL->removeID(mCurrentSyncDevice ); 1565 inL->removeID(mCurrentSyncDevice );
1566 ++addedEventR; 1566 ++addedEventR;
1567 //qDebug("remote added Incidence %s ", inL->summary().latin1()); 1567 //qDebug("remote added Incidence %s ", inL->summary().latin1());
1568 inL->setLastModified( modifiedCalendar ); 1568 inL->setLastModified( modifiedCalendar );
1569 inR = inL->clone(); 1569 inR = inL->clone();
1570 inR->setIDStr( ":" ); 1570 inR->setIDStr( ":" );
1571 inR->setTempSyncStat( SYNC_TEMPSTATE_INITIAL ); 1571 inR->setTempSyncStat( SYNC_TEMPSTATE_INITIAL );
1572 inR->setCalID( 0 );// add to default cal 1572 inR->setCalID( 0 );// add to default cal
1573 remote->addIncidence( inR ); 1573 remote->addIncidence( inR );
1574 } 1574 }
1575 } 1575 }
1576 } else { 1576 } else {
1577 if ( inL->lastModified() < mLastCalendarSync && mode != 4 ) { 1577 if ( inL->lastModified() < mLastCalendarSync && mode != 4 ) {
1578 checkExternSyncEvent(eventLSyncSharp, inL); 1578 checkExternSyncEvent(eventLSyncSharp, inL);
1579 local->deleteIncidence( inL ); 1579 local->deleteIncidence( inL );
1580 ++deletedEventL; 1580 ++deletedEventL;
1581 } else { 1581 } else {
1582 if ( ! mSyncManager->mWriteBackExistingOnly ) { 1582 if ( ! mSyncManager->mWriteBackExistingOnly ) {
1583 ++addedEventR; 1583 ++addedEventR;
1584 inL->setLastModified( modifiedCalendar ); 1584 inL->setLastModified( modifiedCalendar );
1585 inR = inL->clone(); 1585 inR = inL->clone();
1586 inR->setIDStr( ":" ); 1586 inR->setIDStr( ":" );
1587 inR->setCalID( 0 );// add to default cal 1587 inR->setCalID( 0 );// add to default cal
1588 remote->addIncidence( inR ); 1588 remote->addIncidence( inR );
1589 } 1589 }
1590 } 1590 }
1591 } 1591 }
1592 } else { 1592 } else {
1593 ++filteredOUT; 1593 ++filteredOUT;
1594 } 1594 }
1595 } 1595 }
1596 } 1596 }
1597 inL = el.next(); 1597 inL = el.next();
1598 } 1598 }
1599 int delFut = 0; 1599 int delFut = 0;
1600 int remRem = 0; 1600 int remRem = 0;
1601 if ( mSyncManager->mWriteBackInFuture ) { 1601 if ( mSyncManager->mWriteBackInFuture ) {
1602 er = remote->rawIncidences(); 1602 er = remote->rawIncidences();
1603 remRem = er.count(); 1603 remRem = er.count();
1604 inR = er.first(); 1604 inR = er.first();
1605 QDateTime dt; 1605 QDateTime dt;
1606 QDateTime cur = QDateTime::currentDateTime().addDays( -(mSyncManager->mWriteBackInPast * 7) ); 1606 QDateTime cur = QDateTime::currentDateTime().addDays( -(mSyncManager->mWriteBackInPast * 7) );
1607 QDateTime end = QDateTime::currentDateTime().addDays( (mSyncManager->mWriteBackInFuture ) *7 ); 1607 QDateTime end = QDateTime::currentDateTime().addDays( (mSyncManager->mWriteBackInFuture ) *7 );
1608 while ( inR ) { 1608 while ( inR ) {
1609 if ( inR->typeID() == todoID ) { 1609 if ( inR->typeID() == todoID ) {
1610 Todo * t = (Todo*)inR; 1610 Todo * t = (Todo*)inR;
1611 if ( t->hasDueDate() ) 1611 if ( t->hasDueDate() )
1612 dt = t->dtDue(); 1612 dt = t->dtDue();
1613 else 1613 else
1614 dt = cur.addSecs( 62 ); 1614 dt = cur.addSecs( 62 );
1615 } 1615 }
1616 else if (inR->typeID() == eventID ) { 1616 else if (inR->typeID() == eventID ) {
1617 bool ok; 1617 bool ok;
1618 dt = inR->getNextOccurence( cur, &ok ); 1618 dt = inR->getNextOccurence( cur, &ok );
1619 if ( !ok ) 1619 if ( !ok )
1620 dt = cur.addSecs( -62 ); 1620 dt = cur.addSecs( -62 );
1621 } 1621 }
1622 else 1622 else
1623 dt = inR->dtStart(); 1623 dt = inR->dtStart();
1624 if ( dt < cur || dt > end ) { 1624 if ( dt < cur || dt > end ) {
1625 remote->deleteIncidence( inR ); 1625 remote->deleteIncidence( inR );
1626 ++delFut; 1626 ++delFut;
1627 } 1627 }
1628 inR = er.next(); 1628 inR = er.next();
1629 } 1629 }
1630 } 1630 }
1631 bar.hide(); 1631 bar.hide();
1632 mLastCalendarSync = QDateTime::currentDateTime().addSecs( 1 ); 1632 mLastCalendarSync = QDateTime::currentDateTime().addSecs( 1 );
1633 eventLSync->setReadOnly( false ); 1633 eventLSync->setReadOnly( false );
1634 eventLSync->setDtStart( mLastCalendarSync ); 1634 eventLSync->setDtStart( mLastCalendarSync );
1635 eventRSync->setDtStart( mLastCalendarSync ); 1635 eventRSync->setDtStart( mLastCalendarSync );
1636 eventLSync->setDtEnd( mLastCalendarSync.addSecs( 3600 ) ); 1636 eventLSync->setDtEnd( mLastCalendarSync.addSecs( 3600 ) );
1637 eventRSync->setDtEnd( mLastCalendarSync.addSecs( 3600 ) ); 1637 eventRSync->setDtEnd( mLastCalendarSync.addSecs( 3600 ) );
1638 eventRSync->setLocation( i18n("Remote from: ")+mCurrentSyncName ) ; 1638 eventRSync->setLocation( i18n("Remote from: ")+mCurrentSyncName ) ;
1639 eventLSync->setLocation(i18n("Local from: ") + mCurrentSyncName ); 1639 eventLSync->setLocation(i18n("Local from: ") + mCurrentSyncName );
1640 eventLSync->setReadOnly( true ); 1640 eventLSync->setReadOnly( true );
1641 qDebug("KO: Normal sync: %d ",mGlobalSyncMode == SYNC_MODE_NORMAL ); 1641 qDebug("KO: Normal sync: %d ",mGlobalSyncMode == SYNC_MODE_NORMAL );
1642 if ( mGlobalSyncMode == SYNC_MODE_NORMAL && !mSyncManager->syncWithDesktop()) // kde is abnormal... 1642 if ( mGlobalSyncMode == SYNC_MODE_NORMAL && !mSyncManager->syncWithDesktop()) // kde is abnormal...
1643 remote->addEvent( eventRSync ); 1643 remote->addEvent( eventRSync );
1644 else 1644 else
1645 delete eventRSync; 1645 delete eventRSync;
1646 qDebug("KO: Sync with desktop %d ",mSyncManager->syncWithDesktop() ); 1646 qDebug("KO: Sync with desktop %d ",mSyncManager->syncWithDesktop() );
1647 QString mes; 1647 QString mes;
1648 mes .sprintf( i18n("Synchronization summary:\n\n %d items added to local\n %d items added to remote\n %d items updated on local\n %d items updated on remote\n %d items deleted on local\n %d items deleted on remote\n %d incoming filtered out\n %d outgoing filtered out\n"),addedEvent, addedEventR, changedLocal, changedRemote, deletedEventL, deletedEventR, filteredIN, filteredOUT ); 1648 mes .sprintf( i18n("Synchronization summary:\n\n %d items added to local\n %d items added to remote\n %d items updated on local\n %d items updated on remote\n %d items deleted on local\n %d items deleted on remote\n %d incoming filtered out\n %d outgoing filtered out\n"),addedEvent, addedEventR, changedLocal, changedRemote, deletedEventL, deletedEventR, filteredIN, filteredOUT );
1649 QString delmess; 1649 QString delmess;
1650 if ( delFut ) { 1650 if ( delFut ) {
1651 delmess.sprintf( i18n("%d items skipped on remote,\nbecause they are more\nthan %d weeks in the past or\nmore than %d weeks in the future.\nAfter skipping, remote has\n%d calendar/todo items."), delFut,mSyncManager->mWriteBackInPast,mSyncManager->mWriteBackInFuture, remRem-delFut); 1651 delmess.sprintf( i18n("%d items skipped on remote,\nbecause they are more\nthan %d weeks in the past or\nmore than %d weeks in the future.\nAfter skipping, remote has\n%d calendar/todo items."), delFut,mSyncManager->mWriteBackInPast,mSyncManager->mWriteBackInFuture, remRem-delFut);
1652 mes += delmess; 1652 mes += delmess;
1653 } 1653 }
1654 mes = i18n("Local calendar changed!\n") +mes; 1654 mes = i18n("Local calendar changed!\n") +mes;
1655 mCalendar->checkAlarmForIncidence( 0, true ); 1655 mCalendar->checkAlarmForIncidence( 0, true );
1656 qDebug( mes ); 1656 qDebug( mes );
1657 if ( mSyncManager->mShowSyncSummary ) { 1657 if ( mSyncManager->mShowSyncSummary ) {
1658 if ( KMessageBox::Cancel == KMessageBox::warningContinueCancel(this, mes, 1658 if ( KMessageBox::Cancel == KMessageBox::warningContinueCancel(this, mes,
1659 i18n("KO/Pi Synchronization"),i18n("Write back"))) { 1659 i18n("KO/Pi Synchronization"),i18n("Write back"))) {
1660 qDebug("KO: WB cancelled "); 1660 qDebug("KO: WB cancelled ");
1661 mSyncManager->mWriteBackFile = false; 1661 mSyncManager->mWriteBackFile = false;
1662 return syncOK; 1662 return syncOK;
1663 } 1663 }
1664 } 1664 }
1665 return syncOK; 1665 return syncOK;
1666} 1666}
1667 1667
1668void CalendarView::setSyncDevice( QString s ) 1668void CalendarView::setSyncDevice( QString s )
1669{ 1669{
1670 mCurrentSyncDevice= s; 1670 mCurrentSyncDevice= s;
1671} 1671}
1672void CalendarView::setSyncName( QString s ) 1672void CalendarView::setSyncName( QString s )
1673{ 1673{
1674 mCurrentSyncName= s; 1674 mCurrentSyncName= s;
1675} 1675}
1676bool CalendarView::syncCalendar(QString filename, int mode) 1676bool CalendarView::syncCalendar(QString filename, int mode)
1677{ 1677{
1678 //qDebug("syncCalendar %s ", filename.latin1()); 1678 //qDebug("syncCalendar %s ", filename.latin1());
1679 mGlobalSyncMode = SYNC_MODE_NORMAL; 1679 mGlobalSyncMode = SYNC_MODE_NORMAL;
1680 CalendarLocal* calendar = new CalendarLocal(); 1680 CalendarLocal* calendar = new CalendarLocal();
1681 calendar->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); 1681 calendar->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId);
1682 FileStorage* storage = new FileStorage( calendar ); 1682 FileStorage* storage = new FileStorage( calendar );
1683 bool syncOK = false; 1683 bool syncOK = false;
1684 storage->setFileName( filename ); 1684 storage->setFileName( filename );
1685 // qDebug("loading ... "); 1685 // qDebug("loading ... ");
1686 if ( storage->load() ) { 1686 if ( storage->load() ) {
1687 getEventViewerDialog()->setSyncMode( true ); 1687 getEventViewerDialog()->setSyncMode( true );
1688 syncOK = synchronizeCalendar( mCalendar, calendar, mode ); 1688 syncOK = synchronizeCalendar( mCalendar, calendar, mode );
1689 getEventViewerDialog()->setSyncMode( false ); 1689 getEventViewerDialog()->setSyncMode( false );
1690 if ( syncOK ) { 1690 if ( syncOK ) {
1691 if ( mSyncManager->mWriteBackFile ) 1691 if ( mSyncManager->mWriteBackFile )
1692 { 1692 {
1693 storage->setSaveFormat( new ICalFormat() ); 1693 storage->setSaveFormat( new ICalFormat() );
1694 storage->save(); 1694 storage->save();
1695 } 1695 }
1696 } 1696 }
1697 setModified( true ); 1697 setModified( true );
1698 } 1698 }
1699 delete storage; 1699 delete storage;
1700 delete calendar; 1700 delete calendar;
1701 if ( syncOK ) 1701 if ( syncOK )
1702 updateView(); 1702 updateView();
1703 return syncOK; 1703 return syncOK;
1704} 1704}
1705 1705
1706void CalendarView::syncExternal( int mode ) 1706void CalendarView::syncExternal( int mode )
1707{ 1707{
1708 mGlobalSyncMode = SYNC_MODE_EXTERNAL; 1708 mGlobalSyncMode = SYNC_MODE_EXTERNAL;
1709 1709
1710 qApp->processEvents(); 1710 qApp->processEvents();
1711 CalendarLocal* calendar = new CalendarLocal(); 1711 CalendarLocal* calendar = new CalendarLocal();
1712 calendar->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); 1712 calendar->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId);
1713 bool syncOK = false; 1713 bool syncOK = false;
1714 bool loadSuccess = false; 1714 bool loadSuccess = false;
1715 PhoneFormat* phoneFormat = 0; 1715 PhoneFormat* phoneFormat = 0;
1716 emit tempDisableBR(true); 1716 emit tempDisableBR(true);
1717#ifndef DESKTOP_VERSION 1717#ifndef DESKTOP_VERSION
1718 SharpFormat* sharpFormat = 0; 1718 SharpFormat* sharpFormat = 0;
1719 if ( mode == 0 ) { // sharp 1719 if ( mode == 0 ) { // sharp
1720 sharpFormat = new SharpFormat () ; 1720 sharpFormat = new SharpFormat () ;
1721 loadSuccess = sharpFormat->load( calendar, mCalendar ); 1721 loadSuccess = sharpFormat->load( calendar, mCalendar );
1722 1722
1723 } else 1723 } else
1724#endif 1724#endif
1725 if ( mode == 1 ) { // phone 1725 if ( mode == 1 ) { // phone
1726 phoneFormat = new PhoneFormat (mCurrentSyncDevice, 1726 phoneFormat = new PhoneFormat (mCurrentSyncDevice,
1727 mSyncManager->mPhoneDevice, 1727 mSyncManager->mPhoneDevice,
1728 mSyncManager->mPhoneConnection, 1728 mSyncManager->mPhoneConnection,
1729 mSyncManager->mPhoneModel); 1729 mSyncManager->mPhoneModel);
1730 loadSuccess = phoneFormat->load( calendar,mCalendar); 1730 loadSuccess = phoneFormat->load( calendar,mCalendar);
1731 1731
1732 } else { 1732 } else {
1733 emit tempDisableBR(false); 1733 emit tempDisableBR(false);
1734 return; 1734 return;
1735 } 1735 }
1736 if ( loadSuccess ) { 1736 if ( loadSuccess ) {
1737 getEventViewerDialog()->setSyncMode( true ); 1737 getEventViewerDialog()->setSyncMode( true );
1738 syncOK = synchronizeCalendar( mCalendar, calendar, mSyncManager->mSyncAlgoPrefs ); 1738 syncOK = synchronizeCalendar( mCalendar, calendar, mSyncManager->mSyncAlgoPrefs );
1739 getEventViewerDialog()->setSyncMode( false ); 1739 getEventViewerDialog()->setSyncMode( false );
1740 qApp->processEvents(); 1740 qApp->processEvents();
1741 if ( syncOK ) { 1741 if ( syncOK ) {
1742 if ( mSyncManager->mWriteBackFile ) 1742 if ( mSyncManager->mWriteBackFile )
1743 { 1743 {
1744 QPtrList<Incidence> iL = mCalendar->rawIncidences(); 1744 QPtrList<Incidence> iL = mCalendar->rawIncidences();
1745 Incidence* inc = iL.first(); 1745 Incidence* inc = iL.first();
1746 if ( phoneFormat ) { 1746 if ( phoneFormat ) {
1747 while ( inc ) { 1747 while ( inc ) {
1748 inc->removeID(mCurrentSyncDevice); 1748 inc->removeID(mCurrentSyncDevice);
1749 inc = iL.next(); 1749 inc = iL.next();
1750 } 1750 }
1751 } 1751 }
1752#ifndef DESKTOP_VERSION 1752#ifndef DESKTOP_VERSION
1753 if ( sharpFormat ) 1753 if ( sharpFormat )
1754 sharpFormat->save(calendar); 1754 sharpFormat->save(calendar);
1755#endif 1755#endif
1756 if ( phoneFormat ) 1756 if ( phoneFormat )
1757 phoneFormat->save(calendar); 1757 phoneFormat->save(calendar);
1758 iL = calendar->rawIncidences(); 1758 iL = calendar->rawIncidences();
1759 inc = iL.first(); 1759 inc = iL.first();
1760 Incidence* loc; 1760 Incidence* loc;
1761 while ( inc ) { 1761 while ( inc ) {
1762 if ( inc->tempSyncStat() == SYNC_TEMPSTATE_NEW_ID ) { 1762 if ( inc->tempSyncStat() == SYNC_TEMPSTATE_NEW_ID ) {
1763 loc = mCalendar->incidence(inc->uid() ); 1763 loc = mCalendar->incidence(inc->uid() );
1764 if ( loc ) { 1764 if ( loc ) {
1765 loc->setID(mCurrentSyncDevice, inc->getID(mCurrentSyncDevice) ); 1765 loc->setID(mCurrentSyncDevice, inc->getID(mCurrentSyncDevice) );
1766 loc->setCsum( mCurrentSyncDevice, inc->getCsum(mCurrentSyncDevice) ); 1766 loc->setCsum( mCurrentSyncDevice, inc->getCsum(mCurrentSyncDevice) );
1767 } 1767 }
1768 } 1768 }
1769 inc = iL.next(); 1769 inc = iL.next();
1770 } 1770 }
1771 Incidence* lse = getLastSyncEvent(); 1771 Incidence* lse = getLastSyncEvent();
1772 if ( lse ) { 1772 if ( lse ) {
1773 lse->setReadOnly( false ); 1773 lse->setReadOnly( false );
1774 lse->setDescription( "" ); 1774 lse->setDescription( "" );
1775 lse->setReadOnly( true ); 1775 lse->setReadOnly( true );
1776 } 1776 }
1777 } 1777 }
1778 } else { 1778 } else {
1779 topLevelWidget()->setCaption( i18n("Sync cancelled or failed.") ); 1779 topLevelWidget()->setCaption( i18n("Sync cancelled or failed.") );
1780 } 1780 }
1781 setModified( true ); 1781 setModified( true );
1782 } else { 1782 } else {
1783 QString question = i18n("Sorry, the database access\ncommand failed!\n\nNothing synced!\n") ; 1783 QString question = i18n("Sorry, the database access\ncommand failed!\n\nNothing synced!\n") ;
1784 QMessageBox::information( 0, i18n("KO/Pi Import - ERROR"), 1784 QMessageBox::information( 0, i18n("KO/Pi Import - ERROR"),
1785 question, i18n("Ok")) ; 1785 question, i18n("Ok")) ;
1786 1786
1787 } 1787 }
1788 delete calendar; 1788 delete calendar;
1789 updateView(); 1789 updateView();
1790 emit tempDisableBR(false); 1790 emit tempDisableBR(false);
1791 return ;//syncOK; 1791 return ;//syncOK;
1792 1792
1793} 1793}
1794 1794
1795bool CalendarView::importBday() 1795bool CalendarView::importBday()
1796{ 1796{
1797#ifndef KORG_NOKABC 1797#ifndef KORG_NOKABC
1798 1798
1799#ifdef DESKTOP_VERSION 1799#ifdef DESKTOP_VERSION
1800 int curCal = mCalendar->defaultCalendar(); 1800 int curCal = mCalendar->defaultCalendar();
1801 int bd = mCalEditView->getBirtdayID(); 1801 int bd = mCalEditView->getBirtdayID();
1802 if ( bd == 0 ) 1802 if ( bd == 0 )
1803 return false; 1803 return false;
1804 mCalendar->setDefaultCalendar( bd ); 1804 mCalendar->setDefaultCalendar( bd );
1805 KABC::StdAddressBook* AddressBook = KABC::StdAddressBook::self( true ); 1805 KABC::StdAddressBook* AddressBook = KABC::StdAddressBook::self( true );
1806 KABC::AddressBook::Iterator it; 1806 KABC::AddressBook::Iterator it;
1807 int count = 0; 1807 int count = 0;
1808 for( it = AddressBook->begin(); it != AddressBook->end(); ++it ) { 1808 for( it = AddressBook->begin(); it != AddressBook->end(); ++it ) {
1809 ++count; 1809 ++count;
1810 } 1810 }
1811 QProgressBar bar(count,0 ); 1811 QProgressBar bar(count,0 );
1812 int w = 300; 1812 int w = 300;
1813 if ( QApplication::desktop()->width() < 320 ) 1813 if ( QApplication::desktop()->width() < 320 )
1814 w = 220; 1814 w = 220;
1815 int h = bar.sizeHint().height() ; 1815 int h = bar.sizeHint().height() ;
1816 int dw = QApplication::desktop()->width(); 1816 int dw = QApplication::desktop()->width();
1817 int dh = QApplication::desktop()->height(); 1817 int dh = QApplication::desktop()->height();
1818 bar.setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); 1818 bar.setGeometry( (dw-w)/2, (dh - h )/2 ,w,h );
1819 bar.show(); 1819 bar.show();
1820 bar.setCaption (i18n("Reading addressbook - close to abort!") ); 1820 bar.setCaption (i18n("Reading addressbook - close to abort!") );
1821 qApp->processEvents(); 1821 qApp->processEvents();
1822 count = 0; 1822 count = 0;
1823 int addCount = 0; 1823 int addCount = 0;
1824 KCal::Attendee* a = 0; 1824 KCal::Attendee* a = 0;
1825 for( it = AddressBook->begin(); it != AddressBook->end(); ++it ) { 1825 for( it = AddressBook->begin(); it != AddressBook->end(); ++it ) {
1826 if ( ! bar.isVisible() ) 1826 if ( ! bar.isVisible() )
1827 return false; 1827 return false;
1828 bar.setProgress( count++ ); 1828 bar.setProgress( count++ );
1829 qApp->processEvents(); 1829 qApp->processEvents();
1830 //qDebug("add BDay %s %s", (*it).realName().latin1(),(*it).birthday().date().toString().latin1() ); 1830 //qDebug("add BDay %s %s", (*it).realName().latin1(),(*it).birthday().date().toString().latin1() );
1831 if ( (*it).birthday().date().isValid() ){ 1831 if ( (*it).birthday().date().isValid() ){
1832 a = new KCal::Attendee( (*it).realName(), (*it).preferredEmail(),false,KCal::Attendee::NeedsAction,KCal::Attendee::ReqParticipant,(*it).uid()) ; 1832 a = new KCal::Attendee( (*it).realName(), (*it).preferredEmail(),false,KCal::Attendee::NeedsAction,KCal::Attendee::ReqParticipant,(*it).uid()) ;
1833 if ( addAnniversary( (*it).birthday().date(), (*it).assembledName(), a, true ) ) 1833 if ( addAnniversary( (*it).birthday().date(), (*it).assembledName(), a, true ) )
1834 ++addCount; 1834 ++addCount;
1835 } 1835 }
1836 QDate anni = KGlobal::locale()->readDate( (*it).custom("KADDRESSBOOK", "X-Anniversary" ), "%Y-%m-%d"); 1836 QDate anni = KGlobal::locale()->readDate( (*it).custom("KADDRESSBOOK", "X-Anniversary" ), "%Y-%m-%d");
1837 if ( anni.isValid() ){ 1837 if ( anni.isValid() ){
1838 a = new KCal::Attendee( (*it).realName(), (*it).preferredEmail(),false,KCal::Attendee::NeedsAction,KCal::Attendee::ReqParticipant,(*it).uid()) ; 1838 a = new KCal::Attendee( (*it).realName(), (*it).preferredEmail(),false,KCal::Attendee::NeedsAction,KCal::Attendee::ReqParticipant,(*it).uid()) ;
1839 if ( addAnniversary( anni, (*it).assembledName(), a, false ) ) 1839 if ( addAnniversary( anni, (*it).assembledName(), a, false ) )
1840 ++addCount; 1840 ++addCount;
1841 } 1841 }
1842 } 1842 }
1843 mCalendar->setDefaultCalendar( curCal ); 1843 mCalendar->setDefaultCalendar( curCal );
1844 updateView(); 1844 updateView();
1845 topLevelWidget()->setCaption(QString::number( addCount )+ i18n(" birthdays/anniversaries added!")); 1845 topLevelWidget()->setCaption(QString::number( addCount )+ i18n(" birthdays/anniversaries added!"));
1846#else //DESKTOP_VERSION 1846#else //DESKTOP_VERSION
1847 1847
1848 ExternalAppHandler::instance()->requestBirthdayListFromKAPI("QPE/Application/kopi", this->name() /* name is here the unique uid*/); 1848 ExternalAppHandler::instance()->requestBirthdayListFromKAPI("QPE/Application/kopi", this->name() /* name is here the unique uid*/);
1849 // the result should now arrive through method insertBirthdays 1849 // the result should now arrive through method insertBirthdays
1850 1850
1851#endif //DESKTOP_VERSION 1851#endif //DESKTOP_VERSION
1852 1852
1853#endif //KORG_NOKABC 1853#endif //KORG_NOKABC
1854 1854
1855 1855
1856 return true; 1856 return true;
1857} 1857}
1858 1858
1859// This method will be called from Ka/Pi as a response to requestBirthdayListFromKAPI 1859// This method will be called from Ka/Pi as a response to requestBirthdayListFromKAPI
1860void CalendarView::insertBirthdays(const QString& uid, const QStringList& birthdayList, 1860void CalendarView::insertBirthdays(const QString& uid, const QStringList& birthdayList,
1861 const QStringList& anniversaryList, const QStringList& realNameList, 1861 const QStringList& anniversaryList, const QStringList& realNameList,
1862 const QStringList& emailList, const QStringList& assembledNameList, 1862 const QStringList& emailList, const QStringList& assembledNameList,
1863 const QStringList& uidList) 1863 const QStringList& uidList)
1864{ 1864{
1865 1865
1866 //qDebug("KO::CalendarView::insertBirthdays"); 1866 //qDebug("KO::CalendarView::insertBirthdays");
1867 if (uid == this->name()) 1867 if (uid == this->name())
1868 { 1868 {
1869 int curCal = mCalendar->defaultCalendar(); 1869 int curCal = mCalendar->defaultCalendar();
1870 int bd = mCalEditView->getBirtdayID(); 1870 int bd = mCalEditView->getBirtdayID();
1871 if ( bd == 0 ) 1871 if ( bd == 0 )
1872 return; 1872 return;
1873 mCalendar->setDefaultCalendar( bd ); 1873 mCalendar->setDefaultCalendar( bd );
1874 1874
1875 1875
1876 int count = birthdayList.count(); 1876 int count = birthdayList.count();
1877 int addCount = 0; 1877 int addCount = 0;
1878 KCal::Attendee* a = 0; 1878 KCal::Attendee* a = 0;
1879 1879
1880 //qDebug("CalView 1 %i", count); 1880 //qDebug("CalView 1 %i", count);
1881 1881
1882 QProgressBar bar(count,0 ); 1882 QProgressBar bar(count,0 );
1883 int w = 300; 1883 int w = 300;
1884 if ( QApplication::desktop()->width() < 320 ) 1884 if ( QApplication::desktop()->width() < 320 )
1885 w = 220; 1885 w = 220;
1886 int h = bar.sizeHint().height() ; 1886 int h = bar.sizeHint().height() ;
1887 int dw = QApplication::desktop()->width(); 1887 int dw = QApplication::desktop()->width();
1888 int dh = QApplication::desktop()->height(); 1888 int dh = QApplication::desktop()->height();
1889 bar.setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); 1889 bar.setGeometry( (dw-w)/2, (dh - h )/2 ,w,h );
1890 bar.show(); 1890 bar.show();
1891 bar.setCaption (i18n("inserting birthdays - close to abort!") ); 1891 bar.setCaption (i18n("inserting birthdays - close to abort!") );
1892 qApp->processEvents(); 1892 qApp->processEvents();
1893 1893
1894 QDate birthday; 1894 QDate birthday;
1895 QDate anniversary; 1895 QDate anniversary;
1896 QString realName; 1896 QString realName;
1897 QString email; 1897 QString email;
1898 QString assembledName; 1898 QString assembledName;
1899 QString uid; 1899 QString uid;
1900 bool ok = true; 1900 bool ok = true;
1901 for ( int i = 0; i < count; i++) 1901 for ( int i = 0; i < count; i++)
1902 { 1902 {
1903 if ( ! bar.isVisible() ) 1903 if ( ! bar.isVisible() )
1904 return; 1904 return;
1905 bar.setProgress( i ); 1905 bar.setProgress( i );
1906 qApp->processEvents(); 1906 qApp->processEvents();
1907 1907
1908 birthday = KGlobal::locale()->readDate(birthdayList[i], KLocale::ISODate, &ok); 1908 birthday = KGlobal::locale()->readDate(birthdayList[i], KLocale::ISODate, &ok);
1909 if (!ok) { 1909 if (!ok) {
1910 ;//qDebug("CalendarView::insertBirthdays found invalid birthday: %s",birthdayList[i].latin1()); 1910 ;//qDebug("CalendarView::insertBirthdays found invalid birthday: %s",birthdayList[i].latin1());
1911 } 1911 }
1912 1912
1913 anniversary = KGlobal::locale()->readDate(anniversaryList[i], KLocale::ISODate, &ok); 1913 anniversary = KGlobal::locale()->readDate(anniversaryList[i], KLocale::ISODate, &ok);
1914 if (!ok) { 1914 if (!ok) {
1915 ;//qDebug("CalendarView::insertBirthdays found invalid anniversary: %s",anniversaryList[i].latin1()); 1915 ;//qDebug("CalendarView::insertBirthdays found invalid anniversary: %s",anniversaryList[i].latin1());
1916 } 1916 }
1917 realName = realNameList[i]; 1917 realName = realNameList[i];
1918 email = emailList[i]; 1918 email = emailList[i];
1919 assembledName = assembledNameList[i]; 1919 assembledName = assembledNameList[i];
1920 uid = uidList[i]; 1920 uid = uidList[i];
1921 //qDebug("insert birthday in KO/Pi: %s,%s,%s,%s: %s, %s", realName.latin1(), email.latin1(), assembledName.latin1(), uid.latin1(), birthdayList[i].latin1(), anniversaryList[i].latin1() ); 1921 //qDebug("insert birthday in KO/Pi: %s,%s,%s,%s: %s, %s", realName.latin1(), email.latin1(), assembledName.latin1(), uid.latin1(), birthdayList[i].latin1(), anniversaryList[i].latin1() );
1922 1922
1923 if ( birthday.isValid() ){ 1923 if ( birthday.isValid() ){
1924 a = new KCal::Attendee( realName, email,false,KCal::Attendee::NeedsAction, 1924 a = new KCal::Attendee( realName, email,false,KCal::Attendee::NeedsAction,
1925 KCal::Attendee::ReqParticipant,uid) ; 1925 KCal::Attendee::ReqParticipant,uid) ;
1926 if ( addAnniversary( birthday, assembledName, a, true ) ) 1926 if ( addAnniversary( birthday, assembledName, a, true ) )
1927 ++addCount; 1927 ++addCount;
1928 } 1928 }
1929 1929
1930 if ( anniversary.isValid() ){ 1930 if ( anniversary.isValid() ){
1931 a = new KCal::Attendee( realName, email,false,KCal::Attendee::NeedsAction, 1931 a = new KCal::Attendee( realName, email,false,KCal::Attendee::NeedsAction,
1932 KCal::Attendee::ReqParticipant,uid) ; 1932 KCal::Attendee::ReqParticipant,uid) ;
1933 if ( addAnniversary( anniversary, assembledName, a, false ) ) 1933 if ( addAnniversary( anniversary, assembledName, a, false ) )
1934 ++addCount; 1934 ++addCount;
1935 } 1935 }
1936 } 1936 }
1937 1937
1938 mCalendar->setDefaultCalendar( curCal ); 1938 mCalendar->setDefaultCalendar( curCal );
1939 updateView(); 1939 updateView();
1940 topLevelWidget()->setCaption(QString::number( addCount )+ i18n(" birthdays/anniversaries added!")); 1940 topLevelWidget()->setCaption(QString::number( addCount )+ i18n(" birthdays/anniversaries added!"));
1941 1941
1942 } 1942 }
1943 1943
1944} 1944}
1945 1945
1946 1946
1947 1947
1948bool CalendarView::addAnniversary( QDate date, QString name, KCal::Attendee* a, bool birthday) 1948bool CalendarView::addAnniversary( QDate date, QString name, KCal::Attendee* a, bool birthday)
1949{ 1949{
1950 //qDebug("addAnni "); 1950 //qDebug("addAnni ");
1951 Event * ev = new Event(); 1951 Event * ev = new Event();
1952 ev->setOrganizer(KOPrefs::instance()->email()); 1952 ev->setOrganizer(KOPrefs::instance()->email());
1953 if ( a ) { 1953 if ( a ) {
1954 ev->addAttendee( a ); 1954 ev->addAttendee( a );
1955 } 1955 }
1956 QString kind; 1956 QString kind;
1957 if ( birthday ) { 1957 if ( birthday ) {
1958 kind = i18n( "Birthday" ); 1958 kind = i18n( "Birthday" );
1959 ev->setSummary( name + " (" + QString::number(date.year()) +")"); 1959 ev->setSummary( name + " (" + QString::number(date.year()) +")");
1960 } 1960 }
1961 else { 1961 else {
1962 kind = i18n( "Anniversary" ); 1962 kind = i18n( "Anniversary" );
1963 ev->setSummary( name + " (" + QString::number(date.year()) +") " + kind ); 1963 ev->setSummary( name + " (" + QString::number(date.year()) +") " + kind );
1964 } 1964 }
1965 ev->setCategories( kind ); 1965 ev->setCategories( kind );
1966 ev->setDtStart( QDateTime(date) ); 1966 ev->setDtStart( QDateTime(date) );
1967 ev->setDtEnd( QDateTime(date) ); 1967 ev->setDtEnd( QDateTime(date) );
1968 ev->setFloats( true ); 1968 ev->setFloats( true );
1969 Recurrence * rec = ev->recurrence(); 1969 Recurrence * rec = ev->recurrence();
1970 rec->setYearly(Recurrence::rYearlyMonth,1,-1); 1970 rec->setYearly(Recurrence::rYearlyMonth,1,-1);
1971 rec->addYearlyNum( date.month() ); 1971 rec->addYearlyNum( date.month() );
1972 if ( !mCalendar->addAnniversaryNoDup( ev ) ) { 1972 if ( !mCalendar->addAnniversaryNoDup( ev ) ) {
1973 delete ev; 1973 delete ev;
1974 return false; 1974 return false;
1975 } 1975 }
1976 return true; 1976 return true;
1977 1977
1978} 1978}
1979bool CalendarView::importQtopia( const QString &categories, 1979bool CalendarView::importQtopia( const QString &categories,
1980 const QString &datebook, 1980 const QString &datebook,
1981 const QString &todolist ) 1981 const QString &todolist )
1982{ 1982{
1983 1983
1984 QtopiaFormat qtopiaFormat; 1984 QtopiaFormat qtopiaFormat;
1985 qtopiaFormat.setCategoriesList ( &(KOPrefs::instance()->mCustomCategories)); 1985 qtopiaFormat.setCategoriesList ( &(KOPrefs::instance()->mCustomCategories));
1986 if ( !categories.isEmpty() ) qtopiaFormat.load( mCalendar, categories ); 1986 if ( !categories.isEmpty() ) qtopiaFormat.load( mCalendar, categories );
1987 if ( !datebook.isEmpty() ) qtopiaFormat.load( mCalendar, datebook ); 1987 if ( !datebook.isEmpty() ) qtopiaFormat.load( mCalendar, datebook );
1988 if ( !todolist.isEmpty() ) qtopiaFormat.load( mCalendar, todolist ); 1988 if ( !todolist.isEmpty() ) qtopiaFormat.load( mCalendar, todolist );
1989 1989
1990 updateView(); 1990 updateView();
1991 return true; 1991 return true;
1992 1992
1993#if 0 1993#if 0
1994 mGlobalSyncMode = SYNC_MODE_QTOPIA; 1994 mGlobalSyncMode = SYNC_MODE_QTOPIA;
1995 mCurrentSyncDevice = "qtopia-XML"; 1995 mCurrentSyncDevice = "qtopia-XML";
1996 if ( mSyncManager->mAskForPreferences ) 1996 if ( mSyncManager->mAskForPreferences )
1997 edit_sync_options(); 1997 edit_sync_options();
1998 qApp->processEvents(); 1998 qApp->processEvents();
1999 CalendarLocal* calendar = new CalendarLocal(); 1999 CalendarLocal* calendar = new CalendarLocal();
2000 calendar->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); 2000 calendar->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId);
2001 bool syncOK = false; 2001 bool syncOK = false;
2002 QtopiaFormat qtopiaFormat; 2002 QtopiaFormat qtopiaFormat;
2003 qtopiaFormat.setCategoriesList ( &(KOPrefs::instance()->mCustomCategories)); 2003 qtopiaFormat.setCategoriesList ( &(KOPrefs::instance()->mCustomCategories));
2004 bool loadOk = true; 2004 bool loadOk = true;
2005 if ( !categories.isEmpty() ) 2005 if ( !categories.isEmpty() )
2006 loadOk = qtopiaFormat.load( calendar, categories ); 2006 loadOk = qtopiaFormat.load( calendar, categories );
2007 if ( loadOk && !datebook.isEmpty() ) 2007 if ( loadOk && !datebook.isEmpty() )
2008 loadOk = qtopiaFormat.load( calendar, datebook ); 2008 loadOk = qtopiaFormat.load( calendar, datebook );
2009 if ( loadOk && !todolist.isEmpty() ) 2009 if ( loadOk && !todolist.isEmpty() )
2010 loadOk = qtopiaFormat.load( calendar, todolist ); 2010 loadOk = qtopiaFormat.load( calendar, todolist );
2011 2011
2012 if ( loadOk ) { 2012 if ( loadOk ) {
2013 getEventViewerDialog()->setSyncMode( true ); 2013 getEventViewerDialog()->setSyncMode( true );
2014 syncOK = synchronizeCalendar( mCalendar, calendar, mSyncManager->mSyncAlgoPrefs ); 2014 syncOK = synchronizeCalendar( mCalendar, calendar, mSyncManager->mSyncAlgoPrefs );
2015 getEventViewerDialog()->setSyncMode( false ); 2015 getEventViewerDialog()->setSyncMode( false );
2016 qApp->processEvents(); 2016 qApp->processEvents();
2017 if ( syncOK ) { 2017 if ( syncOK ) {
2018 if ( mSyncManager->mWriteBackFile ) 2018 if ( mSyncManager->mWriteBackFile )
2019 { 2019 {
2020 // write back XML file 2020 // write back XML file
2021 2021
2022 } 2022 }
2023 setModified( true ); 2023 setModified( true );
2024 } 2024 }
2025 } else { 2025 } else {
2026 QString question = i18n("Sorry, the file loading\ncommand failed!\n\nNothing synced!\n") ; 2026 QString question = i18n("Sorry, the file loading\ncommand failed!\n\nNothing synced!\n") ;
2027 QMessageBox::information( 0, i18n("KO/Pi Sync - ERROR"), 2027 QMessageBox::information( 0, i18n("KO/Pi Sync - ERROR"),
2028 question, i18n("Ok")) ; 2028 question, i18n("Ok")) ;
2029 } 2029 }
2030 delete calendar; 2030 delete calendar;
2031 updateView(); 2031 updateView();
2032 return syncOK; 2032 return syncOK;
2033 2033
2034 2034
2035#endif 2035#endif
2036 2036
2037} 2037}
2038 2038
2039void CalendarView::setSyncEventsReadOnly() 2039void CalendarView::setSyncEventsReadOnly()
2040{ 2040{
2041 mCalendar->setSyncEventsReadOnly(); 2041 mCalendar->setSyncEventsReadOnly();
2042} 2042}
2043 2043
2044bool CalendarView::loadCalendars() 2044bool CalendarView::loadCalendars()
2045{ 2045{
2046 QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars; 2046 QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars;
2047 KopiCalendarFile * cal = calendars.first(); 2047 KopiCalendarFile * cal = calendars.first();
2048 mCalendar->setDefaultCalendar( 1 ); 2048 mCalendar->setDefaultCalendar( 1 );
2049 openCalendar( MainWindow::defaultFileName(), false ); 2049 openCalendar( MainWindow::defaultFileName(), false );
2050 cal = calendars.next(); 2050 cal = calendars.next();
2051 while ( cal ) { 2051 while ( cal ) {
2052 addCalendar( cal ); 2052 addCalendar( cal );
2053 cal = calendars.next(); 2053 cal = calendars.next();
2054 } 2054 }
2055 restoreCalendarSettings(); 2055 restoreCalendarSettings();
2056 return true; 2056 return true;
2057} 2057}
2058bool CalendarView::restoreCalendarSettings() 2058bool CalendarView::restoreCalendarSettings()
2059{ 2059{
2060 QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars; 2060 QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars;
2061 KopiCalendarFile * cal = calendars.first(); 2061 KopiCalendarFile * cal = calendars.first();
2062 while ( cal ) { 2062 while ( cal ) {
2063 mCalendar->setCalendarEnabled( cal->mCalNumber,cal->isEnabled ); 2063 mCalendar->setCalendarEnabled( cal->mCalNumber,cal->isEnabled );
2064 mCalendar->setAlarmEnabled( cal->mCalNumber, cal->isAlarmEnabled ); 2064 mCalendar->setAlarmEnabled( cal->mCalNumber, cal->isAlarmEnabled );
2065 mCalendar->setReadOnly( cal->mCalNumber, cal->isReadOnly ); 2065 mCalendar->setReadOnly( cal->mCalNumber, cal->isReadOnly );
2066 if ( cal->isStandard ) 2066 if ( cal->isStandard )
2067 mCalendar->setDefaultCalendar( cal->mCalNumber ); 2067 mCalendar->setDefaultCalendar( cal->mCalNumber );
2068 cal = calendars.next(); 2068 cal = calendars.next();
2069 } 2069 }
2070 setSyncEventsReadOnly(); 2070 setSyncEventsReadOnly();
2071 mCalendar->reInitAlarmSettings(); 2071 mCalendar->reInitAlarmSettings();
2072 updateUnmanagedViews(); 2072 updateUnmanagedViews();
2073 updateView(); 2073 updateView();
2074 return true; 2074 return true;
2075} 2075}
2076void CalendarView::addCalendarId( int id ) 2076void CalendarView::addCalendarId( int id )
2077{ 2077{
2078 KopiCalendarFile * cal = KOPrefs::instance()->getCalendar( id ); 2078 KopiCalendarFile * cal = KOPrefs::instance()->getCalendar( id );
2079 if ( cal ) 2079 if ( cal )
2080 addCalendar( cal ); 2080 addCalendar( cal );
2081} 2081}
2082bool CalendarView::addCalendar( KopiCalendarFile * cal ) 2082bool CalendarView::addCalendar( KopiCalendarFile * cal )
2083{ 2083{
2084 cal->mErrorOnLoad = false; 2084 cal->mErrorOnLoad = false;
2085 if ( mCalendar->addCalendarFile( cal->mFileName, cal->mCalNumber )) { 2085 if ( mCalendar->addCalendarFile( cal->mFileName, cal->mCalNumber )) {
2086 cal->mLoadDt = QDateTime::currentDateTime(); 2086 cal->mLoadDt = QDateTime::currentDateTime();
2087 return true; 2087 return true;
2088 } 2088 }
2089 qDebug("KO: Error adding calendar file %s ",cal->mFileName.latin1() ); 2089 qDebug("KO: Error adding calendar file %s ",cal->mFileName.latin1() );
2090 cal->mErrorOnLoad = true; 2090 cal->mErrorOnLoad = true;
2091 return false; 2091 return false;
2092} 2092}
2093bool CalendarView::openCalendar(QString filename, bool merge) 2093bool CalendarView::openCalendar(QString filename, bool merge)
2094{ 2094{
2095 2095
2096 if (filename.isEmpty()) { 2096 if (filename.isEmpty()) {
2097 return false; 2097 return false;
2098 } 2098 }
2099 2099
2100 if (!QFile::exists(filename)) { 2100 if (!QFile::exists(filename)) {
2101 KMessageBox::error(this,i18n("File does not exist:\n '%1'.").arg(filename)); 2101 KMessageBox::error(this,i18n("File does not exist:\n '%1'.").arg(filename));
2102 return false; 2102 return false;
2103 } 2103 }
2104 2104
2105 globalFlagBlockAgenda = 1; 2105 globalFlagBlockAgenda = 1;
2106 clearAllViews(); 2106 clearAllViews();
2107 if (!merge) { 2107 if (!merge) {
2108 mViewManager->setDocumentId( filename ); 2108 mViewManager->setDocumentId( filename );
2109 mCalendar->close(); 2109 mCalendar->close();
2110 } 2110 }
2111 mStorage->setFileName( filename ); 2111 mStorage->setFileName( filename );
2112 2112
2113 if ( mStorage->load() ) { 2113 if ( mStorage->load() ) {
2114 if ( merge ) ;//setModified( true ); 2114 if ( merge ) ;//setModified( true );
2115 else { 2115 else {
2116 //setModified( true ); 2116 //setModified( true );
2117 mViewManager->setDocumentId( filename ); 2117 mViewManager->setDocumentId( filename );
2118 mDialogManager->setDocumentId( filename ); 2118 mDialogManager->setDocumentId( filename );
2119 mTodoList->setDocumentId( filename ); 2119 mTodoList->setDocumentId( filename );
2120 } 2120 }
2121 globalFlagBlockAgenda = 2; 2121 globalFlagBlockAgenda = 2;
2122 // if ( getLastSyncEvent() ) 2122 // if ( getLastSyncEvent() )
2123 // getLastSyncEvent()->setReadOnly( true ); 2123 // getLastSyncEvent()->setReadOnly( true );
2124 mCalendar->reInitAlarmSettings(); 2124 mCalendar->reInitAlarmSettings();
2125 setSyncEventsReadOnly(); 2125 setSyncEventsReadOnly();
2126 updateUnmanagedViews(); 2126 updateUnmanagedViews();
2127 updateView(); 2127 updateView();
2128 if ( filename != MainWindow::defaultFileName() ) { 2128 if ( filename != MainWindow::defaultFileName() ) {
2129 saveCalendar( MainWindow::defaultFileName() ); 2129 saveCalendar( MainWindow::defaultFileName() );
2130 } else { 2130 } else {
2131 QFileInfo finf ( MainWindow::defaultFileName()); 2131 QFileInfo finf ( MainWindow::defaultFileName());
2132 if ( finf.exists() ) { 2132 if ( finf.exists() ) {
2133 setLoadedFileVersion( finf.lastModified () ); 2133 setLoadedFileVersion( finf.lastModified () );
2134 } 2134 }
2135 } 2135 }
2136 return true; 2136 return true;
2137 } else { 2137 } else {
2138 // while failing to load, the calendar object could 2138 // while failing to load, the calendar object could
2139 // have become partially populated. Clear it out. 2139 // have become partially populated. Clear it out.
2140 if ( !merge ) { 2140 if ( !merge ) {
2141 mCalendar->close(); 2141 mCalendar->close();
2142 mViewManager->setDocumentId( filename ); 2142 mViewManager->setDocumentId( filename );
2143 mDialogManager->setDocumentId( filename ); 2143 mDialogManager->setDocumentId( filename );
2144 mTodoList->setDocumentId( filename ); 2144 mTodoList->setDocumentId( filename );
2145 } 2145 }
2146 2146
2147 //KMessageBox::error(this,i18n("Couldn't load calendar\n '%1'.").arg(filename)); 2147 //KMessageBox::error(this,i18n("Couldn't load calendar\n '%1'.").arg(filename));
2148 2148
2149 QTimer::singleShot ( 1, this, SLOT ( showOpenError() ) ); 2149 QTimer::singleShot ( 1, this, SLOT ( showOpenError() ) );
2150 globalFlagBlockAgenda = 2; 2150 globalFlagBlockAgenda = 2;
2151 mCalendar->reInitAlarmSettings(); 2151 mCalendar->reInitAlarmSettings();
2152 setSyncEventsReadOnly(); 2152 setSyncEventsReadOnly();
2153 updateUnmanagedViews(); 2153 updateUnmanagedViews();
2154 updateView(); 2154 updateView();
2155 } 2155 }
2156 return false; 2156 return false;
2157} 2157}
2158void CalendarView::mergeFile( QString fn ) 2158void CalendarView::mergeFile( QString fn )
2159{ 2159{
2160 clearAllViews(); 2160 clearAllViews();
2161 mCalendar->mergeCalendarFile( fn ); 2161 mCalendar->mergeCalendarFile( fn );
2162 mCalendar->reInitAlarmSettings(); 2162 mCalendar->reInitAlarmSettings();
2163 setSyncEventsReadOnly(); 2163 setSyncEventsReadOnly();
2164 updateUnmanagedViews(); 2164 updateUnmanagedViews();
2165 updateView(); 2165 updateView();
2166} 2166}
2167void CalendarView::showOpenError() 2167void CalendarView::showOpenError()
2168{ 2168{
2169 KMessageBox::error(this,i18n("Couldn't load calendar\n.")); 2169 KMessageBox::error(this,i18n("Couldn't load calendar\n."));
2170} 2170}
2171void CalendarView::setLoadedFileVersion(QDateTime dt) 2171void CalendarView::setLoadedFileVersion(QDateTime dt)
2172{ 2172{
2173 loadedFileVersion = dt; 2173 loadedFileVersion = dt;
2174} 2174}
2175bool CalendarView::checkFileChanged(QString fn) 2175bool CalendarView::checkFileChanged(QString fn)
2176{ 2176{
2177 QFileInfo finf ( fn ); 2177 QFileInfo finf ( fn );
2178 if ( !finf.exists() ) 2178 if ( !finf.exists() )
2179 return true; 2179 return true;
2180 QDateTime dt = finf.lastModified (); 2180 QDateTime dt = finf.lastModified ();
2181 if ( dt <= loadedFileVersion ) 2181 if ( dt <= loadedFileVersion )
2182 return false; 2182 return false;
2183 return true; 2183 return true;
2184 2184
2185} 2185}
2186void CalendarView::watchSavedFile() 2186void CalendarView::watchSavedFile()
2187{ 2187{
2188 QFileInfo finf ( MainWindow::defaultFileName()); 2188 QFileInfo finf ( MainWindow::defaultFileName());
2189 if ( !finf.exists() ) 2189 if ( !finf.exists() )
2190 return; 2190 return;
2191 QDateTime dt = finf.lastModified (); 2191 QDateTime dt = finf.lastModified ();
2192 if ( dt < loadedFileVersion ) { 2192 if ( dt < loadedFileVersion ) {
2193 //qDebug("watch %s %s ", dt.toString().latin1(), loadedFileVersion.toString().latin1()); 2193 //qDebug("watch %s %s ", dt.toString().latin1(), loadedFileVersion.toString().latin1());
2194 QTimer::singleShot( 1000 , this, SLOT ( watchSavedFile() ) ); 2194 QTimer::singleShot( 1000 , this, SLOT ( watchSavedFile() ) );
2195 return; 2195 return;
2196 } 2196 }
2197 loadedFileVersion = dt; 2197 loadedFileVersion = dt;
2198} 2198}
2199bool CalendarView::checkAllFileVersions() 2199bool CalendarView::checkAllFileVersions()
2200{ 2200{
2201 QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars; 2201 QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars;
2202 KopiCalendarFile * cal = calendars.first(); 2202 KopiCalendarFile * cal = calendars.first();
2203 mCalendar->setDefaultCalendar( 1 ); 2203 mCalendar->setDefaultCalendar( 1 );
2204 mCalendar->setDefaultCalendarEnabledOnly(); 2204 mCalendar->setDefaultCalendarEnabledOnly();
2205 if ( !cal->isReadOnly && !cal->mErrorOnLoad ) { 2205 if ( !cal->isReadOnly && !cal->mErrorOnLoad ) {
2206 if ( !checkFileVersion(MainWindow::defaultFileName())) { 2206 if ( !checkFileVersion(MainWindow::defaultFileName())) {
2207 restoreCalendarSettings(); 2207 restoreCalendarSettings();
2208 return false; 2208 return false;
2209 } 2209 }
2210 } 2210 }
2211 cal = calendars.next(); 2211 cal = calendars.next();
2212 QDateTime storeTemp = loadedFileVersion; 2212 QDateTime storeTemp = loadedFileVersion;
2213 while ( cal ) { 2213 while ( cal ) {
2214 if ( !cal->isReadOnly && !cal->mErrorOnLoad ) { 2214 if ( !cal->isReadOnly && !cal->mErrorOnLoad ) {
2215 mCalendar->setDefaultCalendar( cal->mCalNumber ); 2215 mCalendar->setDefaultCalendar( cal->mCalNumber );
2216 mCalendar->setDefaultCalendarEnabledOnly(); 2216 mCalendar->setDefaultCalendarEnabledOnly();
2217 loadedFileVersion = cal->mLoadDt.addSecs( 15 ); 2217 loadedFileVersion = cal->mLoadDt.addSecs( 15 );
2218 if ( !checkFileVersion(cal->mFileName )) { 2218 if ( !checkFileVersion(cal->mFileName )) {
2219 loadedFileVersion = storeTemp; 2219 loadedFileVersion = storeTemp;
2220 restoreCalendarSettings(); 2220 restoreCalendarSettings();
2221 return false; 2221 return false;
2222 } 2222 }
2223 } 2223 }
2224 cal = calendars.next(); 2224 cal = calendars.next();
2225 } 2225 }
2226 loadedFileVersion = storeTemp; 2226 loadedFileVersion = storeTemp;
2227 return true; 2227 return true;
2228} 2228}
2229bool CalendarView::checkFileVersion(QString fn) 2229bool CalendarView::checkFileVersion(QString fn)
2230{ 2230{
2231 QFileInfo finf ( fn ); 2231 QFileInfo finf ( fn );
2232 if ( !finf.exists() ) 2232 if ( !finf.exists() )
2233 return true; 2233 return true;
2234 QDateTime dt = finf.lastModified (); 2234 QDateTime dt = finf.lastModified ();
2235 qDebug("loaded file version %s %s", fn.latin1(), loadedFileVersion.toString().latin1()); 2235 qDebug("loaded file version %s %s", fn.latin1(), loadedFileVersion.toString().latin1());
2236 qDebug("file on disk version %s %s", fn.latin1(),dt.toString().latin1()); 2236 qDebug("file on disk version %s %s", fn.latin1(),dt.toString().latin1());
2237 if ( dt <= loadedFileVersion ) 2237 if ( dt <= loadedFileVersion )
2238 return true; 2238 return true;
2239 int km = KMessageBox::warningYesNoCancel(this, i18n("\nThe file\n%1\non disk has changed!\nFile size: %2 bytes.\nLast modified: %3\nDo you want to:\n\n - Save and overwrite file?\n - Sync with file, then save?\n - Cancel without saving? \n").arg(KGlobal::formatMessage(fn,0)).arg( QString::number( finf.size())).arg( KGlobal::locale()->formatDateTime(finf.lastModified (), true, true)) , 2239 int km = KMessageBox::warningYesNoCancel(this, i18n("\nThe file\n%1\non disk has changed!\nFile size: %2 bytes.\nLast modified: %3\nDo you want to:\n\n - Save and overwrite file?\n - Sync with file, then save?\n - Cancel without saving? \n").arg(KGlobal::formatMessage(fn,0)).arg( QString::number( finf.size())).arg( KGlobal::locale()->formatDateTime(finf.lastModified (), true, true)) ,
2240 i18n("KO/Pi Warning"),i18n("Overwrite"), 2240 i18n("KO/Pi Warning"),i18n("Overwrite"),
2241 i18n("Sync+save")); 2241 i18n("Sync+save"));
2242 2242
2243 if ( km == KMessageBox::Cancel ) 2243 if ( km == KMessageBox::Cancel )
2244 return false; 2244 return false;
2245 if ( km == KMessageBox::Yes ) 2245 if ( km == KMessageBox::Yes )
2246 return true; 2246 return true;
2247 2247
2248 setSyncDevice("deleteaftersync" ); 2248 setSyncDevice("deleteaftersync" );
2249 mSyncManager->mAskForPreferences = true; 2249 mSyncManager->mAskForPreferences = true;
2250 mSyncManager->mSyncAlgoPrefs = 3; 2250 mSyncManager->mSyncAlgoPrefs = 3;
2251 mSyncManager->mWriteBackFile = false; 2251 mSyncManager->mWriteBackFile = false;
2252 mSyncManager->mWriteBackExistingOnly = false; 2252 mSyncManager->mWriteBackExistingOnly = false;
2253 mSyncManager->mShowSyncSummary = false; 2253 mSyncManager->mShowSyncSummary = false;
2254 syncCalendar( fn, 3 ); 2254 syncCalendar( fn, 3 );
2255 Event * e = getLastSyncEvent(); 2255 Event * e = getLastSyncEvent();
2256 if ( e ) 2256 if ( e )
2257 mCalendar->deleteEvent( e ); 2257 mCalendar->deleteEvent( e );
2258 return true; 2258 return true;
2259} 2259}
2260bool CalendarView::saveCalendars() 2260bool CalendarView::saveCalendars()
2261{ 2261{
2262 QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars; 2262 QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars;
2263 KopiCalendarFile * cal = calendars.first(); 2263 KopiCalendarFile * cal = calendars.first();
2264 mCalendar->setDefaultCalendar( 1 ); 2264 mCalendar->setDefaultCalendar( 1 );
2265 mCalendar->setDefaultCalendarEnabledOnly(); 2265 mCalendar->setDefaultCalendarEnabledOnly();
2266 saveCalendar( MainWindow::defaultFileName() ); 2266 saveCalendar( MainWindow::defaultFileName() );
2267 cal = calendars.next(); 2267 cal = calendars.next();
2268 while ( cal ) { 2268 while ( cal ) {
2269 if ( !cal->isReadOnly && !cal->mErrorOnLoad ) { 2269 if ( !cal->isReadOnly && !cal->mErrorOnLoad ) {
2270 mCalendar->setDefaultCalendar( cal->mCalNumber ); 2270 mCalendar->setDefaultCalendar( cal->mCalNumber );
2271 mCalendar->setDefaultCalendarEnabledOnly(); 2271 mCalendar->setDefaultCalendarEnabledOnly();
2272 if ( saveCalendar( cal->mFileName ) ) 2272 if ( saveCalendar( cal->mFileName ) )
2273 cal->mLoadDt = QDateTime::currentDateTime(); 2273 cal->mLoadDt = QDateTime::currentDateTime();
2274 } 2274 }
2275 cal = calendars.next(); 2275 cal = calendars.next();
2276 } 2276 }
2277 restoreCalendarSettings(); 2277 restoreCalendarSettings();
2278 return true; 2278 return true;
2279} 2279}
2280bool CalendarView::saveCalendar( QString filename ) 2280bool CalendarView::saveCalendar( QString filename )
2281{ 2281{
2282 2282
2283 // Store back all unsaved data into calendar object 2283 // Store back all unsaved data into calendar object
2284 // qDebug("file %s %d ", filename.latin1() , mViewManager->currentView() ); 2284 // qDebug("file %s %d ", filename.latin1() , mViewManager->currentView() );
2285 if ( mViewManager->currentView() ) 2285 if ( mViewManager->currentView() )
2286 mViewManager->currentView()->flushView(); 2286 mViewManager->currentView()->flushView();
2287 2287
2288 2288
2289 QDateTime lfv = QDateTime::currentDateTime().addSecs( -2); 2289 QDateTime lfv = QDateTime::currentDateTime().addSecs( -2);
2290 mStorage->setSaveFormat( new ICalFormat() ); 2290 mStorage->setSaveFormat( new ICalFormat() );
2291 mStorage->setFileName( filename ); 2291 mStorage->setFileName( filename );
2292 bool success; 2292 bool success;
2293 success = mStorage->save(); 2293 success = mStorage->save();
2294 if ( !success ) { 2294 if ( !success ) {
2295 return false; 2295 return false;
2296 } 2296 }
2297 if ( filename == MainWindow::defaultFileName() ) { 2297 if ( filename == MainWindow::defaultFileName() ) {
2298 setLoadedFileVersion( lfv ); 2298 setLoadedFileVersion( lfv );
2299 watchSavedFile(); 2299 watchSavedFile();
2300 } 2300 }
2301 return true; 2301 return true;
2302} 2302}
2303 2303
2304void CalendarView::closeCalendar() 2304void CalendarView::closeCalendar()
2305{ 2305{
2306 2306
2307 // child windows no longer valid 2307 // child windows no longer valid
2308 clearAllViews(); 2308 clearAllViews();
2309 emit closingDown(); 2309 emit closingDown();
2310 2310
2311 mCalendar->close(); 2311 mCalendar->close();
2312 setModified(false); 2312 setModified(false);
2313 updateView(); 2313 updateView();
2314} 2314}
2315 2315
2316void CalendarView::archiveCalendar() 2316void CalendarView::archiveCalendar()
2317{ 2317{
2318 mDialogManager->showArchiveDialog(); 2318 mDialogManager->showArchiveDialog();
2319} 2319}
2320 2320
2321 2321
2322void CalendarView::readSettings() 2322void CalendarView::readSettings()
2323{ 2323{
2324 2324
2325 2325
2326 // mViewManager->showAgendaView(); 2326 // mViewManager->showAgendaView();
2327 QString str; 2327 QString str;
2328 //qDebug("CalendarView::readSettings() "); 2328 //qDebug("CalendarView::readSettings() ");
2329 // read settings from the KConfig, supplying reasonable 2329 // read settings from the KConfig, supplying reasonable
2330 // defaults where none are to be found 2330 // defaults where none are to be found
2331 KConfig *config = KOGlobals::config(); 2331 KConfig *config = KOGlobals::config();
2332#ifndef KORG_NOSPLITTER 2332#ifndef KORG_NOSPLITTER
2333 config->setGroup("KOrganizer Geometry"); 2333 config->setGroup("KOrganizer Geometry");
2334 2334
2335 QValueList<int> sizes = config->readIntListEntry("Separator1"); 2335 QValueList<int> sizes = config->readIntListEntry("Separator1");
2336 if (sizes.count() != 2) { 2336 if (sizes.count() != 2) {
2337 sizes << mDateNavigator->minimumSizeHint().width(); 2337 sizes << mDateNavigator->minimumSizeHint().width();
2338 sizes << 300; 2338 sizes << 300;
2339 } 2339 }
2340 mPanner->setSizes(sizes); 2340 mPanner->setSizes(sizes);
2341 2341
2342 sizes = config->readIntListEntry("Separator2"); 2342 sizes = config->readIntListEntry("Separator2");
2343 if ( ( mResourceView && sizes.count() == 4 ) || 2343 if ( ( mResourceView && sizes.count() == 4 ) ||
2344 ( !mResourceView && sizes.count() == 3 ) ) { 2344 ( !mResourceView && sizes.count() == 3 ) ) {
2345 mLeftSplitter->setSizes(sizes); 2345 mLeftSplitter->setSizes(sizes);
2346 } 2346 }
2347#endif 2347#endif
2348 globalFlagBlockAgenda = 1; 2348 globalFlagBlockAgenda = 1;
2349 mViewManager->showAgendaView(); 2349 mViewManager->showAgendaView();
2350 //mViewManager->readSettings( config ); 2350 //mViewManager->readSettings( config );
2351 mTodoList->restoreLayout(config,QString("Todo Layout")); 2351 mTodoList->restoreLayout(config,QString("Todo Layout"));
2352 readFilterSettings(config); 2352 readFilterSettings(config);
2353 2353
2354#ifdef DESKTOP_VERSION 2354#ifdef DESKTOP_VERSION
2355 config->setGroup("WidgetLayout"); 2355 config->setGroup("WidgetLayout");
2356 QStringList list; 2356 QStringList list;
2357 list = config->readListEntry("MainLayout"); 2357 list = config->readListEntry("MainLayout");
2358 int x,y,w,h; 2358 int x,y,w,h;
2359 if ( ! list.isEmpty() ) { 2359 if ( ! list.isEmpty() ) {
2360 x = list[0].toInt(); 2360 x = list[0].toInt();
2361 y = list[1].toInt(); 2361 y = list[1].toInt();
2362 w = list[2].toInt(); 2362 w = list[2].toInt();
2363 h = list[3].toInt(); 2363 h = list[3].toInt();
2364 KApplication::testCoords( &x,&y,&w,&h ); 2364 KApplication::testCoords( &x,&y,&w,&h );
2365 topLevelWidget()->setGeometry(x,y,w,h); 2365 topLevelWidget()->setGeometry(x,y,w,h);
2366 2366
2367 } else { 2367 } else {
2368 topLevelWidget()->setGeometry( 40 ,40 , 640, 440); 2368 topLevelWidget()->setGeometry( 40 ,40 , 640, 440);
2369 } 2369 }
2370 list = config->readListEntry("EditEventLayout"); 2370 list = config->readListEntry("EditEventLayout");
2371 if ( ! list.isEmpty() ) { 2371 if ( ! list.isEmpty() ) {
2372 x = list[0].toInt(); 2372 x = list[0].toInt();
2373 y = list[1].toInt(); 2373 y = list[1].toInt();
2374 w = list[2].toInt(); 2374 w = list[2].toInt();
2375 h = list[3].toInt(); 2375 h = list[3].toInt();
2376 KApplication::testCoords( &x,&y,&w,&h ); 2376 KApplication::testCoords( &x,&y,&w,&h );
2377 mEventEditor->setGeometry(x,y,w,h); 2377 mEventEditor->setGeometry(x,y,w,h);
2378 2378
2379 } 2379 }
2380 list = config->readListEntry("EditTodoLayout"); 2380 list = config->readListEntry("EditTodoLayout");
2381 if ( ! list.isEmpty() ) { 2381 if ( ! list.isEmpty() ) {
2382 x = list[0].toInt(); 2382 x = list[0].toInt();
2383 y = list[1].toInt(); 2383 y = list[1].toInt();
2384 w = list[2].toInt(); 2384 w = list[2].toInt();
2385 h = list[3].toInt(); 2385 h = list[3].toInt();
2386 KApplication::testCoords( &x,&y,&w,&h ); 2386 KApplication::testCoords( &x,&y,&w,&h );
2387 mTodoEditor->setGeometry(x,y,w,h); 2387 mTodoEditor->setGeometry(x,y,w,h);
2388 2388
2389 } 2389 }
2390 list = config->readListEntry("ViewerLayout"); 2390 list = config->readListEntry("ViewerLayout");
2391 if ( ! list.isEmpty() ) { 2391 if ( ! list.isEmpty() ) {
2392 x = list[0].toInt(); 2392 x = list[0].toInt();
2393 y = list[1].toInt(); 2393 y = list[1].toInt();
2394 w = list[2].toInt(); 2394 w = list[2].toInt();
2395 h = list[3].toInt(); 2395 h = list[3].toInt();
2396 KApplication::testCoords( &x,&y,&w,&h ); 2396 KApplication::testCoords( &x,&y,&w,&h );
2397 getEventViewerDialog()->setGeometry(x,y,w,h); 2397 getEventViewerDialog()->setGeometry(x,y,w,h);
2398 } 2398 }
2399#endif 2399#endif
2400 config->setGroup( "Views" ); 2400 config->setGroup( "Views" );
2401 int dateCount = config->readNumEntry( "ShownDatesCount", 7 ); 2401 int dateCount = config->readNumEntry( "ShownDatesCount", 7 );
2402 2402
2403 QValueList<int> sizes = config->readIntListEntry("Left Splitter Frame"); 2403 QValueList<int> sizes = config->readIntListEntry("Left Splitter Frame");
2404 2404
2405 int resetval = 0; 2405 int resetval = 0;
2406 int maxVal = 0; 2406 int maxVal = 0;
2407 if (sizes.count() != 3) { 2407 if (sizes.count() != 3) {
2408 if ( KOPrefs::instance()->mVerticalScreen ) { 2408 if ( KOPrefs::instance()->mVerticalScreen ) {
2409 resetval = mDateNavigator->sizeHint().width()+2; 2409 resetval = mDateNavigator->sizeHint().width()+2;
2410 } else { 2410 } else {
2411 resetval = mDateNavigator->sizeHint().height()+2; 2411 resetval = mDateNavigator->sizeHint().height()+2;
2412 } 2412 }
2413 } 2413 }
2414 if ( resetval ) { 2414 if ( resetval ) {
2415 sizes.clear(); 2415 sizes.clear();
2416 if ( KOPrefs::instance()->mVerticalScreen ) { 2416 if ( KOPrefs::instance()->mVerticalScreen ) {
2417 maxVal = QApplication::desktop()->width() -10; 2417 maxVal = QApplication::desktop()->width() -10;
2418 } else { 2418 } else {
2419 maxVal = QApplication::desktop()->height()-10; 2419 maxVal = QApplication::desktop()->height()-10;
2420 } 2420 }
2421 sizes << resetval; 2421 sizes << resetval;
2422 if ( maxVal < resetval + resetval) 2422 if ( maxVal < resetval + resetval)
2423 resetval = maxVal - resetval; 2423 resetval = maxVal - resetval;
2424 sizes << resetval; 2424 sizes << resetval;
2425 sizes << 100; 2425 sizes << 100;
2426 } 2426 }
2427 mLeftFrame->setSizes(sizes); 2427 mLeftFrame->setSizes(sizes);
2428 sizes = config->readIntListEntry("Main Splitter Frame"); 2428 sizes = config->readIntListEntry("Main Splitter Frame");
2429 resetval = 0; 2429 resetval = 0;
2430 maxVal = 0; 2430 maxVal = 0;
2431 if (sizes.count() != 2) { 2431 if (sizes.count() != 2) {
2432 if ( !KOPrefs::instance()->mVerticalScreen ) { 2432 if ( !KOPrefs::instance()->mVerticalScreen ) {
2433 resetval = mDateNavigator->sizeHint().width()+2; 2433 resetval = mDateNavigator->sizeHint().width()+2;
2434 } else { 2434 } else {
2435 resetval = mDateNavigator->sizeHint().height()+2; 2435 resetval = mDateNavigator->sizeHint().height()+2;
2436 } 2436 }
2437 } 2437 }
2438 if ( resetval ) { 2438 if ( resetval ) {
2439 sizes.clear(); 2439 sizes.clear();
2440 if ( !KOPrefs::instance()->mVerticalScreen ) { 2440 if ( !KOPrefs::instance()->mVerticalScreen ) {
2441 maxVal = QApplication::desktop()->width() -10; 2441 maxVal = QApplication::desktop()->width() -10;
2442 } else { 2442 } else {
2443 maxVal = QApplication::desktop()->height()-10; 2443 maxVal = QApplication::desktop()->height()-10;
2444 } 2444 }
2445 sizes << resetval; 2445 sizes << resetval;
2446 if ( maxVal < resetval + resetval) 2446 if ( maxVal < resetval + resetval)
2447 resetval = maxVal - resetval; 2447 resetval = maxVal - resetval;
2448 sizes << resetval; 2448 sizes << resetval;
2449 } 2449 }
2450 mMainFrame->setSizes(sizes); 2450 mMainFrame->setSizes(sizes);
2451 if ( dateCount == 5 ) mNavigator->selectWorkWeek(); 2451 if ( dateCount == 5 ) mNavigator->selectWorkWeek();
2452 else if ( dateCount == 7 ) mNavigator->selectWeek(); 2452 else if ( dateCount == 7 ) mNavigator->selectWeek();
2453 else mNavigator->selectDates( dateCount ); 2453 else mNavigator->selectDates( dateCount );
2454 // mViewManager->readSettings( config ); 2454 // mViewManager->readSettings( config );
2455 updateConfig(); 2455 updateConfig();
2456 globalFlagBlockAgenda = 2; 2456 globalFlagBlockAgenda = 2;
2457 mViewManager->readSettings( config ); 2457 mViewManager->readSettings( config );
2458 QTimer::singleShot( 1, mDateNavigator, SLOT ( setResizeEnabled() ) ); 2458 QTimer::singleShot( 1, mDateNavigator, SLOT ( setResizeEnabled() ) );
2459} 2459}
2460 2460
2461void CalendarView::checkSuspendAlarm() 2461void CalendarView::checkSuspendAlarm()
2462{ 2462{
2463 if ( mSuspendTimer->isActive() ) { 2463 if ( mSuspendTimer->isActive() ) {
2464 KMessageBox::information( this, i18n("<b>WARNING:</b> There is a pending suspended alarm!"), i18n("Pending Suspend Alarm")); 2464 KMessageBox::information( this, i18n("<b>WARNING:</b> There is a pending suspended alarm!"), i18n("Pending Suspend Alarm"));
2465 } 2465 }
2466} 2466}
2467void CalendarView::writeSettings() 2467void CalendarView::writeSettings()
2468{ 2468{
2469 // kdDebug() << "CalendarView::writeSettings" << endl; 2469 // kdDebug() << "CalendarView::writeSettings" << endl;
2470 2470
2471 KConfig *config = KOGlobals::config(); 2471 KConfig *config = KOGlobals::config();
2472 2472
2473 mViewManager->writeSettings( config ); 2473 mViewManager->writeSettings( config );
2474 mTodoList->saveLayout(config,QString("Todo Layout")); 2474 mTodoList->saveLayout(config,QString("Todo Layout"));
2475 mDialogManager->writeSettings( config ); 2475 mDialogManager->writeSettings( config );
2476 //KOPrefs::instance()->usrWriteConfig(); 2476 //KOPrefs::instance()->usrWriteConfig();
2477 KOPrefs::instance()->writeConfig(); 2477 KOPrefs::instance()->writeConfig();
2478 2478
2479 writeFilterSettings(config); 2479 writeFilterSettings(config);
2480 config->setGroup( "AppRun" ); 2480 config->setGroup( "AppRun" );
2481 QDateTime dt ( QDate (2005,1,1), QTime( 0,0,0 ) ); 2481 QDateTime dt ( QDate (2005,1,1), QTime( 0,0,0 ) );
2482 int days = dt.daysTo( QDate::currentDate() ); 2482 int days = dt.daysTo( QDate::currentDate() );
2483 dt = dt.addDays( days ); 2483 dt = dt.addDays( days );
2484 int secs = dt.secsTo( QDateTime::currentDateTime() ); 2484 int secs = dt.secsTo( QDateTime::currentDateTime() );
2485 config->writeEntry( "LatestProgramStopDays", days ); 2485 config->writeEntry( "LatestProgramStopDays", days );
2486 config->writeEntry( "LatestProgramStopSecs", secs ); 2486 config->writeEntry( "LatestProgramStopSecs", secs );
2487 //qDebug("KO: Writing stop time: %d ", secs); 2487 //qDebug("KO: Writing stop time: %d ", secs);
2488 //qDebug("KO: Current Time %s ",QDateTime::currentDateTime().toString().latin1() ); 2488 //qDebug("KO: Current Time %s ",QDateTime::currentDateTime().toString().latin1() );
2489 //QDateTime latest = dt.addSecs ( secs ); 2489 //QDateTime latest = dt.addSecs ( secs );
2490 //qDebug("KO: Termination on %s ", latest.toString().latin1()); 2490 //qDebug("KO: Termination on %s ", latest.toString().latin1());
2491 config->setGroup( "Views" ); 2491 config->setGroup( "Views" );
2492 config->writeEntry( "ShownDatesCount", mNavigator->selectedDates().count() ); 2492 config->writeEntry( "ShownDatesCount", mNavigator->selectedDates().count() );
2493 2493
2494#if 0 2494#if 0
2495 qDebug("********************* "); 2495 qDebug("********************* ");
2496 qDebug("Testcode secsto "); 2496 qDebug("Testcode secsto ");
2497 QDateTime dt_nodaylight ( QDate (2005,3,26), QTime( 0,0,0 ) ); 2497 QDateTime dt_nodaylight ( QDate (2005,3,26), QTime( 0,0,0 ) );
2498 QDateTime dt_daylight ( QDate (2005,3,29), QTime( 0,0,0 ) ); 2498 QDateTime dt_daylight ( QDate (2005,3,29), QTime( 0,0,0 ) );
2499 int secsto = dt_nodaylight.secsTo( dt_daylight ); 2499 int secsto = dt_nodaylight.secsTo( dt_daylight );
2500 QDateTime dt_daylight_wrong = dt_nodaylight.addSecs( secsto ); 2500 QDateTime dt_daylight_wrong = dt_nodaylight.addSecs( secsto );
2501 qDebug("dt nodaylight %s ",dt_nodaylight.toString().latin1() ); 2501 qDebug("dt nodaylight %s ",dt_nodaylight.toString().latin1() );
2502 qDebug("dt daylight %s ",dt_daylight.toString().latin1() ); 2502 qDebug("dt daylight %s ",dt_daylight.toString().latin1() );
2503 qDebug("dt daylight_wrong %s ",dt_daylight_wrong.toString().latin1() ); 2503 qDebug("dt daylight_wrong %s ",dt_daylight_wrong.toString().latin1() );
2504 qDebug("Computed secsTo %d . in minutes: %d . in hours: %d ", secsto, secsto/60, secsto/3600); 2504 qDebug("Computed secsTo %d . in minutes: %d . in hours: %d ", secsto, secsto/60, secsto/3600);
2505 qDebug("********************* testcode end"); 2505 qDebug("********************* testcode end");
2506 2506
2507#endif 2507#endif
2508 2508
2509 QValueList<int> listINT = mLeftFrame->sizes(); 2509 QValueList<int> listINT = mLeftFrame->sizes();
2510 config->writeEntry("Left Splitter Frame",listINT); 2510 config->writeEntry("Left Splitter Frame",listINT);
2511 QValueList<int> listINT2 = mMainFrame->sizes(); 2511 QValueList<int> listINT2 = mMainFrame->sizes();
2512 config->writeEntry("Main Splitter Frame",listINT2); 2512 config->writeEntry("Main Splitter Frame",listINT2);
2513#ifdef DESKTOP_VERSION 2513#ifdef DESKTOP_VERSION
2514 config->setGroup("WidgetLayout"); 2514 config->setGroup("WidgetLayout");
2515 QStringList list ;//= config->readListEntry("MainLayout"); 2515 QStringList list ;//= config->readListEntry("MainLayout");
2516 int x,y,w,h; 2516 int x,y,w,h;
2517 QWidget* wid; 2517 QWidget* wid;
2518 wid = topLevelWidget(); 2518 wid = topLevelWidget();
2519 x = wid->geometry().x(); 2519 x = wid->geometry().x();
2520 y = wid->geometry().y(); 2520 y = wid->geometry().y();
2521 w = wid->width(); 2521 w = wid->width();
2522 h = wid->height(); 2522 h = wid->height();
2523 list.clear(); 2523 list.clear();
2524 list << QString::number( x ); 2524 list << QString::number( x );
2525 list << QString::number( y ); 2525 list << QString::number( y );
2526 list << QString::number( w ); 2526 list << QString::number( w );
2527 list << QString::number( h ); 2527 list << QString::number( h );
2528 config->writeEntry("MainLayout",list ); 2528 config->writeEntry("MainLayout",list );
2529 2529
2530 wid = mEventEditor; 2530 wid = mEventEditor;
2531 x = wid->geometry().x(); 2531 x = wid->geometry().x();
2532 y = wid->geometry().y(); 2532 y = wid->geometry().y();
2533 w = wid->width(); 2533 w = wid->width();
2534 h = wid->height(); 2534 h = wid->height();
2535 list.clear(); 2535 list.clear();
2536 list << QString::number( x ); 2536 list << QString::number( x );
2537 list << QString::number( y ); 2537 list << QString::number( y );
2538 list << QString::number( w ); 2538 list << QString::number( w );
2539 list << QString::number( h ); 2539 list << QString::number( h );
2540 config->writeEntry("EditEventLayout",list ); 2540 config->writeEntry("EditEventLayout",list );
2541 2541
2542 wid = mTodoEditor; 2542 wid = mTodoEditor;
2543 x = wid->geometry().x(); 2543 x = wid->geometry().x();
2544 y = wid->geometry().y(); 2544 y = wid->geometry().y();
2545 w = wid->width(); 2545 w = wid->width();
2546 h = wid->height(); 2546 h = wid->height();
2547 list.clear(); 2547 list.clear();
2548 list << QString::number( x ); 2548 list << QString::number( x );
2549 list << QString::number( y ); 2549 list << QString::number( y );
2550 list << QString::number( w ); 2550 list << QString::number( w );
2551 list << QString::number( h ); 2551 list << QString::number( h );
2552 config->writeEntry("EditTodoLayout",list ); 2552 config->writeEntry("EditTodoLayout",list );
2553 wid = getEventViewerDialog(); 2553 wid = getEventViewerDialog();
2554 x = wid->geometry().x(); 2554 x = wid->geometry().x();
2555 y = wid->geometry().y(); 2555 y = wid->geometry().y();
2556 w = wid->width(); 2556 w = wid->width();
2557 h = wid->height(); 2557 h = wid->height();
2558 list.clear(); 2558 list.clear();
2559 list << QString::number( x ); 2559 list << QString::number( x );
2560 list << QString::number( y ); 2560 list << QString::number( y );
2561 list << QString::number( w ); 2561 list << QString::number( w );
2562 list << QString::number( h ); 2562 list << QString::number( h );
2563 config->writeEntry("ViewerLayout",list ); 2563 config->writeEntry("ViewerLayout",list );
2564 wid = mDialogManager->getSearchDialog(); 2564 wid = mDialogManager->getSearchDialog();
2565 if ( wid ) { 2565 if ( wid ) {
2566 x = wid->geometry().x(); 2566 x = wid->geometry().x();
2567 y = wid->geometry().y(); 2567 y = wid->geometry().y();
2568 w = wid->width(); 2568 w = wid->width();
2569 h = wid->height(); 2569 h = wid->height();
2570 list.clear(); 2570 list.clear();
2571 list << QString::number( x ); 2571 list << QString::number( x );
2572 list << QString::number( y ); 2572 list << QString::number( y );
2573 list << QString::number( w ); 2573 list << QString::number( w );
2574 list << QString::number( h ); 2574 list << QString::number( h );
2575 config->writeEntry("SearchLayout",list ); 2575 config->writeEntry("SearchLayout",list );
2576 } 2576 }
2577#endif 2577#endif
2578 2578
2579 2579
2580 config->sync(); 2580 config->sync();
2581} 2581}
2582 2582
2583void CalendarView::readFilterSettings(KConfig *config) 2583void CalendarView::readFilterSettings(KConfig *config)
2584{ 2584{
2585 // kdDebug() << "CalendarView::readFilterSettings()" << endl; 2585 // kdDebug() << "CalendarView::readFilterSettings()" << endl;
2586 2586
2587 mFilters.clear(); 2587 mFilters.clear();
2588 2588
2589 config->setGroup("General"); 2589 config->setGroup("General");
2590 QStringList filterList = config->readListEntry("CalendarFilters"); 2590 QStringList filterList = config->readListEntry("CalendarFilters");
2591 2591
2592 QStringList::ConstIterator it = filterList.begin(); 2592 QStringList::ConstIterator it = filterList.begin();
2593 QStringList::ConstIterator end = filterList.end(); 2593 QStringList::ConstIterator end = filterList.end();
2594 while(it != end) { 2594 while(it != end) {
2595 // kdDebug() << " filter: " << (*it) << endl; 2595 // kdDebug() << " filter: " << (*it) << endl;
2596 2596
2597 CalFilter *filter; 2597 CalFilter *filter;
2598 filter = new CalFilter(*it); 2598 filter = new CalFilter(*it);
2599 config->setGroup("Filter_" + (*it).utf8()); 2599 config->setGroup("Filter_" + (*it).utf8());
2600 //qDebug("readFilterSettings %d ",config->readNumEntry("Criteria",0) ); 2600 //qDebug("readFilterSettings %d ",config->readNumEntry("Criteria",0) );
2601 filter->setCriteria(config->readNumEntry("Criteria",0)); 2601 filter->setCriteria(config->readNumEntry("Criteria",0));
2602 filter->setCategoryList(config->readListEntry("CategoryList")); 2602 filter->setCategoryList(config->readListEntry("CategoryList"));
2603 mFilters.append(filter); 2603 mFilters.append(filter);
2604 2604
2605 ++it; 2605 ++it;
2606 } 2606 }
2607 2607
2608 if (mFilters.count() == 0) { 2608 if (mFilters.count() == 0) {
2609 CalFilter *filter = new CalFilter(i18n("Default")); 2609 CalFilter *filter = new CalFilter(i18n("Default"));
2610 mFilters.append(filter); 2610 mFilters.append(filter);
2611 } 2611 }
2612 mFilterView->updateFilters(); 2612 mFilterView->updateFilters();
2613 config->setGroup("FilterView"); 2613 config->setGroup("FilterView");
2614 2614
2615 mFilterView->blockSignals(true); 2615 mFilterView->blockSignals(true);
2616 mFilterView->setFiltersEnabled(config->readBoolEntry("FilterEnabled")); 2616 mFilterView->setFiltersEnabled(config->readBoolEntry("FilterEnabled"));
2617 mFilterView->setSelectedFilter(config->readEntry("Current Filter")); 2617 mFilterView->setSelectedFilter(config->readEntry("Current Filter"));
2618 mFilterView->blockSignals(false); 2618 mFilterView->blockSignals(false);
2619 // We do it manually to avoid it being done twice by the above calls 2619 // We do it manually to avoid it being done twice by the above calls
2620 updateFilter(); 2620 updateFilter();
2621} 2621}
2622 2622
2623void CalendarView::writeFilterSettings(KConfig *config) 2623void CalendarView::writeFilterSettings(KConfig *config)
2624{ 2624{
2625 // kdDebug() << "CalendarView::writeFilterSettings()" << endl; 2625 // kdDebug() << "CalendarView::writeFilterSettings()" << endl;
2626 2626
2627 QStringList filterList; 2627 QStringList filterList;
2628 2628
2629 CalFilter *filter = mFilters.first(); 2629 CalFilter *filter = mFilters.first();
2630 while(filter) { 2630 while(filter) {
2631 // kdDebug() << " fn: " << filter->name() << endl; 2631 // kdDebug() << " fn: " << filter->name() << endl;
2632 filterList << filter->name(); 2632 filterList << filter->name();
2633 config->setGroup("Filter_" + filter->name().utf8()); 2633 config->setGroup("Filter_" + filter->name().utf8());
2634 config->writeEntry("Criteria",filter->criteria()); 2634 config->writeEntry("Criteria",filter->criteria());
2635 config->writeEntry("CategoryList",filter->categoryList()); 2635 config->writeEntry("CategoryList",filter->categoryList());
2636 filter = mFilters.next(); 2636 filter = mFilters.next();
2637 } 2637 }
2638 config->setGroup("General"); 2638 config->setGroup("General");
2639 config->writeEntry("CalendarFilters",filterList); 2639 config->writeEntry("CalendarFilters",filterList);
2640 2640
2641 config->setGroup("FilterView"); 2641 config->setGroup("FilterView");
2642 config->writeEntry("FilterEnabled",mFilterView->filtersEnabled()); 2642 config->writeEntry("FilterEnabled",mFilterView->filtersEnabled());
2643 config->writeEntry("Current Filter",mFilterView->selectedFilter()->name()); 2643 config->writeEntry("Current Filter",mFilterView->selectedFilter()->name());
2644} 2644}
2645 2645
2646 2646
2647void CalendarView::goToday() 2647void CalendarView::goToday()
2648{ 2648{
2649 if ( mViewManager->currentView()->isMonthView() ) 2649 if ( mViewManager->currentView()->isMonthView() )
2650 mNavigator->selectTodayMonth(); 2650 mNavigator->selectTodayMonth();
2651 else 2651 else
2652 mNavigator->selectToday(); 2652 mNavigator->selectToday();
2653} 2653}
2654 2654
2655void CalendarView::goNext() 2655void CalendarView::goNext()
2656{ 2656{
2657 mNavigator->selectNext(); 2657 mNavigator->selectNext();
2658} 2658}
2659 2659
2660void CalendarView::goPrevious() 2660void CalendarView::goPrevious()
2661{ 2661{
2662 mNavigator->selectPrevious(); 2662 mNavigator->selectPrevious();
2663} 2663}
2664void CalendarView::goNextMonth() 2664void CalendarView::goNextMonth()
2665{ 2665{
2666 mNavigator->selectNextMonth(); 2666 mNavigator->selectNextMonth();
2667} 2667}
2668 2668
2669void CalendarView::goPreviousMonth() 2669void CalendarView::goPreviousMonth()
2670{ 2670{
2671 mNavigator->selectPreviousMonth(); 2671 mNavigator->selectPreviousMonth();
2672} 2672}
2673 2673
2674void CalendarView::updateConfig() 2674void CalendarView::updateConfig()
2675{ 2675{
2676 if ( KOPrefs::instance()->mUseAppColors ) 2676 if ( KOPrefs::instance()->mUseAppColors )
2677 QApplication::setPalette( QPalette (KOPrefs::instance()->mAppColor1, KOPrefs::instance()->mAppColor2), true ); 2677 QApplication::setPalette( QPalette (KOPrefs::instance()->mAppColor1, KOPrefs::instance()->mAppColor2), true );
2678 emit configChanged(); 2678 emit configChanged();
2679 mTodoList->updateConfig(); 2679 mTodoList->updateConfig();
2680 // mDateNavigator->setFont ( KOPrefs::instance()->mDateNavigatorFont); 2680 // mDateNavigator->setFont ( KOPrefs::instance()->mDateNavigatorFont);
2681 mCalendar->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); 2681 mCalendar->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId);
2682 // To make the "fill window" configurations work 2682 // To make the "fill window" configurations work
2683 //mViewManager->raiseCurrentView(); 2683 //mViewManager->raiseCurrentView();
2684} 2684}
2685 2685
2686 2686
2687void CalendarView::eventChanged(Event *event) 2687void CalendarView::eventChanged(Event *event)
2688{ 2688{
2689 changeEventDisplay(event,KOGlobals::EVENTEDITED); 2689 changeEventDisplay(event,KOGlobals::EVENTEDITED);
2690 //updateUnmanagedViews(); 2690 //updateUnmanagedViews();
2691} 2691}
2692 2692
2693void CalendarView::eventAdded(Event *event) 2693void CalendarView::eventAdded(Event *event)
2694{ 2694{
2695 changeEventDisplay(event,KOGlobals::EVENTADDED); 2695 changeEventDisplay(event,KOGlobals::EVENTADDED);
2696} 2696}
2697 2697
2698void CalendarView::eventToBeDeleted(Event *) 2698void CalendarView::eventToBeDeleted(Event *)
2699{ 2699{
2700 kdDebug() << "CalendarView::eventToBeDeleted(): to be implemented" << endl; 2700 kdDebug() << "CalendarView::eventToBeDeleted(): to be implemented" << endl;
2701} 2701}
2702 2702
2703void CalendarView::eventDeleted() 2703void CalendarView::eventDeleted()
2704{ 2704{
2705 changeEventDisplay(0,KOGlobals::EVENTDELETED); 2705 changeEventDisplay(0,KOGlobals::EVENTDELETED);
2706} 2706}
2707void CalendarView::changeTodoDisplay(Todo *which, int action) 2707void CalendarView::changeTodoDisplay(Todo *which, int action)
2708{ 2708{
2709 changeIncidenceDisplay((Incidence *)which, action); 2709 changeIncidenceDisplay((Incidence *)which, action);
2710 mDateNavigator->updateView(); //LR 2710 mDateNavigator->updateView(); //LR
2711 //mDialogManager->updateSearchDialog(); 2711 //mDialogManager->updateSearchDialog();
2712 2712
2713 if (which) { 2713 if (which) {
2714 mViewManager->updateWNview(); 2714 mViewManager->updateWNview();
2715 //mTodoList->updateView(); 2715 //mTodoList->updateView();
2716 } 2716 }
2717 2717
2718} 2718}
2719 2719
2720void CalendarView::changeIncidenceDisplay(Incidence *which, int action) 2720void CalendarView::changeIncidenceDisplay(Incidence *which, int action)
2721{ 2721{
2722 updateUnmanagedViews(); 2722 updateUnmanagedViews();
2723 //qDebug(" CalendarView::changeIncidenceDisplay++++++++++++++++++++++++++ %d %d ",which, action ); 2723 //qDebug(" CalendarView::changeIncidenceDisplay++++++++++++++++++++++++++ %d %d ",which, action );
2724 if ( action == KOGlobals::EVENTDELETED ) { //delete 2724 if ( action == KOGlobals::EVENTDELETED ) { //delete
2725 mCalendar->checkAlarmForIncidence( 0, true ); 2725 mCalendar->checkAlarmForIncidence( 0, true );
2726 if ( mEventViewerDialog ) 2726 if ( mEventViewerDialog )
2727 mEventViewerDialog->hide(); 2727 mEventViewerDialog->hide();
2728 } 2728 }
2729 else 2729 else
2730 mCalendar->checkAlarmForIncidence( which , false ); 2730 mCalendar->checkAlarmForIncidence( which , false );
2731} 2731}
2732 2732
2733// most of the changeEventDisplays() right now just call the view's 2733// most of the changeEventDisplays() right now just call the view's
2734// total update mode, but they SHOULD be recoded to be more refresh-efficient. 2734// total update mode, but they SHOULD be recoded to be more refresh-efficient.
2735void CalendarView::changeEventDisplay(Event *which, int action) 2735void CalendarView::changeEventDisplay(Event *which, int action)
2736{ 2736{
2737 // kdDebug() << "CalendarView::changeEventDisplay" << endl; 2737 // kdDebug() << "CalendarView::changeEventDisplay" << endl;
2738 changeIncidenceDisplay((Incidence *)which, action); 2738 changeIncidenceDisplay((Incidence *)which, action);
2739 static bool clearallviews = false; 2739 static bool clearallviews = false;
2740 if ( KOPrefs::instance()->mGlobalUpdateDisabled ) { 2740 if ( KOPrefs::instance()->mGlobalUpdateDisabled ) {
2741 if ( clearallviews ) { 2741 if ( clearallviews ) {
2742 clearAllViews(); 2742 clearAllViews();
2743 clearallviews = false; 2743 clearallviews = false;
2744 } 2744 }
2745 return; 2745 return;
2746 } 2746 }
2747 clearallviews = true; 2747 clearallviews = true;
2748 mDateNavigator->updateView(); 2748 mDateNavigator->updateView();
2749 //mDialogManager->updateSearchDialog(); 2749 //mDialogManager->updateSearchDialog();
2750 if (which) { 2750 if (which) {
2751 // If there is an event view visible update the display 2751 // If there is an event view visible update the display
2752 mViewManager->currentView()->changeEventDisplay(which,action); 2752 mViewManager->currentView()->changeEventDisplay(which,action);
2753 // TODO: check, if update needed 2753 // TODO: check, if update needed
2754 // if (which->getTodoStatus()) { 2754 // if (which->getTodoStatus()) {
2755 mTodoList->updateView(); 2755 mTodoList->updateView();
2756 if ( action != KOGlobals::EVENTDELETED ) { 2756 if ( action != KOGlobals::EVENTDELETED ) {
2757 mConflictingEvent = which ; 2757 mConflictingEvent = which ;
2758 QTimer::singleShot( 1000, this, SLOT ( checkConflictForEvent() ) ); 2758 QTimer::singleShot( 1000, this, SLOT ( checkConflictForEvent() ) );
2759 } 2759 }
2760 // } 2760 // }
2761 } else { 2761 } else {
2762 mViewManager->currentView()->updateView(); 2762 mViewManager->currentView()->updateView();
2763 } 2763 }
2764} 2764}
2765void CalendarView::checkConflictForEvent() 2765void CalendarView::checkConflictForEvent()
2766{ 2766{
2767 2767
2768 if (!KOPrefs::instance()->mConfirm) 2768 if (!KOPrefs::instance()->mConfirm)
2769 return; 2769 return;
2770 if ( ! mConflictingEvent ) return; 2770 if ( ! mConflictingEvent ) return;
2771 if ( mConflictingEvent->isHoliday() || mConflictingEvent->isBirthday() || mConflictingEvent->isAnniversary() ) { 2771 if ( mConflictingEvent->isHoliday() || mConflictingEvent->isBirthday() || mConflictingEvent->isAnniversary() ) {
2772 mConflictingEvent = 0; 2772 mConflictingEvent = 0;
2773 return; 2773 return;
2774 } 2774 }
2775 QPtrList<Event> testlist = mCalendar->events(); 2775 QPtrList<Event> testlist = mCalendar->events();
2776 Event * test = testlist.first(); 2776 Event * test = testlist.first();
2777 QDateTime conflict; 2777 QDateTime conflict;
2778 QDateTime retVal; 2778 QDateTime retVal;
2779 bool found = false; 2779 bool found = false;
2780 Event * cE = 0; 2780 Event * cE = 0;
2781 QDateTime current = QDateTime::currentDateTime(); 2781 QDateTime current = QDateTime::currentDateTime();
2782 while ( test ) { 2782 while ( test ) {
2783 if ( !test->doesFloat() ) { 2783 if ( !test->doesFloat() ) {
2784 if ( mConflictingEvent->isOverlapping ( test, &retVal, &current ) ) { 2784 if ( mConflictingEvent->isOverlapping ( test, &retVal, &current ) ) {
2785 if ( ! found ) { 2785 if ( ! found ) {
2786 conflict = retVal; 2786 conflict = retVal;
2787 cE = test; 2787 cE = test;
2788 } else { 2788 } else {
2789 if ( retVal < conflict ) { 2789 if ( retVal < conflict ) {
2790 conflict = retVal; 2790 conflict = retVal;
2791 cE = test; 2791 cE = test;
2792 } 2792 }
2793 } 2793 }
2794 found = true; 2794 found = true;
2795 } 2795 }
2796 } 2796 }
2797 test = testlist.next(); 2797 test = testlist.next();
2798 } 2798 }
2799 if ( found ) { 2799 if ( found ) {
2800 QString mess = i18n("The event\n%1\nconflicts with event\n%2\nat date\n%3.\n").arg(KGlobal::formatMessage ( mConflictingEvent->summary(),0 ) ).arg( KGlobal::formatMessage ( cE->summary(),0 )).arg(KGlobal::locale()->formatDate(conflict.date()) ) ; 2800 QString mess = i18n("The event\n%1\nconflicts with event\n%2\nat date\n%3.\n").arg(KGlobal::formatMessage ( mConflictingEvent->summary(),0 ) ).arg( KGlobal::formatMessage ( cE->summary(),0 )).arg(KGlobal::locale()->formatDate(conflict.date()) ) ;
2801 qApp->processEvents(); 2801 qApp->processEvents();
2802 int km = KMessageBox::warningContinueCancel(this,mess, 2802 int km = KMessageBox::warningContinueCancel(this,mess,
2803 i18n("KO/Pi Conflict delected"),i18n("Show date"),i18n("No problem!")); 2803 i18n("KO/Pi Conflict delected"),i18n("Show date"),i18n("No problem!"));
2804 if ( km != KMessageBox::Continue ) 2804 if ( km != KMessageBox::Continue )
2805 return; 2805 return;
2806 2806
2807 if ( mViewManager->currentView() != mViewManager->agendaView() || mNavigator->selectedDates().count() > 1 ) 2807 if ( mViewManager->currentView() != mViewManager->agendaView() || mNavigator->selectedDates().count() > 1 )
2808 mViewManager->showDayView(); 2808 mViewManager->showDayView();
2809 mNavigator->slotDaySelect( conflict.date() ); 2809 mNavigator->slotDaySelect( conflict.date() );
2810 int hour = conflict.time().hour(); 2810 int hour = conflict.time().hour();
2811 mViewManager->agendaView()->setStartHour( hour ); 2811 mViewManager->agendaView()->setStartHour( hour );
2812 topLevelWidget()->setCaption( i18n("Conflict %1 <-> %2"). arg( mConflictingEvent->summary().left( 20 ) ).arg( cE->summary().left( 20 ) ) ); 2812 topLevelWidget()->setCaption( i18n("Conflict %1 <-> %2"). arg( mConflictingEvent->summary().left( 20 ) ).arg( cE->summary().left( 20 ) ) );
2813 } 2813 }
2814 mConflictingEvent = 0; 2814 mConflictingEvent = 0;
2815 return; 2815 return;
2816 2816
2817} 2817}
2818 2818
2819void CalendarView::updateTodoViews() 2819void CalendarView::updateTodoViews()
2820{ 2820{
2821 mTodoList->updateView(); 2821 mTodoList->updateView();
2822 mViewManager->currentView()->updateView(); 2822 mViewManager->currentView()->updateView();
2823 2823
2824} 2824}
2825 2825
2826 2826
2827 2827
2828void CalendarView::clearAllViews() 2828void CalendarView::clearAllViews()
2829{ 2829{
2830 mTodoList->clearList(); 2830 mTodoList->clearList();
2831 mViewManager->clearAllViews(); 2831 mViewManager->clearAllViews();
2832 SearchDialog * sd = mDialogManager->getSearchDialog(); 2832 SearchDialog * sd = mDialogManager->getSearchDialog();
2833 if ( sd ) { 2833 if ( sd ) {
2834 KOListView* kol = sd->listview(); 2834 KOListView* kol = sd->listview();
2835 if ( kol ) 2835 if ( kol )
2836 kol->clearList(); 2836 kol->clearList();
2837 } 2837 }
2838} 2838}
2839void CalendarView::updateView() 2839void CalendarView::updateView()
2840{ 2840{
2841 static bool clearallviews = false; 2841 static bool clearallviews = false;
2842 if ( KOPrefs::instance()->mGlobalUpdateDisabled ) { 2842 if ( KOPrefs::instance()->mGlobalUpdateDisabled ) {
2843 if ( clearallviews ) { 2843 if ( clearallviews ) {
2844 clearAllViews(); 2844 clearAllViews();
2845 clearallviews = false; 2845 clearallviews = false;
2846 } 2846 }
2847 return; 2847 return;
2848 } 2848 }
2849 clearallviews = true; 2849 clearallviews = true;
2850 DateList tmpList = mNavigator->selectedDates(); 2850 DateList tmpList = mNavigator->selectedDates();
2851 2851
2852 if ( KOPrefs::instance()->mHideNonStartedTodos ) 2852 if ( KOPrefs::instance()->mHideNonStartedTodos )
2853 mTodoList->updateView(); 2853 mTodoList->updateView();
2854 // We assume that the navigator only selects consecutive days. 2854 // We assume that the navigator only selects consecutive days.
2855 updateView( tmpList.first(), tmpList.last() ); 2855 updateView( tmpList.first(), tmpList.last() );
2856} 2856}
2857 2857
2858void CalendarView::updateUnmanagedViews() 2858void CalendarView::updateUnmanagedViews()
2859{ 2859{
2860 mDateNavigator->updateDayMatrix(); 2860 mDateNavigator->updateDayMatrix();
2861} 2861}
2862 2862
2863int CalendarView::msgItemDelete(const QString name) 2863int CalendarView::msgItemDelete(const QString name)
2864{ 2864{
2865 return KMessageBox::warningContinueCancel(this,name +"\n\n"+ 2865 return KMessageBox::warningContinueCancel(this,name +"\n\n"+
2866 i18n("This item will be\npermanently deleted."), 2866 i18n("This item will be\npermanently deleted."),
2867 i18n("KO/Pi Confirmation"),i18n("Delete")); 2867 i18n("KO/Pi Confirmation"),i18n("Delete"));
2868} 2868}
2869 2869
2870 2870
2871void CalendarView::edit_cut() 2871void CalendarView::edit_cut()
2872{ 2872{
2873 Event *anEvent=0; 2873 Event *anEvent=0;
2874 2874
2875 Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); 2875 Incidence *incidence = mViewManager->currentView()->selectedIncidences().first();
2876 2876
2877 if (mViewManager->currentView()->isEventView()) { 2877 if (mViewManager->currentView()->isEventView()) {
2878 if ( incidence && incidence->typeID() == eventID ) { 2878 if ( incidence && incidence->typeID() == eventID ) {
2879 anEvent = static_cast<Event *>(incidence); 2879 anEvent = static_cast<Event *>(incidence);
2880 } 2880 }
2881 } 2881 }
2882 2882
2883 if (!anEvent) { 2883 if (!anEvent) {
2884 KNotifyClient::beep(); 2884 KNotifyClient::beep();
2885 return; 2885 return;
2886 } 2886 }
2887 DndFactory factory( mCalendar ); 2887 DndFactory factory( mCalendar );
2888 factory.cutIncidence(anEvent); 2888 factory.cutIncidence(anEvent);
2889 changeEventDisplay(anEvent, KOGlobals::EVENTDELETED); 2889 changeEventDisplay(anEvent, KOGlobals::EVENTDELETED);
2890} 2890}
2891 2891
2892void CalendarView::edit_copy() 2892void CalendarView::edit_copy()
2893{ 2893{
2894 Event *anEvent=0; 2894 Event *anEvent=0;
2895 2895
2896 Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); 2896 Incidence *incidence = mViewManager->currentView()->selectedIncidences().first();
2897 2897
2898 if (mViewManager->currentView()->isEventView()) { 2898 if (mViewManager->currentView()->isEventView()) {
2899 if ( incidence && incidence->typeID() == eventID ) { 2899 if ( incidence && incidence->typeID() == eventID ) {
2900 anEvent = static_cast<Event *>(incidence); 2900 anEvent = static_cast<Event *>(incidence);
2901 } 2901 }
2902 } 2902 }
2903 2903
2904 if (!anEvent) { 2904 if (!anEvent) {
2905 KNotifyClient::beep(); 2905 KNotifyClient::beep();
2906 return; 2906 return;
2907 } 2907 }
2908 DndFactory factory( mCalendar ); 2908 DndFactory factory( mCalendar );
2909 factory.copyIncidence(anEvent); 2909 factory.copyIncidence(anEvent);
2910} 2910}
2911 2911
2912void CalendarView::edit_paste() 2912void CalendarView::edit_paste()
2913{ 2913{
2914 QDate date = mNavigator->selectedDates().first(); 2914 QDate date = mNavigator->selectedDates().first();
2915 2915
2916 DndFactory factory( mCalendar ); 2916 DndFactory factory( mCalendar );
2917 Event *pastedEvent = (Event *)factory.pasteIncidence( date ); 2917 Event *pastedEvent = (Event *)factory.pasteIncidence( date );
2918 2918
2919 changeEventDisplay( pastedEvent, KOGlobals::EVENTADDED ); 2919 changeEventDisplay( pastedEvent, KOGlobals::EVENTADDED );
2920} 2920}
2921void CalendarView::edit_global_options() 2921void CalendarView::edit_global_options()
2922{ 2922{
2923 QString tz = KPimGlobalPrefs::instance()->mTimeZoneId; 2923 QString tz = KPimGlobalPrefs::instance()->mTimeZoneId;
2924 emit save(); 2924 emit save();
2925 emit saveStopTimer(); 2925 emit saveStopTimer();
2926 mDialogManager->showGlobalOptionsDialog(); 2926 mDialogManager->showGlobalOptionsDialog();
2927 if ( tz != KPimGlobalPrefs::instance()->mTimeZoneId) { 2927 if ( tz != KPimGlobalPrefs::instance()->mTimeZoneId) {
2928 emit saveStopTimer(); 2928 emit saveStopTimer();
2929 if ( KMessageBox::Cancel == KMessageBox::warningContinueCancel(this, i18n("The timezone has changed!\nShould the calendar be reloaded\nto shift the time of the events?\nPlease read Menu: Help->FAQ:\n\"How do I change the timezone?\"\nas well!"), 2929 if ( KMessageBox::Cancel == KMessageBox::warningContinueCancel(this, i18n("The timezone has changed!\nShould the calendar be reloaded\nto shift the time of the events?\nPlease read Menu: Help->FAQ:\n\"How do I change the timezone?\"\nas well!"),
2930 i18n("Timezone settings"),i18n("Reload"))) { 2930 i18n("Timezone settings"),i18n("Reload"))) {
2931 qDebug("KO: TZ reload cancelled "); 2931 qDebug("KO: TZ reload cancelled ");
2932 mCalendar->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); 2932 mCalendar->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId);
2933 return; 2933 return;
2934 } 2934 }
2935 qDebug("KO: Timezone change "); 2935 qDebug("KO: Timezone change ");
2936 loadCalendars(); 2936 loadCalendars();
2937 setModified(true); 2937 setModified(true);
2938 } 2938 }
2939 else 2939 else
2940 qDebug("KO: No tz change "); 2940 qDebug("KO: No tz change ");
2941} 2941}
2942void CalendarView::edit_options() 2942void CalendarView::edit_options()
2943{ 2943{
2944 mDialogManager->showOptionsDialog(); 2944 mDialogManager->showOptionsDialog();
2945} 2945}
2946 2946
2947 2947
2948void CalendarView::slotSelectPickerDate( QDate d) 2948void CalendarView::slotSelectPickerDate( QDate d)
2949{ 2949{
2950 mDateFrame->hide(); 2950 mDateFrame->hide();
2951 if ( mDatePickerMode == 1 ) { 2951 if ( mDatePickerMode == 1 ) {
2952 mNavigator->slotDaySelect( d ); 2952 mNavigator->slotDaySelect( d );
2953 } else if ( mDatePickerMode == 2 ) { 2953 } else if ( mDatePickerMode == 2 ) {
2954 if ( mMoveIncidence->typeID() == todoID ) { 2954 if ( mMoveIncidence->typeID() == todoID ) {
2955 Todo * to = (Todo *) mMoveIncidence; 2955 Todo * to = (Todo *) mMoveIncidence;
2956 QTime tim; 2956 QTime tim;
2957 int len = 0; 2957 int len = 0;
2958 if ( to->hasStartDate() && to->hasDueDate() ) 2958 if ( to->hasStartDate() && to->hasDueDate() )
2959 len = to->dtStart().secsTo( to->dtDue()); 2959 len = to->dtStart().secsTo( to->dtDue());
2960 if ( to->hasDueDate() ) 2960 if ( to->hasDueDate() )
2961 tim = to->dtDue().time(); 2961 tim = to->dtDue().time();
2962 else { 2962 else {
2963 tim = QTime ( 0,0,0 ); 2963 tim = QTime ( 0,0,0 );
2964 to->setFloats( true ); 2964 to->setFloats( true );
2965 to->setHasDueDate( true ); 2965 to->setHasDueDate( true );
2966 } 2966 }
2967 QDateTime dt ( d,tim ); 2967 QDateTime dt ( d,tim );
2968 to->setDtDue( dt ); 2968 to->setDtDue( dt );
2969 2969
2970 if ( to->hasStartDate() ) { 2970 if ( to->hasStartDate() ) {
2971 if ( len>0 ) 2971 if ( len>0 )
2972 to->setDtStart(to->dtDue().addSecs( -len )); 2972 to->setDtStart(to->dtDue().addSecs( -len ));
2973 else 2973 else
2974 if (to->dtStart() > to->dtDue() ) 2974 if (to->dtStart() > to->dtDue() )
2975 to->setDtStart(to->dtDue().addDays( -3 )); 2975 to->setDtStart(to->dtDue().addDays( -3 ));
2976 } 2976 }
2977 2977
2978 todoChanged( to ); 2978 todoChanged( to );
2979 } else if ( mMoveIncidence->typeID() == eventID ) { 2979 } else if ( mMoveIncidence->typeID() == eventID ) {
2980 if ( mMoveIncidence->doesRecur() ) { 2980 if ( mMoveIncidence->doesRecur() ) {
2981#if 0 2981#if 0
2982 // PENDING implement this 2982 // PENDING implement this
2983 Incidence* newInc = mMoveIncidence->recreateCloneException( mMoveIncidenceOldDate ); 2983 Incidence* newInc = mMoveIncidence->recreateCloneException( mMoveIncidenceOldDate );
2984 mCalendar()->addIncidence( newInc ); 2984 mCalendar()->addIncidence( newInc );
2985 if ( mMoveIncidence->typeID() == todoID ) 2985 if ( mMoveIncidence->typeID() == todoID )
2986 emit todoMoved((Todo*)mMoveIncidence, KOGlobals::EVENTEDITED ); 2986 emit todoMoved((Todo*)mMoveIncidence, KOGlobals::EVENTEDITED );
2987 else 2987 else
2988 emit incidenceChanged(mMoveIncidence, KOGlobals::EVENTEDITED); 2988 emit incidenceChanged(mMoveIncidence, KOGlobals::EVENTEDITED);
2989 mMoveIncidence = newInc; 2989 mMoveIncidence = newInc;
2990 2990
2991#endif 2991#endif
2992 } 2992 }
2993 QTime tim = mMoveIncidence->dtStart().time(); 2993 QTime tim = mMoveIncidence->dtStart().time();
2994 int secs = mMoveIncidence->dtStart().secsTo( mMoveIncidence->dtEnd()); 2994 int secs = mMoveIncidence->dtStart().secsTo( mMoveIncidence->dtEnd());
2995 QDateTime dt ( d,tim ); 2995 QDateTime dt ( d,tim );
2996 mMoveIncidence->setDtStart( dt ); 2996 mMoveIncidence->setDtStart( dt );
2997 ((Event*)mMoveIncidence)->setDtEnd( dt.addSecs( secs ) ); 2997 ((Event*)mMoveIncidence)->setDtEnd( dt.addSecs( secs ) );
2998 changeEventDisplay((Event*)mMoveIncidence, KOGlobals::EVENTEDITED); 2998 changeEventDisplay((Event*)mMoveIncidence, KOGlobals::EVENTEDITED);
2999 } else if ( mMoveIncidence->typeID() == journalID ) { 2999 } else if ( mMoveIncidence->typeID() == journalID ) {
3000 QTime tim = mMoveIncidence->dtStart().time(); 3000 QTime tim = mMoveIncidence->dtStart().time();
3001 QDateTime dt ( d,tim ); 3001 QDateTime dt ( d,tim );
3002 mMoveIncidence->setDtStart( dt ); 3002 mMoveIncidence->setDtStart( dt );
3003 updateView(); 3003 updateView();
3004 } 3004 }
3005 mMoveIncidence->setRevision( mMoveIncidence->revision()+1 ); 3005 mMoveIncidence->setRevision( mMoveIncidence->revision()+1 );
3006 } 3006 }
3007} 3007}
3008 3008
3009void CalendarView::removeCategories() 3009void CalendarView::removeCategories()
3010{ 3010{
3011 QPtrList<Incidence> incList = mCalendar->rawIncidences(); 3011 QPtrList<Incidence> incList = mCalendar->rawIncidences();
3012 QStringList catList = KOPrefs::instance()->mCustomCategories; 3012 QStringList catList = KOPrefs::instance()->mCustomCategories;
3013 QStringList catIncList; 3013 QStringList catIncList;
3014 QStringList newCatList; 3014 QStringList newCatList;
3015 Incidence* inc = incList.first(); 3015 Incidence* inc = incList.first();
3016 uint i; 3016 uint i;
3017 while ( inc ) { 3017 while ( inc ) {
3018 newCatList.clear(); 3018 newCatList.clear();
3019 catIncList = inc->categories() ; 3019 catIncList = inc->categories() ;
3020 for( i = 0; i< catIncList.count(); ++i ) { 3020 for( i = 0; i< catIncList.count(); ++i ) {
3021 if ( catList.contains (catIncList[i])) 3021 if ( catList.contains (catIncList[i]))
3022 newCatList.append( catIncList[i] ); 3022 newCatList.append( catIncList[i] );
3023 } 3023 }
3024 newCatList.sort(); 3024 newCatList.sort();
3025 inc->setCategories( newCatList.join(",") ); 3025 inc->setCategories( newCatList.join(",") );
3026 inc = incList.next(); 3026 inc = incList.next();
3027 } 3027 }
3028} 3028}
3029 3029
3030int CalendarView::addCategories() 3030int CalendarView::addCategories()
3031{ 3031{
3032 QPtrList<Incidence> incList = mCalendar->rawIncidences(); 3032 QPtrList<Incidence> incList = mCalendar->rawIncidences();
3033 QStringList catList = KOPrefs::instance()->mCustomCategories; 3033 QStringList catList = KOPrefs::instance()->mCustomCategories;
3034 QStringList catIncList; 3034 QStringList catIncList;
3035 Incidence* inc = incList.first(); 3035 Incidence* inc = incList.first();
3036 uint i; 3036 uint i;
3037 int count = 0; 3037 int count = 0;
3038 while ( inc ) { 3038 while ( inc ) {
3039 catIncList = inc->categories() ; 3039 catIncList = inc->categories() ;
3040 for( i = 0; i< catIncList.count(); ++i ) { 3040 for( i = 0; i< catIncList.count(); ++i ) {
3041 if ( !catList.contains (catIncList[i])) { 3041 if ( !catList.contains (catIncList[i])) {
3042 catList.append( catIncList[i] ); 3042 catList.append( catIncList[i] );
3043 //qDebug("add cat %s ", catIncList[i].latin1()); 3043 //qDebug("add cat %s ", catIncList[i].latin1());
3044 ++count; 3044 ++count;
3045 } 3045 }
3046 } 3046 }
3047 inc = incList.next(); 3047 inc = incList.next();
3048 } 3048 }
3049 catList.sort(); 3049 catList.sort();
3050 KOPrefs::instance()->mCustomCategories = catList; 3050 KOPrefs::instance()->mCustomCategories = catList;
3051 return count; 3051 return count;
3052} 3052}
3053 3053
3054void CalendarView::editCategories() 3054void CalendarView::editCategories()
3055{ 3055{
3056 qDebug("CalendarView::editCategories() "); 3056 qDebug("CalendarView::editCategories() ");
3057 KPIM::CategoryEditDialog ced (KOPrefs::instance(),this ); 3057 KPIM::CategoryEditDialog ced (KOPrefs::instance(),this );
3058 ced.exec(); 3058 ced.exec();
3059} 3059}
3060void CalendarView::manageCategories() 3060void CalendarView::manageCategories()
3061{ 3061{
3062 KOCatPrefs* cp = new KOCatPrefs(); 3062 KOCatPrefs* cp = new KOCatPrefs();
3063 cp->show(); 3063 cp->show();
3064 int w =cp->sizeHint().width() ; 3064 int w =cp->sizeHint().width() ;
3065 int h = cp->sizeHint().height() ; 3065 int h = cp->sizeHint().height() ;
3066 int dw = QApplication::desktop()->width(); 3066 int dw = QApplication::desktop()->width();
3067 int dh = QApplication::desktop()->height(); 3067 int dh = QApplication::desktop()->height();
3068 cp->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); 3068 cp->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h );
3069 if ( !cp->exec() ) { 3069 if ( !cp->exec() ) {
3070 delete cp; 3070 delete cp;
3071 return; 3071 return;
3072 } 3072 }
3073 int count = 0; 3073 int count = 0;
3074 if ( cp->addCat() ) { 3074 if ( cp->addCat() ) {
3075 count = addCategories(); 3075 count = addCategories();
3076 if ( count ) { 3076 if ( count ) {
3077 topLevelWidget()->setCaption(QString::number( count )+ i18n(" Categories added to list! ")); 3077 topLevelWidget()->setCaption(QString::number( count )+ i18n(" Categories added to list! "));
3078 writeSettings(); 3078 writeSettings();
3079 } else 3079 } else
3080 topLevelWidget()->setCaption(QString::number( 0 )+ i18n(" Categories added to list! ")); 3080 topLevelWidget()->setCaption(QString::number( 0 )+ i18n(" Categories added to list! "));
3081 } else { 3081 } else {
3082 removeCategories(); 3082 removeCategories();
3083 updateView(); 3083 updateView();
3084 } 3084 }
3085 delete cp; 3085 delete cp;
3086} 3086}
3087 3087
3088void CalendarView::beamIncidence(Incidence * Inc) 3088void CalendarView::beamIncidence(Incidence * Inc)
3089{ 3089{
3090 QPtrList<Incidence> delSel ; 3090 QPtrList<Incidence> delSel ;
3091 delSel.append(Inc); 3091 delSel.append(Inc);
3092 beamIncidenceList( delSel ); 3092 beamIncidenceList( delSel );
3093} 3093}
3094void CalendarView::beamCalendar() 3094void CalendarView::beamCalendar()
3095{ 3095{
3096 QPtrList<Incidence> delSel = mCalendar->rawIncidences(); 3096 QPtrList<Incidence> delSel = mCalendar->rawIncidences();
3097 //qDebug("beamCalendar() "); 3097 //qDebug("beamCalendar() ");
3098 beamIncidenceList( delSel ); 3098 beamIncidenceList( delSel );
3099} 3099}
3100void CalendarView::beamFilteredCalendar() 3100void CalendarView::beamFilteredCalendar()
3101{ 3101{
3102 QPtrList<Incidence> delSel = mCalendar->incidences(); 3102 QPtrList<Incidence> delSel = mCalendar->incidences();
3103 //qDebug("beamFilteredCalendar() "); 3103 //qDebug("beamFilteredCalendar() ");
3104 beamIncidenceList( delSel ); 3104 beamIncidenceList( delSel );
3105} 3105}
3106void CalendarView::beamIncidenceList(QPtrList<Incidence> delSel ) 3106void CalendarView::beamIncidenceList(QPtrList<Incidence> delSel )
3107{ 3107{
3108 3108
3109 KOBeamPrefs beamDialog; 3109 KOBeamPrefs beamDialog;
3110 if ( beamDialog.exec () == QDialog::Rejected ) 3110 if ( beamDialog.exec () == QDialog::Rejected )
3111 return; 3111 return;
3112#ifdef DESKTOP_VERSION 3112#ifdef DESKTOP_VERSION
3113 QString fn = locateLocal( "tmp", "kopibeamfile" ); 3113 QString fn = locateLocal( "tmp", "kopibeamfile" );
3114#else 3114#else
3115 QString fn = "/tmp/kopibeamfile"; 3115 QString fn = "/tmp/kopibeamfile";
3116#endif 3116#endif
3117 QString mes; 3117 QString mes;
3118 bool createbup = true; 3118 bool createbup = true;
3119 if ( createbup ) { 3119 if ( createbup ) {
3120 QString description = "\n"; 3120 QString description = "\n";
3121 CalendarLocal* cal = new CalendarLocal(); 3121 CalendarLocal* cal = new CalendarLocal();
3122 if ( beamDialog.beamLocal() ) 3122 if ( beamDialog.beamLocal() )
3123 cal->setLocalTime(); 3123 cal->setLocalTime();
3124 else 3124 else
3125 cal->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); 3125 cal->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId);
3126 Incidence *incidence = delSel.first(); 3126 Incidence *incidence = delSel.first();
3127 bool addText = false; 3127 bool addText = false;
3128 if ( delSel.count() < 10 ) 3128 if ( delSel.count() < 10 )
3129 addText = true; 3129 addText = true;
3130 else { 3130 else {
3131 description.sprintf(i18n(" %d items?"),delSel.count() ); 3131 description.sprintf(i18n(" %d items?"),delSel.count() );
3132 } 3132 }
3133 while ( incidence ) { 3133 while ( incidence ) {
3134 Incidence *in = incidence->clone(); 3134 Incidence *in = incidence->clone();
3135 if ( ! in->summary().isEmpty() ) { 3135 if ( ! in->summary().isEmpty() ) {
3136 in->setDescription(""); 3136 in->setDescription("");
3137 } else { 3137 } else {
3138 in->setSummary( in->description().left(20)); 3138 in->setSummary( in->description().left(20));
3139 in->setDescription(""); 3139 in->setDescription("");
3140 } 3140 }
3141 if ( addText ) 3141 if ( addText )
3142 description += in->summary() + "\n"; 3142 description += in->summary() + "\n";
3143 cal->addIncidence( in ); 3143 cal->addIncidence( in );
3144 incidence = delSel.next(); 3144 incidence = delSel.next();
3145 } 3145 }
3146 if ( beamDialog.beamVcal() ) { 3146 if ( beamDialog.beamVcal() ) {
3147 fn += ".vcs"; 3147 fn += ".vcs";
3148 FileStorage storage( cal, fn, new VCalFormat ); 3148 FileStorage storage( cal, fn, new VCalFormat );
3149 storage.save(); 3149 storage.save();
3150 } else { 3150 } else {
3151 fn += ".ics"; 3151 fn += ".ics";
3152 FileStorage storage( cal, fn, new ICalFormat( ) ); 3152 FileStorage storage( cal, fn, new ICalFormat( ) );
3153 storage.save(); 3153 storage.save();
3154 } 3154 }
3155 delete cal; 3155 delete cal;
3156 mes = i18n("KO/Pi: Ready for beaming"); 3156 mes = i18n("KO/Pi: Ready for beaming");
3157 topLevelWidget()->setCaption(mes); 3157 topLevelWidget()->setCaption(mes);
3158 KApplication::convert2latin1( fn ); 3158 KApplication::convert2latin1( fn );
3159#ifndef DESKTOP_VERSION 3159#ifndef DESKTOP_VERSION
3160 Ir *ir = new Ir( this ); 3160 Ir *ir = new Ir( this );
3161 connect( ir, SIGNAL( done( Ir * ) ), this, SLOT( beamDone( Ir * ) ) ); 3161 connect( ir, SIGNAL( done( Ir * ) ), this, SLOT( beamDone( Ir * ) ) );
3162 ir->send( fn, description, "text/x-vCalendar" ); 3162 ir->send( fn, description, "text/x-vCalendar" );
3163#endif 3163#endif
3164 } 3164 }
3165} 3165}
3166 3166
3167#ifndef DESKTOP_VERSION 3167#ifndef DESKTOP_VERSION
3168void CalendarView::beamDone( Ir *ir ) 3168void CalendarView::beamDone( Ir *ir )
3169{ 3169{
3170 delete ir; 3170 delete ir;
3171 topLevelWidget()->setCaption( i18n("KO/Pi: Beaming done.") ); 3171 topLevelWidget()->setCaption( i18n("KO/Pi: Beaming done.") );
3172 topLevelWidget()->raise(); 3172 topLevelWidget()->raise();
3173} 3173}
3174#else 3174#else
3175void CalendarView::beamDone( Ir *){;} 3175void CalendarView::beamDone( Ir *){;}
3176#endif 3176#endif
3177void CalendarView::moveIncidence(Incidence * inc ) 3177void CalendarView::moveIncidence(Incidence * inc )
3178{ 3178{
3179 if ( !inc ) return; 3179 if ( !inc ) return;
3180 showDatePickerPopup(); 3180 showDatePickerPopup();
3181 mDatePickerMode = 2; 3181 mDatePickerMode = 2;
3182 mMoveIncidence = inc ; 3182 mMoveIncidence = inc ;
3183 QDate da; 3183 QDate da;
3184 if ( mMoveIncidence->typeID() == todoID ) { 3184 if ( mMoveIncidence->typeID() == todoID ) {
3185 Todo * to = (Todo *) mMoveIncidence; 3185 Todo * to = (Todo *) mMoveIncidence;
3186 if ( to->hasDueDate() ) 3186 if ( to->hasDueDate() )
3187 da = to->dtDue().date(); 3187 da = to->dtDue().date();
3188 else 3188 else
3189 da = QDate::currentDate(); 3189 da = QDate::currentDate();
3190 } else { 3190 } else {
3191 da = mMoveIncidence->dtStart().date(); 3191 da = mMoveIncidence->dtStart().date();
3192 } 3192 }
3193 //PENDING set date for recurring incidence to date of recurrence 3193 //PENDING set date for recurring incidence to date of recurrence
3194 //mMoveIncidenceOldDate; 3194 //mMoveIncidenceOldDate;
3195 mDatePicker->setDate( da ); 3195 mDatePicker->setDate( da );
3196} 3196}
3197void CalendarView::showDatePickerPopup() 3197void CalendarView::showDatePickerPopup()
3198{ 3198{
3199 if ( mDateFrame->isVisible() ) 3199 if ( mDateFrame->isVisible() )
3200 mDateFrame->hide(); 3200 mDateFrame->hide();
3201 else { 3201 else {
3202 int offX = 0, offY = 0; 3202 int offX = 0, offY = 0;
3203#ifdef DESKTOP_VERSION 3203#ifdef DESKTOP_VERSION
3204 int w =mDatePicker->sizeHint().width() ; 3204 int w =mDatePicker->sizeHint().width() ;
3205 int h = mDatePicker->sizeHint().height() ; 3205 int h = mDatePicker->sizeHint().height() ;
3206 int dw = topLevelWidget()->width(); 3206 int dw = topLevelWidget()->width();
3207 int dh = topLevelWidget()->height(); 3207 int dh = topLevelWidget()->height();
3208 offX = topLevelWidget()->x(); 3208 offX = topLevelWidget()->x();
3209 offY = topLevelWidget()->y(); 3209 offY = topLevelWidget()->y();
3210#else 3210#else
3211 int w =mDatePicker->sizeHint().width() ; 3211 int w =mDatePicker->sizeHint().width() ;
3212 int h = mDatePicker->sizeHint().height() ; 3212 int h = mDatePicker->sizeHint().height() ;
3213 int dw = QApplication::desktop()->width(); 3213 int dw = QApplication::desktop()->width();
3214 int dh = QApplication::desktop()->height(); 3214 int dh = QApplication::desktop()->height();
3215#endif 3215#endif
3216 mDateFrame->setGeometry( (dw-w)/2+offX, (dh - h )/2+offY ,w,h ); 3216 mDateFrame->setGeometry( (dw-w)/2+offX, (dh - h )/2+offY ,w,h );
3217 mDateFrame->show(); 3217 mDateFrame->show();
3218 } 3218 }
3219} 3219}
3220void CalendarView::showDatePicker( ) 3220void CalendarView::showDatePicker( )
3221{ 3221{
3222 showDatePickerPopup(); 3222 showDatePickerPopup();
3223 mDatePickerMode = 1; 3223 mDatePickerMode = 1;
3224 mDatePicker->setDate( mNavigator->selectedDates().first() ); 3224 mDatePicker->setDate( mNavigator->selectedDates().first() );
3225} 3225}
3226 3226
3227void CalendarView::showEventEditor() 3227void CalendarView::showEventEditor()
3228{ 3228{
3229#ifdef DESKTOP_VERSION 3229#ifdef DESKTOP_VERSION
3230 int x,y,w,h; 3230 int x,y,w,h;
3231 x = mEventEditor->geometry().x(); 3231 x = mEventEditor->geometry().x();
3232 y = mEventEditor->geometry().y(); 3232 y = mEventEditor->geometry().y();
3233 w = mEventEditor->width(); 3233 w = mEventEditor->width();
3234 h = mEventEditor->height(); 3234 h = mEventEditor->height();
3235 mEventEditor->show(); 3235 mEventEditor->show();
3236 mEventEditor->setGeometry(x,y,w,h); 3236 mEventEditor->setGeometry(x,y,w,h);
3237#else 3237#else
3238 if ( mEventEditor->width() < QApplication::desktop()->width() -60 || mEventEditor->width() > QApplication::desktop()->width() ) { 3238 if ( mEventEditor->width() < QApplication::desktop()->width() -60 || mEventEditor->width() > QApplication::desktop()->width() ) {
3239 topLevelWidget()->setCaption( i18n("Recreating edit dialog. Please wait...") ); 3239 topLevelWidget()->setCaption( i18n("Recreating edit dialog. Please wait...") );
3240 qDebug("KO: CalendarView: recreate mEventEditor %d %d", mEventEditor->width(), QApplication::desktop()->width() ); 3240 qDebug("KO: CalendarView: recreate mEventEditor %d %d", mEventEditor->width(), QApplication::desktop()->width() );
3241 qApp->processEvents(); 3241 qApp->processEvents();
3242 delete mEventEditor; 3242 delete mEventEditor;
3243 mEventEditor = mDialogManager->getEventEditor(); 3243 mEventEditor = mDialogManager->getEventEditor();
3244 topLevelWidget()->setCaption( i18n("") ); 3244 topLevelWidget()->setCaption( i18n("") );
3245 } 3245 }
3246 mEventEditor->showMaximized(); 3246 mEventEditor->showMaximized();
3247#endif 3247#endif
3248} 3248}
3249void CalendarView::showTodoEditor() 3249void CalendarView::showTodoEditor()
3250{ 3250{
3251#ifdef DESKTOP_VERSION 3251#ifdef DESKTOP_VERSION
3252 int x,y,w,h; 3252 int x,y,w,h;
3253 x = mTodoEditor->geometry().x(); 3253 x = mTodoEditor->geometry().x();
3254 y = mTodoEditor->geometry().y(); 3254 y = mTodoEditor->geometry().y();
3255 w = mTodoEditor->width(); 3255 w = mTodoEditor->width();
3256 h = mTodoEditor->height(); 3256 h = mTodoEditor->height();
3257 mTodoEditor->show(); 3257 mTodoEditor->show();
3258 mTodoEditor->setGeometry(x,y,w,h); 3258 mTodoEditor->setGeometry(x,y,w,h);
3259#else 3259#else
3260 if ( mTodoEditor->width() < QApplication::desktop()->width() -60|| mTodoEditor->width() > QApplication::desktop()->width() ) { 3260 if ( mTodoEditor->width() < QApplication::desktop()->width() -60|| mTodoEditor->width() > QApplication::desktop()->width() ) {
3261 topLevelWidget()->setCaption( i18n("Recreating edit dialog. Please wait...") ); 3261 topLevelWidget()->setCaption( i18n("Recreating edit dialog. Please wait...") );
3262 qDebug("KO: CalendarView: recreate mTodoEditor %d %d ", mTodoEditor->width() ,QApplication::desktop()->width() ); 3262 qDebug("KO: CalendarView: recreate mTodoEditor %d %d ", mTodoEditor->width() ,QApplication::desktop()->width() );
3263 qApp->processEvents(); 3263 qApp->processEvents();
3264 delete mTodoEditor; 3264 delete mTodoEditor;
3265 mTodoEditor = mDialogManager->getTodoEditor(); 3265 mTodoEditor = mDialogManager->getTodoEditor();
3266 topLevelWidget()->setCaption( i18n("") ); 3266 topLevelWidget()->setCaption( i18n("") );
3267 } 3267 }
3268 mTodoEditor->showMaximized(); 3268 mTodoEditor->showMaximized();
3269#endif 3269#endif
3270} 3270}
3271 3271
3272void CalendarView::cloneIncidence() 3272void CalendarView::cloneIncidence()
3273{ 3273{
3274 Incidence *incidence = currentSelection(); 3274 Incidence *incidence = currentSelection();
3275 if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); 3275 if ( !incidence ) incidence = mTodoList->selectedIncidences().first();
3276 if ( incidence ) { 3276 if ( incidence ) {
3277 cloneIncidence(incidence); 3277 cloneIncidence(incidence);
3278 } 3278 }
3279} 3279}
3280void CalendarView::moveIncidence() 3280void CalendarView::moveIncidence()
3281{ 3281{
3282 Incidence *incidence = currentSelection(); 3282 Incidence *incidence = currentSelection();
3283 if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); 3283 if ( !incidence ) incidence = mTodoList->selectedIncidences().first();
3284 if ( incidence ) { 3284 if ( incidence ) {
3285 moveIncidence(incidence); 3285 moveIncidence(incidence);
3286 } 3286 }
3287} 3287}
3288void CalendarView::beamIncidence() 3288void CalendarView::beamIncidence()
3289{ 3289{
3290 Incidence *incidence = currentSelection(); 3290 Incidence *incidence = currentSelection();
3291 if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); 3291 if ( !incidence ) incidence = mTodoList->selectedIncidences().first();
3292 if ( incidence ) { 3292 if ( incidence ) {
3293 beamIncidence(incidence); 3293 beamIncidence(incidence);
3294 } 3294 }
3295} 3295}
3296void CalendarView::toggleCancelIncidence() 3296void CalendarView::toggleCancelIncidence()
3297{ 3297{
3298 Incidence *incidence = currentSelection(); 3298 Incidence *incidence = currentSelection();
3299 if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); 3299 if ( !incidence ) incidence = mTodoList->selectedIncidences().first();
3300 if ( incidence ) { 3300 if ( incidence ) {
3301 cancelIncidence(incidence); 3301 cancelIncidence(incidence);
3302 } 3302 }
3303} 3303}
3304 3304
3305 3305
3306void CalendarView::cancelIncidence(Incidence * inc ) 3306void CalendarView::cancelIncidence(Incidence * inc )
3307{ 3307{
3308 inc->setCancelled( ! inc->cancelled() ); 3308 inc->setCancelled( ! inc->cancelled() );
3309 changeIncidenceDisplay( inc,KOGlobals::EVENTEDITED ); 3309 changeIncidenceDisplay( inc,KOGlobals::EVENTEDITED );
3310 updateView(); 3310 updateView();
3311} 3311}
3312void CalendarView::cloneIncidence(Incidence * orgInc ) 3312void CalendarView::cloneIncidence(Incidence * orgInc )
3313{ 3313{
3314 Incidence * newInc = orgInc->clone(); 3314 Incidence * newInc = orgInc->clone();
3315 newInc->recreate(); 3315 newInc->recreate();
3316 3316
3317 if ( newInc->typeID() == todoID ) { 3317 if ( newInc->typeID() == todoID ) {
3318 Todo* t = (Todo*) newInc; 3318 Todo* t = (Todo*) newInc;
3319 bool cloneSub = false; 3319 bool cloneSub = false;
3320 if ( orgInc->relations().count() ) { 3320 if ( orgInc->relations().count() ) {
3321 int result = KMessageBox::warningYesNoCancel(this, 3321 int result = KMessageBox::warningYesNoCancel(this,
3322 i18n("The todo\n%1\nwill be cloned!\nIt has subtodos!\nDo you want to clone\nall subtodos as well?").arg( KGlobal::formatMessage ( newInc->summary(),0 ) ), 3322 i18n("The todo\n%1\nwill be cloned!\nIt has subtodos!\nDo you want to clone\nall subtodos as well?").arg( KGlobal::formatMessage ( newInc->summary(),0 ) ),
3323 i18n("Todo has subtodos"), 3323 i18n("Todo has subtodos"),
3324 i18n("Yes"), 3324 i18n("Yes"),
3325 i18n("No")); 3325 i18n("No"));
3326 3326
3327 if ( result == KMessageBox::Cancel ) { 3327 if ( result == KMessageBox::Cancel ) {
3328 delete t; 3328 delete t;
3329 return; 3329 return;
3330 } 3330 }
3331 if (result == KMessageBox::Yes) cloneSub = true; 3331 if (result == KMessageBox::Yes) cloneSub = true;
3332 } 3332 }
3333 showTodoEditor(); 3333 showTodoEditor();
3334 mTodoEditor->editTodo( t ); 3334 mTodoEditor->editTodo( t );
3335 if ( mTodoEditor->exec() ) { 3335 if ( mTodoEditor->exec() ) {
3336 if ( cloneSub ) { 3336 if ( cloneSub ) {
3337 orgInc->cloneRelations( t ); 3337 orgInc->cloneRelations( t );
3338 mCalendar->addIncidenceBranch( t ); 3338 mCalendar->addIncidenceBranch( t );
3339 updateView(); 3339 updateView();
3340 3340
3341 } else { 3341 } else {
3342 mCalendar->addTodo( t ); 3342 mCalendar->addTodo( t );
3343 updateView(); 3343 updateView();
3344 } 3344 }
3345 } else { 3345 } else {
3346 delete t; 3346 delete t;
3347 } 3347 }
3348 } 3348 }
3349 else if ( newInc->typeID() == eventID ) { 3349 else if ( newInc->typeID() == eventID ) {
3350 Event* e = (Event*) newInc; 3350 Event* e = (Event*) newInc;
3351 showEventEditor(); 3351 showEventEditor();
3352 mEventEditor->editEvent( e ); 3352 mEventEditor->editEvent( e );
3353 if ( mEventEditor->exec() ) { 3353 if ( mEventEditor->exec() ) {
3354 mCalendar->addEvent( e ); 3354 mCalendar->addEvent( e );
3355 updateView(); 3355 updateView();
3356 } else { 3356 } else {
3357 delete e; 3357 delete e;
3358 } 3358 }
3359 } if ( newInc->typeID() == journalID ) { 3359 } if ( newInc->typeID() == journalID ) {
3360 mCalendar->addJournal( (Journal*) newInc ); 3360 mCalendar->addJournal( (Journal*) newInc );
3361 editJournal( (Journal*) newInc ); 3361 editJournal( (Journal*) newInc );
3362 } 3362 }
3363 setActiveWindow(); 3363 setActiveWindow();
3364} 3364}
3365 3365
3366void CalendarView::newEvent() 3366void CalendarView::newEvent()
3367{ 3367{
3368 // TODO: Replace this code by a common eventDurationHint of KOBaseView. 3368 // TODO: Replace this code by a common eventDurationHint of KOBaseView.
3369 KOAgendaView *aView = mViewManager->agendaView(); 3369 KOAgendaView *aView = mViewManager->agendaView();
3370 if (aView) { 3370 if (aView) {
3371 if (aView->selectionStart().isValid()) { 3371 if (aView->selectionStart().isValid()) {
3372 if (aView->selectedIsAllDay()) { 3372 if (aView->selectedIsAllDay()) {
3373 newEvent(aView->selectionStart(),aView->selectionEnd(),true); 3373 newEvent(aView->selectionStart(),aView->selectionEnd(),true);
3374 } else { 3374 } else {
3375 newEvent(aView->selectionStart(),aView->selectionEnd()); 3375 newEvent(aView->selectionStart(),aView->selectionEnd());
3376 } 3376 }
3377 return; 3377 return;
3378 } 3378 }
3379 } 3379 }
3380 3380
3381 QDate date = mNavigator->selectedDates().first(); 3381 QDate date = mNavigator->selectedDates().first();
3382#if 0 3382#if 0
3383 QDateTime current = QDateTime::currentDateTime(); 3383 QDateTime current = QDateTime::currentDateTime();
3384 if ( date <= current.date() ) { 3384 if ( date <= current.date() ) {
3385 int hour = current.time().hour() +1; 3385 int hour = current.time().hour() +1;
3386 newEvent( QDateTime( current.date(), QTime( hour, 0, 0 ) ), 3386 newEvent( QDateTime( current.date(), QTime( hour, 0, 0 ) ),
3387 QDateTime( current.date(), QTime( hour+ KOPrefs::instance()->mDefaultDuration, 0, 0 ) ) ); 3387 QDateTime( current.date(), QTime( hour+ KOPrefs::instance()->mDefaultDuration, 0, 0 ) ) );
3388 } else 3388 } else
3389#endif 3389#endif
3390 newEvent( QDateTime( date, QTime( KOPrefs::instance()->mStartTime, 0, 0 ) ), 3390 newEvent( QDateTime( date, QTime( KOPrefs::instance()->mStartTime, 0, 0 ) ),
3391 QDateTime( date, QTime( KOPrefs::instance()->mStartTime + 3391 QDateTime( date, QTime( KOPrefs::instance()->mStartTime +
3392 KOPrefs::instance()->mDefaultDuration, 0, 0 ) ) ); 3392 KOPrefs::instance()->mDefaultDuration, 0, 0 ) ) );
3393} 3393}
3394 3394
3395void CalendarView::newEvent(QDateTime fh) 3395void CalendarView::newEvent(QDateTime fh)
3396{ 3396{
3397 newEvent(fh, 3397 newEvent(fh,
3398 QDateTime(fh.addSecs(3600*KOPrefs::instance()->mDefaultDuration))); 3398 QDateTime(fh.addSecs(3600*KOPrefs::instance()->mDefaultDuration)));
3399} 3399}
3400 3400
3401void CalendarView::newEvent(QDate dt) 3401void CalendarView::newEvent(QDate dt)
3402{ 3402{
3403 newEvent(QDateTime(dt, QTime(0,0,0)), 3403 newEvent(QDateTime(dt, QTime(0,0,0)),
3404 QDateTime(dt, QTime(0,0,0)), true); 3404 QDateTime(dt, QTime(0,0,0)), true);
3405} 3405}
3406void CalendarView::newEvent(QDateTime fromHint, QDateTime toHint) 3406void CalendarView::newEvent(QDateTime fromHint, QDateTime toHint)
3407{ 3407{
3408 newEvent(fromHint, toHint, false); 3408 newEvent(fromHint, toHint, false);
3409} 3409}
3410void CalendarView::newEvent(QDateTime fromHint, QDateTime toHint, bool allDay) 3410void CalendarView::newEvent(QDateTime fromHint, QDateTime toHint, bool allDay)
3411{ 3411{
3412 3412
3413 showEventEditor(); 3413 showEventEditor();
3414 mEventEditor->newEvent(fromHint,toHint,allDay); 3414 mEventEditor->newEvent(fromHint,toHint,allDay);
3415 if ( mFilterView->filtersEnabled() ) { 3415 if ( mFilterView->filtersEnabled() ) {
3416 CalFilter *filter = mFilterView->selectedFilter(); 3416 CalFilter *filter = mFilterView->selectedFilter();
3417 if (filter && filter->showCategories()) { 3417 if (filter && filter->showCategories()) {
3418 mEventEditor->setCategories(filter->categoryList().join(",") ); 3418 mEventEditor->setCategories(filter->categoryList().join(",") );
3419 } 3419 }
3420 if ( filter ) 3420 if ( filter )
3421 mEventEditor->setSecrecy( filter->getSecrecy() ); 3421 mEventEditor->setSecrecy( filter->getSecrecy() );
3422 } 3422 }
3423 mEventEditor->exec(); 3423 mEventEditor->exec();
3424 setActiveWindow(); 3424 setActiveWindow();
3425} 3425}
3426void CalendarView::todoAdded(Todo * t) 3426void CalendarView::todoAdded(Todo * t)
3427{ 3427{
3428 3428
3429 changeTodoDisplay ( t ,KOGlobals::EVENTADDED); 3429 changeTodoDisplay ( t ,KOGlobals::EVENTADDED);
3430 updateTodoViews(); 3430 updateTodoViews();
3431} 3431}
3432void CalendarView::todoChanged(Todo * t) 3432void CalendarView::todoChanged(Todo * t)
3433{ 3433{
3434 emit todoModified( t, 4 ); 3434 emit todoModified( t, 4 );
3435 // updateTodoViews(); 3435 // updateTodoViews();
3436} 3436}
3437void CalendarView::todoToBeDeleted(Todo *) 3437void CalendarView::todoToBeDeleted(Todo *)
3438{ 3438{
3439 //qDebug("todoToBeDeleted(Todo *) "); 3439 //qDebug("todoToBeDeleted(Todo *) ");
3440 updateTodoViews(); 3440 updateTodoViews();
3441} 3441}
3442void CalendarView::todoDeleted() 3442void CalendarView::todoDeleted()
3443{ 3443{
3444 //qDebug(" todoDeleted()"); 3444 //qDebug(" todoDeleted()");
3445 updateTodoViews(); 3445 updateTodoViews();
3446} 3446}
3447 3447
3448 3448
3449void CalendarView::newTodoDateTime( QDateTime dt, bool allday ) 3449void CalendarView::newTodoDateTime( QDateTime dt, bool allday )
3450{ 3450{
3451 showTodoEditor(); 3451 showTodoEditor();
3452 mTodoEditor->newTodo(dt,0,allday); 3452 mTodoEditor->newTodo(dt,0,allday);
3453 if ( mFilterView->filtersEnabled() ) { 3453 if ( mFilterView->filtersEnabled() ) {
3454 CalFilter *filter = mFilterView->selectedFilter(); 3454 CalFilter *filter = mFilterView->selectedFilter();
3455 if (filter && filter->showCategories()) { 3455 if (filter && filter->showCategories()) {
3456 mTodoEditor->setCategories(filter->categoryList().join(",") ); 3456 mTodoEditor->setCategories(filter->categoryList().join(",") );
3457 } 3457 }
3458 if ( filter ) 3458 if ( filter )
3459 mTodoEditor->setSecrecy( filter->getSecrecy() ); 3459 mTodoEditor->setSecrecy( filter->getSecrecy() );
3460 } 3460 }
3461 mTodoEditor->exec(); 3461 mTodoEditor->exec();
3462 setActiveWindow(); 3462 setActiveWindow();
3463} 3463}
3464 3464
3465void CalendarView::newTodo() 3465void CalendarView::newTodo()
3466{ 3466{
3467 newTodoDateTime( QDateTime(),true ); 3467 newTodoDateTime( QDateTime(),true );
3468} 3468}
3469 3469
3470void CalendarView::newSubTodo() 3470void CalendarView::newSubTodo()
3471{ 3471{
3472 Todo *todo = selectedTodo(); 3472 Todo *todo = selectedTodo();
3473 if ( todo ) newSubTodo( todo ); 3473 if ( todo ) newSubTodo( todo );
3474} 3474}
3475 3475
3476void CalendarView::newSubTodo(Todo *parentEvent) 3476void CalendarView::newSubTodo(Todo *parentEvent)
3477{ 3477{
3478 3478
3479 showTodoEditor(); 3479 showTodoEditor();
3480 mTodoEditor->newTodo(QDateTime(),parentEvent,true); 3480 mTodoEditor->newTodo(QDateTime(),parentEvent,true);
3481 mTodoEditor->exec(); 3481 mTodoEditor->exec();
3482 setActiveWindow(); 3482 setActiveWindow();
3483} 3483}
3484 3484
3485void CalendarView::newFloatingEvent() 3485void CalendarView::newFloatingEvent()
3486{ 3486{
3487 DateList tmpList = mNavigator->selectedDates(); 3487 DateList tmpList = mNavigator->selectedDates();
3488 QDate date = tmpList.first(); 3488 QDate date = tmpList.first();
3489 3489
3490 newEvent( QDateTime( date, QTime( 12, 0, 0 ) ), 3490 newEvent( QDateTime( date, QTime( 12, 0, 0 ) ),
3491 QDateTime( date, QTime( 12, 0, 0 ) ), true ); 3491 QDateTime( date, QTime( 12, 0, 0 ) ), true );
3492} 3492}
3493 3493
3494 3494
3495void CalendarView::editEvent( Event *event ) 3495void CalendarView::editEvent( Event *event )
3496{ 3496{
3497 3497
3498 if ( !event ) return; 3498 if ( !event ) return;
3499 if ( event->isReadOnly() ) { 3499 if ( event->isReadOnly() ) {
3500 showEvent( event ); 3500 showEvent( event );
3501 return; 3501 return;
3502 } 3502 }
3503 showEventEditor(); 3503 showEventEditor();
3504 mEventEditor->editEvent( event , mFlagEditDescription); 3504 mEventEditor->editEvent( event , mFlagEditDescription);
3505 mEventEditor->exec(); 3505 mEventEditor->exec();
3506 setActiveWindow(); 3506 setActiveWindow();
3507 3507
3508} 3508}
3509void CalendarView::editJournal( Journal *jour ) 3509void CalendarView::editJournal( Journal *jour )
3510{ 3510{
3511 if ( !jour ) return; 3511 if ( !jour ) return;
3512 mDialogManager->hideSearchDialog(); 3512 mDialogManager->hideSearchDialog();
3513 mViewManager->showJournalView(); 3513 mViewManager->showJournalView();
3514 mNavigator->slotDaySelect( jour->dtStart().date() ); 3514 mNavigator->slotDaySelect( jour->dtStart().date() );
3515} 3515}
3516void CalendarView::editTodo( Todo *todo ) 3516void CalendarView::editTodo( Todo *todo )
3517{ 3517{
3518 if ( !todo ) return; 3518 if ( !todo ) return;
3519 3519
3520 if ( todo->isReadOnly() ) { 3520 if ( todo->isReadOnly() ) {
3521 showTodo( todo ); 3521 showTodo( todo );
3522 return; 3522 return;
3523 } 3523 }
3524 showTodoEditor(); 3524 showTodoEditor();
3525 mTodoEditor->editTodo( todo ,mFlagEditDescription); 3525 mTodoEditor->editTodo( todo ,mFlagEditDescription);
3526 mTodoEditor->exec(); 3526 mTodoEditor->exec();
3527 setActiveWindow(); 3527 setActiveWindow();
3528 3528
3529} 3529}
3530 3530
3531KOEventViewerDialog* CalendarView::getEventViewerDialog() 3531KOEventViewerDialog* CalendarView::getEventViewerDialog()
3532{ 3532{
3533 if ( !mEventViewerDialog ) { 3533 if ( !mEventViewerDialog ) {
3534 mEventViewerDialog = new KOEventViewerDialog(0); 3534 mEventViewerDialog = new KOEventViewerDialog(0);
3535 connect( mEventViewerDialog, SIGNAL( editIncidence( Incidence* )), this, SLOT(editIncidence( Incidence* ) ) ); 3535 connect( mEventViewerDialog, SIGNAL( editIncidence( Incidence* )), this, SLOT(editIncidence( Incidence* ) ) );
3536 connect( this, SIGNAL(configChanged()), mEventViewerDialog, SLOT(updateConfig())); 3536 connect( this, SIGNAL(configChanged()), mEventViewerDialog, SLOT(updateConfig()));
3537 connect( mEventViewerDialog, SIGNAL(jumpToTime( const QDate &)), 3537 connect( mEventViewerDialog, SIGNAL(jumpToTime( const QDate &)),
3538 dateNavigator(), SLOT( selectWeek( const QDate & ) ) ); 3538 dateNavigator(), SLOT( selectWeek( const QDate & ) ) );
3539 connect( mEventViewerDialog, SIGNAL(showAgendaView( bool ) ), 3539 connect( mEventViewerDialog, SIGNAL(showAgendaView( bool ) ),
3540 viewManager(), SLOT( showAgendaView( bool ) ) ); 3540 viewManager(), SLOT( showAgendaView( bool ) ) );
3541 connect( mEventViewerDialog, SIGNAL(signalViewerClosed()), 3541 connect( mEventViewerDialog, SIGNAL(signalViewerClosed()),
3542 this, SLOT( slotViewerClosed() ) ); 3542 this, SLOT( slotViewerClosed() ) );
3543 connect( mEventViewerDialog, SIGNAL( todoCompleted(Todo *) ), 3543 connect( mEventViewerDialog, SIGNAL( todoCompleted(Todo *) ),
3544 this, SLOT( todoChanged(Todo *) ) ); 3544 this, SLOT( todoChanged(Todo *) ) );
3545 connect( mEventViewerDialog, SIGNAL( showIncidence( QString ) ),SLOT( showIncidence( QString ) )); 3545 connect( mEventViewerDialog, SIGNAL( showIncidence( QString ) ),SLOT( showIncidence( QString ) ));
3546 mEventViewerDialog->resize( 640, 480 ); 3546 mEventViewerDialog->resize( 640, 480 );
3547 3547
3548 } 3548 }
3549 return mEventViewerDialog; 3549 return mEventViewerDialog;
3550} 3550}
3551void CalendarView::showEvent(Event *event) 3551void CalendarView::showEvent(Event *event)
3552{ 3552{
3553 getEventViewerDialog()->setEvent(event); 3553 getEventViewerDialog()->setEvent(event);
3554 getEventViewerDialog()->showMe(); 3554 getEventViewerDialog()->showMe();
3555} 3555}
3556 3556
3557void CalendarView::showTodo(Todo *event) 3557void CalendarView::showTodo(Todo *event)
3558{ 3558{
3559 getEventViewerDialog()->setTodo(event); 3559 getEventViewerDialog()->setTodo(event);
3560 getEventViewerDialog()->showMe(); 3560 getEventViewerDialog()->showMe();
3561} 3561}
3562void CalendarView::showJournal( Journal *jour ) 3562void CalendarView::showJournal( Journal *jour )
3563{ 3563{
3564 getEventViewerDialog()->setJournal(jour); 3564 getEventViewerDialog()->setJournal(jour);
3565 getEventViewerDialog()->showMe(); 3565 getEventViewerDialog()->showMe();
3566 3566
3567} 3567}
3568// void CalendarView::todoModified (Todo *event, int changed) 3568// void CalendarView::todoModified (Todo *event, int changed)
3569// { 3569// {
3570// // if (mDialogList.find (event) != mDialogList.end ()) { 3570// // if (mDialogList.find (event) != mDialogList.end ()) {
3571// // kdDebug() << "Todo modified and open" << endl; 3571// // kdDebug() << "Todo modified and open" << endl;
3572// // KOTodoEditor* temp = (KOTodoEditor *) mDialogList[event]; 3572// // KOTodoEditor* temp = (KOTodoEditor *) mDialogList[event];
3573// // temp->modified (changed); 3573// // temp->modified (changed);
3574 3574
3575// // } 3575// // }
3576 3576
3577// mViewManager->updateView(); 3577// mViewManager->updateView();
3578// } 3578// }
3579 3579
3580void CalendarView::appointment_show() 3580void CalendarView::appointment_show()
3581{ 3581{
3582 Event *anEvent = 0; 3582 Event *anEvent = 0;
3583 3583
3584 Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); 3584 Incidence *incidence = mViewManager->currentView()->selectedIncidences().first();
3585 3585
3586 if (mViewManager->currentView()->isEventView()) { 3586 if (mViewManager->currentView()->isEventView()) {
3587 if ( incidence && incidence->typeID() == eventID ) { 3587 if ( incidence && incidence->typeID() == eventID ) {
3588 anEvent = static_cast<Event *>(incidence); 3588 anEvent = static_cast<Event *>(incidence);
3589 } 3589 }
3590 } 3590 }
3591 3591
3592 if (!anEvent) { 3592 if (!anEvent) {
3593 KNotifyClient::beep(); 3593 KNotifyClient::beep();
3594 return; 3594 return;
3595 } 3595 }
3596 3596
3597 showEvent(anEvent); 3597 showEvent(anEvent);
3598} 3598}
3599 3599
3600void CalendarView::appointment_edit() 3600void CalendarView::appointment_edit()
3601{ 3601{
3602 Event *anEvent = 0; 3602 Event *anEvent = 0;
3603 3603
3604 Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); 3604 Incidence *incidence = mViewManager->currentView()->selectedIncidences().first();
3605 3605
3606 if (mViewManager->currentView()->isEventView()) { 3606 if (mViewManager->currentView()->isEventView()) {
3607 if ( incidence && incidence->typeID() == eventID ) { 3607 if ( incidence && incidence->typeID() == eventID ) {
3608 anEvent = static_cast<Event *>(incidence); 3608 anEvent = static_cast<Event *>(incidence);
3609 } 3609 }
3610 } 3610 }
3611 3611
3612 if (!anEvent) { 3612 if (!anEvent) {
3613 KNotifyClient::beep(); 3613 KNotifyClient::beep();
3614 return; 3614 return;
3615 } 3615 }
3616 3616
3617 editEvent(anEvent); 3617 editEvent(anEvent);
3618} 3618}
3619 3619
3620void CalendarView::appointment_delete() 3620void CalendarView::appointment_delete()
3621{ 3621{
3622 Event *anEvent = 0; 3622 Event *anEvent = 0;
3623 3623
3624 Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); 3624 Incidence *incidence = mViewManager->currentView()->selectedIncidences().first();
3625 3625
3626 if (mViewManager->currentView()->isEventView()) { 3626 if (mViewManager->currentView()->isEventView()) {
3627 if ( incidence && incidence->typeID() == eventID ) { 3627 if ( incidence && incidence->typeID() == eventID ) {
3628 anEvent = static_cast<Event *>(incidence); 3628 anEvent = static_cast<Event *>(incidence);
3629 } 3629 }
3630 } 3630 }
3631 3631
3632 if (!anEvent) { 3632 if (!anEvent) {
3633 KNotifyClient::beep(); 3633 KNotifyClient::beep();
3634 return; 3634 return;
3635 } 3635 }
3636 3636
3637 deleteEvent(anEvent); 3637 deleteEvent(anEvent);
3638} 3638}
3639 3639
3640void CalendarView::todo_resub( Todo * parent, Todo * sub ) 3640void CalendarView::todo_resub( Todo * parent, Todo * sub )
3641{ 3641{
3642 if (!sub) return; 3642 if (!sub) return;
3643 if ( sub->relatedTo() == parent ) 3643 if ( sub->relatedTo() == parent )
3644 return; 3644 return;
3645 sub->setRelatedTo(parent); 3645 sub->setRelatedTo(parent);
3646 sub->updated(); 3646 sub->updated();
3647 setModified(true); 3647 setModified(true);
3648 updateView(); 3648 updateView();
3649} 3649}
3650void CalendarView::todo_unsub(Todo *anTodo ) 3650void CalendarView::todo_unsub(Todo *anTodo )
3651{ 3651{
3652 todo_resub( 0, anTodo ); 3652 todo_resub( 0, anTodo );
3653} 3653}
3654 3654
3655void CalendarView::deleteTodo(Todo *todo) 3655void CalendarView::deleteTodo(Todo *todo)
3656{ 3656{
3657 if (!todo) { 3657 if (!todo) {
3658 KNotifyClient::beep(); 3658 KNotifyClient::beep();
3659 return; 3659 return;
3660 } 3660 }
3661 if (KOPrefs::instance()->mConfirm) { 3661 if (KOPrefs::instance()->mConfirm) {
3662 QString text = KGlobal::formatMessage ( todo->summary(),0 ); 3662 QString text = KGlobal::formatMessage ( todo->summary(),0 );
3663 if (!todo->relations().isEmpty()) { 3663 if (!todo->relations().isEmpty()) {
3664 text += i18n("\nhas sub-todos.\nAll completed sub-todos\nwill be deleted as well!"); 3664 text += i18n("\nhas sub-todos.\nAll completed sub-todos\nwill be deleted as well!");
3665 3665
3666 } 3666 }
3667 switch (msgItemDelete(i18n("Todo:") +"\n"+text)) { 3667 switch (msgItemDelete(i18n("Todo:") +"\n"+text)) {
3668 case KMessageBox::Continue: // OK 3668 case KMessageBox::Continue: // OK
3669 bool deleteT = false; 3669 bool deleteT = false;
3670 if (!todo->relations().isEmpty()) { 3670 if (!todo->relations().isEmpty()) {
3671 deleteT = removeCompletedSubTodos( todo ); 3671 deleteT = removeCompletedSubTodos( todo );
3672 } 3672 }
3673 // deleteT == true: todo already deleted in removeCompletedSubTodos 3673 // deleteT == true: todo already deleted in removeCompletedSubTodos
3674 if ( !deleteT ) { 3674 if ( !deleteT ) {
3675 checkExternalId( todo ); 3675 checkExternalId( todo );
3676 calendar()->deleteTodo(todo); 3676 calendar()->deleteTodo(todo);
3677 changeTodoDisplay( todo,KOGlobals::EVENTDELETED ); 3677 changeTodoDisplay( todo,KOGlobals::EVENTDELETED );
3678 updateView(); 3678 updateView();
3679 } 3679 }
3680 break; 3680 break;
3681 } // switch 3681 } // switch
3682 } else { 3682 } else {
3683 checkExternalId( todo ); 3683 checkExternalId( todo );
3684 mCalendar->deleteTodo(todo); 3684 mCalendar->deleteTodo(todo);
3685 changeTodoDisplay( todo,KOGlobals::EVENTDELETED ); 3685 changeTodoDisplay( todo,KOGlobals::EVENTDELETED );
3686 updateView(); 3686 updateView();
3687 } 3687 }
3688 3688
3689 emit updateSearchDialog(); 3689 emit updateSearchDialog();
3690} 3690}
3691void CalendarView::deleteJournal(Journal *jour) 3691void CalendarView::deleteJournal(Journal *jour)
3692{ 3692{
3693 if (!jour) { 3693 if (!jour) {
3694 KNotifyClient::beep(); 3694 KNotifyClient::beep();
3695 return; 3695 return;
3696 } 3696 }
3697 if (KOPrefs::instance()->mConfirm) { 3697 if (KOPrefs::instance()->mConfirm) {
3698 3698
3699 QString des; 3699 QString des;
3700 if ( !jour->summary().isEmpty() ) { 3700 if ( !jour->summary().isEmpty() ) {
3701 des = jour->summary(); 3701 des = jour->summary();
3702 } else { 3702 } else {
3703 des = jour->description().left(30); 3703 des = jour->description().left(30);
3704 des = des.simplifyWhiteSpace (); 3704 des = des.simplifyWhiteSpace ();
3705 des.replace (QRegExp ("\\n"),"" ); 3705 des.replace (QRegExp ("\\n"),"" );
3706 des.replace (QRegExp ("\\r"),"" ); 3706 des.replace (QRegExp ("\\r"),"" );
3707 } 3707 }
3708 switch (msgItemDelete( i18n("Journal:") +"\n"+KGlobal::formatMessage ( des,0 ))) { 3708 switch (msgItemDelete( i18n("Journal:") +"\n"+KGlobal::formatMessage ( des,0 ))) {
3709 case KMessageBox::Continue: // OK 3709 case KMessageBox::Continue: // OK
3710 calendar()->deleteJournal(jour); 3710 calendar()->deleteJournal(jour);
3711 updateView(); 3711 updateView();
3712 break; 3712 break;
3713 } // switch 3713 } // switch
3714 } else { 3714 } else {
3715 calendar()->deleteJournal(jour);; 3715 calendar()->deleteJournal(jour);;
3716 updateView(); 3716 updateView();
3717 } 3717 }
3718 emit updateSearchDialog(); 3718 emit updateSearchDialog();
3719} 3719}
3720 3720
3721void CalendarView::deleteEvent(Event *anEvent) 3721void CalendarView::deleteEvent(Event *anEvent)
3722{ 3722{
3723 if (!anEvent) { 3723 if (!anEvent) {
3724 KNotifyClient::beep(); 3724 KNotifyClient::beep();
3725 return; 3725 return;
3726 } 3726 }
3727 3727
3728 if (anEvent->recurrence()->doesRecur()) { 3728 if (anEvent->recurrence()->doesRecur()) {
3729 QDate itemDate = mViewManager->currentSelectionDate(); 3729 QDate itemDate = mViewManager->currentSelectionDate();
3730 int km; 3730 int km;
3731 if (!itemDate.isValid()) { 3731 if (!itemDate.isValid()) {
3732 //kdDebug() << "Date Not Valid" << endl; 3732 //kdDebug() << "Date Not Valid" << endl;
3733 if (KOPrefs::instance()->mConfirm) { 3733 if (KOPrefs::instance()->mConfirm) {
3734 km = KMessageBox::warningContinueCancel(this,KGlobal::formatMessage ( anEvent->summary(),0 ) + 3734 km = KMessageBox::warningContinueCancel(this,KGlobal::formatMessage ( anEvent->summary(),0 ) +
3735 i18n("\nThis event recurs\nover multiple dates.\nAre you sure you want\nto delete this event\nand all its recurrences?"), 3735 i18n("\nThis event recurs\nover multiple dates.\nAre you sure you want\nto delete this event\nand all its recurrences?"),
3736 i18n("KO/Pi Confirmation"),i18n("Delete All")); 3736 i18n("KO/Pi Confirmation"),i18n("Delete All"));
3737 if ( km == KMessageBox::Continue ) 3737 if ( km == KMessageBox::Continue )
3738 km = KMessageBox::No; // No = all below 3738 km = KMessageBox::No; // No = all below
3739 } else 3739 } else
3740 km = KMessageBox::No; 3740 km = KMessageBox::No;
3741 } else { 3741 } else {
3742 km = KMessageBox::warningYesNoCancel(this,KGlobal::formatMessage ( anEvent->summary(),0 ) + 3742 km = KMessageBox::warningYesNoCancel(this,KGlobal::formatMessage ( anEvent->summary(),0 ) +
3743 i18n("\nThis event recurs\nover multiple dates.\nDo you want to delete\nall it's recurrences,\nor only the current one on:\n")+ 3743 i18n("\nThis event recurs\nover multiple dates.\nDo you want to delete\nall it's recurrences,\nor only the current one on:\n")+
3744 KGlobal::locale()->formatDate(itemDate)+i18n(" ?\n\nDelete:\n"), 3744 KGlobal::locale()->formatDate(itemDate)+i18n(" ?\n\nDelete:\n"),
3745 i18n("KO/Pi Confirmation"),i18n("Current"), 3745 i18n("KO/Pi Confirmation"),i18n("Current"),
3746 i18n("All")); 3746 i18n("All"));
3747 } 3747 }
3748 switch(km) { 3748 switch(km) {
3749 3749
3750 case KMessageBox::No: // Continue // all 3750 case KMessageBox::No: // Continue // all
3751 //qDebug("KMessageBox::No "); 3751 //qDebug("KMessageBox::No ");
3752 if (anEvent->organizer()==KOPrefs::instance()->email() && anEvent->attendeeCount()>0) 3752 if (anEvent->organizer()==KOPrefs::instance()->email() && anEvent->attendeeCount()>0)
3753 schedule(Scheduler::Cancel,anEvent); 3753 schedule(Scheduler::Cancel,anEvent);
3754 3754
3755 checkExternalId( anEvent); 3755 checkExternalId( anEvent);
3756 mCalendar->deleteEvent(anEvent); 3756 mCalendar->deleteEvent(anEvent);
3757 changeEventDisplay(anEvent,KOGlobals::EVENTDELETED); 3757 changeEventDisplay(anEvent,KOGlobals::EVENTDELETED);
3758 break; 3758 break;
3759 3759
3760 // Disabled because it does not work 3760 // Disabled because it does not work
3761 //#if 0 3761 //#if 0
3762 case KMessageBox::Yes: // just this one 3762 case KMessageBox::Yes: // just this one
3763 //QDate qd = mNavigator->selectedDates().first(); 3763 //QDate qd = mNavigator->selectedDates().first();
3764 //if (!qd.isValid()) { 3764 //if (!qd.isValid()) {
3765 // kdDebug() << "no date selected, or invalid date" << endl; 3765 // kdDebug() << "no date selected, or invalid date" << endl;
3766 // KNotifyClient::beep(); 3766 // KNotifyClient::beep();
3767 // return; 3767 // return;
3768 //} 3768 //}
3769 //while (!anEvent->recursOn(qd)) qd = qd.addDays(1); 3769 //while (!anEvent->recursOn(qd)) qd = qd.addDays(1);
3770 if (itemDate!=QDate(1,1,1) || itemDate.isValid()) { 3770 if (itemDate!=QDate(1,1,1) || itemDate.isValid()) {
3771 anEvent->addExDate(itemDate); 3771 anEvent->addExDate(itemDate);
3772 int duration = anEvent->recurrence()->duration(); 3772 int duration = anEvent->recurrence()->duration();
3773 if ( duration > 0 ) { 3773 if ( duration > 0 ) {
3774 anEvent->recurrence()->setDuration( duration - 1 ); 3774 anEvent->recurrence()->setDuration( duration - 1 );
3775 } 3775 }
3776 changeEventDisplay(anEvent, KOGlobals::EVENTEDITED); 3776 changeEventDisplay(anEvent, KOGlobals::EVENTEDITED);
3777 } 3777 }
3778 break; 3778 break;
3779 //#endif 3779 //#endif
3780 } // switch 3780 } // switch
3781 } else { 3781 } else {
3782 if (KOPrefs::instance()->mConfirm) { 3782 if (KOPrefs::instance()->mConfirm) {
3783 switch (KMessageBox::warningContinueCancel(this,KGlobal::formatMessage ( anEvent->summary(),0 ) + 3783 switch (KMessageBox::warningContinueCancel(this,KGlobal::formatMessage ( anEvent->summary(),0 ) +
3784 i18n("\nAre you sure you want\nto delete this event?"), 3784 i18n("\nAre you sure you want\nto delete this event?"),
3785 i18n("KO/Pi Confirmation"),i18n("Delete"))) { 3785 i18n("KO/Pi Confirmation"),i18n("Delete"))) {
3786 case KMessageBox::Continue: // OK 3786 case KMessageBox::Continue: // OK
3787 if (anEvent->organizer()==KOPrefs::instance()->email() && anEvent->attendeeCount()>0) 3787 if (anEvent->organizer()==KOPrefs::instance()->email() && anEvent->attendeeCount()>0)
3788 schedule(Scheduler::Cancel,anEvent); 3788 schedule(Scheduler::Cancel,anEvent);
3789 checkExternalId( anEvent); 3789 checkExternalId( anEvent);
3790 mCalendar->deleteEvent(anEvent); 3790 mCalendar->deleteEvent(anEvent);
3791 changeEventDisplay(anEvent, KOGlobals::EVENTDELETED); 3791 changeEventDisplay(anEvent, KOGlobals::EVENTDELETED);
3792 break; 3792 break;
3793 } // switch 3793 } // switch
3794 } else { 3794 } else {
3795 if (anEvent->organizer()==KOPrefs::instance()->email() && anEvent->attendeeCount()>0) 3795 if (anEvent->organizer()==KOPrefs::instance()->email() && anEvent->attendeeCount()>0)
3796 schedule(Scheduler::Cancel,anEvent); 3796 schedule(Scheduler::Cancel,anEvent);
3797 checkExternalId( anEvent); 3797 checkExternalId( anEvent);
3798 mCalendar->deleteEvent(anEvent); 3798 mCalendar->deleteEvent(anEvent);
3799 changeEventDisplay(anEvent, KOGlobals::EVENTDELETED); 3799 changeEventDisplay(anEvent, KOGlobals::EVENTDELETED);
3800 } 3800 }
3801 } // if-else 3801 } // if-else
3802 emit updateSearchDialog(); 3802 emit updateSearchDialog();
3803} 3803}
3804 3804
3805bool CalendarView::deleteEvent(const QString &uid) 3805bool CalendarView::deleteEvent(const QString &uid)
3806{ 3806{
3807 Event *ev = mCalendar->event(uid); 3807 Event *ev = mCalendar->event(uid);
3808 if (ev) { 3808 if (ev) {
3809 deleteEvent(ev); 3809 deleteEvent(ev);
3810 return true; 3810 return true;
3811 } else { 3811 } else {
3812 return false; 3812 return false;
3813 } 3813 }
3814} 3814}
3815 3815
3816/*****************************************************************************/ 3816/*****************************************************************************/
3817 3817
3818void CalendarView::action_mail() 3818void CalendarView::action_mail()
3819{ 3819{
3820#ifndef KORG_NOMAIL 3820#ifndef KORG_NOMAIL
3821 KOMailClient mailClient; 3821 KOMailClient mailClient;
3822 3822
3823 Incidence *incidence = currentSelection(); 3823 Incidence *incidence = currentSelection();
3824 3824
3825 if (!incidence) { 3825 if (!incidence) {
3826 KMessageBox::sorry(this,i18n("Can't generate mail:\nNo event selected.")); 3826 KMessageBox::sorry(this,i18n("Can't generate mail:\nNo event selected."));
3827 return; 3827 return;
3828 } 3828 }
3829 if(incidence->attendeeCount() == 0 ) { 3829 if(incidence->attendeeCount() == 0 ) {
3830 KMessageBox::sorry(this, 3830 KMessageBox::sorry(this,
3831 i18n("Can't generate mail:\nNo attendees defined.\n")); 3831 i18n("Can't generate mail:\nNo attendees defined.\n"));
3832 return; 3832 return;
3833 } 3833 }
3834 3834
3835 CalendarLocal cal_tmp; 3835 CalendarLocal cal_tmp;
3836 Event *event = 0; 3836 Event *event = 0;
3837 Event *ev = 0; 3837 Event *ev = 0;
3838 if ( incidence && incidence->typeID() == eventID ) { 3838 if ( incidence && incidence->typeID() == eventID ) {
3839 event = static_cast<Event *>(incidence); 3839 event = static_cast<Event *>(incidence);
3840 ev = new Event(*event); 3840 ev = new Event(*event);
3841 cal_tmp.addEvent(ev); 3841 cal_tmp.addEvent(ev);
3842 } 3842 }
3843 ICalFormat mForm(); 3843 ICalFormat mForm();
3844 QString attachment = mForm.toString( &cal_tmp ); 3844 QString attachment = mForm.toString( &cal_tmp );
3845 if (ev) delete(ev); 3845 if (ev) delete(ev);
3846 3846
3847 mailClient.mailAttendees(currentSelection(), attachment); 3847 mailClient.mailAttendees(currentSelection(), attachment);
3848 3848
3849#endif 3849#endif
3850 3850
3851#if 0 3851#if 0
3852 Event *anEvent = 0; 3852 Event *anEvent = 0;
3853 if (mViewManager->currentView()->isEventView()) { 3853 if (mViewManager->currentView()->isEventView()) {
3854 anEvent = dynamic_cast<Event *>((mViewManager->currentView()->selectedIncidences()).first()); 3854 anEvent = dynamic_cast<Event *>((mViewManager->currentView()->selectedIncidences()).first());
3855 } 3855 }
3856 3856
3857 if (!anEvent) { 3857 if (!anEvent) {
3858 KMessageBox::sorry(this,i18n("Can't generate mail:\nNo event selected.")); 3858 KMessageBox::sorry(this,i18n("Can't generate mail:\nNo event selected."));
3859 return; 3859 return;
3860 } 3860 }
3861 if(anEvent->attendeeCount() == 0 ) { 3861 if(anEvent->attendeeCount() == 0 ) {
3862 KMessageBox::sorry(this, 3862 KMessageBox::sorry(this,
3863 i18n("Can't generate mail:\nNo attendees defined.\n")); 3863 i18n("Can't generate mail:\nNo attendees defined.\n"));
3864 return; 3864 return;
3865 } 3865 }
3866 3866
3867 mailobject.emailEvent(anEvent); 3867 mailobject.emailEvent(anEvent);
3868#endif 3868#endif
3869} 3869}
3870 3870
3871 3871
3872void CalendarView::schedule_publish(Incidence *incidence) 3872void CalendarView::schedule_publish(Incidence *incidence)
3873{ 3873{
3874 Event *event = 0; 3874 Event *event = 0;
3875 Todo *todo = 0; 3875 Todo *todo = 0;
3876 3876
3877 if (incidence == 0) { 3877 if (incidence == 0) {
3878 incidence = mViewManager->currentView()->selectedIncidences().first(); 3878 incidence = mViewManager->currentView()->selectedIncidences().first();
3879 if (incidence == 0) { 3879 if (incidence == 0) {
3880 incidence = mTodoList->selectedIncidences().first(); 3880 incidence = mTodoList->selectedIncidences().first();
3881 } 3881 }
3882 } 3882 }
3883 if ( incidence && incidence->typeID() == eventID ) { 3883 if ( incidence && incidence->typeID() == eventID ) {
3884 event = static_cast<Event *>(incidence); 3884 event = static_cast<Event *>(incidence);
3885 } else { 3885 } else {
3886 if ( incidence && incidence->typeID() == todoID ) { 3886 if ( incidence && incidence->typeID() == todoID ) {
3887 todo = static_cast<Todo *>(incidence); 3887 todo = static_cast<Todo *>(incidence);
3888 } 3888 }
3889 } 3889 }
3890 3890
3891 if (!event && !todo) { 3891 if (!event && !todo) {
3892 KMessageBox::sorry(this,i18n("No event selected.")); 3892 KMessageBox::sorry(this,i18n("No event selected."));
3893 return; 3893 return;
3894 } 3894 }
3895 3895
3896 PublishDialog *publishdlg = new PublishDialog(); 3896 PublishDialog *publishdlg = new PublishDialog();
3897 if (incidence->attendeeCount()>0) { 3897 if (incidence->attendeeCount()>0) {
3898 QPtrList<Attendee> attendees = incidence->attendees(); 3898 QPtrList<Attendee> attendees = incidence->attendees();
3899 attendees.first(); 3899 attendees.first();
3900 while ( attendees.current()!=0 ) { 3900 while ( attendees.current()!=0 ) {
3901 publishdlg->addAttendee(attendees.current()); 3901 publishdlg->addAttendee(attendees.current());
3902 attendees.next(); 3902 attendees.next();
3903 } 3903 }
3904 } 3904 }
3905 bool send = true; 3905 bool send = true;
3906 if ( KOPrefs::instance()->mMailClient == KOPrefs::MailClientSendmail ) { 3906 if ( KOPrefs::instance()->mMailClient == KOPrefs::MailClientSendmail ) {
3907 if ( publishdlg->exec() != QDialog::Accepted ) 3907 if ( publishdlg->exec() != QDialog::Accepted )
3908 send = false; 3908 send = false;
3909 } 3909 }
3910 if ( send ) { 3910 if ( send ) {
3911 OutgoingDialog *dlg = mDialogManager->outgoingDialog(); 3911 OutgoingDialog *dlg = mDialogManager->outgoingDialog();
3912 if ( event ) { 3912 if ( event ) {
3913 Event *ev = new Event(*event); 3913 Event *ev = new Event(*event);
3914 ev->registerObserver(0); 3914 ev->registerObserver(0);
3915 ev->clearAttendees(); 3915 ev->clearAttendees();
3916 if (!dlg->addMessage(ev,Scheduler::Publish,publishdlg->addresses())) { 3916 if (!dlg->addMessage(ev,Scheduler::Publish,publishdlg->addresses())) {
3917 delete(ev); 3917 delete(ev);
3918 } 3918 }
3919 } else { 3919 } else {
3920 if ( todo ) { 3920 if ( todo ) {
3921 Todo *ev = new Todo(*todo); 3921 Todo *ev = new Todo(*todo);
3922 ev->registerObserver(0); 3922 ev->registerObserver(0);
3923 ev->clearAttendees(); 3923 ev->clearAttendees();
3924 if (!dlg->addMessage(ev,Scheduler::Publish,publishdlg->addresses())) { 3924 if (!dlg->addMessage(ev,Scheduler::Publish,publishdlg->addresses())) {
3925 delete(ev); 3925 delete(ev);
3926 } 3926 }
3927 } 3927 }
3928 } 3928 }
3929 } 3929 }
3930 delete publishdlg; 3930 delete publishdlg;
3931} 3931}
3932 3932
3933void CalendarView::schedule_request(Incidence *incidence) 3933void CalendarView::schedule_request(Incidence *incidence)
3934{ 3934{
3935 schedule(Scheduler::Request,incidence); 3935 schedule(Scheduler::Request,incidence);
3936} 3936}
3937 3937
3938void CalendarView::schedule_refresh(Incidence *incidence) 3938void CalendarView::schedule_refresh(Incidence *incidence)
3939{ 3939{
3940 schedule(Scheduler::Refresh,incidence); 3940 schedule(Scheduler::Refresh,incidence);
3941} 3941}
3942 3942
3943void CalendarView::schedule_cancel(Incidence *incidence) 3943void CalendarView::schedule_cancel(Incidence *incidence)
3944{ 3944{
3945 schedule(Scheduler::Cancel,incidence); 3945 schedule(Scheduler::Cancel,incidence);
3946} 3946}
3947 3947
3948void CalendarView::schedule_add(Incidence *incidence) 3948void CalendarView::schedule_add(Incidence *incidence)
3949{ 3949{
3950 schedule(Scheduler::Add,incidence); 3950 schedule(Scheduler::Add,incidence);
3951} 3951}
3952 3952
3953void CalendarView::schedule_reply(Incidence *incidence) 3953void CalendarView::schedule_reply(Incidence *incidence)
3954{ 3954{
3955 schedule(Scheduler::Reply,incidence); 3955 schedule(Scheduler::Reply,incidence);
3956} 3956}
3957 3957
3958void CalendarView::schedule_counter(Incidence *incidence) 3958void CalendarView::schedule_counter(Incidence *incidence)
3959{ 3959{
3960 schedule(Scheduler::Counter,incidence); 3960 schedule(Scheduler::Counter,incidence);
3961} 3961}
3962 3962
3963void CalendarView::schedule_declinecounter(Incidence *incidence) 3963void CalendarView::schedule_declinecounter(Incidence *incidence)
3964{ 3964{
3965 schedule(Scheduler::Declinecounter,incidence); 3965 schedule(Scheduler::Declinecounter,incidence);
3966} 3966}
3967 3967
3968void CalendarView::schedule_publish_freebusy(int daysToPublish) 3968void CalendarView::schedule_publish_freebusy(int daysToPublish)
3969{ 3969{
3970 QDateTime start = QDateTime::currentDateTime(); 3970 QDateTime start = QDateTime::currentDateTime();
3971 QDateTime end = start.addDays(daysToPublish); 3971 QDateTime end = start.addDays(daysToPublish);
3972 3972
3973 FreeBusy *freebusy = new FreeBusy(mCalendar, start, end); 3973 FreeBusy *freebusy = new FreeBusy(mCalendar, start, end);
3974 freebusy->setOrganizer(KOPrefs::instance()->email()); 3974 freebusy->setOrganizer(KOPrefs::instance()->email());
3975 3975
3976 3976
3977 PublishDialog *publishdlg = new PublishDialog(); 3977 PublishDialog *publishdlg = new PublishDialog();
3978 if ( publishdlg->exec() == QDialog::Accepted ) { 3978 if ( publishdlg->exec() == QDialog::Accepted ) {
3979 OutgoingDialog *dlg = mDialogManager->outgoingDialog(); 3979 OutgoingDialog *dlg = mDialogManager->outgoingDialog();
3980 if (!dlg->addMessage(freebusy,Scheduler::Publish,publishdlg->addresses())) { 3980 if (!dlg->addMessage(freebusy,Scheduler::Publish,publishdlg->addresses())) {
3981 delete(freebusy); 3981 delete(freebusy);
3982 } 3982 }
3983 } 3983 }
3984 delete publishdlg; 3984 delete publishdlg;
3985} 3985}
3986 3986
3987void CalendarView::schedule(Scheduler::Method method, Incidence *incidence) 3987void CalendarView::schedule(Scheduler::Method method, Incidence *incidence)
3988{ 3988{
3989 Event *event = 0; 3989 Event *event = 0;
3990 Todo *todo = 0; 3990 Todo *todo = 0;
3991 3991
3992 if (incidence == 0) { 3992 if (incidence == 0) {
3993 incidence = mViewManager->currentView()->selectedIncidences().first(); 3993 incidence = mViewManager->currentView()->selectedIncidences().first();
3994 if (incidence == 0) { 3994 if (incidence == 0) {
3995 incidence = mTodoList->selectedIncidences().first(); 3995 incidence = mTodoList->selectedIncidences().first();
3996 } 3996 }
3997 } 3997 }
3998 if ( incidence && incidence->typeID() == eventID ) { 3998 if ( incidence && incidence->typeID() == eventID ) {
3999 event = static_cast<Event *>(incidence); 3999 event = static_cast<Event *>(incidence);
4000 } 4000 }
4001 if ( incidence && incidence->typeID() == todoID ) { 4001 if ( incidence && incidence->typeID() == todoID ) {
4002 todo = static_cast<Todo *>(incidence); 4002 todo = static_cast<Todo *>(incidence);
4003 } 4003 }
4004 4004
4005 if (!event && !todo) { 4005 if (!event && !todo) {
4006 KMessageBox::sorry(this,i18n("No event selected.")); 4006 KMessageBox::sorry(this,i18n("No event selected."));
4007 return; 4007 return;
4008 } 4008 }
4009 4009
4010 if( incidence->attendeeCount() == 0 && method != Scheduler::Publish ) { 4010 if( incidence->attendeeCount() == 0 && method != Scheduler::Publish ) {
4011 KMessageBox::sorry(this,i18n("The event has no attendees.")); 4011 KMessageBox::sorry(this,i18n("The event has no attendees."));
4012 return; 4012 return;
4013 } 4013 }
4014 4014
4015 Event *ev = 0; 4015 Event *ev = 0;
4016 if (event) ev = new Event(*event); 4016 if (event) ev = new Event(*event);
4017 Todo *to = 0; 4017 Todo *to = 0;
4018 if (todo) to = new Todo(*todo); 4018 if (todo) to = new Todo(*todo);
4019 4019
4020 if (method == Scheduler::Reply || method == Scheduler::Refresh) { 4020 if (method == Scheduler::Reply || method == Scheduler::Refresh) {
4021 Attendee *me = incidence->attendeeByMails(KOPrefs::instance()->mAdditionalMails,KOPrefs::instance()->email()); 4021 Attendee *me = incidence->attendeeByMails(KOPrefs::instance()->mAdditionalMails,KOPrefs::instance()->email());
4022 if (!me) { 4022 if (!me) {
4023 KMessageBox::sorry(this,i18n("Could not find your attendee entry.\nPlease check the emails.")); 4023 KMessageBox::sorry(this,i18n("Could not find your attendee entry.\nPlease check the emails."));
4024 return; 4024 return;
4025 } 4025 }
4026 if (me->status()==Attendee::NeedsAction && me->RSVP() && method==Scheduler::Reply) { 4026 if (me->status()==Attendee::NeedsAction && me->RSVP() && method==Scheduler::Reply) {
4027 StatusDialog *statdlg = new StatusDialog(this); 4027 StatusDialog *statdlg = new StatusDialog(this);
4028 if (!statdlg->exec()==QDialog::Accepted) return; 4028 if (!statdlg->exec()==QDialog::Accepted) return;
4029 me->setStatus( statdlg->status() ); 4029 me->setStatus( statdlg->status() );
4030 delete(statdlg); 4030 delete(statdlg);
4031 } 4031 }
4032 Attendee *menew = new Attendee(*me); 4032 Attendee *menew = new Attendee(*me);
4033 if (ev) { 4033 if (ev) {
4034 ev->clearAttendees(); 4034 ev->clearAttendees();
4035 ev->addAttendee(menew,false); 4035 ev->addAttendee(menew,false);
4036 } else { 4036 } else {
4037 if (to) { 4037 if (to) {
4038 todo->clearAttendees(); 4038 todo->clearAttendees();
4039 todo->addAttendee(menew,false); 4039 todo->addAttendee(menew,false);
4040 } 4040 }
4041 } 4041 }
4042 } 4042 }
4043 4043
4044 OutgoingDialog *dlg = mDialogManager->outgoingDialog(); 4044 OutgoingDialog *dlg = mDialogManager->outgoingDialog();
4045 if (ev) { 4045 if (ev) {
4046 if ( !dlg->addMessage(ev,method) ) delete(ev); 4046 if ( !dlg->addMessage(ev,method) ) delete(ev);
4047 } else { 4047 } else {
4048 if (to) { 4048 if (to) {
4049 if ( !dlg->addMessage(to,method) ) delete(to); 4049 if ( !dlg->addMessage(to,method) ) delete(to);
4050 } 4050 }
4051 } 4051 }
4052} 4052}
4053 4053
4054void CalendarView::openAddressbook() 4054void CalendarView::openAddressbook()
4055{ 4055{
4056 KRun::runCommand("kaddressbook"); 4056 KRun::runCommand("kaddressbook");
4057} 4057}
4058 4058
4059void CalendarView::setModified(bool modified) 4059void CalendarView::setModified(bool modified)
4060{ 4060{
4061 if ( modified ) 4061 if ( modified )
4062 emit signalmodified(); 4062 emit signalmodified();
4063 if (mModified != modified) { 4063 if (mModified != modified) {
4064 mModified = modified; 4064 mModified = modified;
4065 emit modifiedChanged(mModified); 4065 emit modifiedChanged(mModified);
4066 } 4066 }
4067} 4067}
4068 4068
4069bool CalendarView::isReadOnly() 4069bool CalendarView::isReadOnly()
4070{ 4070{
4071 return mReadOnly; 4071 return mReadOnly;
4072} 4072}
4073 4073
4074void CalendarView::setReadOnly(bool readOnly) 4074void CalendarView::setReadOnly(bool readOnly)
4075{ 4075{
4076 if (mReadOnly != readOnly) { 4076 if (mReadOnly != readOnly) {
4077 mReadOnly = readOnly; 4077 mReadOnly = readOnly;
4078 emit readOnlyChanged(mReadOnly); 4078 emit readOnlyChanged(mReadOnly);
4079 } 4079 }
4080} 4080}
4081 4081
4082bool CalendarView::isModified() 4082bool CalendarView::isModified()
4083{ 4083{
4084 return mModified; 4084 return mModified;
4085} 4085}
4086void CalendarView::slotprintSelInc() 4086void CalendarView::slotprintSelInc()
4087{ 4087{
4088 if ( currentSelection() == 0 ) { 4088 if ( currentSelection() == 0 ) {
4089 KMessageBox::sorry(this,i18n("There is nothing selected!")); 4089 KMessageBox::sorry(this,i18n("There is nothing selected!"));
4090 return; 4090 return;
4091 } 4091 }
4092 showIncidence(); 4092 showIncidence();
4093 getEventViewerDialog()->print(); 4093 getEventViewerDialog()->print();
4094 4094
4095} 4095}
4096void CalendarView::printSetup() 4096void CalendarView::printSetup()
4097{ 4097{
4098#ifndef KORG_NOPRINTER 4098#ifndef KORG_NOPRINTER
4099 createPrinter(); 4099 createPrinter();
4100 4100
4101 mCalPrinter->setupPrinter(); 4101 mCalPrinter->setupPrinter();
4102#endif 4102#endif
4103} 4103}
4104 4104
4105void CalendarView::print() 4105void CalendarView::print()
4106{ 4106{
4107#ifndef KORG_NOPRINTER 4107#ifndef KORG_NOPRINTER
4108 createPrinter(); 4108 createPrinter();
4109 4109
4110 DateList tmpDateList = mNavigator->selectedDates(); 4110 DateList tmpDateList = mNavigator->selectedDates();
4111 mCalPrinter->print(CalPrinter::Month, 4111 mCalPrinter->print(CalPrinter::Month,
4112 tmpDateList.first(), tmpDateList.last()); 4112 tmpDateList.first(), tmpDateList.last());
4113#endif 4113#endif
4114} 4114}
4115 4115
4116void CalendarView::printPreview() 4116void CalendarView::printPreview()
4117{ 4117{
4118#ifndef KORG_NOPRINTER 4118#ifndef KORG_NOPRINTER
4119 kdDebug() << "CalendarView::printPreview()" << endl; 4119 kdDebug() << "CalendarView::printPreview()" << endl;
4120 4120
4121 createPrinter(); 4121 createPrinter();
4122 4122
4123 DateList tmpDateList = mNavigator->selectedDates(); 4123 DateList tmpDateList = mNavigator->selectedDates();
4124 4124
4125 mViewManager->currentView()->printPreview(mCalPrinter,tmpDateList.first(), 4125 mViewManager->currentView()->printPreview(mCalPrinter,tmpDateList.first(),
4126 tmpDateList.last()); 4126 tmpDateList.last());
4127#endif 4127#endif
4128} 4128}
4129 4129
4130void CalendarView::exportICalendar() 4130void CalendarView::exportICalendar()
4131{ 4131{
4132 QString filename = KFileDialog::getSaveFileName("icalout.ics",i18n("*.ics|ICalendars"),this); 4132 QString filename = KFileDialog::getSaveFileName("icalout.ics",i18n("*.ics|ICalendars"),this);
4133 4133
4134 // Force correct extension 4134 // Force correct extension
4135 if (filename.right(4) != ".ics") filename += ".ics"; 4135 if (filename.right(4) != ".ics") filename += ".ics";
4136 4136
4137 FileStorage storage( mCalendar, filename, new ICalFormat() ); 4137 FileStorage storage( mCalendar, filename, new ICalFormat() );
4138 storage.save(); 4138 storage.save();
4139} 4139}
4140 4140
4141bool CalendarView::exportVCalendar( QString filename ) 4141bool CalendarView::exportVCalendar( QString filename )
4142{ 4142{
4143 if (mCalendar->journals().count() > 0) { 4143 if (mCalendar->journals().count() > 0) {
4144 int result = KMessageBox::warningContinueCancel(this, 4144 int result = KMessageBox::warningContinueCancel(this,
4145 i18n("The journal entries can not be\nexported to a vCalendar file."), 4145 i18n("The journal entries can not be\nexported to a vCalendar file."),
4146 i18n("Data Loss Warning"),i18n("Proceed"),i18n("Cancel"), 4146 i18n("Data Loss Warning"),i18n("Proceed"),i18n("Cancel"),
4147 true); 4147 true);
4148 if (result != KMessageBox::Continue) return false; 4148 if (result != KMessageBox::Continue) return false;
4149 } 4149 }
4150 4150
4151 //QString filename = KFileDialog::getSaveFileName("vcalout.vcs",i18n("*.vcs|VCalendars"),this); 4151 //QString filename = KFileDialog::getSaveFileName("vcalout.vcs",i18n("*.vcs|VCalendars"),this);
4152 4152
4153 // Force correct extension 4153 // Force correct extension
4154 if (filename.right(4) != ".vcs") filename += ".vcs"; 4154 if (filename.right(4) != ".vcs") filename += ".vcs";
4155 4155
4156 FileStorage storage( mCalendar, filename, new VCalFormat ); 4156 FileStorage storage( mCalendar, filename, new VCalFormat );
4157 return storage.save(); 4157 return storage.save();
4158 4158
4159} 4159}
4160 4160
4161void CalendarView::eventUpdated(Incidence *) 4161void CalendarView::eventUpdated(Incidence *)
4162{ 4162{
4163 setModified(); 4163 setModified();
4164 // Don't call updateView here. The code, which has caused the update of the 4164 // Don't call updateView here. The code, which has caused the update of the
4165 // event is responsible for updating the view. 4165 // event is responsible for updating the view.
4166 // updateView(); 4166 // updateView();
4167} 4167}
4168 4168
4169void CalendarView::adaptNavigationUnits() 4169void CalendarView::adaptNavigationUnits()
4170{ 4170{
4171 if (mViewManager->currentView()->isEventView()) { 4171 if (mViewManager->currentView()->isEventView()) {
4172 int days = mViewManager->currentView()->currentDateCount(); 4172 int days = mViewManager->currentView()->currentDateCount();
4173 if (days == 1) { 4173 if (days == 1) {
4174 emit changeNavStringPrev(i18n("&Previous Day")); 4174 emit changeNavStringPrev(i18n("&Previous Day"));
4175 emit changeNavStringNext(i18n("&Next Day")); 4175 emit changeNavStringNext(i18n("&Next Day"));
4176 } else { 4176 } else {
4177 emit changeNavStringPrev(i18n("&Previous Week")); 4177 emit changeNavStringPrev(i18n("&Previous Week"));
4178 emit changeNavStringNext(i18n("&Next Week")); 4178 emit changeNavStringNext(i18n("&Next Week"));
4179 } 4179 }
4180 } 4180 }
4181} 4181}
4182 4182
4183void CalendarView::processMainViewSelection( Incidence *incidence ) 4183void CalendarView::processMainViewSelection( Incidence *incidence )
4184{ 4184{
4185 if ( incidence ) mTodoList->clearSelection(); 4185 if ( incidence ) mTodoList->clearSelection();
4186 processIncidenceSelection( incidence ); 4186 processIncidenceSelection( incidence );
4187} 4187}
4188 4188
4189void CalendarView::processTodoListSelection( Incidence *incidence ) 4189void CalendarView::processTodoListSelection( Incidence *incidence )
4190{ 4190{
4191 if ( incidence && mViewManager->currentView() ) { 4191 if ( incidence && mViewManager->currentView() ) {
4192 mViewManager->currentView()->clearSelection(); 4192 mViewManager->currentView()->clearSelection();
4193 } 4193 }
4194 processIncidenceSelection( incidence ); 4194 processIncidenceSelection( incidence );
4195} 4195}
4196 4196
4197void CalendarView::processIncidenceSelection( Incidence *incidence ) 4197void CalendarView::processIncidenceSelection( Incidence *incidence )
4198{ 4198{
4199 emit incidenceSelected( incidence ); 4199 emit incidenceSelected( incidence );
4200 if ( incidence == mSelectedIncidence ) return; 4200 if ( incidence == mSelectedIncidence ) return;
4201 mSelectedIncidence = incidence; 4201 mSelectedIncidence = incidence;
4202 4202
4203 if ( incidence && incidence->typeID() == eventID ) { 4203 if ( incidence && incidence->typeID() == eventID ) {
4204 Event *event = static_cast<Event *>( incidence ); 4204 Event *event = static_cast<Event *>( incidence );
4205 if ( event->organizer() == KOPrefs::instance()->email() ) { 4205 if ( event->organizer() == KOPrefs::instance()->email() ) {
4206 emit organizerEventsSelected( true ); 4206 emit organizerEventsSelected( true );
4207 } else { 4207 } else {
4208 emit organizerEventsSelected(false); 4208 emit organizerEventsSelected(false);
4209 } 4209 }
4210 if (event->attendeeByMails( KOPrefs::instance()->mAdditionalMails, 4210 if (event->attendeeByMails( KOPrefs::instance()->mAdditionalMails,
4211 KOPrefs::instance()->email() ) ) { 4211 KOPrefs::instance()->email() ) ) {
4212 emit groupEventsSelected( true ); 4212 emit groupEventsSelected( true );
4213 } else { 4213 } else {
4214 emit groupEventsSelected(false); 4214 emit groupEventsSelected(false);
4215 } 4215 }
4216 return; 4216 return;
4217 } else { 4217 } else {
4218 if ( incidence && incidence->typeID() == todoID ) { 4218 if ( incidence && incidence->typeID() == todoID ) {
4219 emit todoSelected( true ); 4219 emit todoSelected( true );
4220 Todo *event = static_cast<Todo *>( incidence ); 4220 Todo *event = static_cast<Todo *>( incidence );
4221 if ( event->organizer() == KOPrefs::instance()->email() ) { 4221 if ( event->organizer() == KOPrefs::instance()->email() ) {
4222 emit organizerEventsSelected( true ); 4222 emit organizerEventsSelected( true );
4223 } else { 4223 } else {
4224 emit organizerEventsSelected(false); 4224 emit organizerEventsSelected(false);
4225 } 4225 }
4226 if (event->attendeeByMails( KOPrefs::instance()->mAdditionalMails, 4226 if (event->attendeeByMails( KOPrefs::instance()->mAdditionalMails,
4227 KOPrefs::instance()->email() ) ) { 4227 KOPrefs::instance()->email() ) ) {
4228 emit groupEventsSelected( true ); 4228 emit groupEventsSelected( true );
4229 } else { 4229 } else {
4230 emit groupEventsSelected(false); 4230 emit groupEventsSelected(false);
4231 } 4231 }
4232 return; 4232 return;
4233 } else { 4233 } else {
4234 emit todoSelected( false ); 4234 emit todoSelected( false );
4235 emit organizerEventsSelected(false); 4235 emit organizerEventsSelected(false);
4236 emit groupEventsSelected(false); 4236 emit groupEventsSelected(false);
4237 } 4237 }
4238 return; 4238 return;
4239 } 4239 }
4240 4240
4241 /* if ( incidence && incidence->typeID() == todoID ) { 4241 /* if ( incidence && incidence->typeID() == todoID ) {
4242 emit todoSelected( true ); 4242 emit todoSelected( true );
4243 } else { 4243 } else {
4244 emit todoSelected( false ); 4244 emit todoSelected( false );
4245 }*/ 4245 }*/
4246} 4246}
4247 4247
4248 4248
4249void CalendarView::checkClipboard() 4249void CalendarView::checkClipboard()
4250{ 4250{
4251#ifndef KORG_NODND 4251#ifndef KORG_NODND
4252 if (ICalDrag::canDecode(QApplication::clipboard()->data())) { 4252 if (ICalDrag::canDecode(QApplication::clipboard()->data())) {
4253 emit pasteEnabled(true); 4253 emit pasteEnabled(true);
4254 } else { 4254 } else {
4255 emit pasteEnabled(false); 4255 emit pasteEnabled(false);
4256 } 4256 }
4257#endif 4257#endif
4258} 4258}
4259 4259
4260void CalendarView::showDates(const DateList &selectedDates) 4260void CalendarView::showDates(const DateList &selectedDates)
4261{ 4261{
4262 // kdDebug() << "CalendarView::selectDates()" << endl; 4262 // kdDebug() << "CalendarView::selectDates()" << endl;
4263 4263
4264 4264
4265 if ( !mBlockShowDates ) { 4265 if ( !mBlockShowDates ) {
4266 if ( mViewManager->currentView() ) { 4266 if ( mViewManager->currentView() ) {
4267 updateView( selectedDates.first(), selectedDates.last() ); 4267 updateView( selectedDates.first(), selectedDates.last() );
4268 } else { 4268 } else {
4269 mViewManager->showAgendaView(); 4269 mViewManager->showAgendaView();
4270 } 4270 }
4271 } 4271 }
4272 4272
4273 QDate date = selectedDates.first(); 4273 QDate date = selectedDates.first();
4274 if ( ! date.isValid() ) { 4274 if ( ! date.isValid() ) {
4275 topLevelWidget()->setCaption(""); 4275 topLevelWidget()->setCaption("");
4276 return; 4276 return;
4277 } 4277 }
4278 4278
4279 QString selDates; 4279 QString selDates;
4280 selDates = KGlobal::locale()->formatDate( date, true); 4280 selDates = KGlobal::locale()->formatDate( date, true);
4281 if (selectedDates.first() < selectedDates.last() ) 4281 if (selectedDates.first() < selectedDates.last() )
4282 selDates += " - " + KGlobal::locale()->formatDate( selectedDates.last(),true); 4282 selDates += " - " + KGlobal::locale()->formatDate( selectedDates.last(),true);
4283 else { 4283 else {
4284 QString addString; 4284 QString addString;
4285 if ( date == QDateTime::currentDateTime().date() ) 4285 if ( date == QDateTime::currentDateTime().date() )
4286 addString = i18n("Today"); 4286 addString = i18n("Today");
4287 else if ( date == QDateTime::currentDateTime().date().addDays(1) ) 4287 else if ( date == QDateTime::currentDateTime().date().addDays(1) )
4288 addString = i18n("Tomorrow"); 4288 addString = i18n("Tomorrow");
4289 else if ( date == QDateTime::currentDateTime().date().addDays(-1) ) 4289 else if ( date == QDateTime::currentDateTime().date().addDays(-1) )
4290 addString = i18n("Yesterday"); 4290 addString = i18n("Yesterday");
4291 else if ( date == QDateTime::currentDateTime().date().addDays(-2) ) 4291 else if ( date == QDateTime::currentDateTime().date().addDays(-2) )
4292 addString = i18n("Day before yesterday"); 4292 addString = i18n("Day before yesterday");
4293 else if ( date == QDateTime::currentDateTime().date().addDays(2) ) 4293 else if ( date == QDateTime::currentDateTime().date().addDays(2) )
4294 addString = i18n("Day after tomorrow"); 4294 addString = i18n("Day after tomorrow");
4295 if ( !addString.isEmpty() ) { 4295 if ( !addString.isEmpty() ) {
4296 topLevelWidget()->setCaption( addString+", " + selDates ); 4296 topLevelWidget()->setCaption( addString+", " + selDates );
4297 return; 4297 return;
4298 } 4298 }
4299 } 4299 }
4300 topLevelWidget()->setCaption( i18n("Dates: ") + selDates ); 4300 topLevelWidget()->setCaption( i18n("Dates: ") + selDates );
4301 4301
4302} 4302}
4303 4303
4304QPtrList<CalFilter> CalendarView::filters() 4304QPtrList<CalFilter> CalendarView::filters()
4305{ 4305{
4306 return mFilters; 4306 return mFilters;
4307 4307
4308} 4308}
4309void CalendarView::editFilters() 4309void CalendarView::editFilters()
4310{ 4310{
4311 // kdDebug() << "CalendarView::editFilters()" << endl; 4311 // kdDebug() << "CalendarView::editFilters()" << endl;
4312 4312
4313 CalFilter *filter = mFilters.first(); 4313 CalFilter *filter = mFilters.first();
4314 while(filter) { 4314 while(filter) {
4315 filter = mFilters.next(); 4315 filter = mFilters.next();
4316 } 4316 }
4317 4317
4318 mDialogManager->showFilterEditDialog(&mFilters); 4318 mDialogManager->showFilterEditDialog(&mFilters);
4319 updateFilter(); 4319 updateFilter();
4320} 4320}
4321void CalendarView::toggleFilter() 4321void CalendarView::toggleFilter()
4322{ 4322{
4323 if ( mLeftFrame->isHidden() ) { 4323 if ( mLeftFrame->isHidden() ) {
4324 toggleExpand(); 4324 toggleExpand();
4325 showFilter( true ); 4325 showFilter( true );
4326 } else 4326 } else
4327 showFilter(! mCalEditView->isVisible()); 4327 showFilter(! mCalEditView->isVisible());
4328} 4328}
4329 4329
4330KOFilterView *CalendarView::filterView() 4330KOFilterView *CalendarView::filterView()
4331{ 4331{
4332 return mFilterView; 4332 return mFilterView;
4333} 4333}
4334void CalendarView::selectFilter( int fil ) 4334void CalendarView::selectFilter( int fil )
4335{ 4335{
4336 mFilterView->setSelectedFilter( fil ); 4336 mFilterView->setSelectedFilter( fil );
4337 updateUnmanagedViews(); 4337 updateUnmanagedViews();
4338} 4338}
4339void CalendarView::showFilter(bool visible) 4339void CalendarView::showFilter(bool visible)
4340{ 4340{
4341#if 1 4341#if 1
4342 if (visible) { 4342 if (visible) {
4343 mCalEditView->readConfig(); 4343 mCalEditView->readConfig();
4344 mCalEditView->show(); 4344 mCalEditView->show();
4345 QValueList<int> sizes; 4345 QValueList<int> sizes;
4346 sizes = mLeftFrame->sizes(); 4346 sizes = mLeftFrame->sizes();
4347 if ( sizes.count() == 4 && sizes[3] < 20 ) { 4347 if ( sizes.count() == 4 && sizes[3] < 20 ) {
4348 sizes.clear(); 4348 sizes.clear();
4349 sizes << 100; 4349 sizes << 100;
4350 sizes << 0; 4350 sizes << 0;
4351 sizes << 0; 4351 sizes << 0;
4352 sizes << 100; 4352 sizes << 100;
4353 mLeftFrame->setSizes(sizes); 4353 mLeftFrame->setSizes(sizes);
4354 } 4354 }
4355#if 0 4355#if 0
4356 sizes = mLeftFrame->sizes(); 4356 sizes = mLeftFrame->sizes();
4357 int ccc = 0; 4357 int ccc = 0;
4358 while ( ccc < sizes.count()) { 4358 while ( ccc < sizes.count()) {
4359 qDebug("size %d %d ", ccc, sizes[ccc]); 4359 qDebug("size %d %d ", ccc, sizes[ccc]);
4360 ++ccc; 4360 ++ccc;
4361 } 4361 }
4362#endif 4362#endif
4363 4363
4364 } 4364 }
4365 else { 4365 else {
4366 mCalEditView->hide(); 4366 mCalEditView->hide();
4367 } 4367 }
4368#else 4368#else
4369 if (visible) mFilterView->show(); 4369 if (visible) mFilterView->show();
4370 else mFilterView->hide(); 4370 else mFilterView->hide();
4371#endif 4371#endif
4372} 4372}
4373void CalendarView::toggleFilerEnabled( ) 4373void CalendarView::toggleFilerEnabled( )
4374{ 4374{
4375 mFilterView->setFiltersEnabled ( !mFilterView->filtersEnabled() ); 4375 mFilterView->setFiltersEnabled ( !mFilterView->filtersEnabled() );
4376 if ( !mFilterView->filtersEnabled() ) 4376 if ( !mFilterView->filtersEnabled() )
4377 topLevelWidget()->setCaption( i18n("Filter disabled ") ); 4377 topLevelWidget()->setCaption( i18n("Filter disabled ") );
4378 updateUnmanagedViews(); 4378 updateUnmanagedViews();
4379 4379
4380} 4380}
4381void CalendarView::updateFilter() 4381void CalendarView::updateFilter()
4382{ 4382{
4383 CalFilter *filter = mFilterView->selectedFilter(); 4383 CalFilter *filter = mFilterView->selectedFilter();
4384 if (filter) { 4384 if (filter) {
4385 QString mess; 4385 QString mess;
4386 if (mFilterView->filtersEnabled()) { 4386 if (mFilterView->filtersEnabled()) {
4387 mess = i18n("Filter selected: ")+filter->name(); 4387 mess = i18n("Filter selected: ")+filter->name();
4388 filter->setEnabled(true); 4388 filter->setEnabled(true);
4389 } 4389 }
4390 else filter->setEnabled(false); 4390 else filter->setEnabled(false);
4391 mCalendar->setFilter(filter); 4391 mCalendar->setFilter(filter);
4392 updateView(); 4392 updateView();
4393 if ( !mess.isEmpty() ) 4393 if ( !mess.isEmpty() )
4394 topLevelWidget()->setCaption( mess ); 4394 topLevelWidget()->setCaption( mess );
4395 4395
4396 } 4396 }
4397 emit filtersUpdated(); 4397 emit filtersUpdated();
4398} 4398}
4399 4399
4400void CalendarView::filterEdited() 4400void CalendarView::filterEdited()
4401{ 4401{
4402 mFilterView->updateFilters(); 4402 mFilterView->updateFilters();
4403 updateFilter(); 4403 updateFilter();
4404 writeSettings(); 4404 writeSettings();
4405} 4405}
4406 4406
4407 4407
4408void CalendarView::takeOverEvent() 4408void CalendarView::takeOverEvent()
4409{ 4409{
4410 Incidence *incidence = currentSelection(); 4410 Incidence *incidence = currentSelection();
4411 4411
4412 if (!incidence) return; 4412 if (!incidence) return;
4413 4413
4414 incidence->setOrganizer(KOPrefs::instance()->email()); 4414 incidence->setOrganizer(KOPrefs::instance()->email());
4415 incidence->recreate(); 4415 incidence->recreate();
4416 incidence->setReadOnly(false); 4416 incidence->setReadOnly(false);
4417 4417
4418 updateView(); 4418 updateView();
4419} 4419}
4420 4420
4421void CalendarView::takeOverCalendar() 4421void CalendarView::takeOverCalendar()
4422{ 4422{
4423 // TODO: Create Calendar::allIncidences() function and use it here 4423 // TODO: Create Calendar::allIncidences() function and use it here
4424 4424
4425 clearAllViews(); 4425 clearAllViews();
4426 QPtrList<Event> events = mCalendar->events(); 4426 QPtrList<Event> events = mCalendar->events();
4427 for(uint i=0; i<events.count(); ++i) { 4427 for(uint i=0; i<events.count(); ++i) {
4428 events.at(i)->setOrganizer(KOPrefs::instance()->email()); 4428 events.at(i)->setOrganizer(KOPrefs::instance()->email());
4429 events.at(i)->recreate(); 4429 events.at(i)->recreate();
4430 events.at(i)->setReadOnly(false); 4430 events.at(i)->setReadOnly(false);
4431 } 4431 }
4432 4432
4433 QPtrList<Todo> todos = mCalendar->todos(); 4433 QPtrList<Todo> todos = mCalendar->todos();
4434 for(uint i=0; i<todos.count(); ++i) { 4434 for(uint i=0; i<todos.count(); ++i) {
4435 todos.at(i)->setOrganizer(KOPrefs::instance()->email()); 4435 todos.at(i)->setOrganizer(KOPrefs::instance()->email());
4436 todos.at(i)->recreate(); 4436 todos.at(i)->recreate();
4437 todos.at(i)->setReadOnly(false); 4437 todos.at(i)->setReadOnly(false);
4438 } 4438 }
4439 4439
4440 QPtrList<Journal> journals = mCalendar->journals(); 4440 QPtrList<Journal> journals = mCalendar->journals();
4441 for(uint i=0; i<journals.count(); ++i) { 4441 for(uint i=0; i<journals.count(); ++i) {
4442 journals.at(i)->setOrganizer(KOPrefs::instance()->email()); 4442 journals.at(i)->setOrganizer(KOPrefs::instance()->email());
4443 journals.at(i)->recreate(); 4443 journals.at(i)->recreate();
4444 journals.at(i)->setReadOnly(false); 4444 journals.at(i)->setReadOnly(false);
4445 } 4445 }
4446 4446
4447 updateView(); 4447 updateView();
4448} 4448}
4449 4449
4450void CalendarView::showIntro() 4450void CalendarView::showIntro()
4451{ 4451{
4452 kdDebug() << "To be implemented." << endl; 4452 kdDebug() << "To be implemented." << endl;
4453} 4453}
4454 4454
4455QWidgetStack *CalendarView::viewStack() 4455QWidgetStack *CalendarView::viewStack()
4456{ 4456{
4457 return mRightFrame; 4457 return mRightFrame;
4458} 4458}
4459 4459
4460QWidget *CalendarView::leftFrame() 4460QWidget *CalendarView::leftFrame()
4461{ 4461{
4462 return ( QWidget *)mLeftFrame; 4462 return ( QWidget *)mLeftFrame;
4463} 4463}
4464 4464
4465DateNavigator *CalendarView::dateNavigator() 4465DateNavigator *CalendarView::dateNavigator()
4466{ 4466{
4467 return mNavigator; 4467 return mNavigator;
4468} 4468}
4469 4469
4470KDateNavigator* CalendarView::dateNavigatorWidget() 4470KDateNavigator* CalendarView::dateNavigatorWidget()
4471{ 4471{
4472 return mDateNavigator->navigatorView(); 4472 return mDateNavigator->navigatorView();
4473} 4473}
4474void CalendarView::toggleDateNavigatorWidget() 4474void CalendarView::toggleDateNavigatorWidget()
4475{ 4475{
4476 KOPrefs::instance()->mShowDateNavigator = !KOPrefs::instance()->mShowDateNavigator ; 4476 KOPrefs::instance()->mShowDateNavigator = !KOPrefs::instance()->mShowDateNavigator ;
4477 4477
4478 if (!KOPrefs::instance()->mShowDateNavigator ) 4478 if (!KOPrefs::instance()->mShowDateNavigator )
4479 mDateNavigator->hide(); 4479 mDateNavigator->hide();
4480 else 4480 else
4481 mDateNavigator->show(); 4481 mDateNavigator->show();
4482} 4482}
4483void CalendarView::addView(KOrg::BaseView *view) 4483void CalendarView::addView(KOrg::BaseView *view)
4484{ 4484{
4485 mViewManager->addView(view); 4485 mViewManager->addView(view);
4486} 4486}
4487 4487
4488void CalendarView::showView(KOrg::BaseView *view) 4488void CalendarView::showView(KOrg::BaseView *view)
4489{ 4489{
4490 mViewManager->showView(view, mLeftFrame->isVisible()); 4490 mViewManager->showView(view, mLeftFrame->isVisible());
4491} 4491}
4492 4492
4493Incidence *CalendarView::currentSelection() 4493Incidence *CalendarView::currentSelection()
4494{ 4494{
4495 return mViewManager->currentSelection(); 4495 return mViewManager->currentSelection();
4496} 4496}
4497void CalendarView::toggleAllDaySize() 4497void CalendarView::toggleAllDaySize()
4498{ 4498{
4499 /* 4499 /*
4500 if ( KOPrefs::instance()->mAllDaySize > 47 ) 4500 if ( KOPrefs::instance()->mAllDaySize > 47 )
4501 KOPrefs::instance()->mAllDaySize = KOPrefs::instance()->mAllDaySize /2; 4501 KOPrefs::instance()->mAllDaySize = KOPrefs::instance()->mAllDaySize /2;
4502 else 4502 else
4503 KOPrefs::instance()->mAllDaySize = KOPrefs::instance()->mAllDaySize *2; 4503 KOPrefs::instance()->mAllDaySize = KOPrefs::instance()->mAllDaySize *2;
4504 */ 4504 */
4505 viewManager()->agendaView()->toggleAllDay(); 4505 viewManager()->agendaView()->toggleAllDay();
4506} 4506}
4507void CalendarView::toggleExpand() 4507void CalendarView::toggleExpand()
4508{ 4508{
4509 // if ( mLeftFrame->isHidden() ) { 4509 // if ( mLeftFrame->isHidden() ) {
4510 // mLeftFrame->show(); 4510 // mLeftFrame->show();
4511 // emit calendarViewExpanded( false ); 4511 // emit calendarViewExpanded( false );
4512 // } else { 4512 // } else {
4513 // mLeftFrame->hide(); 4513 // mLeftFrame->hide();
4514 // emit calendarViewExpanded( true ); 4514 // emit calendarViewExpanded( true );
4515 // } 4515 // }
4516 //qDebug(" CalendarView::toggleExpand()"); 4516 //qDebug(" CalendarView::toggleExpand()");
4517 globalFlagBlockAgenda = 1; 4517 globalFlagBlockAgenda = 1;
4518 emit calendarViewExpanded( !mLeftFrame->isHidden() ); 4518 emit calendarViewExpanded( !mLeftFrame->isHidden() );
4519 globalFlagBlockAgenda = 5; 4519 globalFlagBlockAgenda = 5;
4520 mViewManager->raiseCurrentView( !mLeftFrame->isHidden() ); 4520 mViewManager->raiseCurrentView( !mLeftFrame->isHidden() );
4521 //mViewManager->showView( 0, true ); 4521 //mViewManager->showView( 0, true );
4522} 4522}
4523 4523
4524void CalendarView::calendarModified( bool modified, Calendar * ) 4524void CalendarView::calendarModified( bool modified, Calendar * )
4525{ 4525{
4526 setModified( modified ); 4526 setModified( modified );
4527} 4527}
4528 4528
4529Todo *CalendarView::selectedTodo() 4529Todo *CalendarView::selectedTodo()
4530{ 4530{
4531 Incidence *incidence = currentSelection(); 4531 Incidence *incidence = currentSelection();
4532 if ( incidence && incidence->typeID() == todoID ) { 4532 if ( incidence && incidence->typeID() == todoID ) {
4533 return static_cast<Todo *>( incidence ); 4533 return static_cast<Todo *>( incidence );
4534 } 4534 }
4535 4535
4536 incidence = mTodoList->selectedIncidences().first(); 4536 incidence = mTodoList->selectedIncidences().first();
4537 if ( incidence && incidence->typeID() == todoID ) { 4537 if ( incidence && incidence->typeID() == todoID ) {
4538 return static_cast<Todo *>( incidence ); 4538 return static_cast<Todo *>( incidence );
4539 } 4539 }
4540 4540
4541 return 0; 4541 return 0;
4542} 4542}
4543 4543
4544void CalendarView::showIncidence() 4544void CalendarView::showIncidence()
4545{ 4545{
4546 mViewerCallerIsSearchDialog = false; 4546 mViewerCallerIsSearchDialog = false;
4547 Incidence *incidence = currentSelection(); 4547 Incidence *incidence = currentSelection();
4548 if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); 4548 if ( !incidence ) incidence = mTodoList->selectedIncidences().first();
4549 if ( incidence ) { 4549 if ( incidence ) {
4550 ShowIncidenceVisitor v; 4550 ShowIncidenceVisitor v;
4551 v.act( incidence, this ); 4551 v.act( incidence, this );
4552 } 4552 }
4553} 4553}
4554void CalendarView::editIncidenceDescription() 4554void CalendarView::editIncidenceDescription()
4555{ 4555{
4556 mFlagEditDescription = true; 4556 mFlagEditDescription = true;
4557 editIncidence(); 4557 editIncidence();
4558 mFlagEditDescription = false; 4558 mFlagEditDescription = false;
4559} 4559}
4560void CalendarView::editIncidence() 4560void CalendarView::editIncidence()
4561{ 4561{
4562 // qDebug("editIncidence() "); 4562 // qDebug("editIncidence() ");
4563 Incidence *incidence = currentSelection(); 4563 Incidence *incidence = currentSelection();
4564 if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); 4564 if ( !incidence ) incidence = mTodoList->selectedIncidences().first();
4565 if ( incidence ) { 4565 if ( incidence ) {
4566 EditIncidenceVisitor v; 4566 EditIncidenceVisitor v;
4567 v.act( incidence, this ); 4567 v.act( incidence, this );
4568 } 4568 }
4569} 4569}
4570 4570
4571void CalendarView::deleteIncidence() 4571void CalendarView::deleteIncidence()
4572{ 4572{
4573 Incidence *incidence = currentSelection(); 4573 Incidence *incidence = currentSelection();
4574 if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); 4574 if ( !incidence ) incidence = mTodoList->selectedIncidences().first();
4575 if ( incidence ) { 4575 if ( incidence ) {
4576 deleteIncidence(incidence); 4576 deleteIncidence(incidence);
4577 } 4577 }
4578} 4578}
4579void CalendarView::showIncidence(QString uid) 4579void CalendarView::showIncidence(QString uid)
4580{ 4580{
4581 Incidence *inc = mCalendar->incidence( uid ); 4581 Incidence *inc = mCalendar->incidence( uid );
4582 if ( inc ) 4582 if ( inc )
4583 showIncidence( inc ); 4583 showIncidence( inc );
4584} 4584}
4585void CalendarView::showIncidence(Incidence *incidence) 4585void CalendarView::showIncidence(Incidence *incidence)
4586{ 4586{
4587 mViewerCallerIsSearchDialog = false; 4587 mViewerCallerIsSearchDialog = false;
4588 //qDebug("%x %x ",sender (), mDialogManager->getSearchDialog() ); 4588 //qDebug("%x %x ",sender (), mDialogManager->getSearchDialog() );
4589 if ( sender() && mDialogManager->getSearchDialog() ) { 4589 if ( sender() && mDialogManager->getSearchDialog() ) {
4590 if ( sender () == mDialogManager->getSearchDialog()->listview() ) { 4590 if ( sender () == mDialogManager->getSearchDialog()->listview() ) {
4591 mViewerCallerIsSearchDialog = true; 4591 mViewerCallerIsSearchDialog = true;
4592 } 4592 }
4593 } 4593 }
4594 if ( incidence ) { 4594 if ( incidence ) {
4595 ShowIncidenceVisitor v; 4595 ShowIncidenceVisitor v;
4596 v.act( incidence, this ); 4596 v.act( incidence, this );
4597 } 4597 }
4598} 4598}
4599 4599
4600void CalendarView::editIncidence(Incidence *incidence) 4600void CalendarView::editIncidence(Incidence *incidence)
4601{ 4601{
4602 if ( incidence ) { 4602 if ( incidence ) {
4603 4603
4604 EditIncidenceVisitor v; 4604 EditIncidenceVisitor v;
4605 v.act( incidence, this ); 4605 v.act( incidence, this );
4606 4606
4607 } 4607 }
4608} 4608}
4609 4609
4610void CalendarView::deleteIncidence(Incidence *incidence) 4610void CalendarView::deleteIncidence(Incidence *incidence)
4611{ 4611{
4612 //qDebug(" CalendarView::deleteIncidence "); 4612 //qDebug(" CalendarView::deleteIncidence ");
4613 if ( incidence == 0 ) { 4613 if ( incidence == 0 ) {
4614 updateView(); 4614 updateView();
4615 emit updateSearchDialog(); 4615 emit updateSearchDialog();
4616 return; 4616 return;
4617 } 4617 }
4618 if ( incidence ) { 4618 if ( incidence ) {
4619 DeleteIncidenceVisitor v; 4619 DeleteIncidenceVisitor v;
4620 v.act( incidence, this ); 4620 v.act( incidence, this );
4621 } 4621 }
4622} 4622}
4623 4623
4624 4624
4625void CalendarView::lookForOutgoingMessages() 4625void CalendarView::lookForOutgoingMessages()
4626{ 4626{
4627 OutgoingDialog *ogd = mDialogManager->outgoingDialog(); 4627 OutgoingDialog *ogd = mDialogManager->outgoingDialog();
4628 ogd->loadMessages(); 4628 ogd->loadMessages();
4629} 4629}
4630 4630
4631void CalendarView::lookForIncomingMessages() 4631void CalendarView::lookForIncomingMessages()
4632{ 4632{
4633 IncomingDialog *icd = mDialogManager->incomingDialog(); 4633 IncomingDialog *icd = mDialogManager->incomingDialog();
4634 icd->retrieve(); 4634 icd->retrieve();
4635} 4635}
4636 4636
4637bool CalendarView::removeCompletedSubTodos( Todo* t ) 4637bool CalendarView::removeCompletedSubTodos( Todo* t )
4638{ 4638{
4639 bool deleteTodo = true; 4639 bool deleteTodo = true;
4640 QPtrList<Incidence> subTodos; 4640 QPtrList<Incidence> subTodos;
4641 Incidence *aTodo; 4641 Incidence *aTodo;
4642 subTodos = t->relations(); 4642 subTodos = t->relations();
4643 for (aTodo = subTodos.first(); aTodo; aTodo = subTodos.next()) { 4643 for (aTodo = subTodos.first(); aTodo; aTodo = subTodos.next()) {
4644 if (! removeCompletedSubTodos( (Todo*) aTodo )) 4644 if (! removeCompletedSubTodos( (Todo*) aTodo ))
4645 deleteTodo = false; 4645 deleteTodo = false;
4646 } 4646 }
4647 if ( deleteTodo ) { 4647 if ( deleteTodo ) {
4648 if ( t->isCompleted() && !t->doesRecur()) { 4648 if ( t->isCompleted() && !t->doesRecur()) {
4649 checkExternalId( t ); 4649 checkExternalId( t );
4650 mCalendar->deleteTodo( t ); 4650 mCalendar->deleteTodo( t );
4651 changeTodoDisplay( t,KOGlobals::EVENTDELETED ); 4651 changeTodoDisplay( t,KOGlobals::EVENTDELETED );
4652 } 4652 }
4653 else 4653 else
4654 deleteTodo = false; 4654 deleteTodo = false;
4655 } 4655 }
4656 return deleteTodo; 4656 return deleteTodo;
4657 4657
4658} 4658}
4659void CalendarView::purgeCompleted() 4659void CalendarView::purgeCompleted()
4660{ 4660{
4661 int result = KMessageBox::warningContinueCancel(this, 4661 int result = KMessageBox::warningContinueCancel(this,
4662 i18n("Delete all completed todos?\n(Completed recurring todos\nwill not be deleted!)"),i18n("Purge Todos"),i18n("Purge")); 4662 i18n("Delete all completed todos?\n(Completed recurring todos\nwill not be deleted!)"),i18n("Purge Todos"),i18n("Purge"));
4663 4663
4664 if (result == KMessageBox::Continue) { 4664 if (result == KMessageBox::Continue) {
4665 4665
4666 QPtrList<Todo> todoCal; 4666 QPtrList<Todo> todoCal;
4667 QPtrList<Todo> rootTodos; 4667 QPtrList<Todo> rootTodos;
4668 //QPtrList<Incidence> rel; 4668 //QPtrList<Incidence> rel;
4669 Todo *aTodo; 4669 Todo *aTodo;
4670 todoCal = calendar()->todos(); 4670 todoCal = calendar()->todos();
4671 for (aTodo = todoCal.first(); aTodo; aTodo = todoCal.next()) { 4671 for (aTodo = todoCal.first(); aTodo; aTodo = todoCal.next()) {
4672 if ( !aTodo->relatedTo() ) 4672 if ( !aTodo->relatedTo() )
4673 rootTodos.append( aTodo ); 4673 rootTodos.append( aTodo );
4674 } 4674 }
4675 for (aTodo = rootTodos.first(); aTodo; aTodo = rootTodos.next()) { 4675 for (aTodo = rootTodos.first(); aTodo; aTodo = rootTodos.next()) {
4676 removeCompletedSubTodos( aTodo ); 4676 removeCompletedSubTodos( aTodo );
4677 } 4677 }
4678 4678
4679 updateView(); 4679 updateView();
4680 } 4680 }
4681} 4681}
4682 4682
4683void CalendarView::slotCalendarChanged() 4683void CalendarView::slotCalendarChanged()
4684{ 4684{
4685 ; 4685 ;
4686} 4686}
4687 4687
4688void CalendarView::keyPressEvent ( QKeyEvent *e) 4688void CalendarView::keyPressEvent ( QKeyEvent *e)
4689{ 4689{
4690 //qDebug(" alendarView::keyPressEvent "); 4690 //qDebug("CalendarView::keyPressEvent ");
4691 e->ignore(); 4691 e->ignore();
4692} 4692}
4693 4693
4694 4694
4695bool CalendarView::sync(KSyncManager* manager, QString filename, int mode) 4695bool CalendarView::sync(KSyncManager* manager, QString filename, int mode)
4696{ 4696{
4697 4697
4698 if ( manager != mSyncManager) 4698 if ( manager != mSyncManager)
4699 qDebug("KO: Internal error-1. SyncManager mismatch "); 4699 qDebug("KO: Internal error-1. SyncManager mismatch ");
4700 if ( filename == QDir::homeDirPath ()+"/.kdecalendardump.ics" ) { 4700 if ( filename == QDir::homeDirPath ()+"/.kdecalendardump.ics" ) {
4701 qDebug("KO: SyncKDE request detected!"); 4701 qDebug("KO: SyncKDE request detected!");
4702 } 4702 }
4703 mCurrentSyncDevice = mSyncManager->getCurrentSyncDevice(); 4703 mCurrentSyncDevice = mSyncManager->getCurrentSyncDevice();
4704 mCurrentSyncName = mSyncManager->getCurrentSyncName(); 4704 mCurrentSyncName = mSyncManager->getCurrentSyncName();
4705 return syncCalendar( filename, mode ); 4705 return syncCalendar( filename, mode );
4706} 4706}
4707bool CalendarView::syncExternal(KSyncManager* manager, QString resource) 4707bool CalendarView::syncExternal(KSyncManager* manager, QString resource)
4708{ 4708{
4709 //mSyncManager = manager; 4709 //mSyncManager = manager;
4710 if ( manager != mSyncManager) 4710 if ( manager != mSyncManager)
4711 qDebug("KO: Internal error-2. SyncManager mismatch "); 4711 qDebug("KO: Internal error-2. SyncManager mismatch ");
4712 mCurrentSyncDevice = mSyncManager->getCurrentSyncDevice(); 4712 mCurrentSyncDevice = mSyncManager->getCurrentSyncDevice();
4713 mCurrentSyncName = mSyncManager->getCurrentSyncName(); 4713 mCurrentSyncName = mSyncManager->getCurrentSyncName();
4714 if ( resource == "sharp" ) 4714 if ( resource == "sharp" )
4715 syncExternal( 0 ); 4715 syncExternal( 0 );
4716 if ( resource == "phone" ) 4716 if ( resource == "phone" )
4717 syncExternal( 1 ); 4717 syncExternal( 1 );
4718 // pending setmodified 4718 // pending setmodified
4719 return true; 4719 return true;
4720} 4720}
4721void CalendarView::setSyncManager(KSyncManager* manager) 4721void CalendarView::setSyncManager(KSyncManager* manager)
4722{ 4722{
4723 mSyncManager = manager; 4723 mSyncManager = manager;
4724} 4724}
4725 4725
4726void CalendarView::removeSyncInfo( QString syncProfile) 4726void CalendarView::removeSyncInfo( QString syncProfile)
4727{ 4727{
4728 qDebug("KO: removeSyncInfo for profile %s ", syncProfile.latin1()); 4728 qDebug("KO: removeSyncInfo for profile %s ", syncProfile.latin1());
4729 mCalendar->removeSyncInfo( syncProfile ); 4729 mCalendar->removeSyncInfo( syncProfile );
4730 4730
4731} 4731}
4732 4732
4733void CalendarView::undo_delete() 4733void CalendarView::undo_delete()
4734{ 4734{
4735 //qDebug("undo_delete() "); 4735 //qDebug("undo_delete() ");
4736 Incidence* undo = mCalendar->undoIncidence(); 4736 Incidence* undo = mCalendar->undoIncidence();
4737 if ( !undo ) { 4737 if ( !undo ) {
4738 KMessageBox::sorry(this,i18n("There is nothing to undo!"), 4738 KMessageBox::sorry(this,i18n("There is nothing to undo!"),
4739 i18n("KO/Pi")); 4739 i18n("KO/Pi"));
4740 return; 4740 return;
4741 } 4741 }
4742 if ( KMessageBox::Continue ==KMessageBox::warningContinueCancel(this,KGlobal::formatMessage ( undo->summary(),0 ) + 4742 if ( KMessageBox::Continue ==KMessageBox::warningContinueCancel(this,KGlobal::formatMessage ( undo->summary(),0 ) +
4743 i18n("\nAre you sure you want\nto restore this?"), 4743 i18n("\nAre you sure you want\nto restore this?"),
4744 i18n("KO/Pi Confirmation"),i18n("Restore"))) { 4744 i18n("KO/Pi Confirmation"),i18n("Restore"))) {
4745 mCalendar->undoDeleteIncidence(); 4745 mCalendar->undoDeleteIncidence();
4746 updateView(); 4746 updateView();
4747 } 4747 }
4748} 4748}
4749 4749
4750void CalendarView::slotViewerClosed() 4750void CalendarView::slotViewerClosed()
4751{ 4751{
4752 QTimer::singleShot( 50, this, SLOT ( resetFocus() ) ); 4752 QTimer::singleShot( 50, this, SLOT ( resetFocus() ) );
4753} 4753}
4754 4754
4755void CalendarView::resetFocus() 4755void CalendarView::resetFocus()
4756{ 4756{
4757 if ( mViewerCallerIsSearchDialog ) { 4757 if ( mViewerCallerIsSearchDialog ) {
4758 if ( mDialogManager->getSearchDialog()->isVisible() ){ 4758 if ( mDialogManager->getSearchDialog()->isVisible() ){
4759 mDialogManager->getSearchDialog()->raise(); 4759 mDialogManager->getSearchDialog()->raise();
4760 mDialogManager->getSearchDialog()->setActiveWindow(); 4760 mDialogManager->getSearchDialog()->setActiveWindow();
4761 mDialogManager->getSearchDialog()->listview()->resetFocus(); 4761 mDialogManager->getSearchDialog()->listview()->resetFocus();
4762 } else 4762 } else
4763 mViewerCallerIsSearchDialog = false; 4763 mViewerCallerIsSearchDialog = false;
4764 } 4764 }
4765 if ( !mViewerCallerIsSearchDialog ) { 4765 if ( !mViewerCallerIsSearchDialog ) {
4766 //mViewManager->currentView()->setFocus(); 4766 //mViewManager->currentView()->setFocus();
4767 //qDebug("sssssssssssssssset focus "); 4767 //qDebug("sssssssssssssssset focus ");
4768 topLevelWidget()->raise(); 4768 topLevelWidget()->raise();
4769 setActiveWindow(); 4769 setActiveWindow();
4770 //setFocus(); 4770 //setFocus();
4771 } 4771 }
4772 mViewerCallerIsSearchDialog = false; 4772 mViewerCallerIsSearchDialog = false;
4773} 4773}
4774 4774
4775void CalendarView::showNextAlarms() 4775void CalendarView::showNextAlarms()
4776{ 4776{
4777 QString message; 4777 QString message;
4778 QDateTime nextAl = mCalendar->nextAlarmEventDateTime(); 4778 QDateTime nextAl = mCalendar->nextAlarmEventDateTime();
4779 if ( nextAl.isValid() && mNextAlarmDateTime > QDateTime::currentDateTime() ) { 4779 if ( nextAl.isValid() && mNextAlarmDateTime > QDateTime::currentDateTime() ) {
4780 QString sum = mCalendar->nextSummary(); 4780 QString sum = mCalendar->nextSummary();
4781 QDateTime nextA = mNextAlarmDateTime; 4781 QDateTime nextA = mNextAlarmDateTime;
4782 QDateTime cur = QDateTime::currentDateTime(); 4782 QDateTime cur = QDateTime::currentDateTime();
4783 int secs = cur.secsTo( nextA ); 4783 int secs = cur.secsTo( nextA );
4784 int min = secs /60; 4784 int min = secs /60;
4785 int hours = min /60; 4785 int hours = min /60;
4786 min = min % 60; 4786 min = min % 60;
4787 int days = hours /24; 4787 int days = hours /24;
4788 hours = hours % 24; 4788 hours = hours % 24;
4789 4789
4790 //message = i18n("The next alarm is in:\n"); 4790 //message = i18n("The next alarm is in:\n");
4791 if ( days > 1 ) 4791 if ( days > 1 )
4792 message += i18n("%1 days\n").arg( days ); 4792 message += i18n("%1 days\n").arg( days );
4793 else if ( days == 1 ) 4793 else if ( days == 1 )
4794 message += i18n("1 day\n"); 4794 message += i18n("1 day\n");
4795 if ( hours > 1 ) 4795 if ( hours > 1 )
4796 message += i18n("%1 hours\n").arg( hours ); 4796 message += i18n("%1 hours\n").arg( hours );
4797 else if ( hours == 1 ) 4797 else if ( hours == 1 )
4798 message += i18n("1 hour\n"); 4798 message += i18n("1 hour\n");
4799 if ( min > 1 ) 4799 if ( min > 1 )
4800 message += i18n("%1 minutes\n").arg( min ); 4800 message += i18n("%1 minutes\n").arg( min );
4801 else if ( min == 1 ) 4801 else if ( min == 1 )
4802 message += i18n("1 minute\n"); 4802 message += i18n("1 minute\n");
4803 if ( message.isEmpty() ) 4803 if ( message.isEmpty() )
4804 message = i18n("The next alarm is in\nless than one minute!"); 4804 message = i18n("The next alarm is in\nless than one minute!");
4805 else 4805 else
4806 message = i18n("The next alarm is in:\n") + message; 4806 message = i18n("The next alarm is in:\n") + message;
4807 message += i18n("\n(%1)\n\n%2\n(%3)\n").arg( KGlobal::locale()->formatDateTime(nextA , false)).arg(sum ).arg( KGlobal::locale()->formatDateTime(nextAl , false)) ; 4807 message += i18n("\n(%1)\n\n%2\n(%3)\n").arg( KGlobal::locale()->formatDateTime(nextA , false)).arg(sum ).arg( KGlobal::locale()->formatDateTime(nextAl , false)) ;
4808 } else { 4808 } else {
4809 message = i18n("There is no next alarm."); 4809 message = i18n("There is no next alarm.");
4810 4810
4811 } 4811 }
4812#ifdef DESKTOP_VERSION 4812#ifdef DESKTOP_VERSION
4813 if ( ! KOPrefs::instance()->mUseInternalAlarmNotification ) { 4813 if ( ! KOPrefs::instance()->mUseInternalAlarmNotification ) {
4814 message += i18n("\nThe internal alarm notification is disabled!\n"); 4814 message += i18n("\nThe internal alarm notification is disabled!\n");
4815 message += i18n("Enable it in the settings menu, TAB alarm."); 4815 message += i18n("Enable it in the settings menu, TAB alarm.");
4816 } 4816 }
4817 4817
4818#endif 4818#endif
4819 KMessageBox::information( this, message); 4819 KMessageBox::information( this, message);
4820} 4820}
diff --git a/korganizer/kotodoview.cpp b/korganizer/kotodoview.cpp
index add1819..94f35e6 100644
--- a/korganizer/kotodoview.cpp
+++ b/korganizer/kotodoview.cpp
@@ -1,1711 +1,1717 @@
1/* 1/*
2 This file is part of KOrganizer. 2 This file is part of KOrganizer.
3 Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org> 3 Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org>
4 4
5 This program is free software; you can redistribute it and/or modify 5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by 6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or 7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version. 8 (at your option) any later version.
9 9
10 This program is distributed in the hope that it will be useful, 10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details. 13 GNU General Public License for more details.
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software 16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 18
19 As a special exception, permission is given to link this program 19 As a special exception, permission is given to link this program
20 with any edition of Qt, and distribute the resulting executable, 20 with any edition of Qt, and distribute the resulting executable,
21 without including the source code for Qt in the source distribution. 21 without including the source code for Qt in the source distribution.
22*/ 22*/
23 23
24#include <qlayout.h> 24#include <qlayout.h>
25#include <qheader.h> 25#include <qheader.h>
26#include <qcursor.h> 26#include <qcursor.h>
27#include <qwhatsthis.h> 27#include <qwhatsthis.h>
28#include <qdialog.h> 28#include <qdialog.h>
29#include <qlabel.h> 29#include <qlabel.h>
30#include <qpushbutton.h> 30#include <qpushbutton.h>
31 31
32#include <qinputdialog.h> 32#include <qinputdialog.h>
33 33
34#include <qvbox.h> 34#include <qvbox.h>
35#include <kdebug.h> 35#include <kdebug.h>
36#include "koprefs.h" 36#include "koprefs.h"
37#include <klocale.h> 37#include <klocale.h>
38#include <kglobal.h> 38#include <kglobal.h>
39#include <kdateedit.h> 39#include <kdateedit.h>
40#include "ktimeedit.h" 40#include "ktimeedit.h"
41#include <kiconloader.h> 41#include <kiconloader.h>
42#include <kmessagebox.h> 42#include <kmessagebox.h>
43 43
44#include <libkcal/icaldrag.h> 44#include <libkcal/icaldrag.h>
45#include <libkcal/vcaldrag.h> 45#include <libkcal/vcaldrag.h>
46#include <libkcal/calfilter.h> 46#include <libkcal/calfilter.h>
47#include <libkcal/dndfactory.h> 47#include <libkcal/dndfactory.h>
48#include <libkcal/calendarresources.h> 48#include <libkcal/calendarresources.h>
49#include <libkcal/resourcecalendar.h> 49#include <libkcal/resourcecalendar.h>
50#include <kresources/resourceselectdialog.h> 50#include <kresources/resourceselectdialog.h>
51#include <libkcal/kincidenceformatter.h> 51#include <libkcal/kincidenceformatter.h>
52#ifndef DESKTOP_VERSION 52#ifndef DESKTOP_VERSION
53#include <qpe/qpeapplication.h> 53#include <qpe/qpeapplication.h>
54#else 54#else
55#include <qapplication.h> 55#include <qapplication.h>
56#endif 56#endif
57#ifndef KORG_NOPRINTER 57#ifndef KORG_NOPRINTER
58#include "calprinter.h" 58#include "calprinter.h"
59#endif 59#endif
60#include "docprefs.h" 60#include "docprefs.h"
61 61
62#include "kotodoview.h" 62#include "kotodoview.h"
63using namespace KOrg; 63using namespace KOrg;
64 64
65 65
66KOStartTodoPrefs::KOStartTodoPrefs( QString sum, QWidget *parent, const char *name ) : 66KOStartTodoPrefs::KOStartTodoPrefs( QString sum, QWidget *parent, const char *name ) :
67 QDialog( parent, name, true ) 67 QDialog( parent, name, true )
68{ 68{
69 mStopAll = true; 69 mStopAll = true;
70 setCaption( i18n("Start todo") ); 70 setCaption( i18n("Start todo") );
71 QVBoxLayout* lay = new QVBoxLayout( this ); 71 QVBoxLayout* lay = new QVBoxLayout( this );
72 lay->setSpacing( 3 ); 72 lay->setSpacing( 3 );
73 lay->setMargin( 3 ); 73 lay->setMargin( 3 );
74 QLabel * lab = new QLabel( i18n("<b>%1\n</b>").arg( sum ), this ); 74 QLabel * lab = new QLabel( i18n("<b>%1\n</b>").arg( sum ), this );
75 lay->addWidget( lab ); 75 lay->addWidget( lab );
76 lab->setAlignment( AlignCenter ); 76 lab->setAlignment( AlignCenter );
77 77
78 QPushButton * ok = new QPushButton( i18n("Start this todo\nand stop all running"), this ); 78 QPushButton * ok = new QPushButton( i18n("Start this todo\nand stop all running"), this );
79 lay->addWidget( ok ); 79 lay->addWidget( ok );
80 ok->setDefault( true ); 80 ok->setDefault( true );
81 QPushButton * start = new QPushButton( i18n("Start todo"), this ); 81 QPushButton * start = new QPushButton( i18n("Start todo"), this );
82 lay->addWidget( start ); 82 lay->addWidget( start );
83 QPushButton * cancel = new QPushButton( i18n("Cancel - do not start"), this ); 83 QPushButton * cancel = new QPushButton( i18n("Cancel - do not start"), this );
84 lay->addWidget( cancel ); 84 lay->addWidget( cancel );
85 connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) ); 85 connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) );
86 connect ( start,SIGNAL(clicked() ),this , SLOT ( doStop() ) ); 86 connect ( start,SIGNAL(clicked() ),this , SLOT ( doStop() ) );
87 connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) ); 87 connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) );
88 resize( sizeHint() ); 88 resize( sizeHint() );
89 89
90} 90}
91void KOStartTodoPrefs::doStop() 91void KOStartTodoPrefs::doStop()
92{ 92{
93 mStopAll = false; 93 mStopAll = false;
94 accept(); 94 accept();
95} 95}
96KOStopTodoPrefs::KOStopTodoPrefs( Todo* todo, QWidget *parent, const char *name ) : 96KOStopTodoPrefs::KOStopTodoPrefs( Todo* todo, QWidget *parent, const char *name ) :
97 QDialog( parent, name, true ) 97 QDialog( parent, name, true )
98{ 98{
99 mTodo = todo; 99 mTodo = todo;
100 setCaption( i18n("Stop todo") ); 100 setCaption( i18n("Stop todo") );
101 QVBoxLayout* lay = new QVBoxLayout( this ); 101 QVBoxLayout* lay = new QVBoxLayout( this );
102 lay->setSpacing( 3 ); 102 lay->setSpacing( 3 );
103 lay->setMargin( 3 ); 103 lay->setMargin( 3 );
104 QLabel * lab = new QLabel( i18n("<b>%1\n</b>").arg( todo->summary() ), this ); 104 QLabel * lab = new QLabel( i18n("<b>%1\n</b>").arg( todo->summary() ), this );
105 lay->addWidget( lab ); 105 lay->addWidget( lab );
106 lab->setAlignment( AlignHCenter ); 106 lab->setAlignment( AlignHCenter );
107 lab = new QLabel( i18n("Additional Comment:"), this ); 107 lab = new QLabel( i18n("Additional Comment:"), this );
108 lay->addWidget( lab ); 108 lay->addWidget( lab );
109 mComment = new QLineEdit( this ); 109 mComment = new QLineEdit( this );
110 lay->addWidget( mComment ); 110 lay->addWidget( mComment );
111 QHBox * start = new QHBox ( this ); 111 QHBox * start = new QHBox ( this );
112 lay->addWidget( start ); 112 lay->addWidget( start );
113 lab = new QLabel( i18n("Start:"), start ); 113 lab = new QLabel( i18n("Start:"), start );
114 QHBox * end = new QHBox ( this ); 114 QHBox * end = new QHBox ( this );
115 lay->addWidget( end ); 115 lay->addWidget( end );
116 lab = new QLabel( i18n("End:"), end ); 116 lab = new QLabel( i18n("End:"), end );
117 sde = new KDateEdit( start ); 117 sde = new KDateEdit( start );
118 ste = new KOTimeEdit( start ); 118 ste = new KOTimeEdit( start );
119 connect ( sde,SIGNAL(setTimeTo( QTime ) ),ste , SLOT ( setTime(QTime ) ) ); 119 connect ( sde,SIGNAL(setTimeTo( QTime ) ),ste , SLOT ( setTime(QTime ) ) );
120 ede = new KDateEdit( end ); 120 ede = new KDateEdit( end );
121 ete = new KOTimeEdit(end ); 121 ete = new KOTimeEdit(end );
122 connect ( ede,SIGNAL(setTimeTo( QTime ) ),ete , SLOT ( setTime(QTime ) ) ); 122 connect ( ede,SIGNAL(setTimeTo( QTime ) ),ete , SLOT ( setTime(QTime ) ) );
123 sde->setDate( mTodo->runStart().date() ); 123 sde->setDate( mTodo->runStart().date() );
124 ste->setTime( mTodo->runStart().time() ); 124 ste->setTime( mTodo->runStart().time() );
125 ede->setDate( QDate::currentDate()); 125 ede->setDate( QDate::currentDate());
126 ete->setTime( QTime::currentTime() ); 126 ete->setTime( QTime::currentTime() );
127 QPushButton * ok = new QPushButton( i18n("Stop and save"), this ); 127 QPushButton * ok = new QPushButton( i18n("Stop and save"), this );
128 lay->addWidget( ok ); 128 lay->addWidget( ok );
129 ok->setDefault( true ); 129 ok->setDefault( true );
130 QPushButton * cancel = new QPushButton( i18n("Continue running"), this ); 130 QPushButton * cancel = new QPushButton( i18n("Continue running"), this );
131 lay->addWidget( cancel ); 131 lay->addWidget( cancel );
132 connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) ); 132 connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) );
133 connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) ); 133 connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) );
134 ok = new QPushButton( i18n("Stop - do not save"), this ); 134 ok = new QPushButton( i18n("Stop - do not save"), this );
135 connect ( ok,SIGNAL(clicked() ),this , SLOT ( doNotSave() ) ); 135 connect ( ok,SIGNAL(clicked() ),this , SLOT ( doNotSave() ) );
136 lay->addWidget( ok ); 136 lay->addWidget( ok );
137 if (QApplication::desktop()->width() < 320 ) 137 if (QApplication::desktop()->width() < 320 )
138 resize( 240, sizeHint().height() ); 138 resize( 240, sizeHint().height() );
139 else 139 else
140 resize( 320, sizeHint().height() ); 140 resize( 320, sizeHint().height() );
141 141
142} 142}
143 143
144void KOStopTodoPrefs::accept() 144void KOStopTodoPrefs::accept()
145{ 145{
146 QDateTime start = QDateTime( sde->date(), ste->getTime() ); 146 QDateTime start = QDateTime( sde->date(), ste->getTime() );
147 QDateTime stop = QDateTime( ede->date(), ete->getTime() ); 147 QDateTime stop = QDateTime( ede->date(), ete->getTime() );
148 if ( start > stop ) { 148 if ( start > stop ) {
149 KMessageBox::sorry(this, 149 KMessageBox::sorry(this,
150 i18n("The start time is\nafter the end time!"), 150 i18n("The start time is\nafter the end time!"),
151 i18n("Time mismatch!")); 151 i18n("Time mismatch!"));
152 return; 152 return;
153 } 153 }
154 mTodo->saveRunningInfo( mComment->text(), start, stop ); 154 mTodo->saveRunningInfo( mComment->text(), start, stop );
155 QDialog::accept(); 155 QDialog::accept();
156} 156}
157void KOStopTodoPrefs::doNotSave() 157void KOStopTodoPrefs::doNotSave()
158{ 158{
159 int result = KMessageBox::warningContinueCancel(this, 159 int result = KMessageBox::warningContinueCancel(this,
160 i18n("Do you really want to set\nthe state to stopped\nwithout saving the data?"),mTodo->summary(),i18n("Yes, stop todo") ); 160 i18n("Do you really want to set\nthe state to stopped\nwithout saving the data?"),mTodo->summary(),i18n("Yes, stop todo") );
161 if (result != KMessageBox::Continue) return; 161 if (result != KMessageBox::Continue) return;
162 mTodo->stopRunning(); 162 mTodo->stopRunning();
163 QDialog::accept(); 163 QDialog::accept();
164} 164}
165 165
166 166
167class KOTodoViewWhatsThis :public QWhatsThis 167class KOTodoViewWhatsThis :public QWhatsThis
168{ 168{
169public: 169public:
170 KOTodoViewWhatsThis( QWidget *wid, KOTodoView* view ) : QWhatsThis( wid ), _wid(wid),_view (view) { }; 170 KOTodoViewWhatsThis( QWidget *wid, KOTodoView* view ) : QWhatsThis( wid ), _wid(wid),_view (view) { };
171 171
172protected: 172protected:
173 virtual QString text( const QPoint& p) 173 virtual QString text( const QPoint& p)
174 { 174 {
175 return _view->getWhatsThisText(p) ; 175 return _view->getWhatsThisText(p) ;
176 } 176 }
177private: 177private:
178 QWidget* _wid; 178 QWidget* _wid;
179 KOTodoView * _view; 179 KOTodoView * _view;
180}; 180};
181 181
182KOTodoListView::KOTodoListView(Calendar *calendar,QWidget *parent, 182KOTodoListView::KOTodoListView(Calendar *calendar,QWidget *parent,
183 const char *name) : 183 const char *name) :
184 KListView(parent,name) 184 KListView(parent,name)
185{ 185{
186 mName = QString ( name ); 186 mName = QString ( name );
187 mCalendar = calendar; 187 mCalendar = calendar;
188#ifndef DESKTOP_VERSION 188#ifndef DESKTOP_VERSION
189 QPEApplication::setStylusOperation(viewport(), QPEApplication::RightOnHold ); 189 QPEApplication::setStylusOperation(viewport(), QPEApplication::RightOnHold );
190#endif 190#endif
191 mOldCurrent = 0; 191 mOldCurrent = 0;
192 mMousePressed = false; 192 mMousePressed = false;
193 193
194 setAcceptDrops(true); 194 setAcceptDrops(true);
195 viewport()->setAcceptDrops(true); 195 viewport()->setAcceptDrops(true);
196 int size = 16; 196 int size = 16;
197 if (qApp->desktop()->width() < 300 ) 197 if (qApp->desktop()->width() < 300 )
198 size = 12; 198 size = 12;
199 setTreeStepSize( size + 6 ); 199 setTreeStepSize( size + 6 );
200 200
201} 201}
202 202
203void KOTodoListView::contentsDragEnterEvent(QDragEnterEvent *e) 203void KOTodoListView::contentsDragEnterEvent(QDragEnterEvent *e)
204{ 204{
205#ifndef KORG_NODND 205#ifndef KORG_NODND
206// kdDebug() << "KOTodoListView::contentsDragEnterEvent" << endl; 206// kdDebug() << "KOTodoListView::contentsDragEnterEvent" << endl;
207 if ( !ICalDrag::canDecode( e ) && !VCalDrag::canDecode( e ) && 207 if ( !ICalDrag::canDecode( e ) && !VCalDrag::canDecode( e ) &&
208 !QTextDrag::canDecode( e ) ) { 208 !QTextDrag::canDecode( e ) ) {
209 e->ignore(); 209 e->ignore();
210 return; 210 return;
211 } 211 }
212 212
213 mOldCurrent = currentItem(); 213 mOldCurrent = currentItem();
214#endif 214#endif
215} 215}
216 216
217 217
218void KOTodoListView::contentsDragMoveEvent(QDragMoveEvent *e) 218void KOTodoListView::contentsDragMoveEvent(QDragMoveEvent *e)
219{ 219{
220#ifndef KORG_NODND 220#ifndef KORG_NODND
221// kdDebug() << "KOTodoListView::contentsDragMoveEvent" << endl; 221// kdDebug() << "KOTodoListView::contentsDragMoveEvent" << endl;
222 222
223 if ( !ICalDrag::canDecode( e ) && !VCalDrag::canDecode( e ) && 223 if ( !ICalDrag::canDecode( e ) && !VCalDrag::canDecode( e ) &&
224 !QTextDrag::canDecode( e ) ) { 224 !QTextDrag::canDecode( e ) ) {
225 e->ignore(); 225 e->ignore();
226 return; 226 return;
227 } 227 }
228 228
229 e->accept(); 229 e->accept();
230#endif 230#endif
231} 231}
232 232
233void KOTodoListView::contentsDragLeaveEvent(QDragLeaveEvent *) 233void KOTodoListView::contentsDragLeaveEvent(QDragLeaveEvent *)
234{ 234{
235#ifndef KORG_NODND 235#ifndef KORG_NODND
236// kdDebug() << "KOTodoListView::contentsDragLeaveEvent" << endl; 236// kdDebug() << "KOTodoListView::contentsDragLeaveEvent" << endl;
237 237
238 setCurrentItem(mOldCurrent); 238 setCurrentItem(mOldCurrent);
239 setSelected(mOldCurrent,true); 239 setSelected(mOldCurrent,true);
240#endif 240#endif
241} 241}
242 242
243void KOTodoListView::contentsDropEvent(QDropEvent *e) 243void KOTodoListView::contentsDropEvent(QDropEvent *e)
244{ 244{
245#ifndef KORG_NODND 245#ifndef KORG_NODND
246// kdDebug() << "KOTodoListView::contentsDropEvent" << endl; 246// kdDebug() << "KOTodoListView::contentsDropEvent" << endl;
247 247
248 if ( !ICalDrag::canDecode( e ) && !VCalDrag::canDecode( e ) && 248 if ( !ICalDrag::canDecode( e ) && !VCalDrag::canDecode( e ) &&
249 !QTextDrag::canDecode( e ) ) { 249 !QTextDrag::canDecode( e ) ) {
250 e->ignore(); 250 e->ignore();
251 return; 251 return;
252 } 252 }
253 253
254 DndFactory factory( mCalendar ); 254 DndFactory factory( mCalendar );
255 Todo *todo = factory.createDropTodo(e); 255 Todo *todo = factory.createDropTodo(e);
256 256
257 if (todo) { 257 if (todo) {
258 e->acceptAction(); 258 e->acceptAction();
259 259
260 KOTodoViewItem *destination = 260 KOTodoViewItem *destination =
261 (KOTodoViewItem *)itemAt(contentsToViewport(e->pos())); 261 (KOTodoViewItem *)itemAt(contentsToViewport(e->pos()));
262 Todo *destinationEvent = 0; 262 Todo *destinationEvent = 0;
263 if (destination) destinationEvent = destination->todo(); 263 if (destination) destinationEvent = destination->todo();
264 264
265 Todo *existingTodo = mCalendar->todo(todo->uid()); 265 Todo *existingTodo = mCalendar->todo(todo->uid());
266 266
267 if(existingTodo) { 267 if(existingTodo) {
268 Incidence *to = destinationEvent; 268 Incidence *to = destinationEvent;
269 while(to) { 269 while(to) {
270 if (to->uid() == todo->uid()) { 270 if (to->uid() == todo->uid()) {
271 KMessageBox::sorry(this, 271 KMessageBox::sorry(this,
272 i18n("Cannot move Todo to itself\nor a child of itself"), 272 i18n("Cannot move Todo to itself\nor a child of itself"),
273 i18n("Drop Todo")); 273 i18n("Drop Todo"));
274 delete todo; 274 delete todo;
275 return; 275 return;
276 } 276 }
277 to = to->relatedTo(); 277 to = to->relatedTo();
278 } 278 }
279 internalDrop = true; 279 internalDrop = true;
280 if ( destinationEvent ) 280 if ( destinationEvent )
281 reparentTodoSignal( destinationEvent, existingTodo ); 281 reparentTodoSignal( destinationEvent, existingTodo );
282 else 282 else
283 unparentTodoSignal(existingTodo); 283 unparentTodoSignal(existingTodo);
284 delete todo; 284 delete todo;
285 } else { 285 } else {
286 mCalendar->addTodo(todo); 286 mCalendar->addTodo(todo);
287 emit todoDropped(todo, KOGlobals::EVENTADDED); 287 emit todoDropped(todo, KOGlobals::EVENTADDED);
288 if ( destinationEvent ) 288 if ( destinationEvent )
289 reparentTodoSignal( destinationEvent, todo ); 289 reparentTodoSignal( destinationEvent, todo );
290 } 290 }
291 } 291 }
292 else { 292 else {
293 QString text; 293 QString text;
294 if (QTextDrag::decode(e,text)) { 294 if (QTextDrag::decode(e,text)) {
295 //QListViewItem *qlvi = itemAt( contentsToViewport(e->pos()) ); 295 //QListViewItem *qlvi = itemAt( contentsToViewport(e->pos()) );
296 KOTodoViewItem *todoi = static_cast<KOTodoViewItem *>(itemAt( contentsToViewport(e->pos()) )); 296 KOTodoViewItem *todoi = static_cast<KOTodoViewItem *>(itemAt( contentsToViewport(e->pos()) ));
297 qDebug("Dropped : " + text); 297 qDebug("Dropped : " + text);
298 QStringList emails = QStringList::split(",",text); 298 QStringList emails = QStringList::split(",",text);
299 for(QStringList::ConstIterator it = emails.begin();it!=emails.end();++it) { 299 for(QStringList::ConstIterator it = emails.begin();it!=emails.end();++it) {
300 int pos = (*it).find("<"); 300 int pos = (*it).find("<");
301 QString name = (*it).left(pos); 301 QString name = (*it).left(pos);
302 QString email = (*it).mid(pos); 302 QString email = (*it).mid(pos);
303 if (!email.isEmpty() && todoi) { 303 if (!email.isEmpty() && todoi) {
304 todoi->todo()->addAttendee(new Attendee(name,email)); 304 todoi->todo()->addAttendee(new Attendee(name,email));
305 } 305 }
306 } 306 }
307 } 307 }
308 else { 308 else {
309 qDebug("KOTodoListView::contentsDropEvent(): Todo from drop not decodable "); 309 qDebug("KOTodoListView::contentsDropEvent(): Todo from drop not decodable ");
310 e->ignore(); 310 e->ignore();
311 } 311 }
312 } 312 }
313#endif 313#endif
314} 314}
315void KOTodoListView::wheelEvent (QWheelEvent *e) 315void KOTodoListView::wheelEvent (QWheelEvent *e)
316{ 316{
317 QListView::wheelEvent (e); 317 QListView::wheelEvent (e);
318} 318}
319 319
320void KOTodoListView::contentsMousePressEvent(QMouseEvent* e) 320void KOTodoListView::contentsMousePressEvent(QMouseEvent* e)
321{ 321{
322 322
323 QPoint p(contentsToViewport(e->pos())); 323 QPoint p(contentsToViewport(e->pos()));
324 QListViewItem *i = itemAt(p); 324 QListViewItem *i = itemAt(p);
325 bool rootClicked = true; 325 bool rootClicked = true;
326 if (i) { 326 if (i) {
327 // if the user clicked into the root decoration of the item, don't 327 // if the user clicked into the root decoration of the item, don't
328 // try to start a drag! 328 // try to start a drag!
329 int X = p.x(); 329 int X = p.x();
330 //qDebug("%d %d %d", X, header()->sectionPos(0), treeStepSize() ); 330 //qDebug("%d %d %d", X, header()->sectionPos(0), treeStepSize() );
331 if (X > header()->sectionPos(0) + 331 if (X > header()->sectionPos(0) +
332 treeStepSize() * (i->depth() + (rootIsDecorated() ? 1 : 0)) + 332 treeStepSize() * (i->depth() + (rootIsDecorated() ? 1 : 0)) +
333 itemMargin() +i->height()|| 333 itemMargin() +i->height()||
334 X < header()->sectionPos(0)) { 334 X < header()->sectionPos(0)) {
335 rootClicked = false; 335 rootClicked = false;
336 } 336 }
337 } else { 337 } else {
338 rootClicked = false; 338 rootClicked = false;
339 } 339 }
340#ifndef KORG_NODND 340#ifndef KORG_NODND
341 mMousePressed = false; 341 mMousePressed = false;
342 if (! rootClicked && !( e->button() == RightButton) ) { 342 if (! rootClicked && !( e->button() == RightButton) ) {
343 mPressPos = e->pos(); 343 mPressPos = e->pos();
344 mMousePressed = true; 344 mMousePressed = true;
345 } else { 345 } else {
346 mMousePressed = false; 346 mMousePressed = false;
347 } 347 }
348#endif 348#endif
349 //qDebug("KOTodoListView::contentsMousePressEvent %d", rootClicked); 349 //qDebug("KOTodoListView::contentsMousePressEvent %d", rootClicked);
350#ifndef DESKTOP_VERSION 350#ifndef DESKTOP_VERSION
351 if (!( e->button() == RightButton && rootClicked) ) 351 if (!( e->button() == RightButton && rootClicked) )
352 QListView::contentsMousePressEvent(e); 352 QListView::contentsMousePressEvent(e);
353#else 353#else
354 QListView::contentsMousePressEvent(e); 354 QListView::contentsMousePressEvent(e);
355#endif 355#endif
356} 356}
357void KOTodoListView::paintEvent(QPaintEvent* e) 357void KOTodoListView::paintEvent(QPaintEvent* e)
358{ 358{
359 emit paintNeeded(); 359 emit paintNeeded();
360 QListView::paintEvent( e); 360 QListView::paintEvent( e);
361} 361}
362void KOTodoListView::contentsMouseMoveEvent(QMouseEvent* e) 362void KOTodoListView::contentsMouseMoveEvent(QMouseEvent* e)
363{ 363{
364 364
365#ifndef KORG_NODND 365#ifndef KORG_NODND
366 //QListView::contentsMouseMoveEvent(e); 366 //QListView::contentsMouseMoveEvent(e);
367 if (mMousePressed && (mPressPos - e->pos()).manhattanLength() > 367 if (mMousePressed && (mPressPos - e->pos()).manhattanLength() >
368 QApplication::startDragDistance()*3) { 368 QApplication::startDragDistance()*3) {
369 mMousePressed = false; 369 mMousePressed = false;
370 QListViewItem *item = itemAt(contentsToViewport(mPressPos)); 370 QListViewItem *item = itemAt(contentsToViewport(mPressPos));
371 if (item) { 371 if (item) {
372 DndFactory factory( mCalendar ); 372 DndFactory factory( mCalendar );
373 ICalDrag *vd = factory.createDrag( 373 ICalDrag *vd = factory.createDrag(
374 ((KOTodoViewItem *)item)->todo(),viewport()); 374 ((KOTodoViewItem *)item)->todo(),viewport());
375 internalDrop = false; 375 internalDrop = false;
376 // we cannot do any senseful here, because the DnD is still broken in Qt 376 // we cannot do any senseful here, because the DnD is still broken in Qt
377 if (vd->drag()) { 377 if (vd->drag()) {
378 if ( !internalDrop ) { 378 if ( !internalDrop ) {
379 //emit deleteTodo( ((KOTodoViewItem *)item)->todo() ); 379 //emit deleteTodo( ((KOTodoViewItem *)item)->todo() );
380 qDebug("Dnd: External move: Delete drag source "); 380 qDebug("Dnd: External move: Delete drag source ");
381 } else 381 } else
382 qDebug("Dnd: Internal move "); 382 qDebug("Dnd: Internal move ");
383 383
384 } else { 384 } else {
385 if ( !internalDrop ) { 385 if ( !internalDrop ) {
386 qDebug("Dnd: External Copy"); 386 qDebug("Dnd: External Copy");
387 } else 387 } else
388 qDebug("DnD: Internal copy: Copy pending"); 388 qDebug("DnD: Internal copy: Copy pending");
389 } 389 }
390 } 390 }
391 } 391 }
392#endif 392#endif
393} 393}
394void KOTodoListView::keyReleaseEvent ( QKeyEvent *e ) 394void KOTodoListView::keyReleaseEvent ( QKeyEvent *e )
395{ 395{
396 if ( !e->isAutoRepeat() ) { 396 if ( !e->isAutoRepeat() ) {
397 mFlagKeyPressed = false; 397 mFlagKeyPressed = false;
398 } 398 }
399} 399}
400 400
401 401
402void KOTodoListView::keyPressEvent ( QKeyEvent * e ) 402void KOTodoListView::keyPressEvent ( QKeyEvent * e )
403{ 403{
404 qApp->processEvents(); 404 qApp->processEvents();
405 if ( !isVisible() ) { 405 if ( !isVisible() ) {
406 e->ignore(); 406 e->ignore();
407 return; 407 return;
408 } 408 }
409 if ( e->isAutoRepeat() && !mFlagKeyPressed ) { 409 if ( e->isAutoRepeat() && !mFlagKeyPressed ) {
410 e->ignore(); 410 e->ignore();
411 // qDebug(" ignore %d",e->isAutoRepeat() ); 411 // qDebug(" ignore %d",e->isAutoRepeat() );
412 return; 412 return;
413 } 413 }
414 if (! e->isAutoRepeat() ) 414 if (! e->isAutoRepeat() )
415 mFlagKeyPressed = true; 415 mFlagKeyPressed = true;
416 QListViewItem* cn; 416 QListViewItem* cn;
417 if ( e->key() == Qt::Key_Return || e->key() == Qt::Key_Enter ) { 417 if ( e->key() == Qt::Key_Return || e->key() == Qt::Key_Enter ) {
418 cn = currentItem(); 418 cn = currentItem();
419 if ( cn ) { 419 if ( cn ) {
420 KOTodoViewItem* ci = (KOTodoViewItem*)( cn ); 420 KOTodoViewItem* ci = (KOTodoViewItem*)( cn );
421 if ( ci ){ 421 if ( ci ){
422 if ( e->state() == ShiftButton ) 422 if ( e->state() == ShiftButton )
423 ci->setOn( false ); 423 ci->setOn( false );
424 else 424 else
425 ci->setOn( true ); 425 ci->setOn( true );
426 cn = cn->itemBelow(); 426 cn = cn->itemBelow();
427 if ( cn ) { 427 if ( cn ) {
428 setCurrentItem ( cn ); 428 setCurrentItem ( cn );
429 ensureItemVisible ( cn ); 429 ensureItemVisible ( cn );
430 } 430 }
431 431
432 } 432 }
433 } 433 }
434 434
435 e->accept();
435 return; 436 return;
436 } 437 }
437 438
438 if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton || mName != "todolistsmall" ) { 439 if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton || mName != "todolistsmall" ) {
439 switch ( e->key() ) { 440 switch ( e->key() ) {
440 case Qt::Key_Down: 441 case Qt::Key_Down:
441 case Qt::Key_Up: 442 case Qt::Key_Up:
442 QListView::keyPressEvent ( e ); 443 QListView::keyPressEvent ( e );
444 e->accept();
443 break; 445 break;
444 case Qt::Key_Left: 446 case Qt::Key_Left:
445 case Qt::Key_Right: 447 case Qt::Key_Right:
446 QListView::keyPressEvent ( e ); 448 QListView::keyPressEvent ( e );
447 e->accept(); 449 e->accept();
448 return; 450 return;
449 break; 451 break;
450 default: 452 default:
451 e->ignore(); 453 e->ignore();
452 break; 454 break;
453 } 455 }
454 return; 456 return;
455 } 457 }
456 e->ignore(); 458 e->ignore();
457} 459}
458void KOTodoListView::contentsMouseReleaseEvent(QMouseEvent *e) 460void KOTodoListView::contentsMouseReleaseEvent(QMouseEvent *e)
459{ 461{
460 QListView::contentsMouseReleaseEvent(e); 462 QListView::contentsMouseReleaseEvent(e);
461 mMousePressed = false; 463 mMousePressed = false;
462} 464}
463 465
464void KOTodoListView::contentsMouseDoubleClickEvent(QMouseEvent *e) 466void KOTodoListView::contentsMouseDoubleClickEvent(QMouseEvent *e)
465{ 467{
466 if (!e) return; 468 if (!e) return;
467 469
468 QPoint vp = contentsToViewport(e->pos()); 470 QPoint vp = contentsToViewport(e->pos());
469 471
470 QListViewItem *item = itemAt(vp); 472 QListViewItem *item = itemAt(vp);
471 473
472 emit double_Clicked(item); 474 emit double_Clicked(item);
473 if (!item) return; 475 if (!item) return;
474 476
475 emit doubleClicked(item,vp,0); 477 emit doubleClicked(item,vp,0);
476} 478}
477 479
478///////////////////////////////////////////////////////////////////////////// 480/////////////////////////////////////////////////////////////////////////////
479 481
480KOQuickTodo::KOQuickTodo(QWidget *parent) : 482KOQuickTodo::KOQuickTodo(QWidget *parent) :
481 QLineEdit(parent) 483 QLineEdit(parent)
482{ 484{
483 setText(i18n("Click to add new Todo")); 485 setText(i18n("Click to add new Todo"));
484} 486}
485 487
486void KOQuickTodo::focusInEvent(QFocusEvent *ev) 488void KOQuickTodo::focusInEvent(QFocusEvent *ev)
487{ 489{
488 if ( text()==i18n("Click to add new Todo") ) 490 if ( text()==i18n("Click to add new Todo") )
489 setText(""); 491 setText("");
490 QLineEdit::focusInEvent(ev); 492 QLineEdit::focusInEvent(ev);
491} 493}
492 494
493void KOQuickTodo::focusOutEvent(QFocusEvent *ev) 495void KOQuickTodo::focusOutEvent(QFocusEvent *ev)
494{ 496{
495 setText(i18n("Click to add new Todo")); 497 setText(i18n("Click to add new Todo"));
496 QLineEdit::focusOutEvent(ev); 498 QLineEdit::focusOutEvent(ev);
497} 499}
498 500
499///////////////////////////////////////////////////////////////////////////// 501/////////////////////////////////////////////////////////////////////////////
500 502
501KOTodoView::KOTodoView(Calendar *calendar,QWidget* parent,const char* name) : 503KOTodoView::KOTodoView(Calendar *calendar,QWidget* parent,const char* name) :
502 KOrg::BaseView(calendar,parent,name) 504 KOrg::BaseView(calendar,parent,name)
503{ 505{
504 mCategoryPopupMenu = 0; 506 mCategoryPopupMenu = 0;
505 mPendingUpdateBeforeRepaint = false; 507 mPendingUpdateBeforeRepaint = false;
506 isFlatDisplay = false; 508 isFlatDisplay = false;
507 mNavigator = 0; 509 mNavigator = 0;
508 QBoxLayout *topLayout = new QVBoxLayout(this); 510 QBoxLayout *topLayout = new QVBoxLayout(this);
509 mName = QString ( name ); 511 mName = QString ( name );
510 mBlockUpdate = false; 512 mBlockUpdate = false;
511 mQuickBar = new QWidget( this ); 513 mQuickBar = new QWidget( this );
512 topLayout->addWidget(mQuickBar); 514 topLayout->addWidget(mQuickBar);
513 515
514 mQuickAdd = new KOQuickTodo(mQuickBar); 516 mQuickAdd = new KOQuickTodo(mQuickBar);
515 QBoxLayout *quickLayout = new QHBoxLayout(mQuickBar); 517 QBoxLayout *quickLayout = new QHBoxLayout(mQuickBar);
516 quickLayout->addWidget( mQuickAdd ); 518 quickLayout->addWidget( mQuickAdd );
519 mNewSubBut = new QPushButton( "sub",mQuickBar );
520 QPushButton * s_done = new QPushButton( "D",mQuickBar );
521 QPushButton * s_run = new QPushButton( "R",mQuickBar );
522 QPushButton * allopen = new QPushButton( "O",mQuickBar );
523 QPushButton * allclose = new QPushButton( "C",mQuickBar );
517 QPushButton * flat = new QPushButton( "F",mQuickBar ); 524 QPushButton * flat = new QPushButton( "F",mQuickBar );
525
518 int fixwid = flat->sizeHint().height(); 526 int fixwid = flat->sizeHint().height();
519 if ( QApplication::desktop()->width() >= 800 ) 527 if ( QApplication::desktop()->width() >= 800 )
520 fixwid *= 2; 528 fixwid *= 2;
521 flat->setFixedWidth( fixwid ); 529 flat->setFixedWidth( fixwid );
522 connect ( flat, SIGNAL ( clicked()), SLOT ( setAllFlat())); 530 connect ( flat, SIGNAL ( clicked()), SLOT ( setAllFlat()));
523 QPushButton * allopen = new QPushButton( "O",mQuickBar );
524 allopen->setFixedWidth( fixwid ); 531 allopen->setFixedWidth( fixwid );
525 connect ( allopen, SIGNAL ( clicked()), SLOT ( setAllOpen())); 532 connect ( allopen, SIGNAL ( clicked()), SLOT ( setAllOpen()));
526 QPushButton * allclose = new QPushButton( "C",mQuickBar );
527 allclose->setFixedWidth( fixwid ); 533 allclose->setFixedWidth( fixwid );
528 connect ( allclose, SIGNAL ( clicked()), SLOT ( setAllClose())); 534 connect ( allclose, SIGNAL ( clicked()), SLOT ( setAllClose()));
529 QPushButton * s_done = new QPushButton( "D",mQuickBar );
530 s_done->setPixmap( SmallIcon("greenhook16")); 535 s_done->setPixmap( SmallIcon("greenhook16"));
531 s_done->setFixedWidth( fixwid ); 536 s_done->setFixedWidth( fixwid );
532 s_done->setFixedHeight( flat->sizeHint().height() ); 537 s_done->setFixedHeight( flat->sizeHint().height() );
533 connect ( s_done, SIGNAL ( clicked()), SLOT ( toggleCompleted())); 538 connect ( s_done, SIGNAL ( clicked()), SLOT ( toggleCompleted()));
534 QPushButton * s_run = new QPushButton( "R",mQuickBar );
535 s_run->setPixmap( SmallIcon("ko16old")); 539 s_run->setPixmap( SmallIcon("ko16old"));
536 s_run->setFixedWidth( fixwid ); 540 s_run->setFixedWidth( fixwid );
537 s_run->setFixedHeight( flat->sizeHint().height() ); 541 s_run->setFixedHeight( flat->sizeHint().height() );
538 connect ( s_run, SIGNAL ( clicked()), SLOT ( toggleRunning())); 542 connect ( s_run, SIGNAL ( clicked()), SLOT ( toggleRunning()));
539 543
540 mNewSubBut = new QPushButton( "sub",mQuickBar );
541 mNewSubBut->setFixedWidth( fixwid*3/2 ); 544 mNewSubBut->setFixedWidth( fixwid*3/2 );
542 connect ( mNewSubBut, SIGNAL ( clicked()), SLOT ( newSubTodo())); 545 connect ( mNewSubBut, SIGNAL ( clicked()), SLOT ( newSubTodo()));
543 mNewSubBut->setEnabled( false ); 546 mNewSubBut->setEnabled( false );
544 quickLayout->addWidget( mNewSubBut ); 547 quickLayout->addWidget( mNewSubBut );
545 quickLayout->addWidget( s_done ); 548 quickLayout->addWidget( s_done );
546 quickLayout->addWidget( s_run ); 549 quickLayout->addWidget( s_run );
547 550
548 quickLayout->addWidget( allopen ); 551 quickLayout->addWidget( allopen );
549 quickLayout->addWidget( allclose ); 552 quickLayout->addWidget( allclose );
550 quickLayout->addWidget( flat ); 553 quickLayout->addWidget( flat );
551 554
552 if ( !KOPrefs::instance()->mEnableQuickTodo ) mQuickBar->hide(); 555 if ( !KOPrefs::instance()->mEnableQuickTodo ) mQuickBar->hide();
553 556
554 mTodoListView = new KOTodoListView(calendar,this, name ); 557 mTodoListView = new KOTodoListView(calendar,this, name );
555 topLayout->addWidget(mTodoListView); 558 topLayout->addWidget(mTodoListView);
556 //mTodoListView->header()->setMaximumHeight(30); 559 //mTodoListView->header()->setMaximumHeight(30);
557 mTodoListView->setRootIsDecorated(true); 560 mTodoListView->setRootIsDecorated(true);
558 mTodoListView->setAllColumnsShowFocus(true); 561 mTodoListView->setAllColumnsShowFocus(true);
559 562
560 mTodoListView->setShowSortIndicator(true); 563 mTodoListView->setShowSortIndicator(true);
561 564
562 mTodoListView->addColumn(i18n("Todo")); 565 mTodoListView->addColumn(i18n("Todo"));
563 mTodoListView->addColumn(i18n("Prio")); 566 mTodoListView->addColumn(i18n("Prio"));
564 mTodoListView->setColumnAlignment(1,AlignHCenter); 567 mTodoListView->setColumnAlignment(1,AlignHCenter);
565 mTodoListView->addColumn(i18n("Complete")); 568 mTodoListView->addColumn(i18n("Complete"));
566 mTodoListView->setColumnAlignment(2,AlignCenter); 569 mTodoListView->setColumnAlignment(2,AlignCenter);
567 570
568 mTodoListView->addColumn(i18n("Due Date")); 571 mTodoListView->addColumn(i18n("Due Date"));
569 mTodoListView->setColumnAlignment(3,AlignLeft); 572 mTodoListView->setColumnAlignment(3,AlignLeft);
570 mTodoListView->addColumn(i18n("Due Time")); 573 mTodoListView->addColumn(i18n("Due Time"));
571 mTodoListView->setColumnAlignment(4,AlignHCenter); 574 mTodoListView->setColumnAlignment(4,AlignHCenter);
572 575
573 mTodoListView->addColumn(i18n("Start Date")); 576 mTodoListView->addColumn(i18n("Start Date"));
574 mTodoListView->setColumnAlignment(5,AlignLeft); 577 mTodoListView->setColumnAlignment(5,AlignLeft);
575 mTodoListView->addColumn(i18n("Start Time")); 578 mTodoListView->addColumn(i18n("Start Time"));
576 mTodoListView->setColumnAlignment(6,AlignHCenter); 579 mTodoListView->setColumnAlignment(6,AlignHCenter);
577 580
578 mTodoListView->addColumn(i18n("Cancelled")); 581 //mTodoListView->addColumn(i18n("Cancelled"));
579 mTodoListView->addColumn(i18n("Categories")); 582 mTodoListView->addColumn(i18n("Categories"));
580 mTodoListView->addColumn(i18n("Calendar")); 583 mTodoListView->addColumn(i18n("Calendar"));
584 mTodoListView->addColumn(i18n("Last Modified"));
585 mTodoListView->addColumn(i18n("Created"));
586 mTodoListView->addColumn(i18n("Last Modified Sub"));
581#if 0 587#if 0
582 mTodoListView->addColumn(i18n("Sort Id")); 588 mTodoListView->addColumn(i18n("Sort Id"));
583 mTodoListView->setColumnAlignment(4,AlignHCenter); 589 mTodoListView->setColumnAlignment(4,AlignHCenter);
584#endif 590#endif
585 591
586 mTodoListView->setMinimumHeight( 60 ); 592 mTodoListView->setMinimumHeight( 60 );
587 mTodoListView->setItemsRenameable( true ); 593 mTodoListView->setItemsRenameable( true );
588 mTodoListView->setRenameable( 0 ); 594 mTodoListView->setRenameable( 0 );
589 mTodoListView->setColumnWidth( 0, 120 ); 595 mTodoListView->setColumnWidth( 0, 120 );
590 int iii = 0; 596 int iii = 0;
591 for ( iii = 0; iii< 10 ; ++iii ) 597 for ( iii = 0; iii< 12 ; ++iii )
592 mTodoListView->setColumnWidthMode( iii, QListView::Manual ); 598 mTodoListView->setColumnWidthMode( iii, QListView::Manual );
593 599
594 600
595 mKOTodoViewWhatsThis = new KOTodoViewWhatsThis(mTodoListView->viewport(),this); 601 mKOTodoViewWhatsThis = new KOTodoViewWhatsThis(mTodoListView->viewport(),this);
596 602
597 mPriorityPopupMenu = new QPopupMenu(this); 603 mPriorityPopupMenu = new QPopupMenu(this);
598 for (int i = 1; i <= 5; i++) { 604 for (int i = 1; i <= 5; i++) {
599 QString label = QString ("%1").arg (i); 605 QString label = QString ("%1").arg (i);
600 mPriority[mPriorityPopupMenu->insertItem (label)] = i; 606 mPriority[mPriorityPopupMenu->insertItem (label)] = i;
601 } 607 }
602 connect (mPriorityPopupMenu, SIGNAL(activated (int)), SLOT (setNewPriority(int))); 608 connect (mPriorityPopupMenu, SIGNAL(activated (int)), SLOT (setNewPriority(int)));
603 609
604 mPercentageCompletedPopupMenu = new QPopupMenu(this); 610 mPercentageCompletedPopupMenu = new QPopupMenu(this);
605 for (int i = 0; i <= 100; i+=20) { 611 for (int i = 0; i <= 100; i+=20) {
606 QString label = QString ("%1 %").arg (i); 612 QString label = QString ("%1 %").arg (i);
607 mPercentage[mPercentageCompletedPopupMenu->insertItem (label)] = i; 613 mPercentage[mPercentageCompletedPopupMenu->insertItem (label)] = i;
608 } 614 }
609 connect (mPercentageCompletedPopupMenu, SIGNAL (activated (int)), SLOT (setNewPercentage (int))); 615 connect (mPercentageCompletedPopupMenu, SIGNAL (activated (int)), SLOT (setNewPercentage (int)));
610 616
611 617
612 mCategoryPopupMenu = new QPopupMenu (this); 618 mCategoryPopupMenu = new QPopupMenu (this);
613 mCategoryPopupMenu->setCheckable (true); 619 mCategoryPopupMenu->setCheckable (true);
614 connect (mCategoryPopupMenu, SIGNAL (activated (int)), SLOT (changedCategories (int))); 620 connect (mCategoryPopupMenu, SIGNAL (activated (int)), SLOT (changedCategories (int)));
615 connect (mCategoryPopupMenu, SIGNAL (aboutToShow ()), SLOT (fillCategories ())); 621 connect (mCategoryPopupMenu, SIGNAL (aboutToShow ()), SLOT (fillCategories ()));
616 622
617 mCalPopupMenu = new QPopupMenu (this); 623 mCalPopupMenu = new QPopupMenu (this);
618 mCalPopupMenu->setCheckable (true); 624 mCalPopupMenu->setCheckable (true);
619 connect (mCalPopupMenu, SIGNAL (activated (int)), SLOT (changedCal (int))); 625 connect (mCalPopupMenu, SIGNAL (activated (int)), SLOT (changedCal (int)));
620 connect (mCalPopupMenu, SIGNAL (aboutToShow ()), SLOT (fillCal ())); 626 connect (mCalPopupMenu, SIGNAL (aboutToShow ()), SLOT (fillCal ()));
621 627
622 628
623 629
624 630
625 mItemPopupMenu = new QPopupMenu(this); 631 mItemPopupMenu = new QPopupMenu(this);
626 mItemPopupMenu->insertItem(i18n("Show"), this, 632 mItemPopupMenu->insertItem(i18n("Show"), this,
627 SLOT (showTodo())); 633 SLOT (showTodo()));
628 mItemPopupMenu->insertItem(i18n("Edit..."), this, 634 mItemPopupMenu->insertItem(i18n("Edit..."), this,
629 SLOT (editTodo())); 635 SLOT (editTodo()));
630 mItemPopupMenu->insertItem( i18n("Delete..."), this, 636 mItemPopupMenu->insertItem( i18n("Delete..."), this,
631 SLOT (deleteTodo())); 637 SLOT (deleteTodo()));
632 mItemPopupMenu->insertItem( i18n("Clone..."), this, 638 mItemPopupMenu->insertItem( i18n("Clone..."), this,
633 SLOT (cloneTodo())); 639 SLOT (cloneTodo()));
634 mItemPopupMenu->insertItem( i18n("Move..."), this, 640 mItemPopupMenu->insertItem( i18n("Move..."), this,
635 SLOT (moveTodo())); 641 SLOT (moveTodo()));
636#ifndef DESKTOP_VERSION 642#ifndef DESKTOP_VERSION
637 mItemPopupMenu->insertItem( i18n("Beam..."), this, 643 mItemPopupMenu->insertItem( i18n("Beam..."), this,
638 SLOT (beamTodo())); 644 SLOT (beamTodo()));
639#endif 645#endif
640 mItemPopupMenu->insertItem( i18n("Toggle Cancel"), this, 646 mItemPopupMenu->insertItem( i18n("Toggle Cancel"), this,
641 SLOT (cancelTodo())); 647 SLOT (cancelTodo()));
642 mItemPopupMenu->insertItem( i18n("Categories"), mCategoryPopupMenu); 648 mItemPopupMenu->insertItem( i18n("Categories"), mCategoryPopupMenu);
643 mItemPopupMenu->insertItem( i18n("Calendar"), mCalPopupMenu); 649 mItemPopupMenu->insertItem( i18n("Calendar"), mCalPopupMenu);
644 mItemPopupMenu->insertSeparator(); 650 mItemPopupMenu->insertSeparator();
645 mItemPopupMenu->insertItem( i18n("Start/Stop todo..."), this, 651 mItemPopupMenu->insertItem( i18n("Start/Stop todo..."), this,
646 SLOT (toggleRunningItem())); 652 SLOT (toggleRunningItem()));
647 mItemPopupMenu->insertSeparator(); 653 mItemPopupMenu->insertSeparator();
648 /* 654 /*
649 mItemPopupMenu->insertItem( i18n("New Todo..."), this, 655 mItemPopupMenu->insertItem( i18n("New Todo..."), this,
650 SLOT (newTodo())); 656 SLOT (newTodo()));
651 */ 657 */
652 mItemPopupMenu->insertItem(i18n("New Sub-Todo..."), this, 658 mItemPopupMenu->insertItem(i18n("New Sub-Todo..."), this,
653 SLOT (newSubTodo())); 659 SLOT (newSubTodo()));
654 mItemPopupMenu->insertItem(i18n("Unparent Todo"), this, 660 mItemPopupMenu->insertItem(i18n("Unparent Todo"), this,
655 SLOT (unparentTodo()),0,21); 661 SLOT (unparentTodo()),0,21);
656 mItemPopupMenu->insertItem(i18n("Reparent Todo"), this, 662 mItemPopupMenu->insertItem(i18n("Reparent Todo"), this,
657 SLOT (reparentTodo()),0,22); 663 SLOT (reparentTodo()),0,22);
658 mItemPopupMenu->insertSeparator(); 664 mItemPopupMenu->insertSeparator();
659#if 0 665#if 0
660 mItemPopupMenu->insertItem(i18n("Delete completed To-Dos","Purge Completed..."), 666 mItemPopupMenu->insertItem(i18n("Delete completed To-Dos","Purge Completed..."),
661 this, SLOT( purgeCompleted() ) ); 667 this, SLOT( purgeCompleted() ) );
662 mItemPopupMenu->insertItem(i18n("toggle completed To-Dos","Show Completed"), 668 mItemPopupMenu->insertItem(i18n("toggle completed To-Dos","Show Completed"),
663 this, SLOT( toggleCompleted() ),0, 33 ); 669 this, SLOT( toggleCompleted() ),0, 33 );
664 mItemPopupMenu->insertItem(i18n("toggle quick todo","Show Quick Todo"), 670 mItemPopupMenu->insertItem(i18n("toggle quick todo","Show Quick Todo"),
665 this, SLOT( toggleQuickTodo() ),0, 34 ); 671 this, SLOT( toggleQuickTodo() ),0, 34 );
666 mItemPopupMenu->insertItem(i18n("toggle running todo","Hide not Running"), 672 mItemPopupMenu->insertItem(i18n("toggle running todo","Hide not Running"),
667 this, SLOT( toggleRunning() ),0, 35 ); 673 this, SLOT( toggleRunning() ),0, 35 );
668 674
669#endif 675#endif
670 mPopupMenu = new QPopupMenu(this); 676 mPopupMenu = new QPopupMenu(this);
671 mPopupMenu->insertItem(SmallIconSet("todo"), i18n("New Todo..."), this, 677 mPopupMenu->insertItem(SmallIconSet("todo"), i18n("New Todo..."), this,
672 SLOT (newTodo()),0,1); 678 SLOT (newTodo()),0,1);
673 mPopupMenu->insertItem(i18n("delete completed To-Dos","Purge Completed..."), 679 mPopupMenu->insertItem(i18n("delete completed To-Dos","Purge Completed..."),
674 this, SLOT(purgeCompleted()),0,2); 680 this, SLOT(purgeCompleted()),0,2);
675 mPopupMenu->insertItem(i18n("Show Completed"), 681 mPopupMenu->insertItem(i18n("Show Completed"),
676 this, SLOT( toggleCompleted() ),0,3 ); 682 this, SLOT( toggleCompleted() ),0,3 );
677 mPopupMenu->insertItem(i18n("toggle running todo","Hide not Running"), 683 mPopupMenu->insertItem(i18n("toggle running todo","Hide not Running"),
678 this, SLOT( toggleRunning() ),0,5 ); 684 this, SLOT( toggleRunning() ),0,5 );
679 mPopupMenu->insertItem(i18n(" set all open","Display all opened"), 685 mPopupMenu->insertItem(i18n(" set all open","Display all opened"),
680 this, SLOT( setAllOpen() ),0,6 ); 686 this, SLOT( setAllOpen() ),0,6 );
681 mPopupMenu->insertItem(i18n(" set all close","Display all closed"), 687 mPopupMenu->insertItem(i18n(" set all close","Display all closed"),
682 this, SLOT( setAllClose() ),0,7 ); 688 this, SLOT( setAllClose() ),0,7 );
683 mPopupMenu->insertItem(i18n(" set all flat","Display all flat"), 689 mPopupMenu->insertItem(i18n(" set all flat","Display all flat"),
684 this, SLOT( setAllFlat() ),0,8 ); 690 this, SLOT( setAllFlat() ),0,8 );
685 mPopupMenu->insertSeparator(); 691 mPopupMenu->insertSeparator();
686 mPopupMenu->insertItem(i18n("toggle quick todo","Show Quick Todo"), 692 mPopupMenu->insertItem(i18n("toggle quick todo","Show Quick Todo"),
687 this, SLOT( toggleQuickTodo() ),0,4 ); 693 this, SLOT( toggleQuickTodo() ),0,4 );
688 mDocPrefs = new DocPrefs( name ); 694 mDocPrefs = new DocPrefs( name );
689 695
690 mItemPopupMenu->insertItem(i18n("Todo View"),mPopupMenu ); 696 mItemPopupMenu->insertItem(i18n("Todo View"),mPopupMenu );
691 mPopupMenu->setCheckable( true ); 697 mPopupMenu->setCheckable( true );
692 mItemPopupMenu->setCheckable( true ); 698 mItemPopupMenu->setCheckable( true );
693 699
694 700
695 mPopupMenu->setItemChecked( 3,KOPrefs::instance()->mShowCompletedTodo ); 701 mPopupMenu->setItemChecked( 3,KOPrefs::instance()->mShowCompletedTodo );
696 mItemPopupMenu->setItemChecked( 33 , KOPrefs::instance()->mShowCompletedTodo ); 702 mItemPopupMenu->setItemChecked( 33 , KOPrefs::instance()->mShowCompletedTodo );
697 703
698 mPopupMenu->setItemChecked(4,KOPrefs::instance()->mEnableQuickTodo); 704 mPopupMenu->setItemChecked(4,KOPrefs::instance()->mEnableQuickTodo);
699 mItemPopupMenu->setItemChecked( 34 , KOPrefs::instance()->mEnableQuickTodo ); 705 mItemPopupMenu->setItemChecked( 34 , KOPrefs::instance()->mEnableQuickTodo );
700 706
701 mPopupMenu->setItemChecked(5,KOPrefs::instance()->mHideNonStartedTodos); 707 mPopupMenu->setItemChecked(5,KOPrefs::instance()->mHideNonStartedTodos);
702 mItemPopupMenu->setItemChecked( 35 , KOPrefs::instance()->mHideNonStartedTodos ); 708 mItemPopupMenu->setItemChecked( 35 , KOPrefs::instance()->mHideNonStartedTodos );
703 709
704 710
705 // Double clicking conflicts with opening/closing the subtree 711 // Double clicking conflicts with opening/closing the subtree
706 connect( mTodoListView, SIGNAL( doubleClicked( QListViewItem *) ), 712 connect( mTodoListView, SIGNAL( doubleClicked( QListViewItem *) ),
707 SLOT( editItem( QListViewItem *) ) ); 713 SLOT( editItem( QListViewItem *) ) );
708 /* 714 /*
709 connect( mTodoListView, SIGNAL( rightButtonClicked ( QListViewItem *, 715 connect( mTodoListView, SIGNAL( rightButtonClicked ( QListViewItem *,
710 const QPoint &,int ) ), 716 const QPoint &,int ) ),
711 SLOT( popupMenu( QListViewItem *, const QPoint & ,int) ) ); 717 SLOT( popupMenu( QListViewItem *, const QPoint & ,int) ) );
712 */ 718 */
713 connect( mTodoListView, SIGNAL( contextRequest ( QListViewItem *, 719 connect( mTodoListView, SIGNAL( contextRequest ( QListViewItem *,
714 const QPoint &,int ) ), 720 const QPoint &,int ) ),
715 SLOT( popupMenu( QListViewItem *, const QPoint & ,int) ) ); 721 SLOT( popupMenu( QListViewItem *, const QPoint & ,int) ) );
716 connect( mTodoListView, SIGNAL( clicked( QListViewItem * ) ), 722 connect( mTodoListView, SIGNAL( clicked( QListViewItem * ) ),
717 SLOT( itemClicked( QListViewItem * ) ) ); 723 SLOT( itemClicked( QListViewItem * ) ) );
718 connect( mTodoListView, SIGNAL( double_Clicked( QListViewItem * ) ), 724 connect( mTodoListView, SIGNAL( double_Clicked( QListViewItem * ) ),
719 SLOT( itemDoubleClicked( QListViewItem * ) ) ); 725 SLOT( itemDoubleClicked( QListViewItem * ) ) );
720 connect( mTodoListView, SIGNAL( todoDropped( Todo *, int ) ), 726 connect( mTodoListView, SIGNAL( todoDropped( Todo *, int ) ),
721 SLOT( updateView() ) ); 727 SLOT( updateView() ) );
722 connect( mTodoListView, SIGNAL( todoDropped( Todo *, int ) ), 728 connect( mTodoListView, SIGNAL( todoDropped( Todo *, int ) ),
723 SLOT( todoModified(Todo *, int) ) ); 729 SLOT( todoModified(Todo *, int) ) );
724 connect( mTodoListView, SIGNAL( expanded( QListViewItem * ) ), 730 connect( mTodoListView, SIGNAL( expanded( QListViewItem * ) ),
725 SLOT( itemStateChanged( QListViewItem * ) ) ); 731 SLOT( itemStateChanged( QListViewItem * ) ) );
726 connect( mTodoListView, SIGNAL( collapsed( QListViewItem * ) ), 732 connect( mTodoListView, SIGNAL( collapsed( QListViewItem * ) ),
727 SLOT( itemStateChanged( QListViewItem * ) ) ); 733 SLOT( itemStateChanged( QListViewItem * ) ) );
728 connect( mTodoListView, SIGNAL( paintNeeded() ), 734 connect( mTodoListView, SIGNAL( paintNeeded() ),
729 SLOT( paintNeeded()) ); 735 SLOT( paintNeeded()) );
730 736
731#if 0 737#if 0
732 connect(mTodoListView,SIGNAL(selectionChanged(QListViewItem *)), 738 connect(mTodoListView,SIGNAL(selectionChanged(QListViewItem *)),
733 SLOT(selectionChanged(QListViewItem *))); 739 SLOT(selectionChanged(QListViewItem *)));
734 connect(mTodoListView,SIGNAL(clicked(QListViewItem *)), 740 connect(mTodoListView,SIGNAL(clicked(QListViewItem *)),
735 SLOT(selectionChanged(QListViewItem *))); 741 SLOT(selectionChanged(QListViewItem *)));
736 connect(mTodoListView,SIGNAL(pressed(QListViewItem *)), 742 connect(mTodoListView,SIGNAL(pressed(QListViewItem *)),
737 SLOT(selectionChanged(QListViewItem *))); 743 SLOT(selectionChanged(QListViewItem *)));
738#endif 744#endif
739 745
740 connect( mTodoListView, SIGNAL(reparentTodoSignal( Todo *,Todo * ) ), SIGNAL(reparentTodoSignal( Todo *,Todo * ) )); 746 connect( mTodoListView, SIGNAL(reparentTodoSignal( Todo *,Todo * ) ), SIGNAL(reparentTodoSignal( Todo *,Todo * ) ));
741 connect( mTodoListView, SIGNAL(unparentTodoSignal(Todo *) ), SIGNAL(unparentTodoSignal(Todo *) )); 747 connect( mTodoListView, SIGNAL(unparentTodoSignal(Todo *) ), SIGNAL(unparentTodoSignal(Todo *) ));
742 connect( mTodoListView, SIGNAL( deleteTodo(Todo *) ), SIGNAL(deleteTodoSignal(Todo *) )); 748 connect( mTodoListView, SIGNAL( deleteTodo(Todo *) ), SIGNAL(deleteTodoSignal(Todo *) ));
743 749
744 connect( mTodoListView, SIGNAL(selectionChanged() ), 750 connect( mTodoListView, SIGNAL(selectionChanged() ),
745 SLOT( processSelectionChange() ) ); 751 SLOT( processSelectionChange() ) );
746 connect( mQuickAdd, SIGNAL( returnPressed () ), 752 connect( mQuickAdd, SIGNAL( returnPressed () ),
747 SLOT( addQuickTodo() ) ); 753 SLOT( addQuickTodo() ) );
748 754
749} 755}
750 756
751KOTodoView::~KOTodoView() 757KOTodoView::~KOTodoView()
752{ 758{
753 759
754#if QT_VERSION >= 0x030000 760#if QT_VERSION >= 0x030000
755 761
756#else 762#else
757 delete mKOTodoViewWhatsThis; 763 delete mKOTodoViewWhatsThis;
758#endif 764#endif
759 765
760 delete mDocPrefs; 766 delete mDocPrefs;
761} 767}
762QString KOTodoView::getWhatsThisText(QPoint p) 768QString KOTodoView::getWhatsThisText(QPoint p)
763{ 769{
764 KOTodoViewItem* item = ( KOTodoViewItem* ) mTodoListView->itemAt( p ); 770 KOTodoViewItem* item = ( KOTodoViewItem* ) mTodoListView->itemAt( p );
765 if ( item ) 771 if ( item )
766 return KIncidenceFormatter::instance()->getFormattedText( item->todo(), 772 return KIncidenceFormatter::instance()->getFormattedText( item->todo(),
767 KOPrefs::instance()->mWTshowDetails, 773 KOPrefs::instance()->mWTshowDetails,
768 KOPrefs::instance()->mWTshowCreated, 774 KOPrefs::instance()->mWTshowCreated,
769 KOPrefs::instance()->mWTshowChanged); 775 KOPrefs::instance()->mWTshowChanged);
770 return i18n("That is the todo view" ); 776 return i18n("That is the todo view" );
771 777
772} 778}
773 779
774void KOTodoView::jumpToDate () 780void KOTodoView::jumpToDate ()
775{ 781{
776 // if (mActiveItem) { 782 // if (mActiveItem) {
777// mActiveItem->todo()); 783// mActiveItem->todo());
778// if ( mActiveItem->todo()->hasDueDate() ) 784// if ( mActiveItem->todo()->hasDueDate() )
779// emit mActiveItem->todo()jumpToTime( mTodo->dtDue().date() ); 785// emit mActiveItem->todo()jumpToTime( mTodo->dtDue().date() );
780} 786}
781void KOTodoView::paintNeeded() 787void KOTodoView::paintNeeded()
782{ 788{
783 if ( mPendingUpdateBeforeRepaint ) { 789 if ( mPendingUpdateBeforeRepaint ) {
784 updateView(); 790 updateView();
785 mPendingUpdateBeforeRepaint = false; 791 mPendingUpdateBeforeRepaint = false;
786 } 792 }
787} 793}
788void KOTodoView::paintEvent(QPaintEvent * pevent) 794void KOTodoView::paintEvent(QPaintEvent * pevent)
789{ 795{
790 if ( mPendingUpdateBeforeRepaint ) { 796 if ( mPendingUpdateBeforeRepaint ) {
791 updateView(); 797 updateView();
792 mPendingUpdateBeforeRepaint = false; 798 mPendingUpdateBeforeRepaint = false;
793 } 799 }
794 KOrg::BaseView::paintEvent( pevent); 800 KOrg::BaseView::paintEvent( pevent);
795} 801}
796 802
797void KOTodoView::updateView() 803void KOTodoView::updateView()
798{ 804{
799 pendingSubtodo = 0; 805 pendingSubtodo = 0;
800 if ( mBlockUpdate ) { 806 if ( mBlockUpdate ) {
801 return; 807 return;
802 } 808 }
803 if ( !isVisible() ) { 809 if ( !isVisible() ) {
804 mPendingUpdateBeforeRepaint = true; 810 mPendingUpdateBeforeRepaint = true;
805 return; 811 return;
806 } 812 }
807 //qDebug("KOTodoView::updateView() %x", this); 813 //qDebug("KOTodoView::updateView() %x", this);
808 if ( isFlatDisplay ) { 814 if ( isFlatDisplay ) {
809 displayAllFlat(); 815 displayAllFlat();
810 return; 816 return;
811 } 817 }
812 storeCurrentItem(); 818 storeCurrentItem();
813 //qDebug("update "); 819 //qDebug("update ");
814// kdDebug() << "KOTodoView::updateView()" << endl; 820// kdDebug() << "KOTodoView::updateView()" << endl;
815 QFont fo = KOPrefs::instance()->mTodoViewFont; 821 QFont fo = KOPrefs::instance()->mTodoViewFont;
816 822
817 823
818 mTodoListView->clear(); 824 mTodoListView->clear();
819 if ( mName == "todolistsmall" ) { 825 if ( mName == "todolistsmall" ) {
820 if ( KOPrefs::instance()->mTodoViewUsesSmallFont ) { 826 if ( KOPrefs::instance()->mTodoViewUsesSmallFont ) {
821 int ps = fo.pointSize() -2; 827 int ps = fo.pointSize() -2;
822 if ( ps > 12 ) 828 if ( ps > 12 )
823 ps -= 2; 829 ps -= 2;
824 fo.setPointSize( ps ); 830 fo.setPointSize( ps );
825 } 831 }
826 } 832 }
827 833
828 mTodoListView->setFont( fo ); 834 mTodoListView->setFont( fo );
829 // QFontMetrics fm ( KOPrefs::instance()->mTodoViewFont ); 835 // QFontMetrics fm ( KOPrefs::instance()->mTodoViewFont );
830 //mTodoListView->header()->setMaximumHeight(fm.height()); 836 //mTodoListView->header()->setMaximumHeight(fm.height());
831 QPtrList<Todo> todoList = calendar()->todos(); 837 QPtrList<Todo> todoList = calendar()->todos();
832 838
833/* 839/*
834 kdDebug() << "KOTodoView::updateView(): Todo List:" << endl; 840 kdDebug() << "KOTodoView::updateView(): Todo List:" << endl;
835 Event *t; 841 Event *t;
836 for(t = todoList.first(); t; t = todoList.next()) { 842 for(t = todoList.first(); t; t = todoList.next()) {
837 kdDebug() << " " << t->getSummary() << endl; 843 kdDebug() << " " << t->getSummary() << endl;
838 844
839 if (t->getRelatedTo()) { 845 if (t->getRelatedTo()) {
840 kdDebug() << " (related to " << t->getRelatedTo()->getSummary() << ")" << endl; 846 kdDebug() << " (related to " << t->getRelatedTo()->getSummary() << ")" << endl;
841 } 847 }
842 848
843 QPtrList<Event> l = t->getRelations(); 849 QPtrList<Event> l = t->getRelations();
844 Event *c; 850 Event *c;
845 for(c=l.first();c;c=l.next()) { 851 for(c=l.first();c;c=l.next()) {
846 kdDebug() << " - relation: " << c->getSummary() << endl; 852 kdDebug() << " - relation: " << c->getSummary() << endl;
847 } 853 }
848 } 854 }
849*/ 855*/
850 856
851 // Put for each Event a KOTodoViewItem in the list view. Don't rely on a 857 // Put for each Event a KOTodoViewItem in the list view. Don't rely on a
852 // specific order of events. That means that we have to generate parent items 858 // specific order of events. That means that we have to generate parent items
853 // recursively for proper hierarchical display of Todos. 859 // recursively for proper hierarchical display of Todos.
854 mTodoMap.clear(); 860 mTodoMap.clear();
855 Todo *todo; 861 Todo *todo;
856 todo = todoList.first();// todo; todo = todoList.next()) { 862 todo = todoList.first();// todo; todo = todoList.next()) {
857 while ( todo ) { 863 while ( todo ) {
858 bool next = true; 864 bool next = true;
859 // qDebug("todo %s ", todo->summary().latin1()); 865 // qDebug("todo %s ", todo->summary().latin1());
860 Incidence *incidence = todo->relatedTo(); 866 Incidence *incidence = todo->relatedTo();
861 while ( incidence ) { 867 while ( incidence ) {
862 if ( incidence->typeID() == todoID ) { 868 if ( incidence->typeID() == todoID ) {
863 //qDebug("related %s ",incidence->summary().latin1() ); 869 //qDebug("related %s ",incidence->summary().latin1() );
864 if ( !(todoList.contains ( ((Todo* )incidence ) ) ) && incidence->calEnabled() ) { 870 if ( !(todoList.contains ( ((Todo* )incidence ) ) ) && incidence->calEnabled() ) {
865 //qDebug("related not found "); 871 //qDebug("related not found ");
866 todoList.remove( ); 872 todoList.remove( );
867 todo = todoList.current(); 873 todo = todoList.current();
868 next = false; 874 next = false;
869 incidence = 0; 875 incidence = 0;
870 876
871 } else { 877 } else {
872 //qDebug("related found "); 878 //qDebug("related found ");
873 incidence = incidence->relatedTo(); 879 incidence = incidence->relatedTo();
874 } 880 }
875 } else 881 } else
876 incidence = 0; 882 incidence = 0;
877 } 883 }
878 if ( next ) 884 if ( next )
879 todo = todoList.next(); 885 todo = todoList.next();
880 } 886 }
881 887
882 for(todo = todoList.first(); todo; todo = todoList.next()) { 888 for(todo = todoList.first(); todo; todo = todoList.next()) {
883 if (!mTodoMap.contains(todo) && checkTodo( todo ) ) 889 if (!mTodoMap.contains(todo) && checkTodo( todo ) )
884 { 890 {
885 insertTodoItem(todo); 891 insertTodoItem(todo);
886 } 892 }
887 } 893 }
888 // Restore opened/closed state 894 // Restore opened/closed state
889 mTodoListView->blockSignals( true ); 895 mTodoListView->blockSignals( true );
890 if( mDocPrefs ) restoreItemState( mTodoListView->firstChild() ); 896 if( mDocPrefs ) restoreItemState( mTodoListView->firstChild() );
891 mTodoListView->blockSignals( false ); 897 mTodoListView->blockSignals( false );
892 resetCurrentItem(); 898 resetCurrentItem();
893} 899}
894 900
895void KOTodoView::storeCurrentItem() 901void KOTodoView::storeCurrentItem()
896{ 902{
897 mCurItem = 0; 903 mCurItem = 0;
898 mCurItemRootParent = 0; 904 mCurItemRootParent = 0;
899 mCurItemParent = 0; 905 mCurItemParent = 0;
900 mCurItemAbove = 0; 906 mCurItemAbove = 0;
901 mActiveItem = (KOTodoViewItem*)mTodoListView->currentItem(); 907 mActiveItem = (KOTodoViewItem*)mTodoListView->currentItem();
902 if (mActiveItem) { 908 if (mActiveItem) {
903 mCurItem = mActiveItem->todo(); 909 mCurItem = mActiveItem->todo();
904 KOTodoViewItem* activeItemAbove = (KOTodoViewItem*)mActiveItem->itemAbove (); 910 KOTodoViewItem* activeItemAbove = (KOTodoViewItem*)mActiveItem->itemAbove ();
905 if ( activeItemAbove ) 911 if ( activeItemAbove )
906 mCurItemAbove = activeItemAbove->todo(); 912 mCurItemAbove = activeItemAbove->todo();
907 mCurItemRootParent = mCurItem; 913 mCurItemRootParent = mCurItem;
908 mCurItemParent = mCurItemRootParent->relatedTo(); 914 mCurItemParent = mCurItemRootParent->relatedTo();
909 while ( mCurItemRootParent->relatedTo() != 0 ) 915 while ( mCurItemRootParent->relatedTo() != 0 )
910 mCurItemRootParent = mCurItemRootParent->relatedTo(); 916 mCurItemRootParent = mCurItemRootParent->relatedTo();
911 } 917 }
912 mActiveItem = 0; 918 mActiveItem = 0;
913} 919}
914 920
915void KOTodoView::resetCurrentItem() 921void KOTodoView::resetCurrentItem()
916{ 922{
917 //mTodoListView->setFocus(); 923 //mTodoListView->setFocus();
918 KOTodoViewItem* foundItem = 0; 924 KOTodoViewItem* foundItem = 0;
919 KOTodoViewItem* foundItemRoot = 0; 925 KOTodoViewItem* foundItemRoot = 0;
920 KOTodoViewItem* foundItemParent = 0; 926 KOTodoViewItem* foundItemParent = 0;
921 KOTodoViewItem* foundItemAbove = 0; 927 KOTodoViewItem* foundItemAbove = 0;
922 if ( mTodoListView->firstChild () ) { 928 if ( mTodoListView->firstChild () ) {
923 if ( mCurItem ) { 929 if ( mCurItem ) {
924 KOTodoViewItem* item = (KOTodoViewItem*)mTodoListView->firstChild (); 930 KOTodoViewItem* item = (KOTodoViewItem*)mTodoListView->firstChild ();
925 while ( item ) { 931 while ( item ) {
926 if ( item->todo() == mCurItem ) { 932 if ( item->todo() == mCurItem ) {
927 foundItem = item; 933 foundItem = item;
928 break; 934 break;
929 } else if ( item->todo() == mCurItemAbove ) { 935 } else if ( item->todo() == mCurItemAbove ) {
930 foundItemAbove = item; 936 foundItemAbove = item;
931 937
932 } 938 }
933 if ( item->todo() == mCurItemRootParent ) { 939 if ( item->todo() == mCurItemRootParent ) {
934 foundItemRoot = item; 940 foundItemRoot = item;
935 } 941 }
936 if ( item->todo() == mCurItemParent ) { 942 if ( item->todo() == mCurItemParent ) {
937 foundItemParent = item; 943 foundItemParent = item;
938 } 944 }
939 item = (KOTodoViewItem*)item->itemBelow(); 945 item = (KOTodoViewItem*)item->itemBelow();
940 } 946 }
941 if ( ! foundItem ) { 947 if ( ! foundItem ) {
942 if ( foundItemParent ) { 948 if ( foundItemParent ) {
943 foundItem = foundItemParent; 949 foundItem = foundItemParent;
944 } else { 950 } else {
945 if ( foundItemRoot ) 951 if ( foundItemRoot )
946 foundItem = foundItemRoot; 952 foundItem = foundItemRoot;
947 else 953 else
948 foundItem = foundItemAbove; 954 foundItem = foundItemAbove;
949 } 955 }
950 } 956 }
951 } 957 }
952 if ( foundItem ) { 958 if ( foundItem ) {
953 mTodoListView->setSelected ( foundItem, true ); 959 mTodoListView->setSelected ( foundItem, true );
954 mTodoListView->setCurrentItem( foundItem ); 960 mTodoListView->setCurrentItem( foundItem );
955 mTodoListView->ensureItemVisible( foundItem ); 961 mTodoListView->ensureItemVisible( foundItem );
956 } else { 962 } else {
957 if ( mTodoListView->firstChild () ) { 963 if ( mTodoListView->firstChild () ) {
958 mTodoListView->setSelected ( mTodoListView->firstChild (), true ); 964 mTodoListView->setSelected ( mTodoListView->firstChild (), true );
959 mTodoListView->setCurrentItem( mTodoListView->firstChild () ); 965 mTodoListView->setCurrentItem( mTodoListView->firstChild () );
960 } 966 }
961 } 967 }
962 } 968 }
963 processSelectionChange(); 969 processSelectionChange();
964 QTimer::singleShot( 100, this, SLOT ( resetFocusToList() )); 970 QTimer::singleShot( 100, this, SLOT ( resetFocusToList() ));
965} 971}
966void KOTodoView::resetFocusToList() 972void KOTodoView::resetFocusToList()
967{ 973{
968 topLevelWidget()->setActiveWindow(); 974 topLevelWidget()->setActiveWindow();
969 mTodoListView->setFocus(); 975 mTodoListView->setFocus();
970} 976}
971//Incidence * mCurItem, *mCurItemRootParent,*mCurItemAbove; 977//Incidence * mCurItem, *mCurItemRootParent,*mCurItemAbove;
972bool KOTodoView::checkTodo( Todo * todo ) 978bool KOTodoView::checkTodo( Todo * todo )
973{ 979{
974 980
975 if ( !KOPrefs::instance()->mShowCompletedTodo && todo->isCompleted() ) 981 if ( !KOPrefs::instance()->mShowCompletedTodo && todo->isCompleted() )
976 return false; 982 return false;
977 if ( !todo->isCompleted() ) { 983 if ( !todo->isCompleted() ) {
978 if ( todo->hasDueDate() && todo->dtDue().date() <= QDate::currentDate() ) 984 if ( todo->hasDueDate() && todo->dtDue().date() <= QDate::currentDate() )
979 return true; 985 return true;
980 } 986 }
981 if ( KOPrefs::instance()->mHideNonStartedTodos && mNavigator ) { 987 if ( KOPrefs::instance()->mHideNonStartedTodos && mNavigator ) {
982 if ( todo->hasStartDate() ) 988 if ( todo->hasStartDate() )
983 if ( mNavigator->selectedDates().last() < todo->dtStart().date() ) 989 if ( mNavigator->selectedDates().last() < todo->dtStart().date() )
984 return false; 990 return false;
985 if ( todo->hasDueDate() ) 991 if ( todo->hasDueDate() )
986 if ( mNavigator->selectedDates().first() > todo->dtDue().date() ) 992 if ( mNavigator->selectedDates().first() > todo->dtDue().date() )
987 return false; 993 return false;
988 } 994 }
989 return true; 995 return true;
990} 996}
991 997
992void KOTodoView::restoreItemState( QListViewItem *item ) 998void KOTodoView::restoreItemState( QListViewItem *item )
993{ 999{
994 pendingSubtodo = 0; 1000 pendingSubtodo = 0;
995 while( item ) { 1001 while( item ) {
996 KOTodoViewItem *todoItem = (KOTodoViewItem *)item; 1002 KOTodoViewItem *todoItem = (KOTodoViewItem *)item;
997 todoItem->setOpen( mDocPrefs->readBoolEntry( todoItem->todo()->uid() ) ); 1003 todoItem->setOpen( mDocPrefs->readBoolEntry( todoItem->todo()->uid() ) );
998 if( item->childCount() > 0 ) restoreItemState( item->firstChild() ); 1004 if( item->childCount() > 0 ) restoreItemState( item->firstChild() );
999 item = item->nextSibling(); 1005 item = item->nextSibling();
1000 } 1006 }
1001} 1007}
1002 1008
1003 1009
1004QMap<Todo *,KOTodoViewItem *>::ConstIterator 1010QMap<Todo *,KOTodoViewItem *>::ConstIterator
1005KOTodoView::insertTodoItem(Todo *todo) 1011KOTodoView::insertTodoItem(Todo *todo)
1006{ 1012{
1007 1013
1008 // kdDebug() << "KOTodoView::insertTodoItem(): " << todo->getSummary() << endl; 1014 // kdDebug() << "KOTodoView::insertTodoItem(): " << todo->getSummary() << endl;
1009 // TODO: Check, if dynmaic cast is necessary 1015 // TODO: Check, if dynmaic cast is necessary
1010 1016
1011 pendingSubtodo = 0; 1017 pendingSubtodo = 0;
1012 Incidence *incidence = todo->relatedTo(); 1018 Incidence *incidence = todo->relatedTo();
1013 while ( incidence && !incidence->calEnabled() ) 1019 while ( incidence && !incidence->calEnabled() )
1014 incidence = incidence->relatedTo(); 1020 incidence = incidence->relatedTo();
1015 if (incidence && incidence->typeID() == todoID ) { 1021 if (incidence && incidence->typeID() == todoID ) {
1016 Todo *relatedTodo = static_cast<Todo *>(incidence); 1022 Todo *relatedTodo = static_cast<Todo *>(incidence);
1017 1023
1018 // kdDebug() << " has Related" << endl; 1024 // kdDebug() << " has Related" << endl;
1019 QMap<Todo *,KOTodoViewItem *>::ConstIterator itemIterator; 1025 QMap<Todo *,KOTodoViewItem *>::ConstIterator itemIterator;
1020 itemIterator = mTodoMap.find(relatedTodo); 1026 itemIterator = mTodoMap.find(relatedTodo);
1021 if (itemIterator == mTodoMap.end()) { 1027 if (itemIterator == mTodoMap.end()) {
1022 // kdDebug() << " related not yet in list" << endl; 1028 // kdDebug() << " related not yet in list" << endl;
1023 itemIterator = insertTodoItem (relatedTodo); 1029 itemIterator = insertTodoItem (relatedTodo);
1024 } 1030 }
1025 // isn't this pretty stupid? We give one Todo to the KOTodoViewItem 1031 // isn't this pretty stupid? We give one Todo to the KOTodoViewItem
1026 // and one into the map. Sure finding is more easy but why? -zecke 1032 // and one into the map. Sure finding is more easy but why? -zecke
1027 KOTodoViewItem *todoItem = new KOTodoViewItem(*itemIterator,todo,this); 1033 KOTodoViewItem *todoItem = new KOTodoViewItem(*itemIterator,todo,this);
1028 return mTodoMap.insert(todo,todoItem); 1034 return mTodoMap.insert(todo,todoItem);
1029 } else { 1035 } else {
1030 // kdDebug() << " no Related" << endl; 1036 // kdDebug() << " no Related" << endl;
1031 // see above -zecke 1037 // see above -zecke
1032 KOTodoViewItem *todoItem = new KOTodoViewItem(mTodoListView,todo,this); 1038 KOTodoViewItem *todoItem = new KOTodoViewItem(mTodoListView,todo,this);
1033 return mTodoMap.insert(todo,todoItem); 1039 return mTodoMap.insert(todo,todoItem);
1034 } 1040 }
1035} 1041}
1036 1042
1037 1043
1038void KOTodoView::updateConfig() 1044void KOTodoView::updateConfig()
1039{ 1045{
1040 updateView(); 1046 updateView();
1041 mTodoListView->repaintContents(); 1047 mTodoListView->repaintContents();
1042} 1048}
1043 1049
1044QPtrList<Incidence> KOTodoView::selectedIncidences() 1050QPtrList<Incidence> KOTodoView::selectedIncidences()
1045{ 1051{
1046 QPtrList<Incidence> selected; 1052 QPtrList<Incidence> selected;
1047 1053
1048 KOTodoViewItem *item = (KOTodoViewItem *)(mTodoListView->selectedItem()); 1054 KOTodoViewItem *item = (KOTodoViewItem *)(mTodoListView->selectedItem());
1049// if (!item) item = mActiveItem; 1055// if (!item) item = mActiveItem;
1050 if (item) selected.append(item->todo()); 1056 if (item) selected.append(item->todo());
1051 1057
1052 return selected; 1058 return selected;
1053} 1059}
1054 1060
1055QPtrList<Todo> KOTodoView::selectedTodos() 1061QPtrList<Todo> KOTodoView::selectedTodos()
1056{ 1062{
1057 QPtrList<Todo> selected; 1063 QPtrList<Todo> selected;
1058 1064
1059 KOTodoViewItem *item = (KOTodoViewItem *)(mTodoListView->selectedItem()); 1065 KOTodoViewItem *item = (KOTodoViewItem *)(mTodoListView->selectedItem());
1060// if (!item) item = mActiveItem; 1066// if (!item) item = mActiveItem;
1061 if (item) selected.append(item->todo()); 1067 if (item) selected.append(item->todo());
1062 1068
1063 return selected; 1069 return selected;
1064} 1070}
1065 1071
1066void KOTodoView::changeEventDisplay(Event *, int) 1072void KOTodoView::changeEventDisplay(Event *, int)
1067{ 1073{
1068 updateView(); 1074 updateView();
1069} 1075}
1070 1076
1071void KOTodoView::showDates(const QDate &, const QDate &) 1077void KOTodoView::showDates(const QDate &, const QDate &)
1072{ 1078{
1073} 1079}
1074 1080
1075void KOTodoView::showEvents(QPtrList<Event>) 1081void KOTodoView::showEvents(QPtrList<Event>)
1076{ 1082{
1077 kdDebug() << "KOTodoView::selectEvents(): not yet implemented" << endl; 1083 kdDebug() << "KOTodoView::selectEvents(): not yet implemented" << endl;
1078} 1084}
1079 1085
1080void KOTodoView::printPreview(CalPrinter *calPrinter, const QDate &fd, 1086void KOTodoView::printPreview(CalPrinter *calPrinter, const QDate &fd,
1081 const QDate &td) 1087 const QDate &td)
1082{ 1088{
1083#ifndef KORG_NOPRINTER 1089#ifndef KORG_NOPRINTER
1084 calPrinter->preview(CalPrinter::Todolist, fd, td); 1090 calPrinter->preview(CalPrinter::Todolist, fd, td);
1085#endif 1091#endif
1086} 1092}
1087 1093
1088void KOTodoView::editItem(QListViewItem *item ) 1094void KOTodoView::editItem(QListViewItem *item )
1089{ 1095{
1090 emit editTodoSignal(((KOTodoViewItem *)item)->todo()); 1096 emit editTodoSignal(((KOTodoViewItem *)item)->todo());
1091} 1097}
1092 1098
1093void KOTodoView::showItem(QListViewItem *item,const QPoint &,int) 1099void KOTodoView::showItem(QListViewItem *item,const QPoint &,int)
1094{ 1100{
1095 emit showTodoSignal(((KOTodoViewItem *)item)->todo()); 1101 emit showTodoSignal(((KOTodoViewItem *)item)->todo());
1096} 1102}
1097 1103
1098void KOTodoView::popupMenu(QListViewItem *item,const QPoint &p,int column) 1104void KOTodoView::popupMenu(QListViewItem *item,const QPoint &p,int column)
1099{ 1105{
1100 pendingSubtodo = 0; 1106 pendingSubtodo = 0;
1101 mActiveItem = (KOTodoViewItem *)item; 1107 mActiveItem = (KOTodoViewItem *)item;
1102 if (item) { 1108 if (item) {
1103 switch (column){ 1109 switch (column){
1104 case 1: 1110 case 1:
1105 mPriorityPopupMenu->popup(QCursor::pos ()); break; 1111 mPriorityPopupMenu->popup(QCursor::pos ()); break;
1106 case 2: 1112 case 2:
1107 mPercentageCompletedPopupMenu->popup(QCursor::pos ()); break; 1113 mPercentageCompletedPopupMenu->popup(QCursor::pos ()); break;
1108 case 3: 1114 case 3:
1109 moveTodo(); 1115 moveTodo();
1110 break; 1116 break;
1111 case 8: 1117 case 8:
1112 mCategoryPopupMenu->popup(QCursor::pos ()); break; 1118 mCategoryPopupMenu->popup(QCursor::pos ()); break;
1113 case 9: 1119 case 9:
1114 mCalPopupMenu->popup(QCursor::pos ()); break; 1120 mCalPopupMenu->popup(QCursor::pos ()); break;
1115 default: 1121 default:
1116 mItemPopupMenu->popup(QCursor::pos()); 1122 mItemPopupMenu->popup(QCursor::pos());
1117 } 1123 }
1118 } else mPopupMenu->popup(QCursor::pos()); 1124 } else mPopupMenu->popup(QCursor::pos());
1119} 1125}
1120void KOTodoView::newTodo() 1126void KOTodoView::newTodo()
1121{ 1127{
1122 emit newTodoSignal(); 1128 emit newTodoSignal();
1123} 1129}
1124 1130
1125void KOTodoView::newSubTodo() 1131void KOTodoView::newSubTodo()
1126{ 1132{
1127 mActiveItem = (KOTodoViewItem*)mTodoListView->currentItem(); 1133 mActiveItem = (KOTodoViewItem*)mTodoListView->currentItem();
1128 if (mActiveItem) { 1134 if (mActiveItem) {
1129 if ( mQuickAdd->isVisible() && !mQuickAdd->text().isEmpty() && mQuickAdd->text() != i18n("Click to add new Todo") ) { 1135 if ( mQuickAdd->isVisible() && !mQuickAdd->text().isEmpty() && mQuickAdd->text() != i18n("Click to add new Todo") ) {
1130 addQuickTodoPar( mActiveItem->todo()); 1136 addQuickTodoPar( mActiveItem->todo());
1131 } else 1137 } else
1132 emit newSubTodoSignal(mActiveItem->todo()); 1138 emit newSubTodoSignal(mActiveItem->todo());
1133 } 1139 }
1134} 1140}
1135void KOTodoView::unparentTodo() 1141void KOTodoView::unparentTodo()
1136{ 1142{
1137 if (mActiveItem) { 1143 if (mActiveItem) {
1138 emit unparentTodoSignal(mActiveItem->todo()); 1144 emit unparentTodoSignal(mActiveItem->todo());
1139 } 1145 }
1140} 1146}
1141 1147
1142void KOTodoView::reparentTodo() 1148void KOTodoView::reparentTodo()
1143{ 1149{
1144 if (mActiveItem) { 1150 if (mActiveItem) {
1145 topLevelWidget()->setCaption(i18n("Click on new parent item")); 1151 topLevelWidget()->setCaption(i18n("Click on new parent item"));
1146 pendingSubtodo = mActiveItem; 1152 pendingSubtodo = mActiveItem;
1147 } 1153 }
1148} 1154}
1149void KOTodoView::editTodo() 1155void KOTodoView::editTodo()
1150{ 1156{
1151 if (mActiveItem) { 1157 if (mActiveItem) {
1152 emit editTodoSignal(mActiveItem->todo()); 1158 emit editTodoSignal(mActiveItem->todo());
1153 } 1159 }
1154} 1160}
1155void KOTodoView::cloneTodo() 1161void KOTodoView::cloneTodo()
1156{ 1162{
1157 if (mActiveItem) { 1163 if (mActiveItem) {
1158 emit cloneTodoSignal((Incidence*)mActiveItem->todo()); 1164 emit cloneTodoSignal((Incidence*)mActiveItem->todo());
1159 } 1165 }
1160} 1166}
1161void KOTodoView::cancelTodo() 1167void KOTodoView::cancelTodo()
1162{ 1168{
1163 if (mActiveItem) { 1169 if (mActiveItem) {
1164 emit cancelTodoSignal((Incidence*)mActiveItem->todo()); 1170 emit cancelTodoSignal((Incidence*)mActiveItem->todo());
1165 } 1171 }
1166} 1172}
1167void KOTodoView::moveTodo() 1173void KOTodoView::moveTodo()
1168{ 1174{
1169 if (mActiveItem) { 1175 if (mActiveItem) {
1170 emit moveTodoSignal((Incidence*)mActiveItem->todo()); 1176 emit moveTodoSignal((Incidence*)mActiveItem->todo());
1171 } 1177 }
1172} 1178}
1173void KOTodoView::beamTodo() 1179void KOTodoView::beamTodo()
1174{ 1180{
1175 if (mActiveItem) { 1181 if (mActiveItem) {
1176 emit beamTodoSignal((Incidence*)mActiveItem->todo()); 1182 emit beamTodoSignal((Incidence*)mActiveItem->todo());
1177 } 1183 }
1178} 1184}
1179 1185
1180 1186
1181void KOTodoView::showTodo() 1187void KOTodoView::showTodo()
1182{ 1188{
1183 if (mActiveItem) { 1189 if (mActiveItem) {
1184 emit showTodoSignal(mActiveItem->todo()); 1190 emit showTodoSignal(mActiveItem->todo());
1185 } 1191 }
1186} 1192}
1187 1193
1188void KOTodoView::deleteTodo() 1194void KOTodoView::deleteTodo()
1189{ 1195{
1190 if (mActiveItem) { 1196 if (mActiveItem) {
1191 emit deleteTodoSignal(mActiveItem->todo()); 1197 emit deleteTodoSignal(mActiveItem->todo());
1192 } 1198 }
1193} 1199}
1194 1200
1195void KOTodoView::setNewPriority(int index) 1201void KOTodoView::setNewPriority(int index)
1196{ 1202{
1197 if (mActiveItem && !mActiveItem->todo()->isReadOnly ()) { 1203 if (mActiveItem && !mActiveItem->todo()->isReadOnly ()) {
1198 mActiveItem->todo()->setPriority(mPriority[index]); 1204 mActiveItem->todo()->setPriority(mPriority[index]);
1199 mActiveItem->construct(); 1205 mActiveItem->construct();
1200 todoModified (mActiveItem->todo(), KOGlobals::PRIORITY_MODIFIED); 1206 todoModified (mActiveItem->todo(), KOGlobals::PRIORITY_MODIFIED);
1201 mActiveItem->todo()->setRevision( mActiveItem->todo()->revision()+1 ); 1207 mActiveItem->todo()->setRevision( mActiveItem->todo()->revision()+1 );
1202 } 1208 }
1203 processSelectionChange(); 1209 processSelectionChange();
1204} 1210}
1205 1211
1206void KOTodoView::setNewPercentage(int index) 1212void KOTodoView::setNewPercentage(int index)
1207{ 1213{
1208 if (mActiveItem && !mActiveItem->todo()->isReadOnly ()) { 1214 if (mActiveItem && !mActiveItem->todo()->isReadOnly ()) {
1209 1215
1210 if ( mPercentage[index] == 100 && !mActiveItem->isOn() ) { 1216 if ( mPercentage[index] == 100 && !mActiveItem->isOn() ) {
1211 mActiveItem->setOn( true ); 1217 mActiveItem->setOn( true );
1212 processSelectionChange(); 1218 processSelectionChange();
1213 return; 1219 return;
1214 } else if ( mPercentage[index] != 100 && mActiveItem->isOn() ) { 1220 } else if ( mPercentage[index] != 100 && mActiveItem->isOn() ) {
1215 KOTodoViewItem* par = (static_cast<KOTodoViewItem*>(mActiveItem->parent())); 1221 KOTodoViewItem* par = (static_cast<KOTodoViewItem*>(mActiveItem->parent()));
1216 if ( par && par->isOn() ) 1222 if ( par && par->isOn() )
1217 par->setOn( false ); 1223 par->setOn( false );
1218 } 1224 }
1219 if (mPercentage[index] == 100) { 1225 if (mPercentage[index] == 100) {
1220 mActiveItem->todo()->setCompleted(QDateTime::currentDateTime()); 1226 mActiveItem->todo()->setCompleted(QDateTime::currentDateTime());
1221 } else { 1227 } else {
1222 mActiveItem->todo()->setCompleted(false); 1228 mActiveItem->todo()->setCompleted(false);
1223 } 1229 }
1224 mActiveItem->todo()->setPercentComplete(mPercentage[index]); 1230 mActiveItem->todo()->setPercentComplete(mPercentage[index]);
1225 mActiveItem->construct(); 1231 mActiveItem->construct();
1226 todoModified (mActiveItem->todo (), KOGlobals::COMPLETION_MODIFIED); 1232 todoModified (mActiveItem->todo (), KOGlobals::COMPLETION_MODIFIED);
1227 mActiveItem->todo()->setRevision( mActiveItem->todo()->revision()+1 ); 1233 mActiveItem->todo()->setRevision( mActiveItem->todo()->revision()+1 );
1228 } 1234 }
1229 processSelectionChange(); 1235 processSelectionChange();
1230} 1236}
1231 1237
1232void KOTodoView::fillCategories () 1238void KOTodoView::fillCategories ()
1233{ 1239{
1234 mCategoryPopupMenu->clear(); 1240 mCategoryPopupMenu->clear();
1235 if ( ! mActiveItem ) return; 1241 if ( ! mActiveItem ) return;
1236 QStringList checkedCategories = mActiveItem->todo()->categories (); 1242 QStringList checkedCategories = mActiveItem->todo()->categories ();
1237 for (QStringList::Iterator it = KOPrefs::instance()->mCustomCategories.begin (); 1243 for (QStringList::Iterator it = KOPrefs::instance()->mCustomCategories.begin ();
1238 it != KOPrefs::instance()->mCustomCategories.end (); 1244 it != KOPrefs::instance()->mCustomCategories.end ();
1239 ++it) { 1245 ++it) {
1240 int index = mCategoryPopupMenu->insertItem (*it); 1246 int index = mCategoryPopupMenu->insertItem (*it);
1241 mCategory[index] = *it; 1247 mCategory[index] = *it;
1242 if (checkedCategories.find (*it) != checkedCategories.end ()) mCategoryPopupMenu->setItemChecked (index, true); 1248 if (checkedCategories.find (*it) != checkedCategories.end ()) mCategoryPopupMenu->setItemChecked (index, true);
1243 } 1249 }
1244} 1250}
1245void KOTodoView::fillCal () 1251void KOTodoView::fillCal ()
1246{ 1252{
1247 mCalPopupMenu->clear(); 1253 mCalPopupMenu->clear();
1248 if (!mActiveItem) return; 1254 if (!mActiveItem) return;
1249 bool readO = mActiveItem->todo()->isReadOnly(); 1255 bool readO = mActiveItem->todo()->isReadOnly();
1250 KopiCalendarFile * kkf = KOPrefs::instance()->mCalendars.first(); 1256 KopiCalendarFile * kkf = KOPrefs::instance()->mCalendars.first();
1251 while ( kkf ) { 1257 while ( kkf ) {
1252 int index = mCalPopupMenu->insertItem( kkf->mName, kkf->mCalNumber); 1258 int index = mCalPopupMenu->insertItem( kkf->mName, kkf->mCalNumber);
1253 if ( kkf->mErrorOnLoad || kkf->isReadOnly || readO ) 1259 if ( kkf->mErrorOnLoad || kkf->isReadOnly || readO )
1254 mCalPopupMenu->setItemEnabled( index, false ); 1260 mCalPopupMenu->setItemEnabled( index, false );
1255 mCalPopupMenu->setItemChecked (index, kkf->mCalNumber == mActiveItem->todo()->calID()); 1261 mCalPopupMenu->setItemChecked (index, kkf->mCalNumber == mActiveItem->todo()->calID());
1256 kkf = KOPrefs::instance()->mCalendars.next(); 1262 kkf = KOPrefs::instance()->mCalendars.next();
1257 } 1263 }
1258} 1264}
1259void KOTodoView::changedCal (int index ) 1265void KOTodoView::changedCal (int index )
1260{ 1266{
1261 if (!mActiveItem) return; 1267 if (!mActiveItem) return;
1262 mActiveItem->todo()->setCalID( index ); 1268 mActiveItem->todo()->setCalID( index );
1263 mActiveItem->construct(); 1269 mActiveItem->construct();
1264} 1270}
1265void KOTodoView::changedCategories(int index) 1271void KOTodoView::changedCategories(int index)
1266{ 1272{
1267 if (mActiveItem && !mActiveItem->todo()->isReadOnly ()) { 1273 if (mActiveItem && !mActiveItem->todo()->isReadOnly ()) {
1268 QStringList categories = mActiveItem->todo()->categories (); 1274 QStringList categories = mActiveItem->todo()->categories ();
1269 QString colcat = categories.first(); 1275 QString colcat = categories.first();
1270 if (categories.find (mCategory[index]) != categories.end ()) 1276 if (categories.find (mCategory[index]) != categories.end ())
1271 categories.remove (mCategory[index]); 1277 categories.remove (mCategory[index]);
1272 else 1278 else
1273 categories.insert (categories.end(), mCategory[index]); 1279 categories.insert (categories.end(), mCategory[index]);
1274 categories.sort (); 1280 categories.sort ();
1275 if ( !colcat.isEmpty() ) { 1281 if ( !colcat.isEmpty() ) {
1276 if ( categories.find ( colcat ) != categories.end () ) { 1282 if ( categories.find ( colcat ) != categories.end () ) {
1277 categories.remove( colcat ); 1283 categories.remove( colcat );
1278 categories.prepend( colcat ); 1284 categories.prepend( colcat );
1279 } 1285 }
1280 } 1286 }
1281 mActiveItem->todo()->setCategories (categories); 1287 mActiveItem->todo()->setCategories (categories);
1282 mActiveItem->construct(); 1288 mActiveItem->construct();
1283 mActiveItem->todo()->setRevision( mActiveItem->todo()->revision()+1 ); 1289 mActiveItem->todo()->setRevision( mActiveItem->todo()->revision()+1 );
1284 todoModified (mActiveItem->todo (), KOGlobals::CATEGORY_MODIFIED); 1290 todoModified (mActiveItem->todo (), KOGlobals::CATEGORY_MODIFIED);
1285 } 1291 }
1286} 1292}
1287void KOTodoView::itemDoubleClicked(QListViewItem *item) 1293void KOTodoView::itemDoubleClicked(QListViewItem *item)
1288{ 1294{
1289 if ( pendingSubtodo != 0 ) { 1295 if ( pendingSubtodo != 0 ) {
1290 topLevelWidget()->setCaption(i18n("Reparenting aborted!")); 1296 topLevelWidget()->setCaption(i18n("Reparenting aborted!"));
1291 } 1297 }
1292 pendingSubtodo = 0; 1298 pendingSubtodo = 0;
1293 //int row = mTodoListView->header()->sectionAt ( mTodoListView->header()->mapFromGlobal( QCursor::pos()).x() ); 1299 //int row = mTodoListView->header()->sectionAt ( mTodoListView->header()->mapFromGlobal( QCursor::pos()).x() );
1294 int row = mTodoListView->header()->sectionAt ( mTodoListView->viewportToContents(mTodoListView->viewport()->mapFromGlobal( QCursor::pos())) .x() ); 1300 int row = mTodoListView->header()->sectionAt ( mTodoListView->viewportToContents(mTodoListView->viewport()->mapFromGlobal( QCursor::pos())) .x() );
1295 //qDebug("ROW %d ", row); 1301 //qDebug("ROW %d ", row);
1296 if (!item) { 1302 if (!item) {
1297 newTodo(); 1303 newTodo();
1298 return; 1304 return;
1299 } else { 1305 } else {
1300 if ( row == 1 ) { 1306 if ( row == 1 ) {
1301 mActiveItem = (KOTodoViewItem *) item; 1307 mActiveItem = (KOTodoViewItem *) item;
1302 newSubTodo(); 1308 newSubTodo();
1303 return; 1309 return;
1304 } 1310 }
1305 if ( row == 5 || row == 6 || row == 2) { 1311 if ( row == 5 || row == 6 || row == 2) {
1306 mActiveItem = (KOTodoViewItem *) item; 1312 mActiveItem = (KOTodoViewItem *) item;
1307 Todo * t = mActiveItem->todo(); 1313 Todo * t = mActiveItem->todo();
1308 if ( t->isRunning() ) { 1314 if ( t->isRunning() ) {
1309 if ( t->runTime() < 15) { 1315 if ( t->runTime() < 15) {
1310 t->stopRunning(); 1316 t->stopRunning();
1311 mActiveItem->construct(); 1317 mActiveItem->construct();
1312 topLevelWidget()->setCaption(i18n("Todo stopped - no data saved because runtime was < 15 sec!")); 1318 topLevelWidget()->setCaption(i18n("Todo stopped - no data saved because runtime was < 15 sec!"));
1313 return; 1319 return;
1314 } 1320 }
1315 else 1321 else
1316 toggleRunningItem(); 1322 toggleRunningItem();
1317 return; 1323 return;
1318 } else { 1324 } else {
1319 t->setRunning( true ); 1325 t->setRunning( true );
1320 mActiveItem->construct(); 1326 mActiveItem->construct();
1321 topLevelWidget()->setCaption(i18n("Todo started! Double click again to stop!")); 1327 topLevelWidget()->setCaption(i18n("Todo started! Double click again to stop!"));
1322 return; 1328 return;
1323 } 1329 }
1324 } 1330 }
1325 } 1331 }
1326 if ( KOPrefs::instance()->mEditOnDoubleClick ) 1332 if ( KOPrefs::instance()->mEditOnDoubleClick )
1327 editItem( item ); 1333 editItem( item );
1328 else 1334 else
1329 showItem( item , QPoint(), 0 ); 1335 showItem( item , QPoint(), 0 );
1330} 1336}
1331void KOTodoView::toggleRunningItem() 1337void KOTodoView::toggleRunningItem()
1332{ 1338{
1333 // qDebug("KOTodoView::toggleRunning() "); 1339 // qDebug("KOTodoView::toggleRunning() ");
1334 if ( ! mActiveItem ) 1340 if ( ! mActiveItem )
1335 return; 1341 return;
1336 Todo * t = mActiveItem->todo(); 1342 Todo * t = mActiveItem->todo();
1337 if ( t->isRunning() ) { 1343 if ( t->isRunning() ) {
1338 KOStopTodoPrefs tp ( t, this ); 1344 KOStopTodoPrefs tp ( t, this );
1339 if (QApplication::desktop()->width() <= 800 ){ 1345 if (QApplication::desktop()->width() <= 800 ){
1340 int wid = tp.width(); 1346 int wid = tp.width();
1341 int hei = tp.height(); 1347 int hei = tp.height();
1342 int xx = (QApplication::desktop()->width()-wid)/2; 1348 int xx = (QApplication::desktop()->width()-wid)/2;
1343 int yy = (QApplication::desktop()->height()-hei)/2; 1349 int yy = (QApplication::desktop()->height()-hei)/2;
1344 tp.setGeometry( xx,yy,wid,hei ); 1350 tp.setGeometry( xx,yy,wid,hei );
1345 } 1351 }
1346 tp.exec(); 1352 tp.exec();
1347 mActiveItem->construct(); 1353 mActiveItem->construct();
1348 } else { 1354 } else {
1349 KOStartTodoPrefs tp ( t->summary(), this ); 1355 KOStartTodoPrefs tp ( t->summary(), this );
1350 if (QApplication::desktop()->width() <= 800 ){ 1356 if (QApplication::desktop()->width() <= 800 ){
1351 int wid = tp.width(); 1357 int wid = tp.width();
1352 int hei = tp.height(); 1358 int hei = tp.height();
1353 int xx = (QApplication::desktop()->width()-wid)/2; 1359 int xx = (QApplication::desktop()->width()-wid)/2;
1354 int yy = (QApplication::desktop()->height()-hei)/2; 1360 int yy = (QApplication::desktop()->height()-hei)/2;
1355 tp.setGeometry( xx,yy,wid,hei ); 1361 tp.setGeometry( xx,yy,wid,hei );
1356 } 1362 }
1357 if ( !tp.exec() ) return; 1363 if ( !tp.exec() ) return;
1358 if ( tp.stopAll() ) { 1364 if ( tp.stopAll() ) {
1359 mCalendar->stopAllTodos(); 1365 mCalendar->stopAllTodos();
1360 t->setRunning( true ); 1366 t->setRunning( true );
1361 updateView(); 1367 updateView();
1362 } else { 1368 } else {
1363 t->setRunning( true ); 1369 t->setRunning( true );
1364 mActiveItem->construct(); 1370 mActiveItem->construct();
1365 } 1371 }
1366 } 1372 }
1367} 1373}
1368 1374
1369void KOTodoView::itemClicked(QListViewItem *item) 1375void KOTodoView::itemClicked(QListViewItem *item)
1370{ 1376{
1371 //qDebug("KOTodoView::itemClicked %d", item); 1377 //qDebug("KOTodoView::itemClicked %d", item);
1372 if (!item) { 1378 if (!item) {
1373 if ( pendingSubtodo != 0 ) { 1379 if ( pendingSubtodo != 0 ) {
1374 topLevelWidget()->setCaption(i18n("Reparenting aborted!")); 1380 topLevelWidget()->setCaption(i18n("Reparenting aborted!"));
1375 } 1381 }
1376 pendingSubtodo = 0; 1382 pendingSubtodo = 0;
1377 return; 1383 return;
1378 } 1384 }
1379 KOTodoViewItem *todoItem = (KOTodoViewItem *)item; 1385 KOTodoViewItem *todoItem = (KOTodoViewItem *)item;
1380 if ( pendingSubtodo != 0 ) { 1386 if ( pendingSubtodo != 0 ) {
1381 bool allowReparent = true; 1387 bool allowReparent = true;
1382 QListViewItem *par = item; 1388 QListViewItem *par = item;
1383 while ( par ) { 1389 while ( par ) {
1384 if ( par == pendingSubtodo ) { 1390 if ( par == pendingSubtodo ) {
1385 allowReparent = false; 1391 allowReparent = false;
1386 break; 1392 break;
1387 } 1393 }
1388 par = par->parent(); 1394 par = par->parent();
1389 } 1395 }
1390 if ( !allowReparent ) { 1396 if ( !allowReparent ) {
1391 topLevelWidget()->setCaption(i18n("Recursive reparenting not possible!")); 1397 topLevelWidget()->setCaption(i18n("Recursive reparenting not possible!"));
1392 pendingSubtodo = 0; 1398 pendingSubtodo = 0;
1393 } else { 1399 } else {
1394 Todo* newParent = todoItem->todo(); 1400 Todo* newParent = todoItem->todo();
1395 Todo* newSub = pendingSubtodo->todo(); 1401 Todo* newSub = pendingSubtodo->todo();
1396 pendingSubtodo = 0; 1402 pendingSubtodo = 0;
1397 emit reparentTodoSignal( newParent,newSub ); 1403 emit reparentTodoSignal( newParent,newSub );
1398 return; 1404 return;
1399 } 1405 }
1400 } 1406 }
1401 1407
1402} 1408}
1403 1409
1404void KOTodoView::setDocumentId( const QString &id ) 1410void KOTodoView::setDocumentId( const QString &id )
1405{ 1411{
1406 1412
1407 mDocPrefs->setDoc( id ); 1413 mDocPrefs->setDoc( id );
1408} 1414}
1409 1415
1410void KOTodoView::itemStateChanged( QListViewItem *item ) 1416void KOTodoView::itemStateChanged( QListViewItem *item )
1411{ 1417{
1412 if (!item) return; 1418 if (!item) return;
1413 1419
1414 KOTodoViewItem *todoItem = (KOTodoViewItem *)item; 1420 KOTodoViewItem *todoItem = (KOTodoViewItem *)item;
1415 1421
1416// kdDebug() << "KOTodoView::itemStateChanged(): " << todoItem->todo()->summary() << endl; 1422// kdDebug() << "KOTodoView::itemStateChanged(): " << todoItem->todo()->summary() << endl;
1417 1423
1418 if( mDocPrefs ) mDocPrefs->writeEntry( todoItem->todo()->uid(), todoItem->isOpen() ); 1424 if( mDocPrefs ) mDocPrefs->writeEntry( todoItem->todo()->uid(), todoItem->isOpen() );
1419} 1425}
1420 1426
1421void KOTodoView::saveLayout(KConfig *config, const QString &group) const 1427void KOTodoView::saveLayout(KConfig *config, const QString &group) const
1422{ 1428{
1423 mTodoListView->saveLayout(config,group); 1429 mTodoListView->saveLayout(config,group);
1424} 1430}
1425 1431
1426void KOTodoView::restoreLayout(KConfig *config, const QString &group) 1432void KOTodoView::restoreLayout(KConfig *config, const QString &group)
1427{ 1433{
1428 mTodoListView->restoreLayout(config,group); 1434 mTodoListView->restoreLayout(config,group);
1429} 1435}
1430 1436
1431void KOTodoView::processSelectionChange() 1437void KOTodoView::processSelectionChange()
1432{ 1438{
1433// kdDebug() << "KOTodoView::processSelectionChange()" << endl; 1439// kdDebug() << "KOTodoView::processSelectionChange()" << endl;
1434 1440
1435 KOTodoViewItem *item = 1441 KOTodoViewItem *item =
1436 static_cast<KOTodoViewItem *>( mTodoListView->selectedItem() ); 1442 static_cast<KOTodoViewItem *>( mTodoListView->selectedItem() );
1437 1443
1438 if ( !item ) { 1444 if ( !item ) {
1439 emit incidenceSelected( 0 ); 1445 emit incidenceSelected( 0 );
1440 mNewSubBut->setEnabled( false ); 1446 mNewSubBut->setEnabled( false );
1441 } else { 1447 } else {
1442 emit incidenceSelected( item->todo() ); 1448 emit incidenceSelected( item->todo() );
1443 mNewSubBut->setEnabled( true ); 1449 mNewSubBut->setEnabled( true );
1444 } 1450 }
1445} 1451}
1446 1452
1447void KOTodoView::modified(bool b) 1453void KOTodoView::modified(bool b)
1448{ 1454{
1449 emit isModified(b); 1455 emit isModified(b);
1450} 1456}
1451void KOTodoView::setTodoModified( Todo* todo ) 1457void KOTodoView::setTodoModified( Todo* todo )
1452{ 1458{
1453 todoModified( todo, KOGlobals::UNKNOWN_MODIFIED ); 1459 todoModified( todo, KOGlobals::UNKNOWN_MODIFIED );
1454} 1460}
1455void KOTodoView::clearSelection() 1461void KOTodoView::clearSelection()
1456{ 1462{
1457 mTodoListView->selectAll( false ); 1463 mTodoListView->selectAll( false );
1458} 1464}
1459void KOTodoView::setAllOpen() 1465void KOTodoView::setAllOpen()
1460{ 1466{
1461 if ( isFlatDisplay ) { 1467 if ( isFlatDisplay ) {
1462 isFlatDisplay = false; 1468 isFlatDisplay = false;
1463 mPopupMenu->setItemChecked( 8,false ); 1469 mPopupMenu->setItemChecked( 8,false );
1464 updateView(); 1470 updateView();
1465 } else { 1471 } else {
1466 storeCurrentItem(); 1472 storeCurrentItem();
1467 } 1473 }
1468 setOpen(mTodoListView->firstChild(), true); 1474 setOpen(mTodoListView->firstChild(), true);
1469 resetCurrentItem(); 1475 resetCurrentItem();
1470} 1476}
1471void KOTodoView::setAllClose() 1477void KOTodoView::setAllClose()
1472{ 1478{
1473 if ( isFlatDisplay ) { 1479 if ( isFlatDisplay ) {
1474 isFlatDisplay = false; 1480 isFlatDisplay = false;
1475 mPopupMenu->setItemChecked( 8,false ); 1481 mPopupMenu->setItemChecked( 8,false );
1476 updateView(); 1482 updateView();
1477 } else { 1483 } else {
1478 storeCurrentItem(); 1484 storeCurrentItem();
1479 } 1485 }
1480 setOpen(mTodoListView->firstChild(), false); 1486 setOpen(mTodoListView->firstChild(), false);
1481 resetCurrentItem(); 1487 resetCurrentItem();
1482} 1488}
1483void KOTodoView::setOpen( QListViewItem* item, bool setOpenI) 1489void KOTodoView::setOpen( QListViewItem* item, bool setOpenI)
1484{ 1490{
1485 1491
1486 while ( item ) { 1492 while ( item ) {
1487 setOpen( item->firstChild(), setOpenI ); 1493 setOpen( item->firstChild(), setOpenI );
1488 item->setOpen( setOpenI ); 1494 item->setOpen( setOpenI );
1489 item = item->nextSibling(); 1495 item = item->nextSibling();
1490 } 1496 }
1491} 1497}
1492 1498
1493void KOTodoView::displayAllFlat() 1499void KOTodoView::displayAllFlat()
1494{ 1500{
1495 storeCurrentItem(); 1501 storeCurrentItem();
1496 pendingSubtodo = 0; 1502 pendingSubtodo = 0;
1497 if ( mBlockUpdate ) { 1503 if ( mBlockUpdate ) {
1498 return; 1504 return;
1499 } 1505 }
1500 mPopupMenu->setItemChecked( 8,true ); 1506 mPopupMenu->setItemChecked( 8,true );
1501 isFlatDisplay = true; 1507 isFlatDisplay = true;
1502 QPtrList<Todo> todoList = calendar()->todos(); 1508 QPtrList<Todo> todoList = calendar()->todos();
1503 mTodoMap.clear(); 1509 mTodoMap.clear();
1504 mTodoListView->clear(); 1510 mTodoListView->clear();
1505 Todo *todo; 1511 Todo *todo;
1506 for(todo = todoList.first(); todo; todo = todoList.next()) { 1512 for(todo = todoList.first(); todo; todo = todoList.next()) {
1507 if ( checkTodo( todo ) ) { 1513 if ( checkTodo( todo ) ) {
1508 KOTodoViewItem *todoItem = new KOTodoViewItem(mTodoListView,todo,this); 1514 KOTodoViewItem *todoItem = new KOTodoViewItem(mTodoListView,todo,this);
1509 mTodoMap.insert(todo,todoItem); 1515 mTodoMap.insert(todo,todoItem);
1510 } 1516 }
1511 } 1517 }
1512 resetCurrentItem(); 1518 resetCurrentItem();
1513} 1519}
1514 1520
1515void KOTodoView::setAllFlat() 1521void KOTodoView::setAllFlat()
1516{ 1522{
1517 if ( isFlatDisplay ) { 1523 if ( isFlatDisplay ) {
1518 isFlatDisplay = false; 1524 isFlatDisplay = false;
1519 mPopupMenu->setItemChecked( 8,false ); 1525 mPopupMenu->setItemChecked( 8,false );
1520 updateView(); 1526 updateView();
1521 return; 1527 return;
1522 } 1528 }
1523 displayAllFlat(); 1529 displayAllFlat();
1524} 1530}
1525 1531
1526void KOTodoView::purgeCompleted() 1532void KOTodoView::purgeCompleted()
1527{ 1533{
1528 emit purgeCompletedSignal(); 1534 emit purgeCompletedSignal();
1529 1535
1530} 1536}
1531void KOTodoView::toggleQuickTodo() 1537void KOTodoView::toggleQuickTodo()
1532{ 1538{
1533 if ( mQuickBar->isVisible() ) { 1539 if ( mQuickBar->isVisible() ) {
1534 mQuickBar->hide(); 1540 mQuickBar->hide();
1535 KOPrefs::instance()->mEnableQuickTodo = false; 1541 KOPrefs::instance()->mEnableQuickTodo = false;
1536 } 1542 }
1537 else { 1543 else {
1538 mQuickBar->show(); 1544 mQuickBar->show();
1539 KOPrefs::instance()->mEnableQuickTodo = true; 1545 KOPrefs::instance()->mEnableQuickTodo = true;
1540 } 1546 }
1541 mPopupMenu->setItemChecked(4,KOPrefs::instance()->mEnableQuickTodo); 1547 mPopupMenu->setItemChecked(4,KOPrefs::instance()->mEnableQuickTodo);
1542 mItemPopupMenu->setItemChecked( 34 , KOPrefs::instance()->mEnableQuickTodo ); 1548 mItemPopupMenu->setItemChecked( 34 , KOPrefs::instance()->mEnableQuickTodo );
1543} 1549}
1544 1550
1545void KOTodoView::toggleRunning() 1551void KOTodoView::toggleRunning()
1546{ 1552{
1547 KOPrefs::instance()->mHideNonStartedTodos = !KOPrefs::instance()->mHideNonStartedTodos; 1553 KOPrefs::instance()->mHideNonStartedTodos = !KOPrefs::instance()->mHideNonStartedTodos;
1548 mPopupMenu->setItemChecked(5,KOPrefs::instance()->mHideNonStartedTodos); 1554 mPopupMenu->setItemChecked(5,KOPrefs::instance()->mHideNonStartedTodos);
1549 mItemPopupMenu->setItemChecked( 35 , KOPrefs::instance()->mHideNonStartedTodos ); 1555 mItemPopupMenu->setItemChecked( 35 , KOPrefs::instance()->mHideNonStartedTodos );
1550 updateView(); 1556 updateView();
1551 if ( KOPrefs::instance()->mHideNonStartedTodos ) 1557 if ( KOPrefs::instance()->mHideNonStartedTodos )
1552 topLevelWidget()->setCaption(i18n("Hide not Running")); 1558 topLevelWidget()->setCaption(i18n("Hide not Running"));
1553 else 1559 else
1554 topLevelWidget()->setCaption(i18n("Show not Running")); 1560 topLevelWidget()->setCaption(i18n("Show not Running"));
1555} 1561}
1556 1562
1557void KOTodoView::toggleCompleted() 1563void KOTodoView::toggleCompleted()
1558{ 1564{
1559 KOPrefs::instance()->mShowCompletedTodo = !KOPrefs::instance()->mShowCompletedTodo; 1565 KOPrefs::instance()->mShowCompletedTodo = !KOPrefs::instance()->mShowCompletedTodo;
1560 mPopupMenu->setItemChecked( 3,KOPrefs::instance()->mShowCompletedTodo ); 1566 mPopupMenu->setItemChecked( 3,KOPrefs::instance()->mShowCompletedTodo );
1561 mItemPopupMenu->setItemChecked( 33 , KOPrefs::instance()->mShowCompletedTodo ); 1567 mItemPopupMenu->setItemChecked( 33 , KOPrefs::instance()->mShowCompletedTodo );
1562 updateView(); 1568 updateView();
1563 if ( KOPrefs::instance()->mShowCompletedTodo ) 1569 if ( KOPrefs::instance()->mShowCompletedTodo )
1564 topLevelWidget()->setCaption(i18n("Show Completed")); 1570 topLevelWidget()->setCaption(i18n("Show Completed"));
1565 else 1571 else
1566 topLevelWidget()->setCaption(i18n("Hide Completed")); 1572 topLevelWidget()->setCaption(i18n("Hide Completed"));
1567} 1573}
1568 1574
1569void KOTodoView::addQuickTodo() 1575void KOTodoView::addQuickTodo()
1570{ 1576{
1571 addQuickTodoPar( 0 ); 1577 addQuickTodoPar( 0 );
1572} 1578}
1573void KOTodoView::addQuickTodoPar( Todo * parentTodo) 1579void KOTodoView::addQuickTodoPar( Todo * parentTodo)
1574{ 1580{
1575 Todo *todo = new Todo(); 1581 Todo *todo = new Todo();
1576 todo->setSummary(mQuickAdd->text()); 1582 todo->setSummary(mQuickAdd->text());
1577 todo->setOrganizer(KOPrefs::instance()->email()); 1583 todo->setOrganizer(KOPrefs::instance()->email());
1578 if ( parentTodo ) { 1584 if ( parentTodo ) {
1579 todo->setRelatedTo(parentTodo); 1585 todo->setRelatedTo(parentTodo);
1580 1586
1581 todo->setCategories (parentTodo->categoriesStr ()); 1587 todo->setCategories (parentTodo->categoriesStr ());
1582 todo->setSecrecy (parentTodo->secrecy ()); 1588 todo->setSecrecy (parentTodo->secrecy ());
1583 if ( parentTodo->priority() < 3 ) 1589 if ( parentTodo->priority() < 3 )
1584 todo->setPriority( parentTodo->priority() ); 1590 todo->setPriority( parentTodo->priority() );
1585 todo->setCalID( parentTodo->calID() ); 1591 todo->setCalID( parentTodo->calID() );
1586 } else { 1592 } else {
1587 CalFilter * cf = mCalendar->filter(); 1593 CalFilter * cf = mCalendar->filter();
1588 if ( cf ) { 1594 if ( cf ) {
1589 if ( cf->isEnabled()&& cf->showCategories()) { 1595 if ( cf->isEnabled()&& cf->showCategories()) {
1590 todo->setCategories(cf->categoryList()); 1596 todo->setCategories(cf->categoryList());
1591 } 1597 }
1592 if ( cf->isEnabled() ) 1598 if ( cf->isEnabled() )
1593 todo->setSecrecy( cf->getSecrecy()); 1599 todo->setSecrecy( cf->getSecrecy());
1594 } 1600 }
1595 } 1601 }
1596 mCalendar->addTodo(todo); 1602 mCalendar->addTodo(todo);
1597 mQuickAdd->setText(""); 1603 mQuickAdd->setText("");
1598 todoModified (todo, KOGlobals::EVENTADDED ); 1604 todoModified (todo, KOGlobals::EVENTADDED );
1599 updateView(); 1605 updateView();
1600 1606
1601} 1607}
1602void KOTodoView::keyPressEvent ( QKeyEvent * e ) 1608void KOTodoView::keyPressEvent ( QKeyEvent * e )
1603{ 1609{
1604 // e->ignore(); 1610 // e->ignore();
1605 //return; 1611 //return;
1606 //qDebug("KOTodoView::keyPressEvent ");
1607 if ( !isVisible() ) { 1612 if ( !isVisible() ) {
1608 e->ignore(); 1613 e->ignore();
1609 return; 1614 return;
1610 } 1615 }
1611 switch ( e->key() ) { 1616 switch ( e->key() ) {
1612 case Qt::Key_Down: 1617 case Qt::Key_Down:
1613 case Qt::Key_Up: 1618 case Qt::Key_Up:
1614 QWidget::keyPressEvent ( e ); 1619 // KOrg::BaseView::keyPressEvent ( e );
1620 e->ignore();
1615 break; 1621 break;
1616 1622
1617 case Qt::Key_Q: 1623 case Qt::Key_Q:
1618 1624
1619 1625
1620 if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton ) { 1626 if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton ) {
1621 e->ignore(); 1627 e->ignore();
1622 break; 1628 break;
1623 } 1629 }
1624 toggleQuickTodo(); 1630 toggleQuickTodo();
1625 break; 1631 break;
1626 case Qt::Key_U: 1632 case Qt::Key_U:
1627 if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) { 1633 if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) {
1628 mActiveItem = (KOTodoViewItem*)mTodoListView->currentItem(); 1634 mActiveItem = (KOTodoViewItem*)mTodoListView->currentItem();
1629 unparentTodo(); 1635 unparentTodo();
1630 e->accept(); 1636 e->accept();
1631 } else 1637 } else
1632 e->ignore(); 1638 e->ignore();
1633 break; 1639 break;
1634 case Qt::Key_S: 1640 case Qt::Key_S:
1635 if ( e->state() == Qt::ControlButton ) { 1641 if ( e->state() == Qt::ControlButton ) {
1636 e->ignore(); 1642 e->ignore();
1637 break; 1643 break;
1638 } 1644 }
1639 if ( e->state() == Qt::ShiftButton ) { 1645 if ( e->state() == Qt::ShiftButton ) {
1640 mActiveItem = (KOTodoViewItem*)mTodoListView->currentItem(); 1646 mActiveItem = (KOTodoViewItem*)mTodoListView->currentItem();
1641 reparentTodo(); 1647 reparentTodo();
1642 e->accept(); 1648 e->accept();
1643 } else 1649 } else
1644 e->ignore(); 1650 e->ignore();
1645 break; 1651 break;
1646 case Qt::Key_P: 1652 case Qt::Key_P:
1647 if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) { 1653 if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) {
1648 mActiveItem = (KOTodoViewItem*)mTodoListView->currentItem(); 1654 mActiveItem = (KOTodoViewItem*)mTodoListView->currentItem();
1649 if ( pendingSubtodo ) 1655 if ( pendingSubtodo )
1650 itemClicked(mActiveItem); 1656 itemClicked(mActiveItem);
1651 e->accept(); 1657 e->accept();
1652 } else 1658 } else
1653 e->ignore(); 1659 e->ignore();
1654 break; 1660 break;
1655 case Qt::Key_Escape: 1661 case Qt::Key_Escape:
1656 if ( pendingSubtodo ) { 1662 if ( pendingSubtodo ) {
1657 itemClicked(0); 1663 itemClicked(0);
1658 e->accept(); 1664 e->accept();
1659 } else 1665 } else
1660 e->ignore(); 1666 e->ignore();
1661 break; 1667 break;
1662 default: 1668 default:
1663 e->ignore(); 1669 e->ignore();
1664 } 1670 }
1665 1671
1666 if ( true ) { 1672 if ( true ) {
1667 if ( e->key() == Qt::Key_I ) { 1673 if ( e->key() == Qt::Key_I ) {
1668 KOTodoViewItem*cn = (KOTodoViewItem*)mTodoListView->currentItem(); 1674 KOTodoViewItem*cn = (KOTodoViewItem*)mTodoListView->currentItem();
1669 if ( cn ) { 1675 if ( cn ) {
1670 mActiveItem = cn; 1676 mActiveItem = cn;
1671 KOTodoViewItem* ci = (KOTodoViewItem*)( cn ); 1677 KOTodoViewItem* ci = (KOTodoViewItem*)( cn );
1672 if ( ci ){ 1678 if ( ci ){
1673 showTodo(); 1679 showTodo();
1674 cn = (KOTodoViewItem*)cn->itemBelow(); 1680 cn = (KOTodoViewItem*)cn->itemBelow();
1675 if ( cn ) { 1681 if ( cn ) {
1676 mTodoListView->setCurrentItem ( cn ); 1682 mTodoListView->setCurrentItem ( cn );
1677 mTodoListView->ensureItemVisible ( cn ); 1683 mTodoListView->ensureItemVisible ( cn );
1678 } 1684 }
1679 1685
1680 } 1686 }
1681 } 1687 }
1682 e->accept(); 1688 e->accept();
1683 1689
1684 } 1690 }
1685 1691
1686 } 1692 }
1687 1693
1688} 1694}
1689void KOTodoView::updateTodo( Todo * t, int type ) 1695void KOTodoView::updateTodo( Todo * t, int type )
1690{ 1696{
1691 if ( mBlockUpdate) 1697 if ( mBlockUpdate)
1692 return; 1698 return;
1693 1699
1694 QMap<Todo *,KOTodoViewItem *>::ConstIterator itemIterator; 1700 QMap<Todo *,KOTodoViewItem *>::ConstIterator itemIterator;
1695 itemIterator = mTodoMap.find(t); 1701 itemIterator = mTodoMap.find(t);
1696 if (itemIterator != mTodoMap.end()) { 1702 if (itemIterator != mTodoMap.end()) {
1697 (*itemIterator)->construct(); 1703 (*itemIterator)->construct();
1698 } else { 1704 } else {
1699 if ( type == KOGlobals::EVENTADDED ) { 1705 if ( type == KOGlobals::EVENTADDED ) {
1700 insertTodoItem( t ); 1706 insertTodoItem( t );
1701 } 1707 }
1702 } 1708 }
1703 1709
1704} 1710}
1705 1711
1706void KOTodoView::todoModified(Todo * t , int p ) 1712void KOTodoView::todoModified(Todo * t , int p )
1707{ 1713{
1708 mBlockUpdate = true; 1714 mBlockUpdate = true;
1709 emit todoModifiedSignal ( t, p ); 1715 emit todoModifiedSignal ( t, p );
1710 mBlockUpdate = false; 1716 mBlockUpdate = false;
1711} 1717}
diff --git a/korganizer/kotodoviewitem.cpp b/korganizer/kotodoviewitem.cpp
index 0cf6e4c..bdef94c 100644
--- a/korganizer/kotodoviewitem.cpp
+++ b/korganizer/kotodoviewitem.cpp
@@ -1,526 +1,576 @@
1/* 1/*
2 This file is part of KOrganizer. 2 This file is part of KOrganizer.
3 Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org> 3 Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org>
4 4
5 This program is free software; you can redistribute it and/or modify 5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by 6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or 7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version. 8 (at your option) any later version.
9 9
10 This program is distributed in the hope that it will be useful, 10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details. 13 GNU General Public License for more details.
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software 16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18*/ 18*/
19 19
20#include <klocale.h> 20#include <klocale.h>
21#include <kdebug.h> 21#include <kdebug.h>
22#include <qapp.h> 22#include <qapp.h>
23#include <kglobal.h> 23#include <kglobal.h>
24 24
25#include <kiconloader.h> 25#include <kiconloader.h>
26#include "kotodoviewitem.h" 26#include "kotodoviewitem.h"
27#include "kotodoview.h" 27#include "kotodoview.h"
28#include "koprefs.h" 28#include "koprefs.h"
29 29
30KOTodoViewItem::KOTodoViewItem( QListView *parent, Todo *todo, KOTodoView *kotodo) 30KOTodoViewItem::KOTodoViewItem( QListView *parent, Todo *todo, KOTodoView *kotodo)
31 : QCheckListItem( parent , "", CheckBox ), mTodo( todo ), mTodoView( kotodo ) 31 : QCheckListItem( parent , "", CheckBox ), mTodo( todo ), mTodoView( kotodo )
32{ 32{
33 construct(); 33 construct();
34} 34}
35 35
36KOTodoViewItem::KOTodoViewItem( KOTodoViewItem *parent, Todo *todo, KOTodoView *kotodo ) 36KOTodoViewItem::KOTodoViewItem( KOTodoViewItem *parent, Todo *todo, KOTodoView *kotodo )
37 : QCheckListItem( parent, "", CheckBox ), mTodo( todo ), mTodoView( kotodo ) 37 : QCheckListItem( parent, "", CheckBox ), mTodo( todo ), mTodoView( kotodo )
38{ 38{
39 construct(); 39 construct();
40} 40}
41 41
42QString KOTodoViewItem::key(int column,bool) const 42QString KOTodoViewItem::key(int column,bool) const
43{ 43{
44 QMap<int,QString>::ConstIterator it = mKeyMap.find(column); 44 QMap<int,QString>::ConstIterator it = mKeyMap.find(column);
45 if (it == mKeyMap.end()) { 45 if (it == mKeyMap.end()) {
46 return text(column).lower(); 46 return text(column).lower();
47 } else { 47 } else {
48 return *it; 48 return *it;
49 } 49 }
50} 50}
51 51
52void KOTodoViewItem:: setup() 52void KOTodoViewItem:: setup()
53{ 53{
54 54
55 int h = 20; 55 int h = 20;
56 if ( listView () ) { 56 if ( listView () ) {
57 QFontMetrics fm ( listView ()->font () ); 57 QFontMetrics fm ( listView ()->font () );
58 h = fm.height(); 58 h = fm.height();
59 } 59 }
60 setHeight( h ); 60 setHeight( h );
61 61
62} 62}
63void KOTodoViewItem::setSortKey(int column,const QString &key) 63void KOTodoViewItem::setSortKey(int column,const QString &key)
64{ 64{
65 mKeyMap.insert(column,key); 65 mKeyMap.insert(column,key);
66} 66}
67 67
68#if QT_VERSION >= 0x030000 68#if QT_VERSION >= 0x030000
69void KOTodoViewItem::paintBranches(QPainter *p,const QColorGroup & cg,int w, 69void KOTodoViewItem::paintBranches(QPainter *p,const QColorGroup & cg,int w,
70 int y,int h) 70 int y,int h)
71{ 71{
72 QListViewItem::paintBranches(p,cg,w,y,h); 72 QListViewItem::paintBranches(p,cg,w,y,h);
73} 73}
74#else 74#else
75#endif 75#endif
76 76
77void KOTodoViewItem::construct() 77void KOTodoViewItem::construct()
78{ 78{
79 // qDebug("KOTodoViewItem::construct() "); 79 // qDebug("KOTodoViewItem::construct() ");
80 m_init = true; 80 m_init = true;
81 QString keyd = "=="; 81 QString keyd = "==";
82 QString keyt = "=="; 82 QString keyt = "==";
83 QString skeyd = "=="; 83 QString skeyd = "==";
84 QString skeyt = "=="; 84 QString skeyt = "==";
85 85
86 setOn(mTodo->isCompleted()); 86 setOn(mTodo->isCompleted());
87 setText(0,mTodo->summary()); 87 setText(0,mTodo->summary());
88 setText(1,QString::number(mTodo->priority())); 88 setText(1,QString::number(mTodo->priority()));
89 setText(2,i18n("%1 %").arg(QString::number(mTodo->percentComplete()))); 89 setText(2,i18n("%1 %").arg(QString::number(mTodo->percentComplete())));
90 if (mTodo->percentComplete()<100) { 90 if (mTodo->percentComplete()<100) {
91 if (mTodo->isCompleted()) setSortKey(2,QString::number(999)); 91 if (mTodo->isCompleted()) setSortKey(2,QString::number(999));
92 else setSortKey(2,QString::number(mTodo->percentComplete())); 92 else setSortKey(2,QString::number(mTodo->percentComplete()));
93 } 93 }
94 else { 94 else {
95 if (mTodo->isCompleted()) setSortKey(2,QString::number(999)); 95 if (mTodo->isCompleted()) setSortKey(2,QString::number(999));
96 else setSortKey(2,QString::number(99)); 96 else setSortKey(2,QString::number(99));
97 } 97 }
98 if (mTodo->hasDueDate()) { 98 if (mTodo->hasDueDate()) {
99 setText(3, mTodo->dtDueDateStr()); 99 setText(3, mTodo->dtDueDateStr());
100 QDate d = mTodo->dtDue().date(); 100 QDate d = mTodo->dtDue().date();
101 keyd.sprintf("%04d%02d%02d",d.year(),d.month(),d.day()); 101 keyd.sprintf("%04d%02d%02d",d.year(),d.month(),d.day());
102 // setSortKey(3,keyd); 102 // setSortKey(3,keyd);
103 if (mTodo->doesFloat()) { 103 if (mTodo->doesFloat()) {
104 setText(4,""); 104 setText(4,"");
105 } 105 }
106 else { 106 else {
107 setText(4,mTodo->dtDueTimeStr()); 107 setText(4,mTodo->dtDueTimeStr());
108 QTime t = mTodo->dtDue().time(); 108 QTime t = mTodo->dtDue().time();
109 keyt.sprintf("%02d%02d",t.hour(),t.minute()); 109 keyt.sprintf("%02d%02d",t.hour(),t.minute());
110 //setSortKey(4,keyt); 110 //setSortKey(4,keyt);
111 } 111 }
112 } else { 112 } else {
113 setText(3,""); 113 setText(3,"");
114 setText(4,""); 114 setText(4,"");
115 } 115 }
116 setSortKey(3,keyd); 116 setSortKey(3,keyd);
117 setSortKey(4,keyt); 117 setSortKey(4,keyt);
118 118
119 if (mTodo->isCompleted()) setSortKey(1,"6" + QString::number(mTodo->priority())+keyd+keyt); 119 if (mTodo->isCompleted()) setSortKey(1,"6" + QString::number(mTodo->priority())+keyd+keyt);
120 else setSortKey(1,QString::number(mTodo->priority())+keyd+keyt); 120 else setSortKey(1,QString::number(mTodo->priority())+keyd+keyt);
121 121
122 122
123 123
124 keyd = ""; 124 keyd = "";
125 keyt = ""; 125 keyt = "";
126 126
127 if (mTodo->isRunning() ) { 127 if (mTodo->isRunning() ) {
128 QDate d = mTodo->runStart().date(); 128 QDate d = mTodo->runStart().date();
129 QTime t = mTodo->runStart().time(); 129 QTime t = mTodo->runStart().time();
130 skeyt.sprintf("%02d%02d",t.hour(),t.minute()); 130 skeyt.sprintf("%02d%02d",t.hour(),t.minute());
131 skeyd.sprintf("%04d%02d%02d",d.year(),d.month(),d.day()); 131 skeyd.sprintf("%04d%02d%02d",d.year(),d.month(),d.day());
132 keyd = KGlobal::locale()->formatDate( d , true); 132 keyd = KGlobal::locale()->formatDate( d , true);
133 keyt = KGlobal::locale()->formatTime( t ); 133 keyt = KGlobal::locale()->formatTime( t );
134 134
135 } else { 135 } else {
136 136
137 if (mTodo->hasStartDate()) { 137 if (mTodo->hasStartDate()) {
138 keyd = mTodo->dtStartDateStr(); 138 keyd = mTodo->dtStartDateStr();
139 QDate d = mTodo->dtStart().date(); 139 QDate d = mTodo->dtStart().date();
140 skeyd.sprintf("%04d%02d%02d",d.year(),d.month(),d.day()); 140 skeyd.sprintf("%04d%02d%02d",d.year(),d.month(),d.day());
141 141
142 if ( !mTodo->doesFloat()) { 142 if ( !mTodo->doesFloat()) {
143 keyt = mTodo->dtStartTimeStr(); 143 keyt = mTodo->dtStartTimeStr();
144 QTime t = mTodo->dtStart().time(); 144 QTime t = mTodo->dtStart().time();
145 skeyt.sprintf("%02d%02d",t.hour(),t.minute()); 145 skeyt.sprintf("%02d%02d",t.hour(),t.minute());
146 146
147 } 147 }
148 148
149 } 149 }
150 } 150 }
151 setText(5,keyd); 151 setText(5,keyd);
152 setText(6,keyt); 152 setText(6,keyt);
153 setSortKey(5,skeyd); 153 setSortKey(5,skeyd);
154 setSortKey(6,skeyt); 154 setSortKey(6,skeyt);
155 155
156 setText(7,mTodo->cancelled() ? i18n("Yes") : i18n("No")); 156 //setText(7,mTodo->cancelled() ? i18n("Yes") : i18n("No"));
157 setText(8,mTodo->categoriesStr()); 157 setText(7,mTodo->categoriesStr());
158 setText(9,KOPrefs::instance()->calName( mTodo->calID())); 158 setText(8,KOPrefs::instance()->calName( mTodo->calID()));
159 159 setText(9, KGlobal::locale()->formatDateTime( mTodo->lastModified(), true, true ));
160 setText(10, KGlobal::locale()->formatDateTime( mTodo->created(), true, true ));
161 setText(11, KGlobal::locale()->formatDateTime( mTodo->lastModifiedSub(), true, true ));
162 QString key;
163 QDate d = mTodo->lastModified().date();
164 QTime t = mTodo->lastModified().time();
165 key.sprintf("%04d%02d%02d%02d%02d%02d",d.year(),d.month(),d.day(),t.hour(),t.minute(),t.second() );
166 setSortKey(9,key);
167 d = mTodo->created().date();
168 t = mTodo->created().time();
169 key.sprintf("%04d%02d%02d%02d%02d%02d",d.year(),d.month(),d.day(),t.hour(),t.minute(),t.second() );
170 setSortKey(10,key);
171 d = mTodo->lastModifiedSub().date();
172 t = mTodo->lastModifiedSub().time();
173 key.sprintf("%04d%02d%02d%02d%02d%02d",d.year(),d.month(),d.day(),t.hour(),t.minute(),t.second() );
174 setSortKey(11,key);
175
160#if 0 176#if 0
161 // Find sort id in description. It's the text behind the last '#' character 177 // Find sort id in description. It's the text behind the last '#' character
162 // found in the description. White spaces are removed from beginning and end 178 // found in the description. White spaces are removed from beginning and end
163 // of sort id. 179 // of sort id.
164 int pos = mTodo->description().findRev('#'); 180 int pos = mTodo->description().findRev('#');
165 if (pos < 0) { 181 if (pos < 0) {
166 setText(6,""); 182 setText(6,"");
167 } else { 183 } else {
168 QString str = mTodo->description().mid(pos+1); 184 QString str = mTodo->description().mid(pos+1);
169 str.stripWhiteSpace(); 185 str.stripWhiteSpace();
170 setText(6,str); 186 setText(6,str);
171 } 187 }
172#endif 188#endif
173 189
174 m_known = false; 190 m_known = false;
175 m_init = false; 191 m_init = false;
176 192
177 setMyPixmap(); 193 setMyPixmap();
178 194
179} 195}
180void KOTodoViewItem::setMyPixmap() 196void KOTodoViewItem::setMyPixmap()
181{ 197{
182 int size = 5; 198 int size = 5;
183 QPixmap pixi = QPixmap( 1, 1 ); 199 QPixmap pixi = QPixmap( 1, 1 );
184 // if ( !mTodo->isCompleted() && mTodo->hasDueDate() && mTodo->dtDue() < QDateTime::currentDateTime() ) { 200 // if ( !mTodo->isCompleted() && mTodo->hasDueDate() && mTodo->dtDue() < QDateTime::currentDateTime() ) {
185// pixi = SmallIcon("redcross16"); 201// pixi = SmallIcon("redcross16");
186// } else { 202// } else {
187 QPainter p; 203 QPainter p;
188 204
189 int pixSize = 0; 205 int pixSize = 0;
190 QPixmap pPix = QPixmap( size, size ); 206 QPixmap pPix = QPixmap( size, size );
191 if ( mTodo->description().length() > 0 ) { 207 if ( mTodo->description().length() > 0 ) {
192 pixi.resize(size, pixSize+size); 208 pixi.resize(size, pixSize+size);
193 pPix.fill( Qt::darkGreen ); 209 pPix.fill( Qt::darkGreen );
194 p.begin( &pixi ); 210 p.begin( &pixi );
195 p. drawPixmap ( 0, pixSize, pPix); 211 p. drawPixmap ( 0, pixSize, pPix);
196 p.end(); 212 p.end();
197 pixSize += size; 213 pixSize += size;
198 } 214 }
199 if ( mTodo->isAlarmEnabled() && mTodo->alarmEnabled()) { 215 if ( mTodo->isAlarmEnabled() && mTodo->alarmEnabled()) {
200 pixi.resize(size, pixSize+size); 216 pixi.resize(size, pixSize+size);
201 pPix.fill( Qt::red ); 217 pPix.fill( Qt::red );
202 p.begin( &pixi ); 218 p.begin( &pixi );
203 p. drawPixmap ( 0, pixSize, pPix); 219 p. drawPixmap ( 0, pixSize, pPix);
204 p.end(); 220 p.end();
205 pixSize += size; 221 pixSize += size;
206 } 222 }
207 if ( mTodo->doesRecur() ) { 223 if ( mTodo->doesRecur() ) {
208 pixi.resize(size, pixSize+size); 224 pixi.resize(size, pixSize+size);
209 pPix.fill( Qt::blue ); 225 pPix.fill( Qt::blue );
210 p.begin( &pixi ); 226 p.begin( &pixi );
211 p. drawPixmap ( 0, pixSize, pPix); 227 p. drawPixmap ( 0, pixSize, pPix);
212 p.end(); 228 p.end();
213 pixSize += size; 229 pixSize += size;
214 } 230 }
215 // } 231 // }
216 if ( pixi.width() > 1 ) { 232 if ( pixi.width() > 1 ) {
217 setPixmap ( 0,pixi ) ; 233 setPixmap ( 0,pixi ) ;
218 } else { 234 } else {
219 setPixmap ( 0,QPixmap() ) ; 235 setPixmap ( 0,QPixmap() ) ;
220 } 236 }
221} 237}
222void KOTodoViewItem::stateChange(bool state) 238void KOTodoViewItem::stateChange(bool state)
223{ 239{
224 // qDebug("KOTodoViewItem::stateChange %d ", state); 240 // qDebug("KOTodoViewItem::stateChange %d ", state);
225 // do not change setting on startup 241 // do not change setting on startup
226 if ( m_init ) return; 242 if ( m_init ) return;
227 if (isOn()!=state) { 243 if (isOn()!=state) {
228 setOn(state); 244 setOn(state);
229 //qDebug("SETON "); 245 //qDebug("SETON ");
230 return; 246 return;
231 } 247 }
232 if ( mTodo->isCompleted() == state ) { 248 if ( mTodo->isCompleted() == state ) {
233 //qDebug("STATECHANGE:nothing to do "); 249 //qDebug("STATECHANGE:nothing to do ");
234 return; 250 return;
235 } 251 }
236 QString keyd = "=="; 252 QString keyd = "==";
237 QString keyt = "=="; 253 QString keyt = "==";
238 //qDebug("KOTodoViewItem::stateChange %s ", text(0).latin1()); 254 //qDebug("KOTodoViewItem::stateChange %s ", text(0).latin1());
239 if ( mTodo->doesRecur() ){ 255 if ( mTodo->doesRecur() ){
240 QDateTime start = mTodo->dtStart(); 256 QDateTime start = mTodo->dtStart();
241 mTodo->setCompleted(state); 257 mTodo->setCompleted(state);
242 if ( start != mTodo->dtStart() ) { 258 if ( start != mTodo->dtStart() ) {
243 if ( state && !mTodo->isCompleted() ) { 259 if ( state && !mTodo->isCompleted() ) {
244 setOn( false ); 260 setOn( false );
245 state = false; 261 state = false;
246 } 262 }
247 } 263 }
248 } else 264 } else
249 mTodo->setCompleted(state); 265 mTodo->setCompleted(state);
250 266
251 if (state) mTodo->setCompleted(QDateTime::currentDateTime()); 267 if (state) mTodo->setCompleted(QDateTime::currentDateTime());
252 268
253 if (mTodo->hasDueDate()) { 269 if (mTodo->hasDueDate()) {
254 setText(3, mTodo->dtDueDateStr()); 270 setText(3, mTodo->dtDueDateStr());
255 QDate d = mTodo->dtDue().date(); 271 QDate d = mTodo->dtDue().date();
256 keyd.sprintf("%04d%02d%02d",d.year(),d.month(),d.day()); 272 keyd.sprintf("%04d%02d%02d",d.year(),d.month(),d.day());
257 setSortKey(3,keyd); 273 setSortKey(3,keyd);
258 if (mTodo->doesFloat()) { 274 if (mTodo->doesFloat()) {
259 setText(4,""); 275 setText(4,"");
260 } 276 }
261 else { 277 else {
262 setText(4,mTodo->dtDueTimeStr()); 278 setText(4,mTodo->dtDueTimeStr());
263 QTime t = mTodo->dtDue().time(); 279 QTime t = mTodo->dtDue().time();
264 keyt.sprintf("%02d%02d",t.hour(),t.minute()); 280 keyt.sprintf("%02d%02d",t.hour(),t.minute());
265 setSortKey(4,keyt); 281 setSortKey(4,keyt);
266 } 282 }
267 } 283 }
268 if (mTodo->hasStartDate()) { 284 if (mTodo->hasStartDate()) {
269 QString skeyt = "=="; 285 QString skeyt = "==";
270 QString skeyd = "=="; 286 QString skeyd = "==";
271 setText(5, mTodo->dtStartDateStr()); 287 setText(5, mTodo->dtStartDateStr());
272 QDate d = mTodo->dtStart().date(); 288 QDate d = mTodo->dtStart().date();
273 skeyd.sprintf("%04d%02d%02d",d.year(),d.month(),d.day()); 289 skeyd.sprintf("%04d%02d%02d",d.year(),d.month(),d.day());
274 290
275 if (mTodo->doesFloat()) { 291 if (mTodo->doesFloat()) {
276 setText(6,""); 292 setText(6,"");
277 } 293 }
278 else { 294 else {
279 setText(6,mTodo->dtStartTimeStr()); 295 setText(6,mTodo->dtStartTimeStr());
280 QTime t = mTodo->dtStart().time(); 296 QTime t = mTodo->dtStart().time();
281 skeyt.sprintf("%02d%02d",t.hour(),t.minute()); 297 skeyt.sprintf("%02d%02d",t.hour(),t.minute());
282 298
283 } 299 }
284 setSortKey(5,skeyd); 300 setSortKey(5,skeyd);
285 setSortKey(6,skeyt); 301 setSortKey(6,skeyt);
286 } 302 }
287 if (mTodo->isCompleted()) setSortKey(1,QString::number(9)+keyd+keyt); 303 if (mTodo->isCompleted()) setSortKey(1,QString::number(9)+keyd+keyt);
288 else setSortKey(1,QString::number(mTodo->priority())+keyd+keyt); 304 else setSortKey(1,QString::number(mTodo->priority())+keyd+keyt);
289 305
290 setText(2,i18n("%1 %").arg(QString::number(mTodo->percentComplete()))); 306 setText(2,i18n("%1 %").arg(QString::number(mTodo->percentComplete())));
291 if (mTodo->percentComplete()<100) { 307 if (mTodo->percentComplete()<100) {
292 if (mTodo->isCompleted()) setSortKey(2,QString::number(999)); 308 if (mTodo->isCompleted()) setSortKey(2,QString::number(999));
293 else setSortKey(2,QString::number(mTodo->percentComplete())); 309 else setSortKey(2,QString::number(mTodo->percentComplete()));
294 } 310 }
295 else { 311 else {
296 if (mTodo->isCompleted()) setSortKey(2,QString::number(999)); 312 if (mTodo->isCompleted()) setSortKey(2,QString::number(999));
297 else setSortKey(2,QString::number(99)); 313 else setSortKey(2,QString::number(99));
298 } 314 }
299 if ( state ) { 315 if ( state ) {
300 QListViewItem * myChild = firstChild(); 316 QListViewItem * myChild = firstChild();
301 KOTodoViewItem *item; 317 KOTodoViewItem *item;
302 while( myChild ) { 318 while( myChild ) {
303 //qDebug("stateCH "); 319 //qDebug("stateCH ");
304 item = static_cast<KOTodoViewItem*>(myChild); 320 item = static_cast<KOTodoViewItem*>(myChild);
305 item->stateChange(state); 321 item->stateChange(state);
306 myChild = myChild->nextSibling(); 322 myChild = myChild->nextSibling();
307 } 323 }
308 } else { 324 } else {
309 QListViewItem * myChild = parent(); 325 QListViewItem * myChild = parent();
310 if ( myChild ) 326 if ( myChild )
311 (static_cast<KOTodoViewItem*>(myChild))->stateChange(state); 327 (static_cast<KOTodoViewItem*>(myChild))->stateChange(state);
312 } 328 }
313 mTodoView->modified(true); 329 mTodoView->modified(true);
314 setMyPixmap(); 330 setMyPixmap();
315 mTodoView->setTodoModified( mTodo ); 331 mTodoView->setTodoModified( mTodo );
316} 332}
317 333
318bool KOTodoViewItem::isAlternate() 334bool KOTodoViewItem::isAlternate()
319{ 335{
320 336#if 0
337 //if ( m_known ) return m_odd;
338 //qDebug("test ");
339 KOTodoViewItem *item = static_cast<KOTodoViewItem *>(itemAbove());
340 if ( item ) {
341 m_known = item->m_known;
342 if ( m_known ) {
343 m_odd = !item->m_odd ;
344 return m_odd;
345 }
346 } else {
347 item = static_cast<KOTodoViewItem *>(itemBelow());
348 if ( item ) {
349 m_known = item->m_known;
350 if ( m_known ) {
351 m_odd = !item->m_odd ;
352 return m_odd;
353 }
354 }
355 }
321 KOTodoListView *lv = static_cast<KOTodoListView *>(listView()); 356 KOTodoListView *lv = static_cast<KOTodoListView *>(listView());
322 if (lv && lv->alternateBackground().isValid()) 357 item = static_cast<KOTodoViewItem *>(lv->firstChild());
358 bool previous = true;
359 qDebug("WHILE ");
360 while ( item ) {
361 item->m_odd = !previous;
362 item->m_known = true;
363 previous = !previous;
364 item = static_cast<KOTodoViewItem *>(item->itemBelow());
365 }
366 return m_odd;
367
368#else
369
370 //KOTodoListView *lv = static_cast<KOTodoListView *>(listView());
371 //if (lv && lv->alternateBackground().isValid())
323 { 372 {
324 KOTodoViewItem *above = 0; 373 KOTodoViewItem *above = static_cast<KOTodoViewItem *>(itemAbove());
325 above = static_cast<KOTodoViewItem *>(itemAbove());
326 m_known = above ? above->m_known : true; 374 m_known = above ? above->m_known : true;
327 if (m_known) 375 if (m_known)
328 { 376 {
329 m_odd = above ? !above->m_odd : false; 377 m_odd = above ? !above->m_odd : false;
330 } 378 }
331 else 379 else
332 { 380 {
333 KOTodoViewItem *item; 381 KOTodoViewItem *item;
334 bool previous = true; 382 bool previous = true;
335 if (QListViewItem::parent()) 383 if (QListViewItem::parent())
336 { 384 {
337 item = static_cast<KOTodoViewItem *>(QListViewItem::parent()); 385 item = static_cast<KOTodoViewItem *>(QListViewItem::parent());
338 if (item) 386 if (item)
339 previous = item->m_odd; 387 previous = item->m_odd;
340 item = static_cast<KOTodoViewItem *>(QListViewItem::parent()->firstChild()); 388 item = static_cast<KOTodoViewItem *>(QListViewItem::parent()->firstChild());
341 } 389 }
342 else 390 else
343 { 391 {
392 KOTodoListView *lv = static_cast<KOTodoListView *>(listView());
344 item = static_cast<KOTodoViewItem *>(lv->firstChild()); 393 item = static_cast<KOTodoViewItem *>(lv->firstChild());
345 } 394 }
346 395
347 while(item) 396 while(item)
348 { 397 {
349 item->m_odd = previous = !previous; 398 item->m_odd = previous = !previous;
350 item->m_known = true; 399 item->m_known = true;
351 item = static_cast<KOTodoViewItem *>(item->nextSibling()); 400 item = static_cast<KOTodoViewItem *>(item->nextSibling());
352 } 401 }
353 } 402 }
354 return m_odd; 403 return m_odd;
355 } 404 }
356 return false; 405 return false;
406#endif
357} 407}
358 408
359void KOTodoViewItem::paintCell(QPainter *p, const QColorGroup &cg, int column, int width, int alignment) 409void KOTodoViewItem::paintCell(QPainter *p, const QColorGroup &cg, int column, int width, int alignment)
360{ 410{
361 QColorGroup _cg = cg; 411 QColorGroup _cg = cg;
362 QColorGroup::ColorRole role; 412 QColorGroup::ColorRole role;
363 if ( KOPrefs::instance()->mTodoViewUsesForegroundColor && !mTodo->isRunning()) 413 if ( KOPrefs::instance()->mTodoViewUsesForegroundColor && !mTodo->isRunning())
364 role = QColorGroup::Text; 414 role = QColorGroup::Text;
365 else 415 else
366 role = QColorGroup::Base; 416 role = QColorGroup::Base;
367 //#ifndef KORG_NOLVALTERNATION 417 //#ifndef KORG_NOLVALTERNATION
368 if (isAlternate()) 418 if (isAlternate())
369 _cg.setColor(QColorGroup::Base, static_cast< KOTodoListView* >(listView())->alternateBackground()); 419 _cg.setColor(QColorGroup::Base, static_cast< KOTodoListView* >(listView())->alternateBackground());
370 bool setColor = KOPrefs::instance()->mTodoViewUsesCatColors; 420 bool setColor = KOPrefs::instance()->mTodoViewUsesCatColors;
371 QColor colorToSet; 421 QColor colorToSet;
372 if ( column == 0 && mTodo->calID() > 1 ) { 422 if ( column == 0 && mTodo->calID() > 1 ) {
373 setColor = true; 423 setColor = true;
374 colorToSet = KOPrefs::instance()->defaultColor( mTodo->calID() ); 424 colorToSet = KOPrefs::instance()->defaultColor( mTodo->calID() );
375 } else if ( setColor ) { 425 } else if ( setColor ) {
376 QStringList categories = mTodo->categories(); 426 QStringList categories = mTodo->categories();
377 QString cat = categories.first(); 427 QString cat = categories.first();
378 if ( !cat.isEmpty()) { 428 if ( !cat.isEmpty()) {
379 colorToSet = *(KOPrefs::instance()->categoryColor(cat) ); 429 colorToSet = *(KOPrefs::instance()->categoryColor(cat) );
380 } else 430 } else
381 setColor = false; 431 setColor = false;
382 } 432 }
383 bool openMode = !isOpen(); 433 bool openMode = !isOpen();
384 // maybe we are in flat-display-mode 434 // maybe we are in flat-display-mode
385 if ( !firstChild() ) 435 if ( !firstChild() )
386 openMode = false; 436 openMode = false;
387 bool colorRunning = mTodo->isRunning(); 437 bool colorRunning = mTodo->isRunning();
388 if ( ! colorRunning && openMode ) 438 if ( ! colorRunning && openMode )
389 colorRunning = mTodo->hasRunningSub(); 439 colorRunning = mTodo->hasRunningSub();
390 if ( colorRunning ) { 440 if ( colorRunning ) {
391 setColor = true; 441 setColor = true;
392 colorToSet = KOPrefs::instance()->mTodoRunColor; 442 colorToSet = KOPrefs::instance()->mTodoRunColor;
393 } else { 443 } else {
394 int odue = mTodo->hasDueSubTodo( openMode ); 444 int odue = mTodo->hasDueSubTodo( openMode );
395 if (odue == 2) { 445 if (odue == 2) {
396 colorToSet = KOPrefs::instance()->mTodoOverdueColor; 446 colorToSet = KOPrefs::instance()->mTodoOverdueColor;
397 setColor = true; 447 setColor = true;
398 } else if ( odue == 1 ) { 448 } else if ( odue == 1 ) {
399 colorToSet = KOPrefs::instance()->mTodoDueTodayColor; 449 colorToSet = KOPrefs::instance()->mTodoDueTodayColor;
400 setColor = true; 450 setColor = true;
401 } 451 }
402 } 452 }
403 453
404 454
405 if ( setColor ) { 455 if ( setColor ) {
406 _cg.setColor(role,colorToSet ); 456 _cg.setColor(role,colorToSet );
407 if ( role == QColorGroup::Base) { 457 if ( role == QColorGroup::Base) {
408 int rgb = colorToSet.red(); 458 int rgb = colorToSet.red();
409 rgb += colorToSet.blue()/2; 459 rgb += colorToSet.blue()/2;
410 rgb += colorToSet.green(); 460 rgb += colorToSet.green();
411 if ( rgb < 200 ) 461 if ( rgb < 200 )
412 _cg.setColor(QColorGroup::Text,Qt::white ); 462 _cg.setColor(QColorGroup::Text,Qt::white );
413 } 463 }
414 } 464 }
415 //#endif 465 //#endif
416 if ( column > 0 ){ 466 if ( column > 0 ){
417 if ( column == 2 && !KOPrefs::instance()->mTodoViewShowsPercentage ) { 467 if ( column == 2 && !KOPrefs::instance()->mTodoViewShowsPercentage ) {
418 p->save(); 468 p->save();
419 int progress = (int)(( (width-6)*mTodo->percentComplete())/100.0 + 0.5); 469 int progress = (int)(( (width-6)*mTodo->percentComplete())/100.0 + 0.5);
420 470
421 p->fillRect( 0, 0, width, height(), _cg.base() ); // background 471 p->fillRect( 0, 0, width, height(), _cg.base() ); // background
422 // p->setPen(Qt::black ); //border 472 // p->setPen(Qt::black ); //border
423 // p->setBrush( KOPrefs::instance()->mHighlightColorKGlobalSettings::baseColor() ); //filling 473 // p->setBrush( KOPrefs::instance()->mHighlightColorKGlobalSettings::baseColor() ); //filling
424 QColor fc = KOPrefs::instance()->mHighlightColor; 474 QColor fc = KOPrefs::instance()->mHighlightColor;
425 if ( mTodo->percentComplete() == 100 ) 475 if ( mTodo->percentComplete() == 100 )
426 fc = darkGreen; 476 fc = darkGreen;
427 p->drawRect( 2, 2, width-4, height()-4); 477 p->drawRect( 2, 2, width-4, height()-4);
428 p->fillRect( 3, 3, progress, height()-6, 478 p->fillRect( 3, 3, progress, height()-6,
429 fc ); 479 fc );
430 p->restore(); 480 p->restore();
431 } else { 481 } else {
432 QCheckListItem::paintCell(p, _cg, column, width, alignment); 482 QCheckListItem::paintCell(p, _cg, column, width, alignment);
433 } 483 }
434 return; 484 return;
435 } 485 }
436 486
437 int align = alignment; 487 int align = alignment;
438 488
439 if ( !p ) 489 if ( !p )
440 return; 490 return;
441 491
442 p->fillRect( 0, 0, width, height(), _cg.brush( QColorGroup::Base ) ); 492 p->fillRect( 0, 0, width, height(), _cg.brush( QColorGroup::Base ) );
443 493
444 QListView *lv = listView(); 494 QListView *lv = listView();
445 if ( !lv ) 495 if ( !lv )
446 return; 496 return;
447 int marg = 2;//lv->itemMargin(); 497 int marg = 2;//lv->itemMargin();
448 int r = 0; 498 int r = 0;
449 QCheckListItem::Type myType = QCheckListItem::CheckBox; 499 QCheckListItem::Type myType = QCheckListItem::CheckBox;
450 int BoxSize = 20; 500 int BoxSize = 20;
451 int boxOffset = 2; 501 int boxOffset = 2;
452 int xOffset = 2; 502 int xOffset = 2;
453 if (qApp->desktop()->width() < 300 ) { 503 if (qApp->desktop()->width() < 300 ) {
454 BoxSize = 14; 504 BoxSize = 14;
455 boxOffset = -1; 505 boxOffset = -1;
456 xOffset = 1; 506 xOffset = 1;
457 // marg = 0; 507 // marg = 0;
458 } 508 }
459 if ( height() < BoxSize ) { 509 if ( height() < BoxSize ) {
460 boxOffset = boxOffset - ((BoxSize - height())/2) ; 510 boxOffset = boxOffset - ((BoxSize - height())/2) ;
461 // qDebug("boxOffset %d height %d", boxOffset, height() ); 511 // qDebug("boxOffset %d height %d", boxOffset, height() );
462 BoxSize = height(); 512 BoxSize = height();
463 513
464 } 514 }
465 //bool winStyle = lv->style() == WindowsStyle; 515 //bool winStyle = lv->style() == WindowsStyle;
466 516
467 int lineStart = 5; 517 int lineStart = 5;
468 if ( myType == Controller ) { 518 if ( myType == Controller ) {
469 if ( !pixmap( 0 ) ) 519 if ( !pixmap( 0 ) )
470 r += BoxSize + 4; 520 r += BoxSize + 4;
471 } else { 521 } else {
472 ASSERT( lv ); //### 522 ASSERT( lv ); //###
473 //QFontMetrics fm( lv->font() ); 523 //QFontMetrics fm( lv->font() );
474 //int d = fm.height(); 524 //int d = fm.height();
475 int x = 0; 525 int x = 0;
476 int y = (height() - BoxSize) / 2; 526 int y = (height() - BoxSize) / 2;
477 //p->setPen( QPen( _cg.text(), winStyle ? 2 : 1 ) ); 527 //p->setPen( QPen( _cg.text(), winStyle ? 2 : 1 ) );
478 if ( myType == CheckBox ) { 528 if ( myType == CheckBox ) {
479 if ( isEnabled() ) 529 if ( isEnabled() )
480 p->setPen( QPen( _cg.text(), 1 ) ); 530 p->setPen( QPen( _cg.text(), 1 ) );
481 else 531 else
482 p->setPen( QPen( listView()->palette().color( QPalette::Disabled, QColorGroup::Text ), 1 ) ); 532 p->setPen( QPen( listView()->palette().color( QPalette::Disabled, QColorGroup::Text ), 1 ) );
483 p->drawRect( x+marg, y+2, BoxSize-4, BoxSize-4 ); 533 p->drawRect( x+marg, y+2, BoxSize-4, BoxSize-4 );
484 lineStart = x+marg; 534 lineStart = x+marg;
485 ///////////////////// 535 /////////////////////
486 x++; 536 x++;
487 y++; 537 y++;
488 if ( isOn() ) { 538 if ( isOn() ) {
489 QPointArray a( 7*2 ); 539 QPointArray a( 7*2 );
490 int i, xx, yy; 540 int i, xx, yy;
491 xx = x+xOffset+marg+(boxOffset/2); 541 xx = x+xOffset+marg+(boxOffset/2);
492 yy = y+5+boxOffset; 542 yy = y+5+boxOffset;
493 for ( i=0; i<3; i++ ) { 543 for ( i=0; i<3; i++ ) {
494 a.setPoint( 2*i, xx, yy ); 544 a.setPoint( 2*i, xx, yy );
495 a.setPoint( 2*i+1, xx, yy+2 ); 545 a.setPoint( 2*i+1, xx, yy+2 );
496 // qDebug(" "); 546 // qDebug(" ");
497 xx++; yy++; 547 xx++; yy++;
498 } 548 }
499 yy -= 2; 549 yy -= 2;
500 for ( i=3; i<7; i++ ) { 550 for ( i=3; i<7; i++ ) {
501 a.setPoint( 2*i, xx, yy ); 551 a.setPoint( 2*i, xx, yy );
502 a.setPoint( 2*i+1, xx, yy+2 ); 552 a.setPoint( 2*i+1, xx, yy+2 );
503 xx++; yy--; 553 xx++; yy--;
504 } 554 }
505 p->setPen( darkGreen ); 555 p->setPen( darkGreen );
506 p->drawLineSegments( a ); 556 p->drawLineSegments( a );
507 } 557 }
508 //////////////////////// 558 ////////////////////////
509 } 559 }
510 r += BoxSize + 4; 560 r += BoxSize + 4;
511 } 561 }
512 562
513 p->translate( r, 0 ); 563 p->translate( r, 0 );
514 p->setPen( QPen( _cg.text() ) ); 564 p->setPen( QPen( _cg.text() ) );
515 QListViewItem::paintCell( p, _cg, column, width - r, align ); 565 QListViewItem::paintCell( p, _cg, column, width - r, align );
516 if ( mTodo->cancelled () ) { 566 if ( mTodo->cancelled () ) {
517 p->setPen( black ); 567 p->setPen( black );
518 QRect br = p->boundingRect( 1,1,1,1,0,mTodo->summary() ); 568 QRect br = p->boundingRect( 1,1,1,1,0,mTodo->summary() );
519 int wid = br.width() +lineStart; 569 int wid = br.width() +lineStart;
520 if ( wid > width-3 ) 570 if ( wid > width-3 )
521 wid = width-3; 571 wid = width-3;
522 p->drawLine( lineStart, height()/2+1, wid, height()/2+1 ); 572 p->drawLine( lineStart, height()/2+1, wid, height()/2+1 );
523 573
524 } 574 }
525 575
526} 576}