summaryrefslogtreecommitdiffabout
path: root/korganizer
Unidiff
Diffstat (limited to 'korganizer') (more/less context) (ignore whitespace changes)
-rw-r--r--korganizer/calendarview.cpp167
-rw-r--r--korganizer/calendarview.h20
-rw-r--r--korganizer/kotodoview.cpp2
-rw-r--r--korganizer/mainwindow.cpp4
4 files changed, 191 insertions, 2 deletions
diff --git a/korganizer/calendarview.cpp b/korganizer/calendarview.cpp
index 503ef12..36db9c4 100644
--- a/korganizer/calendarview.cpp
+++ b/korganizer/calendarview.cpp
@@ -1,1021 +1,1177 @@
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 "kodialogmanager.h" 107#include "kodialogmanager.h"
108#include "outgoingdialog.h" 108#include "outgoingdialog.h"
109#include "incomingdialog.h" 109#include "incomingdialog.h"
110#include "datenavigatorcontainer.h" 110#include "datenavigatorcontainer.h"
111#include "statusdialog.h" 111#include "statusdialog.h"
112#include "kdatenavigator.h" 112#include "kdatenavigator.h"
113#include "kotodoview.h" 113#include "kotodoview.h"
114#include "datenavigator.h" 114#include "datenavigator.h"
115#include "resourceview.h" 115#include "resourceview.h"
116#include "navigatorbar.h" 116#include "navigatorbar.h"
117#include "searchdialog.h" 117#include "searchdialog.h"
118#include "mainwindow.h" 118#include "mainwindow.h"
119 119
120#include "calendarview.h" 120#include "calendarview.h"
121#ifndef DESKTOP_VERSION 121#ifndef DESKTOP_VERSION
122#include <qtopia/alarmserver.h> 122#include <qtopia/alarmserver.h>
123#endif 123#endif
124#ifndef _WIN32_ 124#ifndef _WIN32_
125#include <stdlib.h> 125#include <stdlib.h>
126#include <stdio.h> 126#include <stdio.h>
127#include <unistd.h> 127#include <unistd.h>
128#else 128#else
129#include <qprocess.h> 129#include <qprocess.h>
130#endif 130#endif
131 131
132#ifdef DESKTOP_VERSION 132#ifdef DESKTOP_VERSION
133#include <kabc/stdaddressbook.h> 133#include <kabc/stdaddressbook.h>
134#endif 134#endif
135using namespace KOrg; 135using namespace KOrg;
136using namespace KCal; 136using namespace KCal;
137extern int globalFlagBlockAgenda; 137extern int globalFlagBlockAgenda;
138extern int globalFlagBlockStartup; 138extern int globalFlagBlockStartup;
139 139
140 140
141MissedAlarmTextBrowser::MissedAlarmTextBrowser(QWidget *parent, QPtrList<Incidence> alarms,QDateTime start ) : QTextBrowser(parent)
142
143{
144 mAlarms = alarms;
145 setBackgroundColor( QColor( 86, 153, 205 ) );
146 QString mText = "<table width=\"100%\">\n";
147 //mText += "<tr bgcolor=\"#3679AD\"><td><h2>";
148#ifdef DESKTOP_VERSION
149 mText += "<tr bgcolor=\"#5699CD\"><td align=\"center\"><h1>";
150#else
151 mText += "<tr bgcolor=\"#5699CD\"><td align=\"center\"><h2>";
152#endif
153 // mText += "<img src=\"";
154 // mText += ipath;
155 // mText += "\">";
156 //mEventDate = QDate::currentDate();
157#ifdef DESKTOP_VERSION
158 mText += "<font color=\"#FFFFFF\"> <em>" + i18n("You missed the alarms for the following events or todos:")+"</em></font></h1>";
159#else
160 mText += "<font color=\"#FFFFFF\"> <em>" + i18n("You missed the alarms for the following events or todos:")+"</em></font></h2>";
161#endif
162 mText += "</td></tr>\n<tr bgcolor=\"#FF997D\"><td>";
163
164 Incidence * inc = getNextInc( start );
165 int time = 0;
166 mText += "<table>";
167 while ( inc ) {
168 QDateTime dt ;
169 QString tempText = "<a ";
170 bool ok;
171 dt = inc->getNextOccurence( start, &ok );
172 if ( !ok ) continue;
173 if ( inc->type() == "Event" ) {
174 tempText += "href=\"event:";
175 } else if ( inc->type() == "Todo" ) {
176 tempText += "href=\"todo:";
177 }
178 tempText += inc->uid() + "\">";
179 if ( inc->type() == "Todo" )
180 tempText += i18n("Todo: ");
181 if ( inc->summary().length() > 0 )
182 tempText += inc->summary();
183 else
184 tempText += i18n("-no summary-");
185 QString timestr;
186 if (!inc->doesFloat())
187 timestr = KGlobal::locale()->formatDateTime( dt, KOPrefs::instance()->mShortDateInViewer) +": ";
188 else
189 timestr = KGlobal::locale()->formatDate( dt.date() , KOPrefs::instance()->mShortDateInViewer) +": ";
190 if ( dt.date() == QDate::currentDate() && time == 0 ) {
191 time = 1;
192 mText +="</table>";
193 mText += "</td></tr>\n<tr bgcolor=\"#FFDC64\"><td>";
194 mText += "<table>";
195
196 }
197 if ( dt.date() > QDate::currentDate() && time != 2 ) {
198 time = 2;
199 mText +="</table>";
200 mText += "</td></tr>\n<tr bgcolor=\"#6AFF6A\"><td>";
201 mText += "<table>";
202 }
203 mText +="<tr><td><b>";
204 mText += timestr;
205 mText += "</b></td><td>";
206 mText += tempText;
207 mText += "</td></tr>\n";
208 inc = getNextInc( start );
209 }
210 mText +="</table>";
211 setText( mText );
212}
213
214Incidence * MissedAlarmTextBrowser::getNextInc( QDateTime start )
215{
216 QDateTime dt ;
217 Incidence * retInc;
218 Incidence * inc = mAlarms.first();
219 if ( inc == 0 )
220 return 0;
221 bool ok;
222 dt = inc->getNextOccurence( start, &ok );
223 if ( ! ok ) return 0;
224 QDateTime dtn ;
225 retInc = inc;
226 inc = mAlarms.next();
227 while ( inc ) {
228 dtn = inc->getNextOccurence( start, &ok );
229 if ( ! ok ) return 0;
230 if ( dtn < dt ) {
231 dt = dtn;
232 retInc = inc;
233 }
234 inc = mAlarms.next();
235 }
236 mAlarms.remove( retInc );
237 return retInc;
238
239}
240void MissedAlarmTextBrowser::setSource(const QString & n)
241{
242 if (n.startsWith("event:")) {
243#ifdef DESKTOP_VERSION
244 emit showIncidence(n.mid(8));
245#else
246 emit showIncidence(n.mid(6));
247#endif
248 return;
249 } else if (n.startsWith("todo:")) {
250#ifdef DESKTOP_VERSION
251 emit showIncidence(n.mid(7));
252#else
253 emit showIncidence(n.mid(5));
254#endif
255 return;
256 }
257}
258
141 259
142class KOBeamPrefs : public QDialog 260class KOBeamPrefs : public QDialog
143{ 261{
144 public: 262 public:
145 KOBeamPrefs( QWidget *parent=0, const char *name=0 ) : 263 KOBeamPrefs( QWidget *parent=0, const char *name=0 ) :
146 QDialog( parent, name, true ) 264 QDialog( parent, name, true )
147 { 265 {
148 setCaption( i18n("Beam Options") ); 266 setCaption( i18n("Beam Options") );
149 QVBoxLayout* lay = new QVBoxLayout( this ); 267 QVBoxLayout* lay = new QVBoxLayout( this );
150 lay->setSpacing( 3 ); 268 lay->setSpacing( 3 );
151 lay->setMargin( 3 ); 269 lay->setMargin( 3 );
152 QButtonGroup* format = new QButtonGroup( 1, Horizontal, i18n("File format"), this ); 270 QButtonGroup* format = new QButtonGroup( 1, Horizontal, i18n("File format"), this );
153 lay->addWidget( format ); 271 lay->addWidget( format );
154 format->setExclusive ( true ) ; 272 format->setExclusive ( true ) ;
155 QButtonGroup* time = new QButtonGroup(1, Horizontal, i18n("Time format"), this ); 273 QButtonGroup* time = new QButtonGroup(1, Horizontal, i18n("Time format"), this );
156 lay->addWidget( time ); time->setExclusive ( true ) ; 274 lay->addWidget( time ); time->setExclusive ( true ) ;
157 vcal = new QRadioButton(" vCalendar ", format ); 275 vcal = new QRadioButton(" vCalendar ", format );
158 ical = new QRadioButton(" iCalendar ", format ); 276 ical = new QRadioButton(" iCalendar ", format );
159 vcal->setChecked( true ); 277 vcal->setChecked( true );
160 tz = new QRadioButton(i18n(" With timezone "), time ); 278 tz = new QRadioButton(i18n(" With timezone "), time );
161 local = new QRadioButton(i18n(" Local time "), time ); 279 local = new QRadioButton(i18n(" Local time "), time );
162 tz->setChecked( true ); 280 tz->setChecked( true );
163 QPushButton * ok = new QPushButton( i18n("Beam via IR!"), this ); 281 QPushButton * ok = new QPushButton( i18n("Beam via IR!"), this );
164 lay->addWidget( ok ); 282 lay->addWidget( ok );
165 QPushButton * cancel = new QPushButton( i18n("Cancel"), this ); 283 QPushButton * cancel = new QPushButton( i18n("Cancel"), this );
166 lay->addWidget( cancel ); 284 lay->addWidget( cancel );
167 connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) ); 285 connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) );
168 connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) ); 286 connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) );
169 resize( 200, 200 ); 287 resize( 200, 200 );
170 } 288 }
171 289
172 bool beamVcal() { return vcal->isChecked(); } 290 bool beamVcal() { return vcal->isChecked(); }
173 bool beamLocal() { return local->isChecked(); } 291 bool beamLocal() { return local->isChecked(); }
174private: 292private:
175 QRadioButton* vcal, *ical, *local, *tz; 293 QRadioButton* vcal, *ical, *local, *tz;
176}; 294};
177class KOCatPrefs : public QDialog 295class KOCatPrefs : public QDialog
178{ 296{
179 public: 297 public:
180 KOCatPrefs( QWidget *parent=0, const char *name=0 ) : 298 KOCatPrefs( QWidget *parent=0, const char *name=0 ) :
181 QDialog( parent, name, true ) 299 QDialog( parent, name, true )
182 { 300 {
183 setCaption( i18n("Manage new Categories") ); 301 setCaption( i18n("Manage new Categories") );
184 QVBoxLayout* lay = new QVBoxLayout( this ); 302 QVBoxLayout* lay = new QVBoxLayout( this );
185 lay->setSpacing( 3 ); 303 lay->setSpacing( 3 );
186 lay->setMargin( 3 ); 304 lay->setMargin( 3 );
187 QLabel * lab = new QLabel( i18n("After importing/loading/syncing\nthere may be new categories in\nevents or todos\nwhich are not in the category list.\nPlease choose what to do:\n "), this ); 305 QLabel * lab = new QLabel( i18n("After importing/loading/syncing\nthere may be new categories in\nevents or todos\nwhich are not in the category list.\nPlease choose what to do:\n "), this );
188 lay->addWidget( lab ); 306 lay->addWidget( lab );
189 QButtonGroup* format = new QButtonGroup( 1, Horizontal, i18n("New categories not in list:"), this ); 307 QButtonGroup* format = new QButtonGroup( 1, Horizontal, i18n("New categories not in list:"), this );
190 lay->addWidget( format ); 308 lay->addWidget( format );
191 format->setExclusive ( true ) ; 309 format->setExclusive ( true ) ;
192 addCatBut = new QRadioButton(i18n("Add to category list"), format ); 310 addCatBut = new QRadioButton(i18n("Add to category list"), format );
193 new QRadioButton(i18n("Remove from Events/Todos"), format ); 311 new QRadioButton(i18n("Remove from Events/Todos"), format );
194 addCatBut->setChecked( true ); 312 addCatBut->setChecked( true );
195 QPushButton * ok = new QPushButton( i18n("OK"), this ); 313 QPushButton * ok = new QPushButton( i18n("OK"), this );
196 lay->addWidget( ok ); 314 lay->addWidget( ok );
197 QPushButton * cancel = new QPushButton( i18n("Cancel"), this ); 315 QPushButton * cancel = new QPushButton( i18n("Cancel"), this );
198 lay->addWidget( cancel ); 316 lay->addWidget( cancel );
199 connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) ); 317 connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) );
200 connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) ); 318 connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) );
201 resize( 200, 200 ); 319 resize( 200, 200 );
202 } 320 }
203 321
204 bool addCat() { return addCatBut->isChecked(); } 322 bool addCat() { return addCatBut->isChecked(); }
205private: 323private:
206 QRadioButton* addCatBut; 324 QRadioButton* addCatBut;
207}; 325};
208 326
209 327
210 328
211CalendarView::CalendarView( CalendarResources *calendar, 329CalendarView::CalendarView( CalendarResources *calendar,
212 QWidget *parent, const char *name ) 330 QWidget *parent, const char *name )
213 : CalendarViewBase( parent, name ), 331 : CalendarViewBase( parent, name ),
214 mCalendar( calendar ), 332 mCalendar( calendar ),
215 mResourceManager( calendar->resourceManager() ) 333 mResourceManager( calendar->resourceManager() )
216{ 334{
217 335
218 mEventEditor = 0; 336 mEventEditor = 0;
219 mTodoEditor = 0; 337 mTodoEditor = 0;
220 338
221 init(); 339 init();
222} 340}
223 341
224CalendarView::CalendarView( Calendar *calendar, 342CalendarView::CalendarView( Calendar *calendar,
225 QWidget *parent, const char *name ) 343 QWidget *parent, const char *name )
226 : CalendarViewBase( parent, name ), 344 : CalendarViewBase( parent, name ),
227 mCalendar( calendar ), 345 mCalendar( calendar ),
228 mResourceManager( 0 ) 346 mResourceManager( 0 )
229{ 347{
230 348
231 mEventEditor = 0; 349 mEventEditor = 0;
232 mTodoEditor = 0; 350 mTodoEditor = 0;
233 init(); 351 init();
234} 352}
235 353
236void CalendarView::init() 354void CalendarView::init()
237{ 355{
238 mNextAlarmDateTime = QDateTime::currentDateTime(); 356 mNextAlarmDateTime = QDateTime::currentDateTime();
239 setFocusPolicy ( NoFocus ); 357 setFocusPolicy ( NoFocus );
240 mViewerCallerIsSearchDialog = false; 358 mViewerCallerIsSearchDialog = false;
241 mBlockShowDates = false; 359 mBlockShowDates = false;
242 beamDialog = new KOBeamPrefs(); 360 beamDialog = new KOBeamPrefs();
243 mDatePickerMode = 0; 361 mDatePickerMode = 0;
244 mCurrentSyncDevice = ""; 362 mCurrentSyncDevice = "";
245 writeLocale(); 363 writeLocale();
246 mViewManager = new KOViewManager( this ); 364 mViewManager = new KOViewManager( this );
247 mDialogManager = new KODialogManager( this ); 365 mDialogManager = new KODialogManager( this );
248 mEventViewerDialog = 0; 366 mEventViewerDialog = 0;
249 mModified = false; 367 mModified = false;
250 mReadOnly = false; 368 mReadOnly = false;
251 mSelectedIncidence = 0; 369 mSelectedIncidence = 0;
252 mCalPrinter = 0; 370 mCalPrinter = 0;
253 mFilters.setAutoDelete(true); 371 mFilters.setAutoDelete(true);
254 372
255 mCalendar->registerObserver( this ); 373 mCalendar->registerObserver( this );
256 // TODO: Make sure that view is updated, when calendar is changed. 374 // TODO: Make sure that view is updated, when calendar is changed.
257 375
258 mStorage = new FileStorage( mCalendar ); 376 mStorage = new FileStorage( mCalendar );
259 mNavigator = new DateNavigator( this, "datevav", mViewManager ); 377 mNavigator = new DateNavigator( this, "datevav", mViewManager );
260 378
261 QBoxLayout *topLayout = (QBoxLayout*)layout(); 379 QBoxLayout *topLayout = (QBoxLayout*)layout();
262#ifndef KORG_NOSPLITTER 380#ifndef KORG_NOSPLITTER
263 // create the main layout frames. 381 // create the main layout frames.
264 mPanner = new QSplitter(QSplitter::Horizontal,this,"CalendarView::Panner"); 382 mPanner = new QSplitter(QSplitter::Horizontal,this,"CalendarView::Panner");
265 topLayout->addWidget(mPanner); 383 topLayout->addWidget(mPanner);
266 384
267 mLeftSplitter = new QSplitter(QSplitter::Vertical,mPanner, 385 mLeftSplitter = new QSplitter(QSplitter::Vertical,mPanner,
268 "CalendarView::LeftFrame"); 386 "CalendarView::LeftFrame");
269 mPanner->setResizeMode(mLeftSplitter,QSplitter::KeepSize); 387 mPanner->setResizeMode(mLeftSplitter,QSplitter::KeepSize);
270 388
271 mDateNavigator = new DateNavigatorContainer( mLeftSplitter, 389 mDateNavigator = new DateNavigatorContainer( mLeftSplitter,
272 "CalendarView::DateNavigator" ); 390 "CalendarView::DateNavigator" );
273 391
274 mLeftSplitter->setResizeMode(mDateNavigator,QSplitter::KeepSize); 392 mLeftSplitter->setResizeMode(mDateNavigator,QSplitter::KeepSize);
275 mTodoList = new KOTodoView(mCalendar, mLeftSplitter, "todolist_small2"); 393 mTodoList = new KOTodoView(mCalendar, mLeftSplitter, "todolist_small2");
276 mTodoList->setNavigator( mNavigator ); 394 mTodoList->setNavigator( mNavigator );
277 mFilterView = new KOFilterView(&mFilters,mLeftSplitter,"CalendarView::FilterView"); 395 mFilterView = new KOFilterView(&mFilters,mLeftSplitter,"CalendarView::FilterView");
278 396
279#ifdef KORG_NORESOURCEVIEW 397#ifdef KORG_NORESOURCEVIEW
280 mResourceView = 0; 398 mResourceView = 0;
281#else 399#else
282 if ( mResourceManager ) { 400 if ( mResourceManager ) {
283 mResourceView = new ResourceView( mResourceManager, mLeftSplitter ); 401 mResourceView = new ResourceView( mResourceManager, mLeftSplitter );
284 mResourceView->updateView(); 402 mResourceView->updateView();
285 connect( mResourceView, SIGNAL( resourcesChanged() ), 403 connect( mResourceView, SIGNAL( resourcesChanged() ),
286 SLOT( updateView() ) ); 404 SLOT( updateView() ) );
287 } else { 405 } else {
288 mResourceView = 0; 406 mResourceView = 0;
289 } 407 }
290#endif 408#endif
291 QWidget *rightBox = new QWidget( mPanner ); 409 QWidget *rightBox = new QWidget( mPanner );
292 QBoxLayout *rightLayout = new QVBoxLayout( rightBox ); 410 QBoxLayout *rightLayout = new QVBoxLayout( rightBox );
293 411
294 mRightFrame = new QWidgetStack( rightBox ); 412 mRightFrame = new QWidgetStack( rightBox );
295 rightLayout->addWidget( mRightFrame, 1 ); 413 rightLayout->addWidget( mRightFrame, 1 );
296 414
297 mLeftFrame = mLeftSplitter; 415 mLeftFrame = mLeftSplitter;
298#else 416#else
299 //QWidget *mainBox = new QWidget( this ); 417 //QWidget *mainBox = new QWidget( this );
300 //QWidget *leftFrame = new QWidget( mainBox ); 418 //QWidget *leftFrame = new QWidget( mainBox );
301 //QBoxLayout * mainBoxLayout; 419 //QBoxLayout * mainBoxLayout;
302 if ( KOPrefs::instance()->mVerticalScreen ) { 420 if ( KOPrefs::instance()->mVerticalScreen ) {
303 //mainBoxLayout = new QVBoxLayout(mainBox); 421 //mainBoxLayout = new QVBoxLayout(mainBox);
304 //leftFrameLayout = new QHBoxLayout(leftFrame ); 422 //leftFrameLayout = new QHBoxLayout(leftFrame );
305 mMainFrame = new KDGanttMinimizeSplitter( Qt::Vertical, this ); 423 mMainFrame = new KDGanttMinimizeSplitter( Qt::Vertical, this );
306 mMainFrame->setMinimizeDirection ( KDGanttMinimizeSplitter::Up ); 424 mMainFrame->setMinimizeDirection ( KDGanttMinimizeSplitter::Up );
307 mLeftFrame = new KDGanttMinimizeSplitter( Qt::Horizontal, mMainFrame);; 425 mLeftFrame = new KDGanttMinimizeSplitter( Qt::Horizontal, mMainFrame);;
308 mLeftFrame->setMinimizeDirection ( KDGanttMinimizeSplitter::Right ); 426 mLeftFrame->setMinimizeDirection ( KDGanttMinimizeSplitter::Right );
309 } else { 427 } else {
310 //mainBoxLayout = new QHBoxLayout(mainBox); 428 //mainBoxLayout = new QHBoxLayout(mainBox);
311 //leftFrameLayout = new QVBoxLayout(leftFrame ); 429 //leftFrameLayout = new QVBoxLayout(leftFrame );
312 mMainFrame = new KDGanttMinimizeSplitter( Qt::Horizontal, this); 430 mMainFrame = new KDGanttMinimizeSplitter( Qt::Horizontal, this);
313 mMainFrame->setMinimizeDirection ( KDGanttMinimizeSplitter::Left); 431 mMainFrame->setMinimizeDirection ( KDGanttMinimizeSplitter::Left);
314 mLeftFrame = new KDGanttMinimizeSplitter( Qt::Vertical, mMainFrame); 432 mLeftFrame = new KDGanttMinimizeSplitter( Qt::Vertical, mMainFrame);
315 mLeftFrame->setMinimizeDirection ( KDGanttMinimizeSplitter::Up ); 433 mLeftFrame->setMinimizeDirection ( KDGanttMinimizeSplitter::Up );
316 } 434 }
317 mMainFrame->setSizePolicy( QSizePolicy (QSizePolicy::Expanding,QSizePolicy::Expanding) ); 435 mMainFrame->setSizePolicy( QSizePolicy (QSizePolicy::Expanding,QSizePolicy::Expanding) );
318 //QBoxLayout * leftFrameLayout; 436 //QBoxLayout * leftFrameLayout;
319 topLayout->addWidget( mMainFrame ); 437 topLayout->addWidget( mMainFrame );
320 //mainBoxLayout->addWidget (mLeftFrame); 438 //mainBoxLayout->addWidget (mLeftFrame);
321 mDateNavigator = new DateNavigatorContainer( mLeftFrame, 439 mDateNavigator = new DateNavigatorContainer( mLeftFrame,
322 "CalendarView::DateNavigator" ); 440 "CalendarView::DateNavigator" );
323#if 0 441#if 0
324 // FIXME 442 // FIXME
325 mDateNavigator = new KDateNavigator(mLeftFrame, mCalendar, TRUE, 443 mDateNavigator = new KDateNavigator(mLeftFrame, mCalendar, TRUE,
326 "CalendarView::DateNavigator", QDate::currentDate()); 444 "CalendarView::DateNavigator", QDate::currentDate());
327#endif 445#endif
328 // mDateNavigator->blockSignals( true ); 446 // mDateNavigator->blockSignals( true );
329 //leftFrameLayout->addWidget( mDateNavigator ); 447 //leftFrameLayout->addWidget( mDateNavigator );
330 mTodoList = new KOTodoView(mCalendar, mLeftFrame, "todolistsmall"); 448 mTodoList = new KOTodoView(mCalendar, mLeftFrame, "todolistsmall");
331 mFilterView = new KOFilterView(&mFilters,mLeftFrame,"CalendarView::FilterView"); 449 mFilterView = new KOFilterView(&mFilters,mLeftFrame,"CalendarView::FilterView");
332 mTodoList->setNavigator( mNavigator ); 450 mTodoList->setNavigator( mNavigator );
333#if 0 451#if 0
334 if ( QApplication::desktop()->width() < 480 ) { 452 if ( QApplication::desktop()->width() < 480 ) {
335 leftFrameLayout->addWidget(mFilterView); 453 leftFrameLayout->addWidget(mFilterView);
336 leftFrameLayout->addWidget(mTodoList, 2 ); 454 leftFrameLayout->addWidget(mTodoList, 2 );
337 455
338 } else { 456 } else {
339 leftFrameLayout->addWidget(mTodoList,2 ); 457 leftFrameLayout->addWidget(mTodoList,2 );
340 leftFrameLayout->addWidget(mFilterView ); 458 leftFrameLayout->addWidget(mFilterView );
341 } 459 }
342#endif 460#endif
343 mFilterView->hide(); 461 mFilterView->hide();
344 QWidget *rightBox = new QWidget( mMainFrame ); 462 QWidget *rightBox = new QWidget( mMainFrame );
345 //mainBoxLayout->addWidget ( rightBox, 10 ); 463 //mainBoxLayout->addWidget ( rightBox, 10 );
346 QBoxLayout *rightLayout = new QVBoxLayout( rightBox ); 464 QBoxLayout *rightLayout = new QVBoxLayout( rightBox );
347 mRightFrame = new QWidgetStack( rightBox ); 465 mRightFrame = new QWidgetStack( rightBox );
348 rightLayout->addWidget( mRightFrame, 10 ); 466 rightLayout->addWidget( mRightFrame, 10 );
349 467
350 //mLeftFrame = (QWidget *)leftFrame; 468 //mLeftFrame = (QWidget *)leftFrame;
351 if ( KOPrefs::instance()->mVerticalScreen ) { 469 if ( KOPrefs::instance()->mVerticalScreen ) {
352 //mDateNavigator->setFixedHeight( mDateNavigator->sizeHint().height() ); 470 //mDateNavigator->setFixedHeight( mDateNavigator->sizeHint().height() );
353 //mDateNavigator->setMinimumWidth( mDateNavigator->sizeHint().width() ); 471 //mDateNavigator->setMinimumWidth( mDateNavigator->sizeHint().width() );
354 //mTodoList->setFixedHeight( mDateNavigator->sizeHint().height() ); 472 //mTodoList->setFixedHeight( mDateNavigator->sizeHint().height() );
355 //leftFrame->setFixedHeight( mDateNavigator->sizeHint().height() ); 473 //leftFrame->setFixedHeight( mDateNavigator->sizeHint().height() );
356 } else { 474 } else {
357 //mDateNavigator->setFixedWidth( mDateNavigator->sizeHint().width() ); 475 //mDateNavigator->setFixedWidth( mDateNavigator->sizeHint().width() );
358 //mTodoList->setFixedWidth( mDateNavigator->sizeHint().width() ); 476 //mTodoList->setFixedWidth( mDateNavigator->sizeHint().width() );
359 //leftFrame->setFixedWidth( mDateNavigator->sizeHint().width() ); 477 //leftFrame->setFixedWidth( mDateNavigator->sizeHint().width() );
360 } 478 }
361 if ( !KOPrefs::instance()->mShowDateNavigator) 479 if ( !KOPrefs::instance()->mShowDateNavigator)
362 mDateNavigator->hide(); 480 mDateNavigator->hide();
363 //qDebug("Calendarview Size %d %d ", width(), height()); 481 //qDebug("Calendarview Size %d %d ", width(), height());
364#endif 482#endif
365 483
366 connect( mNavigator, SIGNAL( datesSelected( const KCal::DateList & ) ), 484 connect( mNavigator, SIGNAL( datesSelected( const KCal::DateList & ) ),
367 SLOT( showDates( const KCal::DateList & ) ) ); 485 SLOT( showDates( const KCal::DateList & ) ) );
368 486
369 connect( mNavigator, SIGNAL( datesSelected( const KCal::DateList & ) ), 487 connect( mNavigator, SIGNAL( datesSelected( const KCal::DateList & ) ),
370 mDateNavigator, SLOT( selectDates( const KCal::DateList & ) ) ); 488 mDateNavigator, SLOT( selectDates( const KCal::DateList & ) ) );
371 489
372 490
373 491
374 connect( mDateNavigator, SIGNAL( showMonth( const QDate & ) ), 492 connect( mDateNavigator, SIGNAL( showMonth( const QDate & ) ),
375 mViewManager, SLOT( showMonth( const QDate & ) ) ); 493 mViewManager, SLOT( showMonth( const QDate & ) ) );
376 494
377 connect( mDateNavigator, SIGNAL( weekClicked( const QDate & ) ), 495 connect( mDateNavigator, SIGNAL( weekClicked( const QDate & ) ),
378 mNavigator, SLOT( selectWeek( const QDate & ) ) ); 496 mNavigator, SLOT( selectWeek( const QDate & ) ) );
379 497
380 connect( mDateNavigator, SIGNAL( goPrevYear() ), 498 connect( mDateNavigator, SIGNAL( goPrevYear() ),
381 mNavigator, SLOT( selectPreviousYear() ) ); 499 mNavigator, SLOT( selectPreviousYear() ) );
382 connect( mDateNavigator, SIGNAL( goNextYear() ), 500 connect( mDateNavigator, SIGNAL( goNextYear() ),
383 mNavigator, SLOT( selectNextYear() ) ); 501 mNavigator, SLOT( selectNextYear() ) );
384 connect( mDateNavigator, SIGNAL( goPrevMonth() ), 502 connect( mDateNavigator, SIGNAL( goPrevMonth() ),
385 mNavigator, SLOT( selectPreviousMonth() ) ); 503 mNavigator, SLOT( selectPreviousMonth() ) );
386 connect( mDateNavigator, SIGNAL( goNextMonth() ), 504 connect( mDateNavigator, SIGNAL( goNextMonth() ),
387 mNavigator, SLOT( selectNextMonth() ) ); 505 mNavigator, SLOT( selectNextMonth() ) );
388 506
389 connect( mDateNavigator, SIGNAL( goPrevious() ), 507 connect( mDateNavigator, SIGNAL( goPrevious() ),
390 mNavigator, SLOT( selectPrevious() ) ); 508 mNavigator, SLOT( selectPrevious() ) );
391 connect( mDateNavigator, SIGNAL( goNext() ), 509 connect( mDateNavigator, SIGNAL( goNext() ),
392 mNavigator, SLOT( selectNext() ) ); 510 mNavigator, SLOT( selectNext() ) );
393 connect( mDateNavigator, SIGNAL( monthSelected ( int ) ), 511 connect( mDateNavigator, SIGNAL( monthSelected ( int ) ),
394 mNavigator, SLOT( slotMonthSelect( int ) ) ); 512 mNavigator, SLOT( slotMonthSelect( int ) ) );
395 513
396 connect( mDateNavigator, SIGNAL( datesSelected( const KCal::DateList & ) ), 514 connect( mDateNavigator, SIGNAL( datesSelected( const KCal::DateList & ) ),
397 mNavigator, SLOT( selectDates( const KCal::DateList & ) ) ); 515 mNavigator, SLOT( selectDates( const KCal::DateList & ) ) );
398#if 0 516#if 0
399 connect( mDateNavigator, SIGNAL( incidenceDropped( Incidence * ) ), 517 connect( mDateNavigator, SIGNAL( incidenceDropped( Incidence * ) ),
400 SLOT( incidenceAdded( Incidence *) ) ); 518 SLOT( incidenceAdded( Incidence *) ) );
401#endif 519#endif
402 // connect(mDateNavigator,SIGNAL(dayPassed(QDate)),SLOT(updateView())); 520 // connect(mDateNavigator,SIGNAL(dayPassed(QDate)),SLOT(updateView()));
403 521
404 connect( this, SIGNAL( configChanged() ), 522 connect( this, SIGNAL( configChanged() ),
405 mDateNavigator, SLOT( updateConfig() ) ); 523 mDateNavigator, SLOT( updateConfig() ) );
406 524
407 connect( mTodoList, SIGNAL( newTodoSignal() ), 525 connect( mTodoList, SIGNAL( newTodoSignal() ),
408 SLOT( newTodo() ) ); 526 SLOT( newTodo() ) );
409 connect( mTodoList, SIGNAL( newSubTodoSignal( Todo *) ), 527 connect( mTodoList, SIGNAL( newSubTodoSignal( Todo *) ),
410 SLOT( newSubTodo( Todo * ) ) ); 528 SLOT( newSubTodo( Todo * ) ) );
411 connect( mTodoList, SIGNAL( editTodoSignal( Todo * ) ), 529 connect( mTodoList, SIGNAL( editTodoSignal( Todo * ) ),
412 SLOT( editTodo( Todo * ) ) ); 530 SLOT( editTodo( Todo * ) ) );
413 connect( mTodoList, SIGNAL( showTodoSignal( Todo * ) ), 531 connect( mTodoList, SIGNAL( showTodoSignal( Todo * ) ),
414 SLOT( showTodo( Todo *) ) ); 532 SLOT( showTodo( Todo *) ) );
415 connect( mTodoList, SIGNAL( deleteTodoSignal( Todo *) ), 533 connect( mTodoList, SIGNAL( deleteTodoSignal( Todo *) ),
416 SLOT( deleteTodo( Todo *) ) ); 534 SLOT( deleteTodo( Todo *) ) );
417 connect( this, SIGNAL( configChanged()), mTodoList, SLOT( updateConfig() ) ); 535 connect( this, SIGNAL( configChanged()), mTodoList, SLOT( updateConfig() ) );
418 connect( mTodoList, SIGNAL( purgeCompletedSignal() ), 536 connect( mTodoList, SIGNAL( purgeCompletedSignal() ),
419 SLOT( purgeCompleted() ) ); 537 SLOT( purgeCompleted() ) );
420 connect( mTodoList, SIGNAL( todoModifiedSignal( Todo *, int ) ), 538 connect( mTodoList, SIGNAL( todoModifiedSignal( Todo *, int ) ),
421 SIGNAL( todoModified( Todo *, int ) ) ); 539 SIGNAL( todoModified( Todo *, int ) ) );
422 540
423 connect( mTodoList, SIGNAL( cloneTodoSignal( Incidence * ) ), 541 connect( mTodoList, SIGNAL( cloneTodoSignal( Incidence * ) ),
424 this, SLOT ( cloneIncidence( Incidence * ) ) ); 542 this, SLOT ( cloneIncidence( Incidence * ) ) );
425 connect( mTodoList, SIGNAL( cancelTodoSignal( Incidence * ) ), 543 connect( mTodoList, SIGNAL( cancelTodoSignal( Incidence * ) ),
426 this, SLOT (cancelIncidence( Incidence * ) ) ); 544 this, SLOT (cancelIncidence( Incidence * ) ) );
427 545
428 connect( mTodoList, SIGNAL( moveTodoSignal( Incidence * ) ), 546 connect( mTodoList, SIGNAL( moveTodoSignal( Incidence * ) ),
429 this, SLOT ( moveIncidence( Incidence * ) ) ); 547 this, SLOT ( moveIncidence( Incidence * ) ) );
430 connect( mTodoList, SIGNAL( beamTodoSignal( Incidence * ) ), 548 connect( mTodoList, SIGNAL( beamTodoSignal( Incidence * ) ),
431 this, SLOT ( beamIncidence( Incidence * ) ) ); 549 this, SLOT ( beamIncidence( Incidence * ) ) );
432 550
433 connect( mTodoList, SIGNAL( unparentTodoSignal( Todo * ) ), 551 connect( mTodoList, SIGNAL( unparentTodoSignal( Todo * ) ),
434 this, SLOT ( todo_unsub( Todo * ) ) ); 552 this, SLOT ( todo_unsub( Todo * ) ) );
435 553
436 connect( mTodoList, SIGNAL( reparentTodoSignal( Todo *,Todo * ) ), 554 connect( mTodoList, SIGNAL( reparentTodoSignal( Todo *,Todo * ) ),
437 this, SLOT ( todo_resub( Todo *,Todo * ) ) ); 555 this, SLOT ( todo_resub( Todo *,Todo * ) ) );
438 connect( this, SIGNAL( todoModified( Todo *, int )), mTodoList, 556 connect( this, SIGNAL( todoModified( Todo *, int )), mTodoList,
439 SLOT( updateTodo( Todo *, int ) ) ); 557 SLOT( updateTodo( Todo *, int ) ) );
440 connect( this, SIGNAL( todoModified( Todo *, int )), this, 558 connect( this, SIGNAL( todoModified( Todo *, int )), this,
441 SLOT( changeTodoDisplay( Todo *, int ) ) ); 559 SLOT( changeTodoDisplay( Todo *, int ) ) );
442 560
443 561
444 connect( mFilterView, SIGNAL( filterChanged() ), SLOT( updateFilter() ) ); 562 connect( mFilterView, SIGNAL( filterChanged() ), SLOT( updateFilter() ) );
445 connect( mFilterView, SIGNAL( editFilters() ), SLOT( editFilters() ) ); 563 connect( mFilterView, SIGNAL( editFilters() ), SLOT( editFilters() ) );
446 connect( mCalendar, SIGNAL( addAlarm(const QDateTime &, const QString & ) ), SLOT( addAlarm(const QDateTime &, const QString & ) ) ); 564 connect( mCalendar, SIGNAL( addAlarm(const QDateTime &, const QString & ) ), SLOT( addAlarm(const QDateTime &, const QString & ) ) );
447 connect( mCalendar, SIGNAL( removeAlarm(const QDateTime &, const QString & ) ), SLOT( removeAlarm(const QDateTime &, const QString & ) ) ); 565 connect( mCalendar, SIGNAL( removeAlarm(const QDateTime &, const QString & ) ), SLOT( removeAlarm(const QDateTime &, const QString & ) ) );
448 566
449 567
450 568
451 569
452 570
453 connect(QApplication::clipboard(),SIGNAL(dataChanged()), 571 connect(QApplication::clipboard(),SIGNAL(dataChanged()),
454 SLOT(checkClipboard())); 572 SLOT(checkClipboard()));
455 connect( mTodoList,SIGNAL( incidenceSelected( Incidence * ) ), 573 connect( mTodoList,SIGNAL( incidenceSelected( Incidence * ) ),
456 SLOT( processTodoListSelection( Incidence * ) ) ); 574 SLOT( processTodoListSelection( Incidence * ) ) );
457 connect(mTodoList,SIGNAL(isModified(bool)),SLOT(setModified(bool))); 575 connect(mTodoList,SIGNAL(isModified(bool)),SLOT(setModified(bool)));
458 576
459 // kdDebug() << "CalendarView::CalendarView() done" << endl; 577 // kdDebug() << "CalendarView::CalendarView() done" << endl;
460 578
461 mDateFrame = new QVBox(0,0,WType_Popup); 579 mDateFrame = new QVBox(0,0,WType_Popup);
462 //mDateFrame->setFrameStyle(QFrame::PopupPanel | QFrame::Raised); 580 //mDateFrame->setFrameStyle(QFrame::PopupPanel | QFrame::Raised);
463 mDateFrame->setFrameStyle( QFrame::WinPanel |QFrame::Raised ); 581 mDateFrame->setFrameStyle( QFrame::WinPanel |QFrame::Raised );
464 mDateFrame->setLineWidth(3); 582 mDateFrame->setLineWidth(3);
465 mDateFrame->hide(); 583 mDateFrame->hide();
466 mDateFrame->setCaption( i18n( "Pick a date to display")); 584 mDateFrame->setCaption( i18n( "Pick a date to display"));
467 mDatePicker = new KDatePicker ( mDateFrame , QDate::currentDate() ); 585 mDatePicker = new KDatePicker ( mDateFrame , QDate::currentDate() );
468 586
469 connect(mDatePicker,SIGNAL(dateSelected(QDate)),SLOT(slotSelectPickerDate(QDate))); 587 connect(mDatePicker,SIGNAL(dateSelected(QDate)),SLOT(slotSelectPickerDate(QDate)));
470 588
471 mEventEditor = mDialogManager->getEventEditor(); 589 mEventEditor = mDialogManager->getEventEditor();
472 mTodoEditor = mDialogManager->getTodoEditor(); 590 mTodoEditor = mDialogManager->getTodoEditor();
473 591
474 mFlagEditDescription = false; 592 mFlagEditDescription = false;
475 593
476 mSuspendTimer = new QTimer( this ); 594 mSuspendTimer = new QTimer( this );
477 mAlarmTimer = new QTimer( this ); 595 mAlarmTimer = new QTimer( this );
478 mRecheckAlarmTimer = new QTimer( this ); 596 mRecheckAlarmTimer = new QTimer( this );
479 connect( mRecheckAlarmTimer, SIGNAL( timeout () ), SLOT( recheckTimerAlarm() ) ); 597 connect( mRecheckAlarmTimer, SIGNAL( timeout () ), SLOT( recheckTimerAlarm() ) );
480 connect( mSuspendTimer, SIGNAL( timeout () ), SLOT( suspendAlarm() ) ); 598 connect( mSuspendTimer, SIGNAL( timeout () ), SLOT( suspendAlarm() ) );
481 connect( mAlarmTimer, SIGNAL( timeout () ), SLOT( timerAlarm() ) ); 599 connect( mAlarmTimer, SIGNAL( timeout () ), SLOT( timerAlarm() ) );
482 mAlarmDialog = new AlarmDialog( this ); 600 mAlarmDialog = new AlarmDialog( this );
483 connect( mAlarmDialog, SIGNAL( addAlarm(const QDateTime &, const QString & ) ), SLOT( addSuspendAlarm(const QDateTime &, const QString & ) ) ); 601 connect( mAlarmDialog, SIGNAL( addAlarm(const QDateTime &, const QString & ) ), SLOT( addSuspendAlarm(const QDateTime &, const QString & ) ) );
484 mAlarmDialog->setServerNotification( false ); 602 mAlarmDialog->setServerNotification( false );
485 mAlarmDialog->setSuspendTime( KOPrefs::instance()->mAlarmSuspendTime ); 603 mAlarmDialog->setSuspendTime( KOPrefs::instance()->mAlarmSuspendTime );
486 604
487 605
488#ifndef DESKTOP_VERSION 606#ifndef DESKTOP_VERSION
489//US listen for arriving address resultsets 607//US listen for arriving address resultsets
490 connect(ExternalAppHandler::instance(), SIGNAL(receivedBirthdayListEvent(const QString&, const QStringList&, const QStringList&, const QStringList&, const QStringList&, const QStringList&, const QStringList&)), 608 connect(ExternalAppHandler::instance(), SIGNAL(receivedBirthdayListEvent(const QString&, const QStringList&, const QStringList&, const QStringList&, const QStringList&, const QStringList&, const QStringList&)),
491 this, SLOT(insertBirthdays(const QString&, const QStringList&, const QStringList&, const QStringList&, const QStringList&, const QStringList&, const QStringList&))); 609 this, SLOT(insertBirthdays(const QString&, const QStringList&, const QStringList&, const QStringList&, const QStringList&, const QStringList&, const QStringList&)));
492#endif 610#endif
493 mDateNavigator->setCalendar( mCalendar ); 611 mDateNavigator->setCalendar( mCalendar );
494} 612}
495 613
496 614
497CalendarView::~CalendarView() 615CalendarView::~CalendarView()
498{ 616{
499 // kdDebug() << "~CalendarView()" << endl; 617 // kdDebug() << "~CalendarView()" << endl;
500 //qDebug("CalendarView::~CalendarView() "); 618 //qDebug("CalendarView::~CalendarView() ");
501 delete mDialogManager; 619 delete mDialogManager;
502 delete mViewManager; 620 delete mViewManager;
503 delete mStorage; 621 delete mStorage;
504 delete mDateFrame ; 622 delete mDateFrame ;
505 delete beamDialog; 623 delete beamDialog;
506 delete mEventViewerDialog; 624 delete mEventViewerDialog;
507 //kdDebug() << "~CalendarView() done" << endl; 625 //kdDebug() << "~CalendarView() done" << endl;
508} 626}
627void CalendarView::checkAlarms()
628{
629 KConfig *config = KOGlobals::config();
630 config->setGroup( "AppRun" );
631 QDateTime dt ( QDate (2005,1,1), QTime( 0,0,0 ) );
632 int secs = config->readNumEntry( "LatestProgramStop" ) - 30;
633 //secs -= ( 3600 * 24*3 ); // debug only
634 QDateTime latest = dt.addSecs ( secs );
635 qDebug("KO: Last termination on %s ", latest.toString().latin1());
636 QPtrList<Incidence> el = mCalendar->rawIncidences();
637 QPtrList<Incidence> al;
638 Incidence* inL = el.first();
639 while ( inL ) {
640 bool ok = false;
641 int offset = 0;
642 QDateTime next = inL->getNextAlarmDateTime(& ok, &offset, latest ) ;
643 if ( ok ) {
644 //qDebug("OK %s",next.toString().latin1());
645 if ( next < QDateTime::currentDateTime() ) {
646 al.append( inL );
647 qDebug("found missed alarm: %s ", inL->summary().latin1() );
648 }
649 }
650 inL = el.next();
651 }
652 if ( al.count() ) {
653 QDialog dia ( this, "huhu", true );
654 dia.setCaption( i18n("KO/Pi: Missing alarm notification!") );
655 QVBoxLayout* lay = new QVBoxLayout( &dia );
656 lay->setSpacing( 3 );
657 lay->setMargin( 3 );
658 MissedAlarmTextBrowser* matb = new MissedAlarmTextBrowser ( &dia, al, latest );
659 connect( matb, SIGNAL( showIncidence( QString ) ),SLOT( showIncidence( QString ) ));
660 lay->addWidget( matb );
661 dia.resize(240,240);
662 dia.exec();
509 663
664 }
665}
510void CalendarView::showDay( QDate d ) 666void CalendarView::showDay( QDate d )
511{ 667{
512 dateNavigator()->blockSignals( true ); 668 dateNavigator()->blockSignals( true );
513 dateNavigator()->selectDate( d ); 669 dateNavigator()->selectDate( d );
514 dateNavigator()->blockSignals( false ); 670 dateNavigator()->blockSignals( false );
515 mViewManager->showDayView(); 671 mViewManager->showDayView();
516 //dateNavigator()->selectDate( d ); 672 //dateNavigator()->selectDate( d );
517} 673}
518void CalendarView::timerAlarm() 674void CalendarView::timerAlarm()
519{ 675{
520 //qDebug("CalendarView::timerAlarm() "); 676 //qDebug("CalendarView::timerAlarm() ");
521 computeAlarm(mAlarmNotification ); 677 computeAlarm(mAlarmNotification );
522} 678}
523 679
524void CalendarView::suspendAlarm() 680void CalendarView::suspendAlarm()
525{ 681{
526 //qDebug(" CalendarView::suspendAlarm() "); 682 //qDebug(" CalendarView::suspendAlarm() ");
527 computeAlarm(mSuspendAlarmNotification ); 683 computeAlarm(mSuspendAlarmNotification );
528 684
529} 685}
530 686
531void CalendarView::startAlarm( QString mess , QString filename) 687void CalendarView::startAlarm( QString mess , QString filename)
532{ 688{
533 689
534 topLevelWidget()->showNormal(); 690 topLevelWidget()->showNormal();
535 topLevelWidget()->setActiveWindow(); 691 topLevelWidget()->setActiveWindow();
536 topLevelWidget()->raise(); 692 topLevelWidget()->raise();
537 693
538 mAlarmDialog->eventNotification( mess, KOPrefs::instance()->mAlarmPlayBeeps, filename, true,KOPrefs::instance()->mAlarmBeepInterval ,KOPrefs::instance()->mAlarmSuspendCount ); 694 mAlarmDialog->eventNotification( mess, KOPrefs::instance()->mAlarmPlayBeeps, filename, true,KOPrefs::instance()->mAlarmBeepInterval ,KOPrefs::instance()->mAlarmSuspendCount );
539 QTimer::singleShot( 3000, this, SLOT( checkNextTimerAlarm() ) ); 695 QTimer::singleShot( 3000, this, SLOT( checkNextTimerAlarm() ) );
540 696
541} 697}
542 698
543void CalendarView::checkNextTimerAlarm() 699void CalendarView::checkNextTimerAlarm()
544{ 700{
545 mCalendar->checkAlarmForIncidence( 0, true ); 701 mCalendar->checkAlarmForIncidence( 0, true );
546} 702}
547 703
548void CalendarView::computeAlarm( QString msg ) 704void CalendarView::computeAlarm( QString msg )
549{ 705{
550 706
551 QString mess = msg; 707 QString mess = msg;
552 QString mAlarmMessage = mess.mid( 9 ); 708 QString mAlarmMessage = mess.mid( 9 );
553 QString filename = MainWindow::resourcePath(); 709 QString filename = MainWindow::resourcePath();
554 filename += "koalarm.wav"; 710 filename += "koalarm.wav";
555 QString tempfilename; 711 QString tempfilename;
556 if ( mess.left( 13 ) == "suspend_alarm") { 712 if ( mess.left( 13 ) == "suspend_alarm") {
557 bool error = false; 713 bool error = false;
558 int len = mess.mid( 13 ).find("+++"); 714 int len = mess.mid( 13 ).find("+++");
559 if ( len < 2 ) 715 if ( len < 2 )
560 error = true; 716 error = true;
561 else { 717 else {
562 tempfilename = mess.mid( 13, len ); 718 tempfilename = mess.mid( 13, len );
563 if ( !QFile::exists( tempfilename ) ) 719 if ( !QFile::exists( tempfilename ) )
564 error = true; 720 error = true;
565 } 721 }
566 if ( ! error ) { 722 if ( ! error ) {
567 filename = tempfilename; 723 filename = tempfilename;
568 } 724 }
569 mAlarmMessage = mess.mid( 13+len+3 ); 725 mAlarmMessage = mess.mid( 13+len+3 );
570 //qDebug("suspend file %s ",tempfilename.latin1() ); 726 //qDebug("suspend file %s ",tempfilename.latin1() );
571 startAlarm( mAlarmMessage, filename); 727 startAlarm( mAlarmMessage, filename);
572 return; 728 return;
573 } 729 }
574 if ( mess.left( 11 ) == "timer_alarm") { 730 if ( mess.left( 11 ) == "timer_alarm") {
575 //mTimerTime = 0; 731 //mTimerTime = 0;
576 startAlarm( mess.mid( 11 ), filename ); 732 startAlarm( mess.mid( 11 ), filename );
577 return; 733 return;
578 } 734 }
579 if ( mess.left( 10 ) == "proc_alarm") { 735 if ( mess.left( 10 ) == "proc_alarm") {
580 bool error = false; 736 bool error = false;
581 int len = mess.mid( 10 ).find("+++"); 737 int len = mess.mid( 10 ).find("+++");
582 if ( len < 2 ) 738 if ( len < 2 )
583 error = true; 739 error = true;
584 else { 740 else {
585 tempfilename = mess.mid( 10, len ); 741 tempfilename = mess.mid( 10, len );
586 if ( !QFile::exists( tempfilename ) ) 742 if ( !QFile::exists( tempfilename ) )
587 error = true; 743 error = true;
588 } 744 }
589 if ( error ) { 745 if ( error ) {
590 mAlarmMessage = "Procedure Alarm\nError - File not found\n"; 746 mAlarmMessage = "Procedure Alarm\nError - File not found\n";
591 mAlarmMessage += mess.mid( 10+len+3+9 ); 747 mAlarmMessage += mess.mid( 10+len+3+9 );
592 } else { 748 } else {
593 //QCopEnvelope e("QPE/Application/kopi", "-writeFileSilent"); 749 //QCopEnvelope e("QPE/Application/kopi", "-writeFileSilent");
594 //qDebug("-----system command %s ",tempfilename.latin1() ); 750 //qDebug("-----system command %s ",tempfilename.latin1() );
595#ifndef _WIN32_ 751#ifndef _WIN32_
596 if ( vfork () == 0 ) { 752 if ( vfork () == 0 ) {
597 execl ( tempfilename.latin1(), 0 ); 753 execl ( tempfilename.latin1(), 0 );
598 return; 754 return;
599 } 755 }
600#else 756#else
601 QProcess* p = new QProcess(); 757 QProcess* p = new QProcess();
602 p->addArgument( tempfilename.latin1() ); 758 p->addArgument( tempfilename.latin1() );
603 p->start(); 759 p->start();
604 return; 760 return;
605#endif 761#endif
606 762
607 return; 763 return;
608 } 764 }
609 765
610 //qDebug("+++++++system command %s ",tempfilename.latin1() ); 766 //qDebug("+++++++system command %s ",tempfilename.latin1() );
611 } 767 }
612 if ( mess.left( 11 ) == "audio_alarm") { 768 if ( mess.left( 11 ) == "audio_alarm") {
613 bool error = false; 769 bool error = false;
614 int len = mess.mid( 11 ).find("+++"); 770 int len = mess.mid( 11 ).find("+++");
615 if ( len < 2 ) 771 if ( len < 2 )
616 error = true; 772 error = true;
617 else { 773 else {
618 tempfilename = mess.mid( 11, len ); 774 tempfilename = mess.mid( 11, len );
619 if ( !QFile::exists( tempfilename ) ) 775 if ( !QFile::exists( tempfilename ) )
620 error = true; 776 error = true;
621 } 777 }
622 if ( ! error ) { 778 if ( ! error ) {
623 filename = tempfilename; 779 filename = tempfilename;
624 } 780 }
625 mAlarmMessage = mess.mid( 11+len+3+9 ); 781 mAlarmMessage = mess.mid( 11+len+3+9 );
626 //qDebug("audio file command %s ",tempfilename.latin1() ); 782 //qDebug("audio file command %s ",tempfilename.latin1() );
627 } 783 }
628 if ( mess.left( 9 ) == "cal_alarm") { 784 if ( mess.left( 9 ) == "cal_alarm") {
629 mAlarmMessage = mess.mid( 9 ) ; 785 mAlarmMessage = mess.mid( 9 ) ;
630 } 786 }
631 787
632 startAlarm( mAlarmMessage, filename ); 788 startAlarm( mAlarmMessage, filename );
633 789
634 790
635} 791}
636 792
637void CalendarView::addSuspendAlarm(const QDateTime &qdt, const QString &noti ) 793void CalendarView::addSuspendAlarm(const QDateTime &qdt, const QString &noti )
638{ 794{
639 //qDebug("+++++addSUSPENDAlarm %s %s ", qdt.toString().latin1() , noti.latin1() ); 795 //qDebug("+++++addSUSPENDAlarm %s %s ", qdt.toString().latin1() , noti.latin1() );
640 796
641 mSuspendAlarmNotification = noti; 797 mSuspendAlarmNotification = noti;
642 int ms = QDateTime::currentDateTime().secsTo( qdt )*1000; 798 int ms = QDateTime::currentDateTime().secsTo( qdt )*1000;
643 //qDebug("Suspend Alarm timer started with secs: %d ", ms/1000); 799 //qDebug("Suspend Alarm timer started with secs: %d ", ms/1000);
644 mSuspendTimer->start( ms , true ); 800 mSuspendTimer->start( ms , true );
645 801
646} 802}
647 803
648void CalendarView::addAlarm(const QDateTime &qdt, const QString &noti ) 804void CalendarView::addAlarm(const QDateTime &qdt, const QString &noti )
649{ 805{
650 mNextAlarmDateTime = qdt; 806 mNextAlarmDateTime = qdt;
651 //qDebug("+++++addAlarm %s %s ", qdt.toString().latin1() , noti.latin1() ); 807 //qDebug("+++++addAlarm %s %s ", qdt.toString().latin1() , noti.latin1() );
652 if ( ! KOPrefs::instance()->mUseInternalAlarmNotification ) { 808 if ( ! KOPrefs::instance()->mUseInternalAlarmNotification ) {
653#ifndef DESKTOP_VERSION 809#ifndef DESKTOP_VERSION
654 AlarmServer::addAlarm ( qdt,"koalarm", noti.latin1() ); 810 AlarmServer::addAlarm ( qdt,"koalarm", noti.latin1() );
655#endif 811#endif
656 return; 812 return;
657 } 813 }
658 int maxSec; 814 int maxSec;
659 //maxSec = 5; //testing only 815 //maxSec = 5; //testing only
660 maxSec = 86400+3600; // one day+1hour 816 maxSec = 86400+3600; // one day+1hour
661 mAlarmNotification = noti; 817 mAlarmNotification = noti;
662 int sec = QDateTime::currentDateTime().secsTo( qdt ); 818 int sec = QDateTime::currentDateTime().secsTo( qdt );
663 if ( sec > maxSec ) { 819 if ( sec > maxSec ) {
664 mRecheckAlarmTimer->start( maxSec * 1000 ); 820 mRecheckAlarmTimer->start( maxSec * 1000 );
665 // qDebug("recheck Alarm timer started with secs: %d next alarm in sec:%d", maxSec,sec ); 821 // qDebug("recheck Alarm timer started with secs: %d next alarm in sec:%d", maxSec,sec );
666 return; 822 return;
667 } else { 823 } else {
668 mRecheckAlarmTimer->stop(); 824 mRecheckAlarmTimer->stop();
669 } 825 }
670 //qDebug("Alarm timer started with secs: %d ", sec); 826 //qDebug("Alarm timer started with secs: %d ", sec);
671 mAlarmTimer->start( sec *1000 , true ); 827 mAlarmTimer->start( sec *1000 , true );
672 828
673} 829}
674// called by mRecheckAlarmTimer to get next alarm 830// called by mRecheckAlarmTimer to get next alarm
675// we need this, because a QTimer has only a max range of 25 days 831// we need this, because a QTimer has only a max range of 25 days
676void CalendarView::recheckTimerAlarm() 832void CalendarView::recheckTimerAlarm()
677{ 833{
678 mAlarmTimer->stop(); 834 mAlarmTimer->stop();
679 mRecheckAlarmTimer->stop(); 835 mRecheckAlarmTimer->stop();
680 mCalendar->checkAlarmForIncidence( 0, true ); 836 mCalendar->checkAlarmForIncidence( 0, true );
681} 837}
682void CalendarView::removeAlarm(const QDateTime &qdt, const QString &noti ) 838void CalendarView::removeAlarm(const QDateTime &qdt, const QString &noti )
683{ 839{
684 //qDebug("-----removeAlarm %s %s ", qdt.toString().latin1() , noti.latin1() ); 840 //qDebug("-----removeAlarm %s %s ", qdt.toString().latin1() , noti.latin1() );
685 if ( ! KOPrefs::instance()->mUseInternalAlarmNotification ) { 841 if ( ! KOPrefs::instance()->mUseInternalAlarmNotification ) {
686#ifndef DESKTOP_VERSION 842#ifndef DESKTOP_VERSION
687 AlarmServer::deleteAlarm (qdt ,"koalarm" ,noti.latin1() ); 843 AlarmServer::deleteAlarm (qdt ,"koalarm" ,noti.latin1() );
688#endif 844#endif
689 return; 845 return;
690 } 846 }
691 mAlarmTimer->stop(); 847 mAlarmTimer->stop();
692} 848}
693void CalendarView::selectWeekNum ( int num ) 849void CalendarView::selectWeekNum ( int num )
694{ 850{
695 dateNavigator()->blockSignals( true ); 851 dateNavigator()->blockSignals( true );
696 dateNavigator()->selectWeek( num ); 852 dateNavigator()->selectWeek( num );
697 dateNavigator()->blockSignals( false ); 853 dateNavigator()->blockSignals( false );
698 mViewManager->showWeekView(); 854 mViewManager->showWeekView();
699} 855}
700KOViewManager *CalendarView::viewManager() 856KOViewManager *CalendarView::viewManager()
701{ 857{
702 return mViewManager; 858 return mViewManager;
703} 859}
704 860
705KODialogManager *CalendarView::dialogManager() 861KODialogManager *CalendarView::dialogManager()
706{ 862{
707 return mDialogManager; 863 return mDialogManager;
708} 864}
709 865
710QDate CalendarView::startDate() 866QDate CalendarView::startDate()
711{ 867{
712 DateList dates = mNavigator->selectedDates(); 868 DateList dates = mNavigator->selectedDates();
713 869
714 return dates.first(); 870 return dates.first();
715} 871}
716 872
717QDate CalendarView::endDate() 873QDate CalendarView::endDate()
718{ 874{
719 DateList dates = mNavigator->selectedDates(); 875 DateList dates = mNavigator->selectedDates();
720 876
721 return dates.last(); 877 return dates.last();
722} 878}
723 879
724 880
725void CalendarView::createPrinter() 881void CalendarView::createPrinter()
726{ 882{
727#ifndef KORG_NOPRINTER 883#ifndef KORG_NOPRINTER
728 if (!mCalPrinter) { 884 if (!mCalPrinter) {
729 mCalPrinter = new CalPrinter(this, mCalendar); 885 mCalPrinter = new CalPrinter(this, mCalendar);
730 connect(this, SIGNAL(configChanged()), mCalPrinter, SLOT(updateConfig())); 886 connect(this, SIGNAL(configChanged()), mCalPrinter, SLOT(updateConfig()));
731 } 887 }
732#endif 888#endif
733} 889}
734 890
735 891
736//KOPrefs::instance()->mWriteBackFile 892//KOPrefs::instance()->mWriteBackFile
737//KOPrefs::instance()->mWriteBackExistingOnly 893//KOPrefs::instance()->mWriteBackExistingOnly
738 894
739// 0 syncPrefsGroup->addRadio(i18n("Take local entry on conflict")); 895// 0 syncPrefsGroup->addRadio(i18n("Take local entry on conflict"));
740// 1 syncPrefsGroup->addRadio(i18n("Take remote entry on conflict")); 896// 1 syncPrefsGroup->addRadio(i18n("Take remote entry on conflict"));
741// 2 syncPrefsGroup->addRadio(i18n("Take newest entry on conflict")); 897// 2 syncPrefsGroup->addRadio(i18n("Take newest entry on conflict"));
742// 3 syncPrefsGroup->addRadio(i18n("Ask for every entry on conflict")); 898// 3 syncPrefsGroup->addRadio(i18n("Ask for every entry on conflict"));
743// 4 syncPrefsGroup->addRadio(i18n("Force take local entry always")); 899// 4 syncPrefsGroup->addRadio(i18n("Force take local entry always"));
744// 5 syncPrefsGroup->addRadio(i18n("Force take remote entry always")); 900// 5 syncPrefsGroup->addRadio(i18n("Force take remote entry always"));
745 901
746int CalendarView::takeEvent( Incidence* local, Incidence* remote, int mode , bool full ) 902int CalendarView::takeEvent( Incidence* local, Incidence* remote, int mode , bool full )
747{ 903{
748 904
749 // 0 equal 905 // 0 equal
750 // 1 take local 906 // 1 take local
751 // 2 take remote 907 // 2 take remote
752 // 3 cancel 908 // 3 cancel
753 QDateTime lastSync = mLastCalendarSync; 909 QDateTime lastSync = mLastCalendarSync;
754 QDateTime localMod = local->lastModified(); 910 QDateTime localMod = local->lastModified();
755 QDateTime remoteMod = remote->lastModified(); 911 QDateTime remoteMod = remote->lastModified();
756 if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { 912 if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) {
757 bool remCh, locCh; 913 bool remCh, locCh;
758 remCh = ( remote->getCsum(mCurrentSyncDevice) != local->getCsum(mCurrentSyncDevice) ); 914 remCh = ( remote->getCsum(mCurrentSyncDevice) != local->getCsum(mCurrentSyncDevice) );
759 //if ( remCh ) 915 //if ( remCh )
760 //qDebug("loc %s rem %s", local->getCsum(mCurrentSyncDevice).latin1(), remote->getCsum(mCurrentSyncDevice).latin1() ); 916 //qDebug("loc %s rem %s", local->getCsum(mCurrentSyncDevice).latin1(), remote->getCsum(mCurrentSyncDevice).latin1() );
761 locCh = ( localMod > mLastCalendarSync ); 917 locCh = ( localMod > mLastCalendarSync );
762 if ( !remCh && ! locCh ) { 918 if ( !remCh && ! locCh ) {
763 //qDebug("both not changed "); 919 //qDebug("both not changed ");
764 lastSync = localMod.addDays(1); 920 lastSync = localMod.addDays(1);
765 if ( mode <= SYNC_PREF_ASK ) 921 if ( mode <= SYNC_PREF_ASK )
766 return 0; 922 return 0;
767 } else { 923 } else {
768 if ( locCh ) { 924 if ( locCh ) {
769 //qDebug("loc changed %d %s %s", local->revision() , localMod.toString().latin1(), mLastCalendarSync.toString().latin1()); 925 //qDebug("loc changed %d %s %s", local->revision() , localMod.toString().latin1(), mLastCalendarSync.toString().latin1());
770 lastSync = localMod.addDays( -1 ); 926 lastSync = localMod.addDays( -1 );
771 if ( !remCh ) 927 if ( !remCh )
772 remoteMod = ( lastSync.addDays( -1 ) ); 928 remoteMod = ( lastSync.addDays( -1 ) );
773 } else { 929 } else {
774 //qDebug(" not loc changed "); 930 //qDebug(" not loc changed ");
775 lastSync = localMod.addDays( 1 ); 931 lastSync = localMod.addDays( 1 );
776 if ( remCh ) 932 if ( remCh )
777 remoteMod =( lastSync.addDays( 1 ) ); 933 remoteMod =( lastSync.addDays( 1 ) );
778 934
779 } 935 }
780 } 936 }
781 full = true; 937 full = true;
782 if ( mode < SYNC_PREF_ASK ) 938 if ( mode < SYNC_PREF_ASK )
783 mode = SYNC_PREF_ASK; 939 mode = SYNC_PREF_ASK;
784 } else { 940 } else {
785 if ( localMod == remoteMod ) 941 if ( localMod == remoteMod )
786 // if ( local->revision() == remote->revision() ) 942 // if ( local->revision() == remote->revision() )
787 return 0; 943 return 0;
788 944
789 } 945 }
790 // qDebug(" %d %d conflict on %s %s ", mode, full, local->summary().latin1(), remote->summary().latin1() ); 946 // qDebug(" %d %d conflict on %s %s ", mode, full, local->summary().latin1(), remote->summary().latin1() );
791 947
792 //qDebug("%s %d %s %d", localMod.toString().latin1() , local->revision(), remoteMod.toString().latin1(), remote->revision()); 948 //qDebug("%s %d %s %d", localMod.toString().latin1() , local->revision(), remoteMod.toString().latin1(), remote->revision());
793 //qDebug("%d %d %d %d ", localMod.time().second(), localMod.time().msec(), remoteMod.time().second(), remoteMod.time().msec() ); 949 //qDebug("%d %d %d %d ", localMod.time().second(), localMod.time().msec(), remoteMod.time().second(), remoteMod.time().msec() );
794 //full = true; //debug only 950 //full = true; //debug only
795 if ( full ) { 951 if ( full ) {
796 bool equ = false; 952 bool equ = false;
797 if ( local->type() == "Event" ) { 953 if ( local->type() == "Event" ) {
798 equ = (*((Event*) local) == *((Event*) remote)); 954 equ = (*((Event*) local) == *((Event*) remote));
799 } 955 }
800 else if ( local->type() =="Todo" ) 956 else if ( local->type() =="Todo" )
801 equ = (*((Todo*) local) == (*(Todo*) remote)); 957 equ = (*((Todo*) local) == (*(Todo*) remote));
802 else if ( local->type() =="Journal" ) 958 else if ( local->type() =="Journal" )
803 equ = (*((Journal*) local) == *((Journal*) remote)); 959 equ = (*((Journal*) local) == *((Journal*) remote));
804 if ( equ ) { 960 if ( equ ) {
805 //qDebug("equal "); 961 //qDebug("equal ");
806 if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { 962 if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) {
807 local->setCsum( mCurrentSyncDevice, remote->getCsum(mCurrentSyncDevice) ); 963 local->setCsum( mCurrentSyncDevice, remote->getCsum(mCurrentSyncDevice) );
808 } 964 }
809 if ( mode < SYNC_PREF_FORCE_LOCAL ) 965 if ( mode < SYNC_PREF_FORCE_LOCAL )
810 return 0; 966 return 0;
811 967
812 }//else //debug only 968 }//else //debug only
813 //qDebug("not equal %s %s ", local->summary().latin1(), remote->summary().latin1()); 969 //qDebug("not equal %s %s ", local->summary().latin1(), remote->summary().latin1());
814 } 970 }
815 int result; 971 int result;
816 bool localIsNew; 972 bool localIsNew;
817 //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() ); 973 //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() );
818 974
819 975
820 // ************************************************ 976 // ************************************************
821 // ************************************************ 977 // ************************************************
822 // ************************************************ 978 // ************************************************
823 // We may have that lastSync > remoteMod AND lastSync > localMod 979 // We may have that lastSync > remoteMod AND lastSync > localMod
824 // BUT remoteMod != localMod 980 // BUT remoteMod != localMod
825 981
826 982
827 if ( full && mode < SYNC_PREF_NEWEST ) 983 if ( full && mode < SYNC_PREF_NEWEST )
828 mode = SYNC_PREF_ASK; 984 mode = SYNC_PREF_ASK;
829 985
830 switch( mode ) { 986 switch( mode ) {
831 case SYNC_PREF_LOCAL: 987 case SYNC_PREF_LOCAL:
832 if ( lastSync > remoteMod ) 988 if ( lastSync > remoteMod )
833 return 1; 989 return 1;
834 if ( lastSync > localMod ) 990 if ( lastSync > localMod )
835 return 2; 991 return 2;
836 return 1; 992 return 1;
837 break; 993 break;
838 case SYNC_PREF_REMOTE: 994 case SYNC_PREF_REMOTE:
839 if ( lastSync > localMod ) 995 if ( lastSync > localMod )
840 return 2; 996 return 2;
841 if ( lastSync > remoteMod ) 997 if ( lastSync > remoteMod )
842 return 1; 998 return 1;
843 return 2; 999 return 2;
844 break; 1000 break;
845 case SYNC_PREF_NEWEST: 1001 case SYNC_PREF_NEWEST:
846 if ( localMod >= remoteMod ) 1002 if ( localMod >= remoteMod )
847 return 1; 1003 return 1;
848 else 1004 else
849 return 2; 1005 return 2;
850 break; 1006 break;
851 case SYNC_PREF_ASK: 1007 case SYNC_PREF_ASK:
852 //qDebug("lsy %s --- lo %s --- re %s ", lastSync.toString().latin1(), localMod.toString().latin1(), remoteMod.toString().latin1() ); 1008 //qDebug("lsy %s --- lo %s --- re %s ", lastSync.toString().latin1(), localMod.toString().latin1(), remoteMod.toString().latin1() );
853 if ( lastSync > remoteMod && lastSync > localMod) 1009 if ( lastSync > remoteMod && lastSync > localMod)
854 return 0; 1010 return 0;
855 if ( lastSync > remoteMod ) 1011 if ( lastSync > remoteMod )
856 return 1; 1012 return 1;
857 if ( lastSync > localMod ) 1013 if ( lastSync > localMod )
858 return 2; 1014 return 2;
859 //qDebug("lsy %s --- lo %s --- re %s ", lastSync.toString().latin1(), localMod.toString().latin1(), remoteMod.toString().latin1() ); 1015 //qDebug("lsy %s --- lo %s --- re %s ", lastSync.toString().latin1(), localMod.toString().latin1(), remoteMod.toString().latin1() );
860 localIsNew = localMod >= remoteMod; 1016 localIsNew = localMod >= remoteMod;
861 if ( localIsNew ) 1017 if ( localIsNew )
862 getEventViewerDialog()->setColorMode( 1 ); 1018 getEventViewerDialog()->setColorMode( 1 );
863 else 1019 else
864 getEventViewerDialog()->setColorMode( 2 ); 1020 getEventViewerDialog()->setColorMode( 2 );
865 getEventViewerDialog()->setIncidence(local); 1021 getEventViewerDialog()->setIncidence(local);
866 if ( localIsNew ) 1022 if ( localIsNew )
867 getEventViewerDialog()->setColorMode( 2 ); 1023 getEventViewerDialog()->setColorMode( 2 );
868 else 1024 else
869 getEventViewerDialog()->setColorMode( 1 ); 1025 getEventViewerDialog()->setColorMode( 1 );
870 getEventViewerDialog()->addIncidence(remote); 1026 getEventViewerDialog()->addIncidence(remote);
871 getEventViewerDialog()->setColorMode( 0 ); 1027 getEventViewerDialog()->setColorMode( 0 );
872 //qDebug("local %d remote %d ",local->relatedTo(),remote->relatedTo() ); 1028 //qDebug("local %d remote %d ",local->relatedTo(),remote->relatedTo() );
873 getEventViewerDialog()->setCaption( mCurrentSyncDevice +i18n(" : Conflict! Please choose entry!")); 1029 getEventViewerDialog()->setCaption( mCurrentSyncDevice +i18n(" : Conflict! Please choose entry!"));
874 getEventViewerDialog()->showMe(); 1030 getEventViewerDialog()->showMe();
875 result = getEventViewerDialog()->executeS( localIsNew ); 1031 result = getEventViewerDialog()->executeS( localIsNew );
876 return result; 1032 return result;
877 1033
878 break; 1034 break;
879 case SYNC_PREF_FORCE_LOCAL: 1035 case SYNC_PREF_FORCE_LOCAL:
880 return 1; 1036 return 1;
881 break; 1037 break;
882 case SYNC_PREF_FORCE_REMOTE: 1038 case SYNC_PREF_FORCE_REMOTE:
883 return 2; 1039 return 2;
884 break; 1040 break;
885 1041
886 default: 1042 default:
887 // SYNC_PREF_TAKE_BOTH not implemented 1043 // SYNC_PREF_TAKE_BOTH not implemented
888 break; 1044 break;
889 } 1045 }
890 return 0; 1046 return 0;
891} 1047}
892Event* CalendarView::getLastSyncEvent() 1048Event* CalendarView::getLastSyncEvent()
893{ 1049{
894 Event* lse; 1050 Event* lse;
895 //qDebug("CurrentSyncDevice %s ",mCurrentSyncDevice .latin1() ); 1051 //qDebug("CurrentSyncDevice %s ",mCurrentSyncDevice .latin1() );
896 lse = mCalendar->event( "last-syncEvent-"+mCurrentSyncDevice ); 1052 lse = mCalendar->event( "last-syncEvent-"+mCurrentSyncDevice );
897 if (!lse) { 1053 if (!lse) {
898 lse = new Event(); 1054 lse = new Event();
899 lse->setUid( "last-syncEvent-"+mCurrentSyncDevice ); 1055 lse->setUid( "last-syncEvent-"+mCurrentSyncDevice );
900 QString sum = ""; 1056 QString sum = "";
901 if ( mSyncManager->mExternSyncProfiles.contains( mCurrentSyncDevice ) ) 1057 if ( mSyncManager->mExternSyncProfiles.contains( mCurrentSyncDevice ) )
902 sum = "E: "; 1058 sum = "E: ";
903 lse->setSummary(sum+mCurrentSyncDevice + i18n(" - sync event")); 1059 lse->setSummary(sum+mCurrentSyncDevice + i18n(" - sync event"));
904 lse->setDtStart( mLastCalendarSync ); 1060 lse->setDtStart( mLastCalendarSync );
905 lse->setDtEnd( mLastCalendarSync.addSecs( 7200 ) ); 1061 lse->setDtEnd( mLastCalendarSync.addSecs( 7200 ) );
906 lse->setCategories( i18n("SyncEvent") ); 1062 lse->setCategories( i18n("SyncEvent") );
907 lse->setReadOnly( true ); 1063 lse->setReadOnly( true );
908 mCalendar->addEvent( lse ); 1064 mCalendar->addEvent( lse );
909 } 1065 }
910 1066
911 return lse; 1067 return lse;
912 1068
913} 1069}
914 1070
915// we check, if the to delete event has a id for a profile 1071// we check, if the to delete event has a id for a profile
916// if yes, we set this id in the profile to delete 1072// if yes, we set this id in the profile to delete
917void CalendarView::checkExternSyncEvent( QPtrList<Event> lastSync , Incidence* toDelete ) 1073void CalendarView::checkExternSyncEvent( QPtrList<Event> lastSync , Incidence* toDelete )
918{ 1074{
919 if ( lastSync.count() == 0 ) { 1075 if ( lastSync.count() == 0 ) {
920 //qDebug(" lastSync.count() == 0"); 1076 //qDebug(" lastSync.count() == 0");
921 return; 1077 return;
922 } 1078 }
923 if ( toDelete->type() == "Journal" ) 1079 if ( toDelete->type() == "Journal" )
924 return; 1080 return;
925 1081
926 Event* eve = lastSync.first(); 1082 Event* eve = lastSync.first();
927 1083
928 while ( eve ) { 1084 while ( eve ) {
929 QString id = toDelete->getID( eve->uid().mid( 15 ) ); // this is the sync profile name 1085 QString id = toDelete->getID( eve->uid().mid( 15 ) ); // this is the sync profile name
930 if ( !id.isEmpty() ) { 1086 if ( !id.isEmpty() ) {
931 QString des = eve->description(); 1087 QString des = eve->description();
932 QString pref = "e"; 1088 QString pref = "e";
933 if ( toDelete->type() == "Todo" ) 1089 if ( toDelete->type() == "Todo" )
934 pref = "t"; 1090 pref = "t";
935 des += pref+ id + ","; 1091 des += pref+ id + ",";
936 eve->setReadOnly( false ); 1092 eve->setReadOnly( false );
937 eve->setDescription( des ); 1093 eve->setDescription( des );
938 //qDebug("setdes %s ", des.latin1()); 1094 //qDebug("setdes %s ", des.latin1());
939 eve->setReadOnly( true ); 1095 eve->setReadOnly( true );
940 } 1096 }
941 eve = lastSync.next(); 1097 eve = lastSync.next();
942 } 1098 }
943 1099
944} 1100}
945void CalendarView::checkExternalId( Incidence * inc ) 1101void CalendarView::checkExternalId( Incidence * inc )
946{ 1102{
947 QPtrList<Event> lastSync = mCalendar->getExternLastSyncEvents() ; 1103 QPtrList<Event> lastSync = mCalendar->getExternLastSyncEvents() ;
948 checkExternSyncEvent( lastSync, inc ); 1104 checkExternSyncEvent( lastSync, inc );
949 1105
950} 1106}
951bool CalendarView::synchronizeCalendar( Calendar* local, Calendar* remote, int mode ) 1107bool CalendarView::synchronizeCalendar( Calendar* local, Calendar* remote, int mode )
952{ 1108{
953 bool syncOK = true; 1109 bool syncOK = true;
954 int addedEvent = 0; 1110 int addedEvent = 0;
955 int addedEventR = 0; 1111 int addedEventR = 0;
956 int deletedEventR = 0; 1112 int deletedEventR = 0;
957 int deletedEventL = 0; 1113 int deletedEventL = 0;
958 int changedLocal = 0; 1114 int changedLocal = 0;
959 int changedRemote = 0; 1115 int changedRemote = 0;
960 int filteredIN = 0; 1116 int filteredIN = 0;
961 int filteredOUT = 0; 1117 int filteredOUT = 0;
962 //QPtrList<Event> el = local->rawEvents(); 1118 //QPtrList<Event> el = local->rawEvents();
963 Event* eventR; 1119 Event* eventR;
964 QString uid; 1120 QString uid;
965 int take; 1121 int take;
966 Event* eventL; 1122 Event* eventL;
967 Event* eventRSync; 1123 Event* eventRSync;
968 Event* eventLSync; 1124 Event* eventLSync;
969 QPtrList<Event> eventRSyncSharp = remote->getExternLastSyncEvents(); 1125 QPtrList<Event> eventRSyncSharp = remote->getExternLastSyncEvents();
970 QPtrList<Event> eventLSyncSharp = local->getExternLastSyncEvents(); 1126 QPtrList<Event> eventLSyncSharp = local->getExternLastSyncEvents();
971 bool fullDateRange = false; 1127 bool fullDateRange = false;
972 local->resetTempSyncStat(); 1128 local->resetTempSyncStat();
973 mLastCalendarSync = QDateTime::currentDateTime(); 1129 mLastCalendarSync = QDateTime::currentDateTime();
974 if ( mSyncManager->syncWithDesktop() ) { 1130 if ( mSyncManager->syncWithDesktop() ) {
975 remote->resetPilotStat(1); 1131 remote->resetPilotStat(1);
976 if ( KSyncManager::mRequestedSyncEvent.isValid() ) { 1132 if ( KSyncManager::mRequestedSyncEvent.isValid() ) {
977 mLastCalendarSync = KSyncManager::mRequestedSyncEvent; 1133 mLastCalendarSync = KSyncManager::mRequestedSyncEvent;
978 qDebug("KO: using extern time for calendar sync: %s ", mLastCalendarSync.toString().latin1() ); 1134 qDebug("KO: using extern time for calendar sync: %s ", mLastCalendarSync.toString().latin1() );
979 } else { 1135 } else {
980 qDebug("KSyncManager::mRequestedSyncEvent has invalid datatime "); 1136 qDebug("KSyncManager::mRequestedSyncEvent has invalid datatime ");
981 } 1137 }
982 } 1138 }
983 QDateTime modifiedCalendar = mLastCalendarSync; 1139 QDateTime modifiedCalendar = mLastCalendarSync;
984 eventLSync = getLastSyncEvent(); 1140 eventLSync = getLastSyncEvent();
985 eventR = remote->event("last-syncEvent-"+mCurrentSyncName ); 1141 eventR = remote->event("last-syncEvent-"+mCurrentSyncName );
986 if ( eventR ) { 1142 if ( eventR ) {
987 eventRSync = (Event*) eventR->clone(); 1143 eventRSync = (Event*) eventR->clone();
988 remote->deleteEvent(eventR ); 1144 remote->deleteEvent(eventR );
989 1145
990 } else { 1146 } else {
991 if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL || mSyncManager->syncWithDesktop()) { 1147 if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL || mSyncManager->syncWithDesktop()) {
992 eventRSync = (Event*)eventLSync->clone(); 1148 eventRSync = (Event*)eventLSync->clone();
993 } else { 1149 } else {
994 fullDateRange = true; 1150 fullDateRange = true;
995 eventRSync = new Event(); 1151 eventRSync = new Event();
996 eventRSync->setSummary(mCurrentSyncName + i18n(" - sync event")); 1152 eventRSync->setSummary(mCurrentSyncName + i18n(" - sync event"));
997 eventRSync->setUid("last-syncEvent-"+mCurrentSyncName ); 1153 eventRSync->setUid("last-syncEvent-"+mCurrentSyncName );
998 eventRSync->setDtStart( mLastCalendarSync ); 1154 eventRSync->setDtStart( mLastCalendarSync );
999 eventRSync->setDtEnd( mLastCalendarSync.addSecs( 7200 ) ); 1155 eventRSync->setDtEnd( mLastCalendarSync.addSecs( 7200 ) );
1000 eventRSync->setCategories( i18n("SyncEvent") ); 1156 eventRSync->setCategories( i18n("SyncEvent") );
1001 } 1157 }
1002 } 1158 }
1003 if ( eventLSync->dtStart() == mLastCalendarSync ) 1159 if ( eventLSync->dtStart() == mLastCalendarSync )
1004 fullDateRange = true; 1160 fullDateRange = true;
1005 1161
1006 if ( ! fullDateRange ) { 1162 if ( ! fullDateRange ) {
1007 if ( eventLSync->dtStart() != eventRSync->dtStart() ) { 1163 if ( eventLSync->dtStart() != eventRSync->dtStart() ) {
1008 1164
1009 // qDebug("set fulldate to true %s %s" ,eventLSync->dtStart().toString().latin1(), eventRSync->dtStart().toString().latin1() ); 1165 // qDebug("set fulldate to true %s %s" ,eventLSync->dtStart().toString().latin1(), eventRSync->dtStart().toString().latin1() );
1010 //qDebug("%d %d %d %d ", eventLSync->dtStart().time().second(), eventLSync->dtStart().time().msec() , eventRSync->dtStart().time().second(), eventRSync->dtStart().time().msec()); 1166 //qDebug("%d %d %d %d ", eventLSync->dtStart().time().second(), eventLSync->dtStart().time().msec() , eventRSync->dtStart().time().second(), eventRSync->dtStart().time().msec());
1011 fullDateRange = true; 1167 fullDateRange = true;
1012 } 1168 }
1013 } 1169 }
1014 if ( mSyncManager->syncWithDesktop() ) { 1170 if ( mSyncManager->syncWithDesktop() ) {
1015 fullDateRange = ( eventLSync->dtStart() <= mLastCalendarSync && eventLSync->dtStart().addSecs(1) >= mLastCalendarSync ); 1171 fullDateRange = ( eventLSync->dtStart() <= mLastCalendarSync && eventLSync->dtStart().addSecs(1) >= mLastCalendarSync );
1016 } 1172 }
1017 if ( fullDateRange ) 1173 if ( fullDateRange )
1018 mLastCalendarSync = QDateTime::currentDateTime().addDays( -100*365); 1174 mLastCalendarSync = QDateTime::currentDateTime().addDays( -100*365);
1019 else 1175 else
1020 mLastCalendarSync = eventLSync->dtStart(); 1176 mLastCalendarSync = eventLSync->dtStart();
1021 // for resyncing if own file has changed 1177 // for resyncing if own file has changed
@@ -1460,1025 +1616,1027 @@ bool CalendarView::importBday()
1460#endif //KORG_NOKABC 1616#endif //KORG_NOKABC
1461 1617
1462 1618
1463 return true; 1619 return true;
1464} 1620}
1465 1621
1466// This method will be called from Ka/Pi as a response to requestBirthdayListFromKAPI 1622// This method will be called from Ka/Pi as a response to requestBirthdayListFromKAPI
1467void CalendarView::insertBirthdays(const QString& uid, const QStringList& birthdayList, 1623void CalendarView::insertBirthdays(const QString& uid, const QStringList& birthdayList,
1468 const QStringList& anniversaryList, const QStringList& realNameList, 1624 const QStringList& anniversaryList, const QStringList& realNameList,
1469 const QStringList& emailList, const QStringList& assembledNameList, 1625 const QStringList& emailList, const QStringList& assembledNameList,
1470 const QStringList& uidList) 1626 const QStringList& uidList)
1471{ 1627{
1472 //qDebug("KO::CalendarView::insertBirthdays"); 1628 //qDebug("KO::CalendarView::insertBirthdays");
1473 if (uid == this->name()) 1629 if (uid == this->name())
1474 { 1630 {
1475 int count = birthdayList.count(); 1631 int count = birthdayList.count();
1476 int addCount = 0; 1632 int addCount = 0;
1477 KCal::Attendee* a = 0; 1633 KCal::Attendee* a = 0;
1478 1634
1479 //qDebug("CalView 1 %i", count); 1635 //qDebug("CalView 1 %i", count);
1480 1636
1481 QProgressBar bar(count,0 ); 1637 QProgressBar bar(count,0 );
1482 int w = 300; 1638 int w = 300;
1483 if ( QApplication::desktop()->width() < 320 ) 1639 if ( QApplication::desktop()->width() < 320 )
1484 w = 220; 1640 w = 220;
1485 int h = bar.sizeHint().height() ; 1641 int h = bar.sizeHint().height() ;
1486 int dw = QApplication::desktop()->width(); 1642 int dw = QApplication::desktop()->width();
1487 int dh = QApplication::desktop()->height(); 1643 int dh = QApplication::desktop()->height();
1488 bar.setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); 1644 bar.setGeometry( (dw-w)/2, (dh - h )/2 ,w,h );
1489 bar.show(); 1645 bar.show();
1490 bar.setCaption (i18n("inserting birthdays - close to abort!") ); 1646 bar.setCaption (i18n("inserting birthdays - close to abort!") );
1491 qApp->processEvents(); 1647 qApp->processEvents();
1492 1648
1493 QDate birthday; 1649 QDate birthday;
1494 QDate anniversary; 1650 QDate anniversary;
1495 QString realName; 1651 QString realName;
1496 QString email; 1652 QString email;
1497 QString assembledName; 1653 QString assembledName;
1498 QString uid; 1654 QString uid;
1499 bool ok = true; 1655 bool ok = true;
1500 for ( int i = 0; i < count; i++) 1656 for ( int i = 0; i < count; i++)
1501 { 1657 {
1502 if ( ! bar.isVisible() ) 1658 if ( ! bar.isVisible() )
1503 return; 1659 return;
1504 bar.setProgress( i ); 1660 bar.setProgress( i );
1505 qApp->processEvents(); 1661 qApp->processEvents();
1506 1662
1507 birthday = KGlobal::locale()->readDate(birthdayList[i], KLocale::ISODate, &ok); 1663 birthday = KGlobal::locale()->readDate(birthdayList[i], KLocale::ISODate, &ok);
1508 if (!ok) { 1664 if (!ok) {
1509 ;//qDebug("CalendarView::insertBirthdays found invalid birthday: %s",birthdayList[i].latin1()); 1665 ;//qDebug("CalendarView::insertBirthdays found invalid birthday: %s",birthdayList[i].latin1());
1510 } 1666 }
1511 1667
1512 anniversary = KGlobal::locale()->readDate(anniversaryList[i], KLocale::ISODate, &ok); 1668 anniversary = KGlobal::locale()->readDate(anniversaryList[i], KLocale::ISODate, &ok);
1513 if (!ok) { 1669 if (!ok) {
1514 ;//qDebug("CalendarView::insertBirthdays found invalid anniversary: %s",anniversaryList[i].latin1()); 1670 ;//qDebug("CalendarView::insertBirthdays found invalid anniversary: %s",anniversaryList[i].latin1());
1515 } 1671 }
1516 realName = realNameList[i]; 1672 realName = realNameList[i];
1517 email = emailList[i]; 1673 email = emailList[i];
1518 assembledName = assembledNameList[i]; 1674 assembledName = assembledNameList[i];
1519 uid = uidList[i]; 1675 uid = uidList[i];
1520 //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() ); 1676 //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() );
1521 1677
1522 if ( birthday.isValid() ){ 1678 if ( birthday.isValid() ){
1523 a = new KCal::Attendee( realName, email,false,KCal::Attendee::NeedsAction, 1679 a = new KCal::Attendee( realName, email,false,KCal::Attendee::NeedsAction,
1524 KCal::Attendee::ReqParticipant,uid) ; 1680 KCal::Attendee::ReqParticipant,uid) ;
1525 if ( addAnniversary( birthday, assembledName, a, true ) ) 1681 if ( addAnniversary( birthday, assembledName, a, true ) )
1526 ++addCount; 1682 ++addCount;
1527 } 1683 }
1528 1684
1529 if ( anniversary.isValid() ){ 1685 if ( anniversary.isValid() ){
1530 a = new KCal::Attendee( realName, email,false,KCal::Attendee::NeedsAction, 1686 a = new KCal::Attendee( realName, email,false,KCal::Attendee::NeedsAction,
1531 KCal::Attendee::ReqParticipant,uid) ; 1687 KCal::Attendee::ReqParticipant,uid) ;
1532 if ( addAnniversary( anniversary, assembledName, a, false ) ) 1688 if ( addAnniversary( anniversary, assembledName, a, false ) )
1533 ++addCount; 1689 ++addCount;
1534 } 1690 }
1535 } 1691 }
1536 1692
1537 updateView(); 1693 updateView();
1538 topLevelWidget()->setCaption(QString::number( addCount )+ i18n(" birthdays/anniversaries added!")); 1694 topLevelWidget()->setCaption(QString::number( addCount )+ i18n(" birthdays/anniversaries added!"));
1539 1695
1540 } 1696 }
1541 1697
1542} 1698}
1543 1699
1544 1700
1545 1701
1546bool CalendarView::addAnniversary( QDate date, QString name, KCal::Attendee* a, bool birthday) 1702bool CalendarView::addAnniversary( QDate date, QString name, KCal::Attendee* a, bool birthday)
1547{ 1703{
1548 //qDebug("addAnni "); 1704 //qDebug("addAnni ");
1549 Event * ev = new Event(); 1705 Event * ev = new Event();
1550 ev->setOrganizer(KOPrefs::instance()->email()); 1706 ev->setOrganizer(KOPrefs::instance()->email());
1551 if ( a ) { 1707 if ( a ) {
1552 ev->addAttendee( a ); 1708 ev->addAttendee( a );
1553 } 1709 }
1554 QString kind; 1710 QString kind;
1555 if ( birthday ) { 1711 if ( birthday ) {
1556 kind = i18n( "Birthday" ); 1712 kind = i18n( "Birthday" );
1557 ev->setSummary( name + " (" + QString::number(date.year()) +")"); 1713 ev->setSummary( name + " (" + QString::number(date.year()) +")");
1558 } 1714 }
1559 else { 1715 else {
1560 kind = i18n( "Anniversary" ); 1716 kind = i18n( "Anniversary" );
1561 ev->setSummary( name + " (" + QString::number(date.year()) +") " + kind ); 1717 ev->setSummary( name + " (" + QString::number(date.year()) +") " + kind );
1562 } 1718 }
1563 ev->setCategories( kind ); 1719 ev->setCategories( kind );
1564 ev->setDtStart( QDateTime(date) ); 1720 ev->setDtStart( QDateTime(date) );
1565 ev->setDtEnd( QDateTime(date) ); 1721 ev->setDtEnd( QDateTime(date) );
1566 ev->setFloats( true ); 1722 ev->setFloats( true );
1567 Recurrence * rec = ev->recurrence(); 1723 Recurrence * rec = ev->recurrence();
1568 rec->setYearly(Recurrence::rYearlyMonth,1,-1); 1724 rec->setYearly(Recurrence::rYearlyMonth,1,-1);
1569 rec->addYearlyNum( date.month() ); 1725 rec->addYearlyNum( date.month() );
1570 if ( !mCalendar->addAnniversaryNoDup( ev ) ) { 1726 if ( !mCalendar->addAnniversaryNoDup( ev ) ) {
1571 delete ev; 1727 delete ev;
1572 return false; 1728 return false;
1573 } 1729 }
1574 return true; 1730 return true;
1575 1731
1576} 1732}
1577bool CalendarView::importQtopia( const QString &categories, 1733bool CalendarView::importQtopia( const QString &categories,
1578 const QString &datebook, 1734 const QString &datebook,
1579 const QString &todolist ) 1735 const QString &todolist )
1580{ 1736{
1581 1737
1582 QtopiaFormat qtopiaFormat; 1738 QtopiaFormat qtopiaFormat;
1583 qtopiaFormat.setCategoriesList ( &(KOPrefs::instance()->mCustomCategories)); 1739 qtopiaFormat.setCategoriesList ( &(KOPrefs::instance()->mCustomCategories));
1584 if ( !categories.isEmpty() ) qtopiaFormat.load( mCalendar, categories ); 1740 if ( !categories.isEmpty() ) qtopiaFormat.load( mCalendar, categories );
1585 if ( !datebook.isEmpty() ) qtopiaFormat.load( mCalendar, datebook ); 1741 if ( !datebook.isEmpty() ) qtopiaFormat.load( mCalendar, datebook );
1586 if ( !todolist.isEmpty() ) qtopiaFormat.load( mCalendar, todolist ); 1742 if ( !todolist.isEmpty() ) qtopiaFormat.load( mCalendar, todolist );
1587 1743
1588 updateView(); 1744 updateView();
1589 return true; 1745 return true;
1590 1746
1591#if 0 1747#if 0
1592 mGlobalSyncMode = SYNC_MODE_QTOPIA; 1748 mGlobalSyncMode = SYNC_MODE_QTOPIA;
1593 mCurrentSyncDevice = "qtopia-XML"; 1749 mCurrentSyncDevice = "qtopia-XML";
1594 if ( mSyncManager->mAskForPreferences ) 1750 if ( mSyncManager->mAskForPreferences )
1595 edit_sync_options(); 1751 edit_sync_options();
1596 qApp->processEvents(); 1752 qApp->processEvents();
1597 CalendarLocal* calendar = new CalendarLocal(); 1753 CalendarLocal* calendar = new CalendarLocal();
1598 calendar->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); 1754 calendar->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId);
1599 bool syncOK = false; 1755 bool syncOK = false;
1600 QtopiaFormat qtopiaFormat; 1756 QtopiaFormat qtopiaFormat;
1601 qtopiaFormat.setCategoriesList ( &(KOPrefs::instance()->mCustomCategories)); 1757 qtopiaFormat.setCategoriesList ( &(KOPrefs::instance()->mCustomCategories));
1602 bool loadOk = true; 1758 bool loadOk = true;
1603 if ( !categories.isEmpty() ) 1759 if ( !categories.isEmpty() )
1604 loadOk = qtopiaFormat.load( calendar, categories ); 1760 loadOk = qtopiaFormat.load( calendar, categories );
1605 if ( loadOk && !datebook.isEmpty() ) 1761 if ( loadOk && !datebook.isEmpty() )
1606 loadOk = qtopiaFormat.load( calendar, datebook ); 1762 loadOk = qtopiaFormat.load( calendar, datebook );
1607 if ( loadOk && !todolist.isEmpty() ) 1763 if ( loadOk && !todolist.isEmpty() )
1608 loadOk = qtopiaFormat.load( calendar, todolist ); 1764 loadOk = qtopiaFormat.load( calendar, todolist );
1609 1765
1610 if ( loadOk ) { 1766 if ( loadOk ) {
1611 getEventViewerDialog()->setSyncMode( true ); 1767 getEventViewerDialog()->setSyncMode( true );
1612 syncOK = synchronizeCalendar( mCalendar, calendar, mSyncManager->mSyncAlgoPrefs ); 1768 syncOK = synchronizeCalendar( mCalendar, calendar, mSyncManager->mSyncAlgoPrefs );
1613 getEventViewerDialog()->setSyncMode( false ); 1769 getEventViewerDialog()->setSyncMode( false );
1614 qApp->processEvents(); 1770 qApp->processEvents();
1615 if ( syncOK ) { 1771 if ( syncOK ) {
1616 if ( mSyncManager->mWriteBackFile ) 1772 if ( mSyncManager->mWriteBackFile )
1617 { 1773 {
1618 // write back XML file 1774 // write back XML file
1619 1775
1620 } 1776 }
1621 setModified( true ); 1777 setModified( true );
1622 } 1778 }
1623 } else { 1779 } else {
1624 QString question = i18n("Sorry, the file loading\ncommand failed!\n\nNothing synced!\n") ; 1780 QString question = i18n("Sorry, the file loading\ncommand failed!\n\nNothing synced!\n") ;
1625 QMessageBox::information( 0, i18n("KO/Pi Sync - ERROR"), 1781 QMessageBox::information( 0, i18n("KO/Pi Sync - ERROR"),
1626 question, i18n("Ok")) ; 1782 question, i18n("Ok")) ;
1627 } 1783 }
1628 delete calendar; 1784 delete calendar;
1629 updateView(); 1785 updateView();
1630 return syncOK; 1786 return syncOK;
1631 1787
1632 1788
1633#endif 1789#endif
1634 1790
1635} 1791}
1636 1792
1637void CalendarView::setSyncEventsReadOnly() 1793void CalendarView::setSyncEventsReadOnly()
1638{ 1794{
1639 Event * ev; 1795 Event * ev;
1640 QPtrList<Event> eL = mCalendar->rawEvents(); 1796 QPtrList<Event> eL = mCalendar->rawEvents();
1641 ev = eL.first(); 1797 ev = eL.first();
1642 while ( ev ) { 1798 while ( ev ) {
1643 if ( ev->uid().left(15) == QString("last-syncEvent-") ) 1799 if ( ev->uid().left(15) == QString("last-syncEvent-") )
1644 ev->setReadOnly( true ); 1800 ev->setReadOnly( true );
1645 ev = eL.next(); 1801 ev = eL.next();
1646 } 1802 }
1647} 1803}
1648bool CalendarView::openCalendar(QString filename, bool merge) 1804bool CalendarView::openCalendar(QString filename, bool merge)
1649{ 1805{
1650 1806
1651 if (filename.isEmpty()) { 1807 if (filename.isEmpty()) {
1652 return false; 1808 return false;
1653 } 1809 }
1654 1810
1655 if (!QFile::exists(filename)) { 1811 if (!QFile::exists(filename)) {
1656 KMessageBox::error(this,i18n("File does not exist:\n '%1'.").arg(filename)); 1812 KMessageBox::error(this,i18n("File does not exist:\n '%1'.").arg(filename));
1657 return false; 1813 return false;
1658 } 1814 }
1659 1815
1660 globalFlagBlockAgenda = 1; 1816 globalFlagBlockAgenda = 1;
1661 if (!merge) { 1817 if (!merge) {
1662 mTodoList->clearList(); 1818 mTodoList->clearList();
1663 mViewManager->setDocumentId( filename ); 1819 mViewManager->setDocumentId( filename );
1664 mCalendar->close(); 1820 mCalendar->close();
1665 } 1821 }
1666 mStorage->setFileName( filename ); 1822 mStorage->setFileName( filename );
1667 1823
1668 if ( mStorage->load() ) { 1824 if ( mStorage->load() ) {
1669 if ( merge ) ;//setModified( true ); 1825 if ( merge ) ;//setModified( true );
1670 else { 1826 else {
1671 //setModified( true ); 1827 //setModified( true );
1672 mViewManager->setDocumentId( filename ); 1828 mViewManager->setDocumentId( filename );
1673 mDialogManager->setDocumentId( filename ); 1829 mDialogManager->setDocumentId( filename );
1674 mTodoList->setDocumentId( filename ); 1830 mTodoList->setDocumentId( filename );
1675 } 1831 }
1676 globalFlagBlockAgenda = 2; 1832 globalFlagBlockAgenda = 2;
1677 // if ( getLastSyncEvent() ) 1833 // if ( getLastSyncEvent() )
1678 // getLastSyncEvent()->setReadOnly( true ); 1834 // getLastSyncEvent()->setReadOnly( true );
1679 mCalendar->reInitAlarmSettings(); 1835 mCalendar->reInitAlarmSettings();
1680 setSyncEventsReadOnly(); 1836 setSyncEventsReadOnly();
1681 updateUnmanagedViews(); 1837 updateUnmanagedViews();
1682 updateView(); 1838 updateView();
1683 if ( filename != MainWindow::defaultFileName() ) { 1839 if ( filename != MainWindow::defaultFileName() ) {
1684 saveCalendar( MainWindow::defaultFileName() ); 1840 saveCalendar( MainWindow::defaultFileName() );
1685 } else { 1841 } else {
1686 QFileInfo finf ( MainWindow::defaultFileName()); 1842 QFileInfo finf ( MainWindow::defaultFileName());
1687 if ( finf.exists() ) { 1843 if ( finf.exists() ) {
1688 setLoadedFileVersion( finf.lastModified () ); 1844 setLoadedFileVersion( finf.lastModified () );
1689 } 1845 }
1690 } 1846 }
1691 return true; 1847 return true;
1692 } else { 1848 } else {
1693 // while failing to load, the calendar object could 1849 // while failing to load, the calendar object could
1694 // have become partially populated. Clear it out. 1850 // have become partially populated. Clear it out.
1695 if ( !merge ) { 1851 if ( !merge ) {
1696 mCalendar->close(); 1852 mCalendar->close();
1697 mViewManager->setDocumentId( filename ); 1853 mViewManager->setDocumentId( filename );
1698 mDialogManager->setDocumentId( filename ); 1854 mDialogManager->setDocumentId( filename );
1699 mTodoList->setDocumentId( filename ); 1855 mTodoList->setDocumentId( filename );
1700 } 1856 }
1701 1857
1702 //KMessageBox::error(this,i18n("Couldn't load calendar\n '%1'.").arg(filename)); 1858 //KMessageBox::error(this,i18n("Couldn't load calendar\n '%1'.").arg(filename));
1703 1859
1704 QTimer::singleShot ( 1, this, SLOT ( showOpenError() ) ); 1860 QTimer::singleShot ( 1, this, SLOT ( showOpenError() ) );
1705 globalFlagBlockAgenda = 2; 1861 globalFlagBlockAgenda = 2;
1706 mCalendar->reInitAlarmSettings(); 1862 mCalendar->reInitAlarmSettings();
1707 setSyncEventsReadOnly(); 1863 setSyncEventsReadOnly();
1708 updateUnmanagedViews(); 1864 updateUnmanagedViews();
1709 updateView(); 1865 updateView();
1710 } 1866 }
1711 return false; 1867 return false;
1712} 1868}
1713void CalendarView::showOpenError() 1869void CalendarView::showOpenError()
1714{ 1870{
1715 KMessageBox::error(this,i18n("Couldn't load calendar\n.")); 1871 KMessageBox::error(this,i18n("Couldn't load calendar\n."));
1716} 1872}
1717void CalendarView::setLoadedFileVersion(QDateTime dt) 1873void CalendarView::setLoadedFileVersion(QDateTime dt)
1718{ 1874{
1719 loadedFileVersion = dt; 1875 loadedFileVersion = dt;
1720} 1876}
1721bool CalendarView::checkFileChanged(QString fn) 1877bool CalendarView::checkFileChanged(QString fn)
1722{ 1878{
1723 QFileInfo finf ( fn ); 1879 QFileInfo finf ( fn );
1724 if ( !finf.exists() ) 1880 if ( !finf.exists() )
1725 return true; 1881 return true;
1726 QDateTime dt = finf.lastModified (); 1882 QDateTime dt = finf.lastModified ();
1727 if ( dt <= loadedFileVersion ) 1883 if ( dt <= loadedFileVersion )
1728 return false; 1884 return false;
1729 return true; 1885 return true;
1730 1886
1731} 1887}
1732void CalendarView::watchSavedFile() 1888void CalendarView::watchSavedFile()
1733{ 1889{
1734 QFileInfo finf ( MainWindow::defaultFileName()); 1890 QFileInfo finf ( MainWindow::defaultFileName());
1735 if ( !finf.exists() ) 1891 if ( !finf.exists() )
1736 return; 1892 return;
1737 QDateTime dt = finf.lastModified (); 1893 QDateTime dt = finf.lastModified ();
1738 if ( dt < loadedFileVersion ) { 1894 if ( dt < loadedFileVersion ) {
1739 //qDebug("watch %s %s ", dt.toString().latin1(), loadedFileVersion.toString().latin1()); 1895 //qDebug("watch %s %s ", dt.toString().latin1(), loadedFileVersion.toString().latin1());
1740 QTimer::singleShot( 1000 , this, SLOT ( watchSavedFile() ) ); 1896 QTimer::singleShot( 1000 , this, SLOT ( watchSavedFile() ) );
1741 return; 1897 return;
1742 } 1898 }
1743 loadedFileVersion = dt; 1899 loadedFileVersion = dt;
1744} 1900}
1745 1901
1746bool CalendarView::checkFileVersion(QString fn) 1902bool CalendarView::checkFileVersion(QString fn)
1747{ 1903{
1748 QFileInfo finf ( fn ); 1904 QFileInfo finf ( fn );
1749 if ( !finf.exists() ) 1905 if ( !finf.exists() )
1750 return true; 1906 return true;
1751 QDateTime dt = finf.lastModified (); 1907 QDateTime dt = finf.lastModified ();
1752 //qDebug("loaded file version %s",loadedFileVersion.toString().latin1()); 1908 //qDebug("loaded file version %s",loadedFileVersion.toString().latin1());
1753 //qDebug("file on disk version %s",dt.toString().latin1()); 1909 //qDebug("file on disk version %s",dt.toString().latin1());
1754 if ( dt <= loadedFileVersion ) 1910 if ( dt <= loadedFileVersion )
1755 return true; 1911 return true;
1756 int km = KMessageBox::warningYesNoCancel(this, i18n("\nThe file on disk has changed!\nFile size: %1 bytes.\nLast modified: %2\nDo you want to:\n\n - Save and overwrite file?\n - Sync with file, then save?\n - Cancel without saving? \n").arg( QString::number( finf.size())).arg( KGlobal::locale()->formatDateTime(finf.lastModified (), true, true)) , 1912 int km = KMessageBox::warningYesNoCancel(this, i18n("\nThe file on disk has changed!\nFile size: %1 bytes.\nLast modified: %2\nDo you want to:\n\n - Save and overwrite file?\n - Sync with file, then save?\n - Cancel without saving? \n").arg( QString::number( finf.size())).arg( KGlobal::locale()->formatDateTime(finf.lastModified (), true, true)) ,
1757 i18n("KO/Pi Warning"),i18n("Overwrite"), 1913 i18n("KO/Pi Warning"),i18n("Overwrite"),
1758 i18n("Sync+save")); 1914 i18n("Sync+save"));
1759 1915
1760 if ( km == KMessageBox::Cancel ) 1916 if ( km == KMessageBox::Cancel )
1761 return false; 1917 return false;
1762 if ( km == KMessageBox::Yes ) 1918 if ( km == KMessageBox::Yes )
1763 return true; 1919 return true;
1764 1920
1765 setSyncDevice("deleteaftersync" ); 1921 setSyncDevice("deleteaftersync" );
1766 mSyncManager->mAskForPreferences = true; 1922 mSyncManager->mAskForPreferences = true;
1767 mSyncManager->mSyncAlgoPrefs = 3; 1923 mSyncManager->mSyncAlgoPrefs = 3;
1768 mSyncManager->mWriteBackFile = false; 1924 mSyncManager->mWriteBackFile = false;
1769 mSyncManager->mWriteBackExistingOnly = false; 1925 mSyncManager->mWriteBackExistingOnly = false;
1770 mSyncManager->mShowSyncSummary = false; 1926 mSyncManager->mShowSyncSummary = false;
1771 syncCalendar( fn, 3 ); 1927 syncCalendar( fn, 3 );
1772 Event * e = getLastSyncEvent(); 1928 Event * e = getLastSyncEvent();
1773 mCalendar->deleteEvent ( e ); 1929 mCalendar->deleteEvent ( e );
1774 updateView(); 1930 updateView();
1775 return true; 1931 return true;
1776} 1932}
1777 1933
1778bool CalendarView::saveCalendar( QString filename ) 1934bool CalendarView::saveCalendar( QString filename )
1779{ 1935{
1780 1936
1781 // Store back all unsaved data into calendar object 1937 // Store back all unsaved data into calendar object
1782 // qDebug("file %s %d ", filename.latin1() , mViewManager->currentView() ); 1938 // qDebug("file %s %d ", filename.latin1() , mViewManager->currentView() );
1783 if ( mViewManager->currentView() ) 1939 if ( mViewManager->currentView() )
1784 mViewManager->currentView()->flushView(); 1940 mViewManager->currentView()->flushView();
1785 1941
1786 1942
1787 QDateTime lfv = QDateTime::currentDateTime().addSecs( -2); 1943 QDateTime lfv = QDateTime::currentDateTime().addSecs( -2);
1788 mStorage->setSaveFormat( new ICalFormat() ); 1944 mStorage->setSaveFormat( new ICalFormat() );
1789 mStorage->setFileName( filename ); 1945 mStorage->setFileName( filename );
1790 bool success; 1946 bool success;
1791 success = mStorage->save(); 1947 success = mStorage->save();
1792 if ( !success ) { 1948 if ( !success ) {
1793 return false; 1949 return false;
1794 } 1950 }
1795 if ( filename == MainWindow::defaultFileName() ) { 1951 if ( filename == MainWindow::defaultFileName() ) {
1796 setLoadedFileVersion( lfv ); 1952 setLoadedFileVersion( lfv );
1797 watchSavedFile(); 1953 watchSavedFile();
1798 } 1954 }
1799 return true; 1955 return true;
1800} 1956}
1801 1957
1802void CalendarView::closeCalendar() 1958void CalendarView::closeCalendar()
1803{ 1959{
1804 1960
1805 // child windows no longer valid 1961 // child windows no longer valid
1806 emit closingDown(); 1962 emit closingDown();
1807 1963
1808 mCalendar->close(); 1964 mCalendar->close();
1809 setModified(false); 1965 setModified(false);
1810 updateView(); 1966 updateView();
1811} 1967}
1812 1968
1813void CalendarView::archiveCalendar() 1969void CalendarView::archiveCalendar()
1814{ 1970{
1815 mDialogManager->showArchiveDialog(); 1971 mDialogManager->showArchiveDialog();
1816} 1972}
1817 1973
1818 1974
1819void CalendarView::readSettings() 1975void CalendarView::readSettings()
1820{ 1976{
1821 1977
1822 1978
1823 // mViewManager->showAgendaView(); 1979 // mViewManager->showAgendaView();
1824 QString str; 1980 QString str;
1825 //qDebug("CalendarView::readSettings() "); 1981 //qDebug("CalendarView::readSettings() ");
1826 // read settings from the KConfig, supplying reasonable 1982 // read settings from the KConfig, supplying reasonable
1827 // defaults where none are to be found 1983 // defaults where none are to be found
1828 KConfig *config = KOGlobals::config(); 1984 KConfig *config = KOGlobals::config();
1829#ifndef KORG_NOSPLITTER 1985#ifndef KORG_NOSPLITTER
1830 config->setGroup("KOrganizer Geometry"); 1986 config->setGroup("KOrganizer Geometry");
1831 1987
1832 QValueList<int> sizes = config->readIntListEntry("Separator1"); 1988 QValueList<int> sizes = config->readIntListEntry("Separator1");
1833 if (sizes.count() != 2) { 1989 if (sizes.count() != 2) {
1834 sizes << mDateNavigator->minimumSizeHint().width(); 1990 sizes << mDateNavigator->minimumSizeHint().width();
1835 sizes << 300; 1991 sizes << 300;
1836 } 1992 }
1837 mPanner->setSizes(sizes); 1993 mPanner->setSizes(sizes);
1838 1994
1839 sizes = config->readIntListEntry("Separator2"); 1995 sizes = config->readIntListEntry("Separator2");
1840 if ( ( mResourceView && sizes.count() == 4 ) || 1996 if ( ( mResourceView && sizes.count() == 4 ) ||
1841 ( !mResourceView && sizes.count() == 3 ) ) { 1997 ( !mResourceView && sizes.count() == 3 ) ) {
1842 mLeftSplitter->setSizes(sizes); 1998 mLeftSplitter->setSizes(sizes);
1843 } 1999 }
1844#endif 2000#endif
1845 globalFlagBlockAgenda = 1; 2001 globalFlagBlockAgenda = 1;
1846 mViewManager->showAgendaView(); 2002 mViewManager->showAgendaView();
1847 //mViewManager->readSettings( config ); 2003 //mViewManager->readSettings( config );
1848 mTodoList->restoreLayout(config,QString("Todo Layout")); 2004 mTodoList->restoreLayout(config,QString("Todo Layout"));
1849 readFilterSettings(config); 2005 readFilterSettings(config);
1850 2006
1851#ifdef DESKTOP_VERSION 2007#ifdef DESKTOP_VERSION
1852 config->setGroup("WidgetLayout"); 2008 config->setGroup("WidgetLayout");
1853 QStringList list; 2009 QStringList list;
1854 list = config->readListEntry("MainLayout"); 2010 list = config->readListEntry("MainLayout");
1855 int x,y,w,h; 2011 int x,y,w,h;
1856 if ( ! list.isEmpty() ) { 2012 if ( ! list.isEmpty() ) {
1857 x = list[0].toInt(); 2013 x = list[0].toInt();
1858 y = list[1].toInt(); 2014 y = list[1].toInt();
1859 w = list[2].toInt(); 2015 w = list[2].toInt();
1860 h = list[3].toInt(); 2016 h = list[3].toInt();
1861 KApplication::testCoords( &x,&y,&w,&h ); 2017 KApplication::testCoords( &x,&y,&w,&h );
1862 topLevelWidget()->setGeometry(x,y,w,h); 2018 topLevelWidget()->setGeometry(x,y,w,h);
1863 2019
1864 } else { 2020 } else {
1865 topLevelWidget()->setGeometry( 40 ,40 , 640, 440); 2021 topLevelWidget()->setGeometry( 40 ,40 , 640, 440);
1866 } 2022 }
1867 list = config->readListEntry("EditEventLayout"); 2023 list = config->readListEntry("EditEventLayout");
1868 if ( ! list.isEmpty() ) { 2024 if ( ! list.isEmpty() ) {
1869 x = list[0].toInt(); 2025 x = list[0].toInt();
1870 y = list[1].toInt(); 2026 y = list[1].toInt();
1871 w = list[2].toInt(); 2027 w = list[2].toInt();
1872 h = list[3].toInt(); 2028 h = list[3].toInt();
1873 KApplication::testCoords( &x,&y,&w,&h ); 2029 KApplication::testCoords( &x,&y,&w,&h );
1874 mEventEditor->setGeometry(x,y,w,h); 2030 mEventEditor->setGeometry(x,y,w,h);
1875 2031
1876 } 2032 }
1877 list = config->readListEntry("EditTodoLayout"); 2033 list = config->readListEntry("EditTodoLayout");
1878 if ( ! list.isEmpty() ) { 2034 if ( ! list.isEmpty() ) {
1879 x = list[0].toInt(); 2035 x = list[0].toInt();
1880 y = list[1].toInt(); 2036 y = list[1].toInt();
1881 w = list[2].toInt(); 2037 w = list[2].toInt();
1882 h = list[3].toInt(); 2038 h = list[3].toInt();
1883 KApplication::testCoords( &x,&y,&w,&h ); 2039 KApplication::testCoords( &x,&y,&w,&h );
1884 mTodoEditor->setGeometry(x,y,w,h); 2040 mTodoEditor->setGeometry(x,y,w,h);
1885 2041
1886 } 2042 }
1887 list = config->readListEntry("ViewerLayout"); 2043 list = config->readListEntry("ViewerLayout");
1888 if ( ! list.isEmpty() ) { 2044 if ( ! list.isEmpty() ) {
1889 x = list[0].toInt(); 2045 x = list[0].toInt();
1890 y = list[1].toInt(); 2046 y = list[1].toInt();
1891 w = list[2].toInt(); 2047 w = list[2].toInt();
1892 h = list[3].toInt(); 2048 h = list[3].toInt();
1893 KApplication::testCoords( &x,&y,&w,&h ); 2049 KApplication::testCoords( &x,&y,&w,&h );
1894 getEventViewerDialog()->setGeometry(x,y,w,h); 2050 getEventViewerDialog()->setGeometry(x,y,w,h);
1895 } 2051 }
1896#endif 2052#endif
1897 config->setGroup( "Views" ); 2053 config->setGroup( "Views" );
1898 int dateCount = config->readNumEntry( "ShownDatesCount", 7 ); 2054 int dateCount = config->readNumEntry( "ShownDatesCount", 7 );
1899 2055
1900 QValueList<int> sizes = config->readIntListEntry("Left Splitter Frame"); 2056 QValueList<int> sizes = config->readIntListEntry("Left Splitter Frame");
1901 2057
1902 int resetval = 0; 2058 int resetval = 0;
1903 int maxVal = 0; 2059 int maxVal = 0;
1904 if (sizes.count() != 3) { 2060 if (sizes.count() != 3) {
1905 if ( KOPrefs::instance()->mVerticalScreen ) { 2061 if ( KOPrefs::instance()->mVerticalScreen ) {
1906 resetval = mDateNavigator->sizeHint().width()+2; 2062 resetval = mDateNavigator->sizeHint().width()+2;
1907 } else { 2063 } else {
1908 resetval = mDateNavigator->sizeHint().height()+2; 2064 resetval = mDateNavigator->sizeHint().height()+2;
1909 } 2065 }
1910 } 2066 }
1911 if ( resetval ) { 2067 if ( resetval ) {
1912 sizes.clear(); 2068 sizes.clear();
1913 if ( KOPrefs::instance()->mVerticalScreen ) { 2069 if ( KOPrefs::instance()->mVerticalScreen ) {
1914 maxVal = QApplication::desktop()->width() -10; 2070 maxVal = QApplication::desktop()->width() -10;
1915 } else { 2071 } else {
1916 maxVal = QApplication::desktop()->height()-10; 2072 maxVal = QApplication::desktop()->height()-10;
1917 } 2073 }
1918 sizes << resetval; 2074 sizes << resetval;
1919 if ( maxVal < resetval + resetval) 2075 if ( maxVal < resetval + resetval)
1920 resetval = maxVal - resetval; 2076 resetval = maxVal - resetval;
1921 sizes << resetval; 2077 sizes << resetval;
1922 sizes << 100; 2078 sizes << 100;
1923 } 2079 }
1924 mLeftFrame->setSizes(sizes); 2080 mLeftFrame->setSizes(sizes);
1925 sizes = config->readIntListEntry("Main Splitter Frame"); 2081 sizes = config->readIntListEntry("Main Splitter Frame");
1926 resetval = 0; 2082 resetval = 0;
1927 maxVal = 0; 2083 maxVal = 0;
1928 if (sizes.count() != 2) { 2084 if (sizes.count() != 2) {
1929 if ( !KOPrefs::instance()->mVerticalScreen ) { 2085 if ( !KOPrefs::instance()->mVerticalScreen ) {
1930 resetval = mDateNavigator->sizeHint().width()+2; 2086 resetval = mDateNavigator->sizeHint().width()+2;
1931 } else { 2087 } else {
1932 resetval = mDateNavigator->sizeHint().height()+2; 2088 resetval = mDateNavigator->sizeHint().height()+2;
1933 } 2089 }
1934 } 2090 }
1935 if ( resetval ) { 2091 if ( resetval ) {
1936 sizes.clear(); 2092 sizes.clear();
1937 if ( !KOPrefs::instance()->mVerticalScreen ) { 2093 if ( !KOPrefs::instance()->mVerticalScreen ) {
1938 maxVal = QApplication::desktop()->width() -10; 2094 maxVal = QApplication::desktop()->width() -10;
1939 } else { 2095 } else {
1940 maxVal = QApplication::desktop()->height()-10; 2096 maxVal = QApplication::desktop()->height()-10;
1941 } 2097 }
1942 sizes << resetval; 2098 sizes << resetval;
1943 if ( maxVal < resetval + resetval) 2099 if ( maxVal < resetval + resetval)
1944 resetval = maxVal - resetval; 2100 resetval = maxVal - resetval;
1945 sizes << resetval; 2101 sizes << resetval;
1946 } 2102 }
1947 mMainFrame->setSizes(sizes); 2103 mMainFrame->setSizes(sizes);
1948 if ( dateCount == 5 ) mNavigator->selectWorkWeek(); 2104 if ( dateCount == 5 ) mNavigator->selectWorkWeek();
1949 else if ( dateCount == 7 ) mNavigator->selectWeek(); 2105 else if ( dateCount == 7 ) mNavigator->selectWeek();
1950 else mNavigator->selectDates( dateCount ); 2106 else mNavigator->selectDates( dateCount );
1951 // mViewManager->readSettings( config ); 2107 // mViewManager->readSettings( config );
1952 updateConfig(); 2108 updateConfig();
1953 globalFlagBlockAgenda = 2; 2109 globalFlagBlockAgenda = 2;
1954 mViewManager->readSettings( config ); 2110 mViewManager->readSettings( config );
1955 QTimer::singleShot( 1, mDateNavigator, SLOT ( setResizeEnabled() ) ); 2111 QTimer::singleShot( 1, mDateNavigator, SLOT ( setResizeEnabled() ) );
1956} 2112}
1957 2113
1958 2114
1959void CalendarView::writeSettings() 2115void CalendarView::writeSettings()
1960{ 2116{
1961 // kdDebug() << "CalendarView::writeSettings" << endl; 2117 // kdDebug() << "CalendarView::writeSettings" << endl;
1962 2118
1963 KConfig *config = KOGlobals::config(); 2119 KConfig *config = KOGlobals::config();
1964 2120
1965 mViewManager->writeSettings( config ); 2121 mViewManager->writeSettings( config );
1966 mTodoList->saveLayout(config,QString("Todo Layout")); 2122 mTodoList->saveLayout(config,QString("Todo Layout"));
1967 mDialogManager->writeSettings( config ); 2123 mDialogManager->writeSettings( config );
1968 //KOPrefs::instance()->usrWriteConfig(); 2124 //KOPrefs::instance()->usrWriteConfig();
1969 KOPrefs::instance()->writeConfig(); 2125 KOPrefs::instance()->writeConfig();
1970 2126
1971 writeFilterSettings(config); 2127 writeFilterSettings(config);
1972 2128 config->setGroup( "AppRun" );
2129 QDateTime dt ( QDate (2005,1,1), QTime( 0,0,0 ) );
2130 config->writeEntry( "LatestProgramStop", dt.secsTo( QDateTime::currentDateTime() ) );
1973 config->setGroup( "Views" ); 2131 config->setGroup( "Views" );
1974 config->writeEntry( "ShownDatesCount", mNavigator->selectedDates().count() ); 2132 config->writeEntry( "ShownDatesCount", mNavigator->selectedDates().count() );
1975 2133
1976 QValueList<int> listINT = mLeftFrame->sizes(); 2134 QValueList<int> listINT = mLeftFrame->sizes();
1977 config->writeEntry("Left Splitter Frame",listINT); 2135 config->writeEntry("Left Splitter Frame",listINT);
1978 QValueList<int> listINT2 = mMainFrame->sizes(); 2136 QValueList<int> listINT2 = mMainFrame->sizes();
1979 config->writeEntry("Main Splitter Frame",listINT2); 2137 config->writeEntry("Main Splitter Frame",listINT2);
1980#ifdef DESKTOP_VERSION 2138#ifdef DESKTOP_VERSION
1981 config->setGroup("WidgetLayout"); 2139 config->setGroup("WidgetLayout");
1982 QStringList list ;//= config->readListEntry("MainLayout"); 2140 QStringList list ;//= config->readListEntry("MainLayout");
1983 int x,y,w,h; 2141 int x,y,w,h;
1984 QWidget* wid; 2142 QWidget* wid;
1985 wid = topLevelWidget(); 2143 wid = topLevelWidget();
1986 x = wid->geometry().x(); 2144 x = wid->geometry().x();
1987 y = wid->geometry().y(); 2145 y = wid->geometry().y();
1988 w = wid->width(); 2146 w = wid->width();
1989 h = wid->height(); 2147 h = wid->height();
1990 list.clear(); 2148 list.clear();
1991 list << QString::number( x ); 2149 list << QString::number( x );
1992 list << QString::number( y ); 2150 list << QString::number( y );
1993 list << QString::number( w ); 2151 list << QString::number( w );
1994 list << QString::number( h ); 2152 list << QString::number( h );
1995 config->writeEntry("MainLayout",list ); 2153 config->writeEntry("MainLayout",list );
1996 2154
1997 wid = mEventEditor; 2155 wid = mEventEditor;
1998 x = wid->geometry().x(); 2156 x = wid->geometry().x();
1999 y = wid->geometry().y(); 2157 y = wid->geometry().y();
2000 w = wid->width(); 2158 w = wid->width();
2001 h = wid->height(); 2159 h = wid->height();
2002 list.clear(); 2160 list.clear();
2003 list << QString::number( x ); 2161 list << QString::number( x );
2004 list << QString::number( y ); 2162 list << QString::number( y );
2005 list << QString::number( w ); 2163 list << QString::number( w );
2006 list << QString::number( h ); 2164 list << QString::number( h );
2007 config->writeEntry("EditEventLayout",list ); 2165 config->writeEntry("EditEventLayout",list );
2008 2166
2009 wid = mTodoEditor; 2167 wid = mTodoEditor;
2010 x = wid->geometry().x(); 2168 x = wid->geometry().x();
2011 y = wid->geometry().y(); 2169 y = wid->geometry().y();
2012 w = wid->width(); 2170 w = wid->width();
2013 h = wid->height(); 2171 h = wid->height();
2014 list.clear(); 2172 list.clear();
2015 list << QString::number( x ); 2173 list << QString::number( x );
2016 list << QString::number( y ); 2174 list << QString::number( y );
2017 list << QString::number( w ); 2175 list << QString::number( w );
2018 list << QString::number( h ); 2176 list << QString::number( h );
2019 config->writeEntry("EditTodoLayout",list ); 2177 config->writeEntry("EditTodoLayout",list );
2020 wid = getEventViewerDialog(); 2178 wid = getEventViewerDialog();
2021 x = wid->geometry().x(); 2179 x = wid->geometry().x();
2022 y = wid->geometry().y(); 2180 y = wid->geometry().y();
2023 w = wid->width(); 2181 w = wid->width();
2024 h = wid->height(); 2182 h = wid->height();
2025 list.clear(); 2183 list.clear();
2026 list << QString::number( x ); 2184 list << QString::number( x );
2027 list << QString::number( y ); 2185 list << QString::number( y );
2028 list << QString::number( w ); 2186 list << QString::number( w );
2029 list << QString::number( h ); 2187 list << QString::number( h );
2030 config->writeEntry("ViewerLayout",list ); 2188 config->writeEntry("ViewerLayout",list );
2031 wid = mDialogManager->getSearchDialog(); 2189 wid = mDialogManager->getSearchDialog();
2032 if ( wid ) { 2190 if ( wid ) {
2033 x = wid->geometry().x(); 2191 x = wid->geometry().x();
2034 y = wid->geometry().y(); 2192 y = wid->geometry().y();
2035 w = wid->width(); 2193 w = wid->width();
2036 h = wid->height(); 2194 h = wid->height();
2037 list.clear(); 2195 list.clear();
2038 list << QString::number( x ); 2196 list << QString::number( x );
2039 list << QString::number( y ); 2197 list << QString::number( y );
2040 list << QString::number( w ); 2198 list << QString::number( w );
2041 list << QString::number( h ); 2199 list << QString::number( h );
2042 config->writeEntry("SearchLayout",list ); 2200 config->writeEntry("SearchLayout",list );
2043 } 2201 }
2044#endif 2202#endif
2045 2203
2046 2204
2047 config->sync(); 2205 config->sync();
2048} 2206}
2049 2207
2050void CalendarView::readFilterSettings(KConfig *config) 2208void CalendarView::readFilterSettings(KConfig *config)
2051{ 2209{
2052 // kdDebug() << "CalendarView::readFilterSettings()" << endl; 2210 // kdDebug() << "CalendarView::readFilterSettings()" << endl;
2053 2211
2054 mFilters.clear(); 2212 mFilters.clear();
2055 2213
2056 config->setGroup("General"); 2214 config->setGroup("General");
2057 QStringList filterList = config->readListEntry("CalendarFilters"); 2215 QStringList filterList = config->readListEntry("CalendarFilters");
2058 2216
2059 QStringList::ConstIterator it = filterList.begin(); 2217 QStringList::ConstIterator it = filterList.begin();
2060 QStringList::ConstIterator end = filterList.end(); 2218 QStringList::ConstIterator end = filterList.end();
2061 while(it != end) { 2219 while(it != end) {
2062 // kdDebug() << " filter: " << (*it) << endl; 2220 // kdDebug() << " filter: " << (*it) << endl;
2063 2221
2064 CalFilter *filter; 2222 CalFilter *filter;
2065 filter = new CalFilter(*it); 2223 filter = new CalFilter(*it);
2066 config->setGroup("Filter_" + (*it).utf8()); 2224 config->setGroup("Filter_" + (*it).utf8());
2067 //qDebug("readFilterSettings %d ",config->readNumEntry("Criteria",0) ); 2225 //qDebug("readFilterSettings %d ",config->readNumEntry("Criteria",0) );
2068 filter->setCriteria(config->readNumEntry("Criteria",0)); 2226 filter->setCriteria(config->readNumEntry("Criteria",0));
2069 filter->setCategoryList(config->readListEntry("CategoryList")); 2227 filter->setCategoryList(config->readListEntry("CategoryList"));
2070 mFilters.append(filter); 2228 mFilters.append(filter);
2071 2229
2072 ++it; 2230 ++it;
2073 } 2231 }
2074 2232
2075 if (mFilters.count() == 0) { 2233 if (mFilters.count() == 0) {
2076 CalFilter *filter = new CalFilter(i18n("Default")); 2234 CalFilter *filter = new CalFilter(i18n("Default"));
2077 mFilters.append(filter); 2235 mFilters.append(filter);
2078 } 2236 }
2079 mFilterView->updateFilters(); 2237 mFilterView->updateFilters();
2080 config->setGroup("FilterView"); 2238 config->setGroup("FilterView");
2081 2239
2082 mFilterView->blockSignals(true); 2240 mFilterView->blockSignals(true);
2083 mFilterView->setFiltersEnabled(config->readBoolEntry("FilterEnabled")); 2241 mFilterView->setFiltersEnabled(config->readBoolEntry("FilterEnabled"));
2084 mFilterView->setSelectedFilter(config->readEntry("Current Filter")); 2242 mFilterView->setSelectedFilter(config->readEntry("Current Filter"));
2085 mFilterView->blockSignals(false); 2243 mFilterView->blockSignals(false);
2086 // We do it manually to avoid it being done twice by the above calls 2244 // We do it manually to avoid it being done twice by the above calls
2087 updateFilter(); 2245 updateFilter();
2088} 2246}
2089 2247
2090void CalendarView::writeFilterSettings(KConfig *config) 2248void CalendarView::writeFilterSettings(KConfig *config)
2091{ 2249{
2092 // kdDebug() << "CalendarView::writeFilterSettings()" << endl; 2250 // kdDebug() << "CalendarView::writeFilterSettings()" << endl;
2093 2251
2094 QStringList filterList; 2252 QStringList filterList;
2095 2253
2096 CalFilter *filter = mFilters.first(); 2254 CalFilter *filter = mFilters.first();
2097 while(filter) { 2255 while(filter) {
2098 // kdDebug() << " fn: " << filter->name() << endl; 2256 // kdDebug() << " fn: " << filter->name() << endl;
2099 filterList << filter->name(); 2257 filterList << filter->name();
2100 config->setGroup("Filter_" + filter->name().utf8()); 2258 config->setGroup("Filter_" + filter->name().utf8());
2101 config->writeEntry("Criteria",filter->criteria()); 2259 config->writeEntry("Criteria",filter->criteria());
2102 config->writeEntry("CategoryList",filter->categoryList()); 2260 config->writeEntry("CategoryList",filter->categoryList());
2103 filter = mFilters.next(); 2261 filter = mFilters.next();
2104 } 2262 }
2105 config->setGroup("General"); 2263 config->setGroup("General");
2106 config->writeEntry("CalendarFilters",filterList); 2264 config->writeEntry("CalendarFilters",filterList);
2107 2265
2108 config->setGroup("FilterView"); 2266 config->setGroup("FilterView");
2109 config->writeEntry("FilterEnabled",mFilterView->filtersEnabled()); 2267 config->writeEntry("FilterEnabled",mFilterView->filtersEnabled());
2110 config->writeEntry("Current Filter",mFilterView->selectedFilter()->name()); 2268 config->writeEntry("Current Filter",mFilterView->selectedFilter()->name());
2111} 2269}
2112 2270
2113 2271
2114void CalendarView::goToday() 2272void CalendarView::goToday()
2115{ 2273{
2116 if ( mViewManager->currentView()->isMonthView() ) 2274 if ( mViewManager->currentView()->isMonthView() )
2117 mNavigator->selectTodayMonth(); 2275 mNavigator->selectTodayMonth();
2118 else 2276 else
2119 mNavigator->selectToday(); 2277 mNavigator->selectToday();
2120} 2278}
2121 2279
2122void CalendarView::goNext() 2280void CalendarView::goNext()
2123{ 2281{
2124 mNavigator->selectNext(); 2282 mNavigator->selectNext();
2125} 2283}
2126 2284
2127void CalendarView::goPrevious() 2285void CalendarView::goPrevious()
2128{ 2286{
2129 mNavigator->selectPrevious(); 2287 mNavigator->selectPrevious();
2130} 2288}
2131void CalendarView::goNextMonth() 2289void CalendarView::goNextMonth()
2132{ 2290{
2133 mNavigator->selectNextMonth(); 2291 mNavigator->selectNextMonth();
2134} 2292}
2135 2293
2136void CalendarView::goPreviousMonth() 2294void CalendarView::goPreviousMonth()
2137{ 2295{
2138 mNavigator->selectPreviousMonth(); 2296 mNavigator->selectPreviousMonth();
2139} 2297}
2140void CalendarView::writeLocale() 2298void CalendarView::writeLocale()
2141{ 2299{
2142 //KPimGlobalPrefs::instance()->setGlobalConfig(); 2300 //KPimGlobalPrefs::instance()->setGlobalConfig();
2143#if 0 2301#if 0
2144 KGlobal::locale()->setHore24Format( !KOPrefs::instance()->mPreferredTime ); 2302 KGlobal::locale()->setHore24Format( !KOPrefs::instance()->mPreferredTime );
2145 KGlobal::locale()->setWeekStartMonday( !KOPrefs::instance()->mWeekStartsOnSunday ); 2303 KGlobal::locale()->setWeekStartMonday( !KOPrefs::instance()->mWeekStartsOnSunday );
2146 KGlobal::locale()->setIntDateFormat( (KLocale::IntDateFormat)KOPrefs::instance()->mPreferredDate ); 2304 KGlobal::locale()->setIntDateFormat( (KLocale::IntDateFormat)KOPrefs::instance()->mPreferredDate );
2147 KGlobal::locale()->setLanguage( KOPrefs::instance()->mPreferredLanguage ); 2305 KGlobal::locale()->setLanguage( KOPrefs::instance()->mPreferredLanguage );
2148 QString dummy = KOPrefs::instance()->mUserDateFormatLong; 2306 QString dummy = KOPrefs::instance()->mUserDateFormatLong;
2149 KGlobal::locale()->setDateFormat(dummy.replace( QRegExp("K"), QString(",") )); 2307 KGlobal::locale()->setDateFormat(dummy.replace( QRegExp("K"), QString(",") ));
2150 dummy = KOPrefs::instance()->mUserDateFormatShort; 2308 dummy = KOPrefs::instance()->mUserDateFormatShort;
2151 KGlobal::locale()->setDateFormatShort(dummy.replace( QRegExp("K"), QString(",") )); 2309 KGlobal::locale()->setDateFormatShort(dummy.replace( QRegExp("K"), QString(",") ));
2152 KGlobal::locale()->setDaylightSaving( KOPrefs::instance()->mUseDaylightsaving, 2310 KGlobal::locale()->setDaylightSaving( KOPrefs::instance()->mUseDaylightsaving,
2153 KOPrefs::instance()->mDaylightsavingStart, 2311 KOPrefs::instance()->mDaylightsavingStart,
2154 KOPrefs::instance()->mDaylightsavingEnd ); 2312 KOPrefs::instance()->mDaylightsavingEnd );
2155 KGlobal::locale()->setTimezone( KPimGlobalPrefs::instance()->mTimeZoneId ); 2313 KGlobal::locale()->setTimezone( KPimGlobalPrefs::instance()->mTimeZoneId );
2156#endif 2314#endif
2157} 2315}
2158void CalendarView::updateConfig() 2316void CalendarView::updateConfig()
2159{ 2317{
2160 writeLocale(); 2318 writeLocale();
2161 if ( KOPrefs::instance()->mUseAppColors ) 2319 if ( KOPrefs::instance()->mUseAppColors )
2162 QApplication::setPalette( QPalette (KOPrefs::instance()->mAppColor1, KOPrefs::instance()->mAppColor2), true ); 2320 QApplication::setPalette( QPalette (KOPrefs::instance()->mAppColor1, KOPrefs::instance()->mAppColor2), true );
2163 emit configChanged(); 2321 emit configChanged();
2164 mTodoList->updateConfig(); 2322 mTodoList->updateConfig();
2165 // mDateNavigator->setFont ( KOPrefs::instance()->mDateNavigatorFont); 2323 // mDateNavigator->setFont ( KOPrefs::instance()->mDateNavigatorFont);
2166 mCalendar->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); 2324 mCalendar->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId);
2167 // To make the "fill window" configurations work 2325 // To make the "fill window" configurations work
2168 //mViewManager->raiseCurrentView(); 2326 //mViewManager->raiseCurrentView();
2169} 2327}
2170 2328
2171 2329
2172void CalendarView::eventChanged(Event *event) 2330void CalendarView::eventChanged(Event *event)
2173{ 2331{
2174 changeEventDisplay(event,KOGlobals::EVENTEDITED); 2332 changeEventDisplay(event,KOGlobals::EVENTEDITED);
2175 //updateUnmanagedViews(); 2333 //updateUnmanagedViews();
2176} 2334}
2177 2335
2178void CalendarView::eventAdded(Event *event) 2336void CalendarView::eventAdded(Event *event)
2179{ 2337{
2180 changeEventDisplay(event,KOGlobals::EVENTADDED); 2338 changeEventDisplay(event,KOGlobals::EVENTADDED);
2181} 2339}
2182 2340
2183void CalendarView::eventToBeDeleted(Event *) 2341void CalendarView::eventToBeDeleted(Event *)
2184{ 2342{
2185 kdDebug() << "CalendarView::eventToBeDeleted(): to be implemented" << endl; 2343 kdDebug() << "CalendarView::eventToBeDeleted(): to be implemented" << endl;
2186} 2344}
2187 2345
2188void CalendarView::eventDeleted() 2346void CalendarView::eventDeleted()
2189{ 2347{
2190 changeEventDisplay(0,KOGlobals::EVENTDELETED); 2348 changeEventDisplay(0,KOGlobals::EVENTDELETED);
2191} 2349}
2192void CalendarView::changeTodoDisplay(Todo *which, int action) 2350void CalendarView::changeTodoDisplay(Todo *which, int action)
2193{ 2351{
2194 changeIncidenceDisplay((Incidence *)which, action); 2352 changeIncidenceDisplay((Incidence *)which, action);
2195 mDateNavigator->updateView(); //LR 2353 mDateNavigator->updateView(); //LR
2196 //mDialogManager->updateSearchDialog(); 2354 //mDialogManager->updateSearchDialog();
2197 2355
2198 if (which) { 2356 if (which) {
2199 mViewManager->updateWNview(); 2357 mViewManager->updateWNview();
2200 //mTodoList->updateView(); 2358 //mTodoList->updateView();
2201 } 2359 }
2202 2360
2203} 2361}
2204 2362
2205void CalendarView::changeIncidenceDisplay(Incidence *which, int action) 2363void CalendarView::changeIncidenceDisplay(Incidence *which, int action)
2206{ 2364{
2207 updateUnmanagedViews(); 2365 updateUnmanagedViews();
2208 //qDebug(" CalendarView::changeIncidenceDisplay++++++++++++++++++++++++++ %d %d ",which, action ); 2366 //qDebug(" CalendarView::changeIncidenceDisplay++++++++++++++++++++++++++ %d %d ",which, action );
2209 if ( action == KOGlobals::EVENTDELETED ) { //delete 2367 if ( action == KOGlobals::EVENTDELETED ) { //delete
2210 mCalendar->checkAlarmForIncidence( 0, true ); 2368 mCalendar->checkAlarmForIncidence( 0, true );
2211 if ( mEventViewerDialog ) 2369 if ( mEventViewerDialog )
2212 mEventViewerDialog->hide(); 2370 mEventViewerDialog->hide();
2213 } 2371 }
2214 else 2372 else
2215 mCalendar->checkAlarmForIncidence( which , false ); 2373 mCalendar->checkAlarmForIncidence( which , false );
2216} 2374}
2217 2375
2218// most of the changeEventDisplays() right now just call the view's 2376// most of the changeEventDisplays() right now just call the view's
2219// total update mode, but they SHOULD be recoded to be more refresh-efficient. 2377// total update mode, but they SHOULD be recoded to be more refresh-efficient.
2220void CalendarView::changeEventDisplay(Event *which, int action) 2378void CalendarView::changeEventDisplay(Event *which, int action)
2221{ 2379{
2222 // kdDebug() << "CalendarView::changeEventDisplay" << endl; 2380 // kdDebug() << "CalendarView::changeEventDisplay" << endl;
2223 changeIncidenceDisplay((Incidence *)which, action); 2381 changeIncidenceDisplay((Incidence *)which, action);
2224 mDateNavigator->updateView(); 2382 mDateNavigator->updateView();
2225 //mDialogManager->updateSearchDialog(); 2383 //mDialogManager->updateSearchDialog();
2226 2384
2227 if (which) { 2385 if (which) {
2228 // If there is an event view visible update the display 2386 // If there is an event view visible update the display
2229 mViewManager->currentView()->changeEventDisplay(which,action); 2387 mViewManager->currentView()->changeEventDisplay(which,action);
2230 // TODO: check, if update needed 2388 // TODO: check, if update needed
2231 // if (which->getTodoStatus()) { 2389 // if (which->getTodoStatus()) {
2232 mTodoList->updateView(); 2390 mTodoList->updateView();
2233 // } 2391 // }
2234 } else { 2392 } else {
2235 mViewManager->currentView()->updateView(); 2393 mViewManager->currentView()->updateView();
2236 } 2394 }
2237} 2395}
2238 2396
2239 2397
2240void CalendarView::updateTodoViews() 2398void CalendarView::updateTodoViews()
2241{ 2399{
2242 mTodoList->updateView(); 2400 mTodoList->updateView();
2243 mViewManager->currentView()->updateView(); 2401 mViewManager->currentView()->updateView();
2244 2402
2245} 2403}
2246 2404
2247 2405
2248void CalendarView::updateView(const QDate &start, const QDate &end) 2406void CalendarView::updateView(const QDate &start, const QDate &end)
2249{ 2407{
2250 mTodoList->updateView(); 2408 mTodoList->updateView();
2251 mViewManager->updateView(start, end); 2409 mViewManager->updateView(start, end);
2252 //mDateNavigator->updateView(); 2410 //mDateNavigator->updateView();
2253} 2411}
2254 2412
2255void CalendarView::updateView() 2413void CalendarView::updateView()
2256{ 2414{
2257 DateList tmpList = mNavigator->selectedDates(); 2415 DateList tmpList = mNavigator->selectedDates();
2258 2416
2259 if ( KOPrefs::instance()->mHideNonStartedTodos ) 2417 if ( KOPrefs::instance()->mHideNonStartedTodos )
2260 mTodoList->updateView(); 2418 mTodoList->updateView();
2261 // We assume that the navigator only selects consecutive days. 2419 // We assume that the navigator only selects consecutive days.
2262 updateView( tmpList.first(), tmpList.last() ); 2420 updateView( tmpList.first(), tmpList.last() );
2263} 2421}
2264 2422
2265void CalendarView::updateUnmanagedViews() 2423void CalendarView::updateUnmanagedViews()
2266{ 2424{
2267 mDateNavigator->updateDayMatrix(); 2425 mDateNavigator->updateDayMatrix();
2268} 2426}
2269 2427
2270int CalendarView::msgItemDelete(const QString name) 2428int CalendarView::msgItemDelete(const QString name)
2271{ 2429{
2272 return KMessageBox::warningContinueCancel(this,name +"\n\n"+ 2430 return KMessageBox::warningContinueCancel(this,name +"\n\n"+
2273 i18n("This item will be\npermanently deleted."), 2431 i18n("This item will be\npermanently deleted."),
2274 i18n("KO/Pi Confirmation"),i18n("Delete")); 2432 i18n("KO/Pi Confirmation"),i18n("Delete"));
2275} 2433}
2276 2434
2277 2435
2278void CalendarView::edit_cut() 2436void CalendarView::edit_cut()
2279{ 2437{
2280 Event *anEvent=0; 2438 Event *anEvent=0;
2281 2439
2282 Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); 2440 Incidence *incidence = mViewManager->currentView()->selectedIncidences().first();
2283 2441
2284 if (mViewManager->currentView()->isEventView()) { 2442 if (mViewManager->currentView()->isEventView()) {
2285 if ( incidence && incidence->type() == "Event" ) { 2443 if ( incidence && incidence->type() == "Event" ) {
2286 anEvent = static_cast<Event *>(incidence); 2444 anEvent = static_cast<Event *>(incidence);
2287 } 2445 }
2288 } 2446 }
2289 2447
2290 if (!anEvent) { 2448 if (!anEvent) {
2291 KNotifyClient::beep(); 2449 KNotifyClient::beep();
2292 return; 2450 return;
2293 } 2451 }
2294 DndFactory factory( mCalendar ); 2452 DndFactory factory( mCalendar );
2295 factory.cutIncidence(anEvent); 2453 factory.cutIncidence(anEvent);
2296 changeEventDisplay(anEvent, KOGlobals::EVENTDELETED); 2454 changeEventDisplay(anEvent, KOGlobals::EVENTDELETED);
2297} 2455}
2298 2456
2299void CalendarView::edit_copy() 2457void CalendarView::edit_copy()
2300{ 2458{
2301 Event *anEvent=0; 2459 Event *anEvent=0;
2302 2460
2303 Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); 2461 Incidence *incidence = mViewManager->currentView()->selectedIncidences().first();
2304 2462
2305 if (mViewManager->currentView()->isEventView()) { 2463 if (mViewManager->currentView()->isEventView()) {
2306 if ( incidence && incidence->type() == "Event" ) { 2464 if ( incidence && incidence->type() == "Event" ) {
2307 anEvent = static_cast<Event *>(incidence); 2465 anEvent = static_cast<Event *>(incidence);
2308 } 2466 }
2309 } 2467 }
2310 2468
2311 if (!anEvent) { 2469 if (!anEvent) {
2312 KNotifyClient::beep(); 2470 KNotifyClient::beep();
2313 return; 2471 return;
2314 } 2472 }
2315 DndFactory factory( mCalendar ); 2473 DndFactory factory( mCalendar );
2316 factory.copyIncidence(anEvent); 2474 factory.copyIncidence(anEvent);
2317} 2475}
2318 2476
2319void CalendarView::edit_paste() 2477void CalendarView::edit_paste()
2320{ 2478{
2321 QDate date = mNavigator->selectedDates().first(); 2479 QDate date = mNavigator->selectedDates().first();
2322 2480
2323 DndFactory factory( mCalendar ); 2481 DndFactory factory( mCalendar );
2324 Event *pastedEvent = (Event *)factory.pasteIncidence( date ); 2482 Event *pastedEvent = (Event *)factory.pasteIncidence( date );
2325 2483
2326 changeEventDisplay( pastedEvent, KOGlobals::EVENTADDED ); 2484 changeEventDisplay( pastedEvent, KOGlobals::EVENTADDED );
2327} 2485}
2328 2486
2329void CalendarView::edit_options() 2487void CalendarView::edit_options()
2330{ 2488{
2331 QString tz = KPimGlobalPrefs::instance()->mTimeZoneId; 2489 QString tz = KPimGlobalPrefs::instance()->mTimeZoneId;
2332 emit save(); 2490 emit save();
2333 emit saveStopTimer(); 2491 emit saveStopTimer();
2334 mDialogManager->showOptionsDialog(); 2492 mDialogManager->showOptionsDialog();
2335 if ( tz != KPimGlobalPrefs::instance()->mTimeZoneId) { 2493 if ( tz != KPimGlobalPrefs::instance()->mTimeZoneId) {
2336 emit saveStopTimer(); 2494 emit saveStopTimer();
2337 if ( KMessageBox::Cancel == KMessageBox::warningContinueCancel(this, i18n("The timezone has changed!\nShould the calendar be reloaded\nto apply timezone changes?\nPlease read Menu: Help->FAQ:\n\"How do I change the timezone?\"\nas well!"), 2495 if ( KMessageBox::Cancel == KMessageBox::warningContinueCancel(this, i18n("The timezone has changed!\nShould the calendar be reloaded\nto apply timezone changes?\nPlease read Menu: Help->FAQ:\n\"How do I change the timezone?\"\nas well!"),
2338 i18n("Timezone settings"),i18n("Reload"))) { 2496 i18n("Timezone settings"),i18n("Reload"))) {
2339 qDebug("KO: TZ reload cancelled "); 2497 qDebug("KO: TZ reload cancelled ");
2340 return; 2498 return;
2341 } 2499 }
2342 qDebug("KO: Timezone change "); 2500 qDebug("KO: Timezone change ");
2343 openCalendar( MainWindow::defaultFileName() ); 2501 openCalendar( MainWindow::defaultFileName() );
2344 setModified(true); 2502 setModified(true);
2345 } 2503 }
2346 else 2504 else
2347 qDebug("KO: No tz change "); 2505 qDebug("KO: No tz change ");
2348 2506
2349} 2507}
2350 2508
2351 2509
2352void CalendarView::slotSelectPickerDate( QDate d) 2510void CalendarView::slotSelectPickerDate( QDate d)
2353{ 2511{
2354 mDateFrame->hide(); 2512 mDateFrame->hide();
2355 if ( mDatePickerMode == 1 ) { 2513 if ( mDatePickerMode == 1 ) {
2356 mNavigator->slotDaySelect( d ); 2514 mNavigator->slotDaySelect( d );
2357 } else if ( mDatePickerMode == 2 ) { 2515 } else if ( mDatePickerMode == 2 ) {
2358 if ( mMoveIncidence->type() == "Todo" ) { 2516 if ( mMoveIncidence->type() == "Todo" ) {
2359 Todo * to = (Todo *) mMoveIncidence; 2517 Todo * to = (Todo *) mMoveIncidence;
2360 QTime tim; 2518 QTime tim;
2361 int len = 0; 2519 int len = 0;
2362 if ( to->hasStartDate() && to->hasDueDate() ) 2520 if ( to->hasStartDate() && to->hasDueDate() )
2363 len = to->dtStart().secsTo( to->dtDue()); 2521 len = to->dtStart().secsTo( to->dtDue());
2364 if ( to->hasDueDate() ) 2522 if ( to->hasDueDate() )
2365 tim = to->dtDue().time(); 2523 tim = to->dtDue().time();
2366 else { 2524 else {
2367 tim = QTime ( 0,0,0 ); 2525 tim = QTime ( 0,0,0 );
2368 to->setFloats( true ); 2526 to->setFloats( true );
2369 to->setHasDueDate( true ); 2527 to->setHasDueDate( true );
2370 } 2528 }
2371 QDateTime dt ( d,tim ); 2529 QDateTime dt ( d,tim );
2372 to->setDtDue( dt ); 2530 to->setDtDue( dt );
2373 2531
2374 if ( to->hasStartDate() ) { 2532 if ( to->hasStartDate() ) {
2375 if ( len>0 ) 2533 if ( len>0 )
2376 to->setDtStart(to->dtDue().addSecs( -len )); 2534 to->setDtStart(to->dtDue().addSecs( -len ));
2377 else 2535 else
2378 if (to->dtStart() > to->dtDue() ) 2536 if (to->dtStart() > to->dtDue() )
2379 to->setDtStart(to->dtDue().addDays( -3 )); 2537 to->setDtStart(to->dtDue().addDays( -3 ));
2380 } 2538 }
2381 2539
2382 todoChanged( to ); 2540 todoChanged( to );
2383 } else { 2541 } else {
2384 if ( mMoveIncidence->doesRecur() ) { 2542 if ( mMoveIncidence->doesRecur() ) {
2385#if 0 2543#if 0
2386 // PENDING implement this 2544 // PENDING implement this
2387 Incidence* newInc = mMoveIncidence->recreateCloneException( mMoveIncidenceOldDate ); 2545 Incidence* newInc = mMoveIncidence->recreateCloneException( mMoveIncidenceOldDate );
2388 mCalendar()->addIncidence( newInc ); 2546 mCalendar()->addIncidence( newInc );
2389 if ( mMoveIncidence->type() == "Todo" ) 2547 if ( mMoveIncidence->type() == "Todo" )
2390 emit todoMoved((Todo*)mMoveIncidence, KOGlobals::EVENTEDITED ); 2548 emit todoMoved((Todo*)mMoveIncidence, KOGlobals::EVENTEDITED );
2391 else 2549 else
2392 emit incidenceChanged(mMoveIncidence, KOGlobals::EVENTEDITED); 2550 emit incidenceChanged(mMoveIncidence, KOGlobals::EVENTEDITED);
2393 mMoveIncidence = newInc; 2551 mMoveIncidence = newInc;
2394 2552
2395#endif 2553#endif
2396 } 2554 }
2397 QTime tim = mMoveIncidence->dtStart().time(); 2555 QTime tim = mMoveIncidence->dtStart().time();
2398 int secs = mMoveIncidence->dtStart().secsTo( mMoveIncidence->dtEnd()); 2556 int secs = mMoveIncidence->dtStart().secsTo( mMoveIncidence->dtEnd());
2399 QDateTime dt ( d,tim ); 2557 QDateTime dt ( d,tim );
2400 mMoveIncidence->setDtStart( dt ); 2558 mMoveIncidence->setDtStart( dt );
2401 ((Event*)mMoveIncidence)->setDtEnd( dt.addSecs( secs ) ); 2559 ((Event*)mMoveIncidence)->setDtEnd( dt.addSecs( secs ) );
2402 changeEventDisplay((Event*)mMoveIncidence, KOGlobals::EVENTEDITED); 2560 changeEventDisplay((Event*)mMoveIncidence, KOGlobals::EVENTEDITED);
2403 } 2561 }
2404 2562
2405 mMoveIncidence->setRevision( mMoveIncidence->revision()+1 ); 2563 mMoveIncidence->setRevision( mMoveIncidence->revision()+1 );
2406 } 2564 }
2407} 2565}
2408 2566
2409void CalendarView::removeCategories() 2567void CalendarView::removeCategories()
2410{ 2568{
2411 QPtrList<Incidence> incList = mCalendar->rawIncidences(); 2569 QPtrList<Incidence> incList = mCalendar->rawIncidences();
2412 QStringList catList = KOPrefs::instance()->mCustomCategories; 2570 QStringList catList = KOPrefs::instance()->mCustomCategories;
2413 QStringList catIncList; 2571 QStringList catIncList;
2414 QStringList newCatList; 2572 QStringList newCatList;
2415 Incidence* inc = incList.first(); 2573 Incidence* inc = incList.first();
2416 int i; 2574 int i;
2417 int count = 0; 2575 int count = 0;
2418 while ( inc ) { 2576 while ( inc ) {
2419 newCatList.clear(); 2577 newCatList.clear();
2420 catIncList = inc->categories() ; 2578 catIncList = inc->categories() ;
2421 for( i = 0; i< catIncList.count(); ++i ) { 2579 for( i = 0; i< catIncList.count(); ++i ) {
2422 if ( catList.contains (catIncList[i])) 2580 if ( catList.contains (catIncList[i]))
2423 newCatList.append( catIncList[i] ); 2581 newCatList.append( catIncList[i] );
2424 } 2582 }
2425 newCatList.sort(); 2583 newCatList.sort();
2426 inc->setCategories( newCatList.join(",") ); 2584 inc->setCategories( newCatList.join(",") );
2427 inc = incList.next(); 2585 inc = incList.next();
2428 } 2586 }
2429} 2587}
2430 2588
2431int CalendarView::addCategories() 2589int CalendarView::addCategories()
2432{ 2590{
2433 QPtrList<Incidence> incList = mCalendar->rawIncidences(); 2591 QPtrList<Incidence> incList = mCalendar->rawIncidences();
2434 QStringList catList = KOPrefs::instance()->mCustomCategories; 2592 QStringList catList = KOPrefs::instance()->mCustomCategories;
2435 QStringList catIncList; 2593 QStringList catIncList;
2436 Incidence* inc = incList.first(); 2594 Incidence* inc = incList.first();
2437 int i; 2595 int i;
2438 int count = 0; 2596 int count = 0;
2439 while ( inc ) { 2597 while ( inc ) {
2440 catIncList = inc->categories() ; 2598 catIncList = inc->categories() ;
2441 for( i = 0; i< catIncList.count(); ++i ) { 2599 for( i = 0; i< catIncList.count(); ++i ) {
2442 if ( !catList.contains (catIncList[i])) { 2600 if ( !catList.contains (catIncList[i])) {
2443 catList.append( catIncList[i] ); 2601 catList.append( catIncList[i] );
2444 //qDebug("add cat %s ", catIncList[i].latin1()); 2602 //qDebug("add cat %s ", catIncList[i].latin1());
2445 ++count; 2603 ++count;
2446 } 2604 }
2447 } 2605 }
2448 inc = incList.next(); 2606 inc = incList.next();
2449 } 2607 }
2450 catList.sort(); 2608 catList.sort();
2451 KOPrefs::instance()->mCustomCategories = catList; 2609 KOPrefs::instance()->mCustomCategories = catList;
2452 return count; 2610 return count;
2453} 2611}
2454 2612
2455void CalendarView::manageCategories() 2613void CalendarView::manageCategories()
2456{ 2614{
2457 KOCatPrefs* cp = new KOCatPrefs(); 2615 KOCatPrefs* cp = new KOCatPrefs();
2458 cp->show(); 2616 cp->show();
2459 int w =cp->sizeHint().width() ; 2617 int w =cp->sizeHint().width() ;
2460 int h = cp->sizeHint().height() ; 2618 int h = cp->sizeHint().height() ;
2461 int dw = QApplication::desktop()->width(); 2619 int dw = QApplication::desktop()->width();
2462 int dh = QApplication::desktop()->height(); 2620 int dh = QApplication::desktop()->height();
2463 cp->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); 2621 cp->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h );
2464 if ( !cp->exec() ) { 2622 if ( !cp->exec() ) {
2465 delete cp; 2623 delete cp;
2466 return; 2624 return;
2467 } 2625 }
2468 int count = 0; 2626 int count = 0;
2469 if ( cp->addCat() ) { 2627 if ( cp->addCat() ) {
2470 count = addCategories(); 2628 count = addCategories();
2471 if ( count ) { 2629 if ( count ) {
2472 topLevelWidget()->setCaption(QString::number( count )+ i18n(" Categories added to list! ")); 2630 topLevelWidget()->setCaption(QString::number( count )+ i18n(" Categories added to list! "));
2473 writeSettings(); 2631 writeSettings();
2474 } else 2632 } else
2475 topLevelWidget()->setCaption(QString::number( 0 )+ i18n(" Categories added to list! ")); 2633 topLevelWidget()->setCaption(QString::number( 0 )+ i18n(" Categories added to list! "));
2476 } else { 2634 } else {
2477 removeCategories(); 2635 removeCategories();
2478 updateView(); 2636 updateView();
2479 } 2637 }
2480 delete cp; 2638 delete cp;
2481} 2639}
2482 2640
2483void CalendarView::beamIncidence(Incidence * Inc) 2641void CalendarView::beamIncidence(Incidence * Inc)
2484{ 2642{
@@ -3412,743 +3570,748 @@ void CalendarView::schedule(Scheduler::Method method, Incidence *incidence)
3412 if (to) { 3570 if (to) {
3413 todo->clearAttendees(); 3571 todo->clearAttendees();
3414 todo->addAttendee(menew,false); 3572 todo->addAttendee(menew,false);
3415 } 3573 }
3416 } 3574 }
3417 } 3575 }
3418 3576
3419 OutgoingDialog *dlg = mDialogManager->outgoingDialog(); 3577 OutgoingDialog *dlg = mDialogManager->outgoingDialog();
3420 if (ev) { 3578 if (ev) {
3421 if ( !dlg->addMessage(ev,method) ) delete(ev); 3579 if ( !dlg->addMessage(ev,method) ) delete(ev);
3422 } else { 3580 } else {
3423 if (to) { 3581 if (to) {
3424 if ( !dlg->addMessage(to,method) ) delete(to); 3582 if ( !dlg->addMessage(to,method) ) delete(to);
3425 } 3583 }
3426 } 3584 }
3427} 3585}
3428 3586
3429void CalendarView::openAddressbook() 3587void CalendarView::openAddressbook()
3430{ 3588{
3431 KRun::runCommand("kaddressbook"); 3589 KRun::runCommand("kaddressbook");
3432} 3590}
3433 3591
3434void CalendarView::setModified(bool modified) 3592void CalendarView::setModified(bool modified)
3435{ 3593{
3436 if ( modified ) 3594 if ( modified )
3437 emit signalmodified(); 3595 emit signalmodified();
3438 if (mModified != modified) { 3596 if (mModified != modified) {
3439 mModified = modified; 3597 mModified = modified;
3440 emit modifiedChanged(mModified); 3598 emit modifiedChanged(mModified);
3441 } 3599 }
3442} 3600}
3443 3601
3444bool CalendarView::isReadOnly() 3602bool CalendarView::isReadOnly()
3445{ 3603{
3446 return mReadOnly; 3604 return mReadOnly;
3447} 3605}
3448 3606
3449void CalendarView::setReadOnly(bool readOnly) 3607void CalendarView::setReadOnly(bool readOnly)
3450{ 3608{
3451 if (mReadOnly != readOnly) { 3609 if (mReadOnly != readOnly) {
3452 mReadOnly = readOnly; 3610 mReadOnly = readOnly;
3453 emit readOnlyChanged(mReadOnly); 3611 emit readOnlyChanged(mReadOnly);
3454 } 3612 }
3455} 3613}
3456 3614
3457bool CalendarView::isModified() 3615bool CalendarView::isModified()
3458{ 3616{
3459 return mModified; 3617 return mModified;
3460} 3618}
3461void CalendarView::slotprintSelInc() 3619void CalendarView::slotprintSelInc()
3462{ 3620{
3463 if ( currentSelection() == 0 ) { 3621 if ( currentSelection() == 0 ) {
3464 KMessageBox::sorry(this,i18n("There is nothing selected!")); 3622 KMessageBox::sorry(this,i18n("There is nothing selected!"));
3465 return; 3623 return;
3466 } 3624 }
3467 showIncidence(); 3625 showIncidence();
3468 getEventViewerDialog()->print(); 3626 getEventViewerDialog()->print();
3469 3627
3470} 3628}
3471void CalendarView::printSetup() 3629void CalendarView::printSetup()
3472{ 3630{
3473#ifndef KORG_NOPRINTER 3631#ifndef KORG_NOPRINTER
3474 createPrinter(); 3632 createPrinter();
3475 3633
3476 mCalPrinter->setupPrinter(); 3634 mCalPrinter->setupPrinter();
3477#endif 3635#endif
3478} 3636}
3479 3637
3480void CalendarView::print() 3638void CalendarView::print()
3481{ 3639{
3482#ifndef KORG_NOPRINTER 3640#ifndef KORG_NOPRINTER
3483 createPrinter(); 3641 createPrinter();
3484 3642
3485 DateList tmpDateList = mNavigator->selectedDates(); 3643 DateList tmpDateList = mNavigator->selectedDates();
3486 mCalPrinter->print(CalPrinter::Month, 3644 mCalPrinter->print(CalPrinter::Month,
3487 tmpDateList.first(), tmpDateList.last()); 3645 tmpDateList.first(), tmpDateList.last());
3488#endif 3646#endif
3489} 3647}
3490 3648
3491void CalendarView::printPreview() 3649void CalendarView::printPreview()
3492{ 3650{
3493#ifndef KORG_NOPRINTER 3651#ifndef KORG_NOPRINTER
3494 kdDebug() << "CalendarView::printPreview()" << endl; 3652 kdDebug() << "CalendarView::printPreview()" << endl;
3495 3653
3496 createPrinter(); 3654 createPrinter();
3497 3655
3498 DateList tmpDateList = mNavigator->selectedDates(); 3656 DateList tmpDateList = mNavigator->selectedDates();
3499 3657
3500 mViewManager->currentView()->printPreview(mCalPrinter,tmpDateList.first(), 3658 mViewManager->currentView()->printPreview(mCalPrinter,tmpDateList.first(),
3501 tmpDateList.last()); 3659 tmpDateList.last());
3502#endif 3660#endif
3503} 3661}
3504 3662
3505void CalendarView::exportICalendar() 3663void CalendarView::exportICalendar()
3506{ 3664{
3507 QString filename = KFileDialog::getSaveFileName("icalout.ics",i18n("*.ics|ICalendars"),this); 3665 QString filename = KFileDialog::getSaveFileName("icalout.ics",i18n("*.ics|ICalendars"),this);
3508 3666
3509 // Force correct extension 3667 // Force correct extension
3510 if (filename.right(4) != ".ics") filename += ".ics"; 3668 if (filename.right(4) != ".ics") filename += ".ics";
3511 3669
3512 FileStorage storage( mCalendar, filename, new ICalFormat() ); 3670 FileStorage storage( mCalendar, filename, new ICalFormat() );
3513 storage.save(); 3671 storage.save();
3514} 3672}
3515 3673
3516bool CalendarView::exportVCalendar( QString filename ) 3674bool CalendarView::exportVCalendar( QString filename )
3517{ 3675{
3518 if (mCalendar->journals().count() > 0) { 3676 if (mCalendar->journals().count() > 0) {
3519 int result = KMessageBox::warningContinueCancel(this, 3677 int result = KMessageBox::warningContinueCancel(this,
3520 i18n("The journal entries can not be\nexported to a vCalendar file."), 3678 i18n("The journal entries can not be\nexported to a vCalendar file."),
3521 i18n("Data Loss Warning"),i18n("Proceed"),i18n("Cancel"), 3679 i18n("Data Loss Warning"),i18n("Proceed"),i18n("Cancel"),
3522 true); 3680 true);
3523 if (result != KMessageBox::Continue) return false; 3681 if (result != KMessageBox::Continue) return false;
3524 } 3682 }
3525 3683
3526 //QString filename = KFileDialog::getSaveFileName("vcalout.vcs",i18n("*.vcs|VCalendars"),this); 3684 //QString filename = KFileDialog::getSaveFileName("vcalout.vcs",i18n("*.vcs|VCalendars"),this);
3527 3685
3528 // Force correct extension 3686 // Force correct extension
3529 if (filename.right(4) != ".vcs") filename += ".vcs"; 3687 if (filename.right(4) != ".vcs") filename += ".vcs";
3530 3688
3531 FileStorage storage( mCalendar, filename, new VCalFormat ); 3689 FileStorage storage( mCalendar, filename, new VCalFormat );
3532 return storage.save(); 3690 return storage.save();
3533 3691
3534} 3692}
3535 3693
3536void CalendarView::eventUpdated(Incidence *) 3694void CalendarView::eventUpdated(Incidence *)
3537{ 3695{
3538 setModified(); 3696 setModified();
3539 // Don't call updateView here. The code, which has caused the update of the 3697 // Don't call updateView here. The code, which has caused the update of the
3540 // event is responsible for updating the view. 3698 // event is responsible for updating the view.
3541 // updateView(); 3699 // updateView();
3542} 3700}
3543 3701
3544void CalendarView::adaptNavigationUnits() 3702void CalendarView::adaptNavigationUnits()
3545{ 3703{
3546 if (mViewManager->currentView()->isEventView()) { 3704 if (mViewManager->currentView()->isEventView()) {
3547 int days = mViewManager->currentView()->currentDateCount(); 3705 int days = mViewManager->currentView()->currentDateCount();
3548 if (days == 1) { 3706 if (days == 1) {
3549 emit changeNavStringPrev(i18n("&Previous Day")); 3707 emit changeNavStringPrev(i18n("&Previous Day"));
3550 emit changeNavStringNext(i18n("&Next Day")); 3708 emit changeNavStringNext(i18n("&Next Day"));
3551 } else { 3709 } else {
3552 emit changeNavStringPrev(i18n("&Previous Week")); 3710 emit changeNavStringPrev(i18n("&Previous Week"));
3553 emit changeNavStringNext(i18n("&Next Week")); 3711 emit changeNavStringNext(i18n("&Next Week"));
3554 } 3712 }
3555 } 3713 }
3556} 3714}
3557 3715
3558void CalendarView::processMainViewSelection( Incidence *incidence ) 3716void CalendarView::processMainViewSelection( Incidence *incidence )
3559{ 3717{
3560 if ( incidence ) mTodoList->clearSelection(); 3718 if ( incidence ) mTodoList->clearSelection();
3561 processIncidenceSelection( incidence ); 3719 processIncidenceSelection( incidence );
3562} 3720}
3563 3721
3564void CalendarView::processTodoListSelection( Incidence *incidence ) 3722void CalendarView::processTodoListSelection( Incidence *incidence )
3565{ 3723{
3566 if ( incidence && mViewManager->currentView() ) { 3724 if ( incidence && mViewManager->currentView() ) {
3567 mViewManager->currentView()->clearSelection(); 3725 mViewManager->currentView()->clearSelection();
3568 } 3726 }
3569 processIncidenceSelection( incidence ); 3727 processIncidenceSelection( incidence );
3570} 3728}
3571 3729
3572void CalendarView::processIncidenceSelection( Incidence *incidence ) 3730void CalendarView::processIncidenceSelection( Incidence *incidence )
3573{ 3731{
3574 if ( incidence == mSelectedIncidence ) return; 3732 if ( incidence == mSelectedIncidence ) return;
3575 3733
3576 mSelectedIncidence = incidence; 3734 mSelectedIncidence = incidence;
3577 3735
3578 emit incidenceSelected( mSelectedIncidence ); 3736 emit incidenceSelected( mSelectedIncidence );
3579 3737
3580 if ( incidence && incidence->type() == "Event" ) { 3738 if ( incidence && incidence->type() == "Event" ) {
3581 Event *event = static_cast<Event *>( incidence ); 3739 Event *event = static_cast<Event *>( incidence );
3582 if ( event->organizer() == KOPrefs::instance()->email() ) { 3740 if ( event->organizer() == KOPrefs::instance()->email() ) {
3583 emit organizerEventsSelected( true ); 3741 emit organizerEventsSelected( true );
3584 } else { 3742 } else {
3585 emit organizerEventsSelected(false); 3743 emit organizerEventsSelected(false);
3586 } 3744 }
3587 if (event->attendeeByMails( KOPrefs::instance()->mAdditionalMails, 3745 if (event->attendeeByMails( KOPrefs::instance()->mAdditionalMails,
3588 KOPrefs::instance()->email() ) ) { 3746 KOPrefs::instance()->email() ) ) {
3589 emit groupEventsSelected( true ); 3747 emit groupEventsSelected( true );
3590 } else { 3748 } else {
3591 emit groupEventsSelected(false); 3749 emit groupEventsSelected(false);
3592 } 3750 }
3593 return; 3751 return;
3594 } else { 3752 } else {
3595 if ( incidence && incidence->type() == "Todo" ) { 3753 if ( incidence && incidence->type() == "Todo" ) {
3596 emit todoSelected( true ); 3754 emit todoSelected( true );
3597 Todo *event = static_cast<Todo *>( incidence ); 3755 Todo *event = static_cast<Todo *>( incidence );
3598 if ( event->organizer() == KOPrefs::instance()->email() ) { 3756 if ( event->organizer() == KOPrefs::instance()->email() ) {
3599 emit organizerEventsSelected( true ); 3757 emit organizerEventsSelected( true );
3600 } else { 3758 } else {
3601 emit organizerEventsSelected(false); 3759 emit organizerEventsSelected(false);
3602 } 3760 }
3603 if (event->attendeeByMails( KOPrefs::instance()->mAdditionalMails, 3761 if (event->attendeeByMails( KOPrefs::instance()->mAdditionalMails,
3604 KOPrefs::instance()->email() ) ) { 3762 KOPrefs::instance()->email() ) ) {
3605 emit groupEventsSelected( true ); 3763 emit groupEventsSelected( true );
3606 } else { 3764 } else {
3607 emit groupEventsSelected(false); 3765 emit groupEventsSelected(false);
3608 } 3766 }
3609 return; 3767 return;
3610 } else { 3768 } else {
3611 emit todoSelected( false ); 3769 emit todoSelected( false );
3612 emit organizerEventsSelected(false); 3770 emit organizerEventsSelected(false);
3613 emit groupEventsSelected(false); 3771 emit groupEventsSelected(false);
3614 } 3772 }
3615 return; 3773 return;
3616 } 3774 }
3617 3775
3618 /* if ( incidence && incidence->type() == "Todo" ) { 3776 /* if ( incidence && incidence->type() == "Todo" ) {
3619 emit todoSelected( true ); 3777 emit todoSelected( true );
3620 } else { 3778 } else {
3621 emit todoSelected( false ); 3779 emit todoSelected( false );
3622 }*/ 3780 }*/
3623} 3781}
3624 3782
3625 3783
3626void CalendarView::checkClipboard() 3784void CalendarView::checkClipboard()
3627{ 3785{
3628#ifndef KORG_NODND 3786#ifndef KORG_NODND
3629 if (ICalDrag::canDecode(QApplication::clipboard()->data())) { 3787 if (ICalDrag::canDecode(QApplication::clipboard()->data())) {
3630 emit pasteEnabled(true); 3788 emit pasteEnabled(true);
3631 } else { 3789 } else {
3632 emit pasteEnabled(false); 3790 emit pasteEnabled(false);
3633 } 3791 }
3634#endif 3792#endif
3635} 3793}
3636 3794
3637void CalendarView::showDates(const DateList &selectedDates) 3795void CalendarView::showDates(const DateList &selectedDates)
3638{ 3796{
3639 // kdDebug() << "CalendarView::selectDates()" << endl; 3797 // kdDebug() << "CalendarView::selectDates()" << endl;
3640 3798
3641 3799
3642 if ( !mBlockShowDates ) { 3800 if ( !mBlockShowDates ) {
3643 if ( mViewManager->currentView() ) { 3801 if ( mViewManager->currentView() ) {
3644 updateView( selectedDates.first(), selectedDates.last() ); 3802 updateView( selectedDates.first(), selectedDates.last() );
3645 } else { 3803 } else {
3646 mViewManager->showAgendaView(); 3804 mViewManager->showAgendaView();
3647 } 3805 }
3648 } 3806 }
3649 3807
3650 QDate date = selectedDates.first(); 3808 QDate date = selectedDates.first();
3651 if ( ! date.isValid() ) { 3809 if ( ! date.isValid() ) {
3652 topLevelWidget()->setCaption(""); 3810 topLevelWidget()->setCaption("");
3653 return; 3811 return;
3654 } 3812 }
3655 3813
3656 QString selDates; 3814 QString selDates;
3657 selDates = KGlobal::locale()->formatDate( date, true); 3815 selDates = KGlobal::locale()->formatDate( date, true);
3658 if (selectedDates.first() < selectedDates.last() ) 3816 if (selectedDates.first() < selectedDates.last() )
3659 selDates += " - " + KGlobal::locale()->formatDate( selectedDates.last(),true); 3817 selDates += " - " + KGlobal::locale()->formatDate( selectedDates.last(),true);
3660 else { 3818 else {
3661 QString addString; 3819 QString addString;
3662 if ( date == QDateTime::currentDateTime().date() ) 3820 if ( date == QDateTime::currentDateTime().date() )
3663 addString = i18n("Today"); 3821 addString = i18n("Today");
3664 else if ( date == QDateTime::currentDateTime().date().addDays(1) ) 3822 else if ( date == QDateTime::currentDateTime().date().addDays(1) )
3665 addString = i18n("Tomorrow"); 3823 addString = i18n("Tomorrow");
3666 else if ( date == QDateTime::currentDateTime().date().addDays(-1) ) 3824 else if ( date == QDateTime::currentDateTime().date().addDays(-1) )
3667 addString = i18n("Yesterday"); 3825 addString = i18n("Yesterday");
3668 else if ( date == QDateTime::currentDateTime().date().addDays(-2) ) 3826 else if ( date == QDateTime::currentDateTime().date().addDays(-2) )
3669 addString = i18n("Day before yesterday"); 3827 addString = i18n("Day before yesterday");
3670 else if ( date == QDateTime::currentDateTime().date().addDays(2) ) 3828 else if ( date == QDateTime::currentDateTime().date().addDays(2) )
3671 addString = i18n("Day after tomorrow"); 3829 addString = i18n("Day after tomorrow");
3672 if ( !addString.isEmpty() ) { 3830 if ( !addString.isEmpty() ) {
3673 topLevelWidget()->setCaption( addString+", " + selDates ); 3831 topLevelWidget()->setCaption( addString+", " + selDates );
3674 return; 3832 return;
3675 } 3833 }
3676 } 3834 }
3677 topLevelWidget()->setCaption( i18n("Dates: ") + selDates ); 3835 topLevelWidget()->setCaption( i18n("Dates: ") + selDates );
3678 3836
3679} 3837}
3680 3838
3681QPtrList<CalFilter> CalendarView::filters() 3839QPtrList<CalFilter> CalendarView::filters()
3682{ 3840{
3683 return mFilters; 3841 return mFilters;
3684 3842
3685} 3843}
3686void CalendarView::editFilters() 3844void CalendarView::editFilters()
3687{ 3845{
3688 // kdDebug() << "CalendarView::editFilters()" << endl; 3846 // kdDebug() << "CalendarView::editFilters()" << endl;
3689 3847
3690 CalFilter *filter = mFilters.first(); 3848 CalFilter *filter = mFilters.first();
3691 while(filter) { 3849 while(filter) {
3692 kdDebug() << " Filter: " << filter->name() << endl; 3850 kdDebug() << " Filter: " << filter->name() << endl;
3693 filter = mFilters.next(); 3851 filter = mFilters.next();
3694 } 3852 }
3695 3853
3696 mDialogManager->showFilterEditDialog(&mFilters); 3854 mDialogManager->showFilterEditDialog(&mFilters);
3697} 3855}
3698void CalendarView::toggleFilter() 3856void CalendarView::toggleFilter()
3699{ 3857{
3700 showFilter(! mFilterView->isVisible()); 3858 showFilter(! mFilterView->isVisible());
3701} 3859}
3702 3860
3703KOFilterView *CalendarView::filterView() 3861KOFilterView *CalendarView::filterView()
3704{ 3862{
3705 return mFilterView; 3863 return mFilterView;
3706} 3864}
3707void CalendarView::selectFilter( int fil ) 3865void CalendarView::selectFilter( int fil )
3708{ 3866{
3709 mFilterView->setSelectedFilter( fil ); 3867 mFilterView->setSelectedFilter( fil );
3710} 3868}
3711void CalendarView::showFilter(bool visible) 3869void CalendarView::showFilter(bool visible)
3712{ 3870{
3713 if (visible) mFilterView->show(); 3871 if (visible) mFilterView->show();
3714 else mFilterView->hide(); 3872 else mFilterView->hide();
3715} 3873}
3716void CalendarView::toggleFilerEnabled( ) 3874void CalendarView::toggleFilerEnabled( )
3717{ 3875{
3718 mFilterView->setFiltersEnabled ( !mFilterView->filtersEnabled() ); 3876 mFilterView->setFiltersEnabled ( !mFilterView->filtersEnabled() );
3719 if ( !mFilterView->filtersEnabled() ) 3877 if ( !mFilterView->filtersEnabled() )
3720 topLevelWidget()->setCaption( i18n("Filter disabled ") ); 3878 topLevelWidget()->setCaption( i18n("Filter disabled ") );
3721 3879
3722} 3880}
3723void CalendarView::updateFilter() 3881void CalendarView::updateFilter()
3724{ 3882{
3725 CalFilter *filter = mFilterView->selectedFilter(); 3883 CalFilter *filter = mFilterView->selectedFilter();
3726 if (filter) { 3884 if (filter) {
3727 QString mess; 3885 QString mess;
3728 if (mFilterView->filtersEnabled()) { 3886 if (mFilterView->filtersEnabled()) {
3729 mess = i18n("Filter selected: ")+filter->name(); 3887 mess = i18n("Filter selected: ")+filter->name();
3730 filter->setEnabled(true); 3888 filter->setEnabled(true);
3731 } 3889 }
3732 else filter->setEnabled(false); 3890 else filter->setEnabled(false);
3733 mCalendar->setFilter(filter); 3891 mCalendar->setFilter(filter);
3734 updateView(); 3892 updateView();
3735 if ( !mess.isEmpty() ) 3893 if ( !mess.isEmpty() )
3736 topLevelWidget()->setCaption( mess ); 3894 topLevelWidget()->setCaption( mess );
3737 3895
3738 } 3896 }
3739} 3897}
3740 3898
3741void CalendarView::filterEdited() 3899void CalendarView::filterEdited()
3742{ 3900{
3743 mFilterView->updateFilters(); 3901 mFilterView->updateFilters();
3744 updateFilter(); 3902 updateFilter();
3745 writeSettings(); 3903 writeSettings();
3746} 3904}
3747 3905
3748 3906
3749void CalendarView::takeOverEvent() 3907void CalendarView::takeOverEvent()
3750{ 3908{
3751 Incidence *incidence = currentSelection(); 3909 Incidence *incidence = currentSelection();
3752 3910
3753 if (!incidence) return; 3911 if (!incidence) return;
3754 3912
3755 incidence->setOrganizer(KOPrefs::instance()->email()); 3913 incidence->setOrganizer(KOPrefs::instance()->email());
3756 incidence->recreate(); 3914 incidence->recreate();
3757 incidence->setReadOnly(false); 3915 incidence->setReadOnly(false);
3758 3916
3759 updateView(); 3917 updateView();
3760} 3918}
3761 3919
3762void CalendarView::takeOverCalendar() 3920void CalendarView::takeOverCalendar()
3763{ 3921{
3764 // TODO: Create Calendar::allIncidences() function and use it here 3922 // TODO: Create Calendar::allIncidences() function and use it here
3765 3923
3766 QPtrList<Event> events = mCalendar->events(); 3924 QPtrList<Event> events = mCalendar->events();
3767 for(uint i=0; i<events.count(); ++i) { 3925 for(uint i=0; i<events.count(); ++i) {
3768 events.at(i)->setOrganizer(KOPrefs::instance()->email()); 3926 events.at(i)->setOrganizer(KOPrefs::instance()->email());
3769 events.at(i)->recreate(); 3927 events.at(i)->recreate();
3770 events.at(i)->setReadOnly(false); 3928 events.at(i)->setReadOnly(false);
3771 } 3929 }
3772 3930
3773 QPtrList<Todo> todos = mCalendar->todos(); 3931 QPtrList<Todo> todos = mCalendar->todos();
3774 for(uint i=0; i<todos.count(); ++i) { 3932 for(uint i=0; i<todos.count(); ++i) {
3775 todos.at(i)->setOrganizer(KOPrefs::instance()->email()); 3933 todos.at(i)->setOrganizer(KOPrefs::instance()->email());
3776 todos.at(i)->recreate(); 3934 todos.at(i)->recreate();
3777 todos.at(i)->setReadOnly(false); 3935 todos.at(i)->setReadOnly(false);
3778 } 3936 }
3779 3937
3780 QPtrList<Journal> journals = mCalendar->journals(); 3938 QPtrList<Journal> journals = mCalendar->journals();
3781 for(uint i=0; i<journals.count(); ++i) { 3939 for(uint i=0; i<journals.count(); ++i) {
3782 journals.at(i)->setOrganizer(KOPrefs::instance()->email()); 3940 journals.at(i)->setOrganizer(KOPrefs::instance()->email());
3783 journals.at(i)->recreate(); 3941 journals.at(i)->recreate();
3784 journals.at(i)->setReadOnly(false); 3942 journals.at(i)->setReadOnly(false);
3785 } 3943 }
3786 3944
3787 updateView(); 3945 updateView();
3788} 3946}
3789 3947
3790void CalendarView::showIntro() 3948void CalendarView::showIntro()
3791{ 3949{
3792 kdDebug() << "To be implemented." << endl; 3950 kdDebug() << "To be implemented." << endl;
3793} 3951}
3794 3952
3795QWidgetStack *CalendarView::viewStack() 3953QWidgetStack *CalendarView::viewStack()
3796{ 3954{
3797 return mRightFrame; 3955 return mRightFrame;
3798} 3956}
3799 3957
3800QWidget *CalendarView::leftFrame() 3958QWidget *CalendarView::leftFrame()
3801{ 3959{
3802 return ( QWidget *)mLeftFrame; 3960 return ( QWidget *)mLeftFrame;
3803} 3961}
3804 3962
3805DateNavigator *CalendarView::dateNavigator() 3963DateNavigator *CalendarView::dateNavigator()
3806{ 3964{
3807 return mNavigator; 3965 return mNavigator;
3808} 3966}
3809 3967
3810KDateNavigator* CalendarView::dateNavigatorWidget() 3968KDateNavigator* CalendarView::dateNavigatorWidget()
3811{ 3969{
3812 return mDateNavigator->navigatorView(); 3970 return mDateNavigator->navigatorView();
3813} 3971}
3814void CalendarView::toggleDateNavigatorWidget() 3972void CalendarView::toggleDateNavigatorWidget()
3815{ 3973{
3816 KOPrefs::instance()->mShowDateNavigator = !KOPrefs::instance()->mShowDateNavigator ; 3974 KOPrefs::instance()->mShowDateNavigator = !KOPrefs::instance()->mShowDateNavigator ;
3817 3975
3818 if (!KOPrefs::instance()->mShowDateNavigator ) 3976 if (!KOPrefs::instance()->mShowDateNavigator )
3819 mDateNavigator->hide(); 3977 mDateNavigator->hide();
3820 else 3978 else
3821 mDateNavigator->show(); 3979 mDateNavigator->show();
3822} 3980}
3823void CalendarView::addView(KOrg::BaseView *view) 3981void CalendarView::addView(KOrg::BaseView *view)
3824{ 3982{
3825 mViewManager->addView(view); 3983 mViewManager->addView(view);
3826} 3984}
3827 3985
3828void CalendarView::showView(KOrg::BaseView *view) 3986void CalendarView::showView(KOrg::BaseView *view)
3829{ 3987{
3830 mViewManager->showView(view, mLeftFrame->isVisible()); 3988 mViewManager->showView(view, mLeftFrame->isVisible());
3831} 3989}
3832 3990
3833Incidence *CalendarView::currentSelection() 3991Incidence *CalendarView::currentSelection()
3834{ 3992{
3835 return mViewManager->currentSelection(); 3993 return mViewManager->currentSelection();
3836} 3994}
3837void CalendarView::toggleAllDaySize() 3995void CalendarView::toggleAllDaySize()
3838{ 3996{
3839 /* 3997 /*
3840 if ( KOPrefs::instance()->mAllDaySize > 47 ) 3998 if ( KOPrefs::instance()->mAllDaySize > 47 )
3841 KOPrefs::instance()->mAllDaySize = KOPrefs::instance()->mAllDaySize /2; 3999 KOPrefs::instance()->mAllDaySize = KOPrefs::instance()->mAllDaySize /2;
3842 else 4000 else
3843 KOPrefs::instance()->mAllDaySize = KOPrefs::instance()->mAllDaySize *2; 4001 KOPrefs::instance()->mAllDaySize = KOPrefs::instance()->mAllDaySize *2;
3844 */ 4002 */
3845 viewManager()->agendaView()->toggleAllDay(); 4003 viewManager()->agendaView()->toggleAllDay();
3846} 4004}
3847void CalendarView::toggleExpand() 4005void CalendarView::toggleExpand()
3848{ 4006{
3849 // if ( mLeftFrame->isHidden() ) { 4007 // if ( mLeftFrame->isHidden() ) {
3850 // mLeftFrame->show(); 4008 // mLeftFrame->show();
3851 // emit calendarViewExpanded( false ); 4009 // emit calendarViewExpanded( false );
3852 // } else { 4010 // } else {
3853 // mLeftFrame->hide(); 4011 // mLeftFrame->hide();
3854 // emit calendarViewExpanded( true ); 4012 // emit calendarViewExpanded( true );
3855 // } 4013 // }
3856 //qDebug(" CalendarView::toggleExpand()"); 4014 //qDebug(" CalendarView::toggleExpand()");
3857 globalFlagBlockAgenda = 1; 4015 globalFlagBlockAgenda = 1;
3858 emit calendarViewExpanded( !mLeftFrame->isHidden() ); 4016 emit calendarViewExpanded( !mLeftFrame->isHidden() );
3859 globalFlagBlockAgenda = 5; 4017 globalFlagBlockAgenda = 5;
3860 mViewManager->raiseCurrentView( !mLeftFrame->isHidden() ); 4018 mViewManager->raiseCurrentView( !mLeftFrame->isHidden() );
3861 //mViewManager->showView( 0, true ); 4019 //mViewManager->showView( 0, true );
3862} 4020}
3863 4021
3864void CalendarView::calendarModified( bool modified, Calendar * ) 4022void CalendarView::calendarModified( bool modified, Calendar * )
3865{ 4023{
3866 setModified( modified ); 4024 setModified( modified );
3867} 4025}
3868 4026
3869Todo *CalendarView::selectedTodo() 4027Todo *CalendarView::selectedTodo()
3870{ 4028{
3871 Incidence *incidence = currentSelection(); 4029 Incidence *incidence = currentSelection();
3872 if ( incidence && incidence->type() == "Todo" ) { 4030 if ( incidence && incidence->type() == "Todo" ) {
3873 return static_cast<Todo *>( incidence ); 4031 return static_cast<Todo *>( incidence );
3874 } 4032 }
3875 4033
3876 incidence = mTodoList->selectedIncidences().first(); 4034 incidence = mTodoList->selectedIncidences().first();
3877 if ( incidence && incidence->type() == "Todo" ) { 4035 if ( incidence && incidence->type() == "Todo" ) {
3878 return static_cast<Todo *>( incidence ); 4036 return static_cast<Todo *>( incidence );
3879 } 4037 }
3880 4038
3881 return 0; 4039 return 0;
3882} 4040}
3883 4041
3884void CalendarView::dialogClosing(Incidence *in) 4042void CalendarView::dialogClosing(Incidence *in)
3885{ 4043{
3886 // mDialogList.remove(in); 4044 // mDialogList.remove(in);
3887} 4045}
3888 4046
3889void CalendarView::showIncidence() 4047void CalendarView::showIncidence()
3890{ 4048{
3891 mViewerCallerIsSearchDialog = false; 4049 mViewerCallerIsSearchDialog = false;
3892 Incidence *incidence = currentSelection(); 4050 Incidence *incidence = currentSelection();
3893 if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); 4051 if ( !incidence ) incidence = mTodoList->selectedIncidences().first();
3894 if ( incidence ) { 4052 if ( incidence ) {
3895 ShowIncidenceVisitor v; 4053 ShowIncidenceVisitor v;
3896 v.act( incidence, this ); 4054 v.act( incidence, this );
3897 } 4055 }
3898} 4056}
3899void CalendarView::editIncidenceDescription() 4057void CalendarView::editIncidenceDescription()
3900{ 4058{
3901 mFlagEditDescription = true; 4059 mFlagEditDescription = true;
3902 editIncidence(); 4060 editIncidence();
3903 mFlagEditDescription = false; 4061 mFlagEditDescription = false;
3904} 4062}
3905void CalendarView::editIncidence() 4063void CalendarView::editIncidence()
3906{ 4064{
3907 // qDebug("editIncidence() "); 4065 // qDebug("editIncidence() ");
3908 Incidence *incidence = currentSelection(); 4066 Incidence *incidence = currentSelection();
3909 if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); 4067 if ( !incidence ) incidence = mTodoList->selectedIncidences().first();
3910 if ( incidence ) { 4068 if ( incidence ) {
3911 EditIncidenceVisitor v; 4069 EditIncidenceVisitor v;
3912 v.act( incidence, this ); 4070 v.act( incidence, this );
3913 } 4071 }
3914} 4072}
3915 4073
3916void CalendarView::deleteIncidence() 4074void CalendarView::deleteIncidence()
3917{ 4075{
3918 Incidence *incidence = currentSelection(); 4076 Incidence *incidence = currentSelection();
3919 if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); 4077 if ( !incidence ) incidence = mTodoList->selectedIncidences().first();
3920 if ( incidence ) { 4078 if ( incidence ) {
3921 deleteIncidence(incidence); 4079 deleteIncidence(incidence);
3922 } 4080 }
3923} 4081}
3924 4082void CalendarView::showIncidence(QString uid)
4083{
4084 Incidence *inc = mCalendar->incidence( uid );
4085 if ( inc )
4086 showIncidence( inc );
4087}
3925void CalendarView::showIncidence(Incidence *incidence) 4088void CalendarView::showIncidence(Incidence *incidence)
3926{ 4089{
3927 mViewerCallerIsSearchDialog = false; 4090 mViewerCallerIsSearchDialog = false;
3928 //qDebug("%x %x ",sender (), mDialogManager->getSearchDialog() ); 4091 //qDebug("%x %x ",sender (), mDialogManager->getSearchDialog() );
3929 if ( sender() && mDialogManager->getSearchDialog() ) { 4092 if ( sender() && mDialogManager->getSearchDialog() ) {
3930 if ( sender () == mDialogManager->getSearchDialog()->listview() ) { 4093 if ( sender () == mDialogManager->getSearchDialog()->listview() ) {
3931 mViewerCallerIsSearchDialog = true; 4094 mViewerCallerIsSearchDialog = true;
3932 } 4095 }
3933 } 4096 }
3934 if ( incidence ) { 4097 if ( incidence ) {
3935 ShowIncidenceVisitor v; 4098 ShowIncidenceVisitor v;
3936 v.act( incidence, this ); 4099 v.act( incidence, this );
3937 } 4100 }
3938} 4101}
3939 4102
3940void CalendarView::editIncidence(Incidence *incidence) 4103void CalendarView::editIncidence(Incidence *incidence)
3941{ 4104{
3942 if ( incidence ) { 4105 if ( incidence ) {
3943 4106
3944 EditIncidenceVisitor v; 4107 EditIncidenceVisitor v;
3945 v.act( incidence, this ); 4108 v.act( incidence, this );
3946 4109
3947 } 4110 }
3948} 4111}
3949 4112
3950void CalendarView::deleteIncidence(Incidence *incidence) 4113void CalendarView::deleteIncidence(Incidence *incidence)
3951{ 4114{
3952 //qDebug(" CalendarView::deleteIncidence "); 4115 //qDebug(" CalendarView::deleteIncidence ");
3953 if ( incidence ) { 4116 if ( incidence ) {
3954 DeleteIncidenceVisitor v; 4117 DeleteIncidenceVisitor v;
3955 v.act( incidence, this ); 4118 v.act( incidence, this );
3956 } 4119 }
3957} 4120}
3958 4121
3959 4122
3960void CalendarView::lookForOutgoingMessages() 4123void CalendarView::lookForOutgoingMessages()
3961{ 4124{
3962 OutgoingDialog *ogd = mDialogManager->outgoingDialog(); 4125 OutgoingDialog *ogd = mDialogManager->outgoingDialog();
3963 ogd->loadMessages(); 4126 ogd->loadMessages();
3964} 4127}
3965 4128
3966void CalendarView::lookForIncomingMessages() 4129void CalendarView::lookForIncomingMessages()
3967{ 4130{
3968 IncomingDialog *icd = mDialogManager->incomingDialog(); 4131 IncomingDialog *icd = mDialogManager->incomingDialog();
3969 icd->retrieve(); 4132 icd->retrieve();
3970} 4133}
3971 4134
3972bool CalendarView::removeCompletedSubTodos( Todo* t ) 4135bool CalendarView::removeCompletedSubTodos( Todo* t )
3973{ 4136{
3974 bool deleteTodo = true; 4137 bool deleteTodo = true;
3975 QPtrList<Incidence> subTodos; 4138 QPtrList<Incidence> subTodos;
3976 Incidence *aTodo; 4139 Incidence *aTodo;
3977 subTodos = t->relations(); 4140 subTodos = t->relations();
3978 for (aTodo = subTodos.first(); aTodo; aTodo = subTodos.next()) { 4141 for (aTodo = subTodos.first(); aTodo; aTodo = subTodos.next()) {
3979 if (! removeCompletedSubTodos( (Todo*) aTodo )) 4142 if (! removeCompletedSubTodos( (Todo*) aTodo ))
3980 deleteTodo = false; 4143 deleteTodo = false;
3981 } 4144 }
3982 if ( deleteTodo ) { 4145 if ( deleteTodo ) {
3983 if ( t->isCompleted() && !t->doesRecur()) { 4146 if ( t->isCompleted() && !t->doesRecur()) {
3984 checkExternalId( t ); 4147 checkExternalId( t );
3985 mCalendar->deleteTodo( t ); 4148 mCalendar->deleteTodo( t );
3986 changeTodoDisplay( t,KOGlobals::EVENTDELETED ); 4149 changeTodoDisplay( t,KOGlobals::EVENTDELETED );
3987 } 4150 }
3988 else 4151 else
3989 deleteTodo = false; 4152 deleteTodo = false;
3990 } 4153 }
3991 return deleteTodo; 4154 return deleteTodo;
3992 4155
3993} 4156}
3994void CalendarView::purgeCompleted() 4157void CalendarView::purgeCompleted()
3995{ 4158{
3996 int result = KMessageBox::warningContinueCancel(this, 4159 int result = KMessageBox::warningContinueCancel(this,
3997 i18n("Delete all completed todos?\n(Completed recurring todos\nwill not be deleted!)"),i18n("Purge Todos"),i18n("Purge")); 4160 i18n("Delete all completed todos?\n(Completed recurring todos\nwill not be deleted!)"),i18n("Purge Todos"),i18n("Purge"));
3998 4161
3999 if (result == KMessageBox::Continue) { 4162 if (result == KMessageBox::Continue) {
4000 4163
4001 QPtrList<Todo> todoCal; 4164 QPtrList<Todo> todoCal;
4002 QPtrList<Todo> rootTodos; 4165 QPtrList<Todo> rootTodos;
4003 //QPtrList<Incidence> rel; 4166 //QPtrList<Incidence> rel;
4004 Todo *aTodo;//, *rTodo; 4167 Todo *aTodo;//, *rTodo;
4005 Incidence *rIncidence; 4168 Incidence *rIncidence;
4006 bool childDelete = false; 4169 bool childDelete = false;
4007 bool deletedOne = true; 4170 bool deletedOne = true;
4008 todoCal = calendar()->todos(); 4171 todoCal = calendar()->todos();
4009 for (aTodo = todoCal.first(); aTodo; aTodo = todoCal.next()) { 4172 for (aTodo = todoCal.first(); aTodo; aTodo = todoCal.next()) {
4010 if ( !aTodo->relatedTo() ) 4173 if ( !aTodo->relatedTo() )
4011 rootTodos.append( aTodo ); 4174 rootTodos.append( aTodo );
4012 } 4175 }
4013 for (aTodo = rootTodos.first(); aTodo; aTodo = rootTodos.next()) { 4176 for (aTodo = rootTodos.first(); aTodo; aTodo = rootTodos.next()) {
4014 removeCompletedSubTodos( aTodo ); 4177 removeCompletedSubTodos( aTodo );
4015 } 4178 }
4016 4179
4017 updateView(); 4180 updateView();
4018 } 4181 }
4019} 4182}
4020 4183
4021void CalendarView::slotCalendarChanged() 4184void CalendarView::slotCalendarChanged()
4022{ 4185{
4023 ; 4186 ;
4024} 4187}
4025 4188
4026void CalendarView::keyPressEvent ( QKeyEvent *e) 4189void CalendarView::keyPressEvent ( QKeyEvent *e)
4027{ 4190{
4028 //qDebug(" alendarView::keyPressEvent "); 4191 //qDebug(" alendarView::keyPressEvent ");
4029 e->ignore(); 4192 e->ignore();
4030} 4193}
4031 4194
4032 4195
4033bool CalendarView::sync(KSyncManager* manager, QString filename, int mode) 4196bool CalendarView::sync(KSyncManager* manager, QString filename, int mode)
4034{ 4197{
4035 // mSyncManager = manager; 4198 // mSyncManager = manager;
4036 if ( filename == QDir::homeDirPath ()+"/.kdecalendardump.ics" ) { 4199 if ( filename == QDir::homeDirPath ()+"/.kdecalendardump.ics" ) {
4037 qDebug("KO: SyncKDE request detected!"); 4200 qDebug("KO: SyncKDE request detected!");
4038 } 4201 }
4039 mCurrentSyncDevice = mSyncManager->getCurrentSyncDevice(); 4202 mCurrentSyncDevice = mSyncManager->getCurrentSyncDevice();
4040 mCurrentSyncName = mSyncManager->getCurrentSyncName(); 4203 mCurrentSyncName = mSyncManager->getCurrentSyncName();
4041 return syncCalendar( filename, mode ); 4204 return syncCalendar( filename, mode );
4042} 4205}
4043bool CalendarView::syncExternal(KSyncManager* manager, QString resource) 4206bool CalendarView::syncExternal(KSyncManager* manager, QString resource)
4044{ 4207{
4045 //mSyncManager = manager; 4208 //mSyncManager = manager;
4046 mCurrentSyncDevice = mSyncManager->getCurrentSyncDevice(); 4209 mCurrentSyncDevice = mSyncManager->getCurrentSyncDevice();
4047 mCurrentSyncName = mSyncManager->getCurrentSyncName(); 4210 mCurrentSyncName = mSyncManager->getCurrentSyncName();
4048 if ( resource == "sharp" ) 4211 if ( resource == "sharp" )
4049 syncExternal( 0 ); 4212 syncExternal( 0 );
4050 if ( resource == "phone" ) 4213 if ( resource == "phone" )
4051 syncExternal( 1 ); 4214 syncExternal( 1 );
4052 // pending setmodified 4215 // pending setmodified
4053 return true; 4216 return true;
4054} 4217}
4055void CalendarView::setSyncManager(KSyncManager* manager) 4218void CalendarView::setSyncManager(KSyncManager* manager)
4056{ 4219{
4057 mSyncManager = manager; 4220 mSyncManager = manager;
4058} 4221}
4059 4222
4060void CalendarView::removeSyncInfo( QString syncProfile) 4223void CalendarView::removeSyncInfo( QString syncProfile)
4061{ 4224{
4062 qDebug("KO: removeSyncInfo for profile %s ", syncProfile.latin1()); 4225 qDebug("KO: removeSyncInfo for profile %s ", syncProfile.latin1());
4063 mCalendar->removeSyncInfo( syncProfile ); 4226 mCalendar->removeSyncInfo( syncProfile );
4064 4227
4065} 4228}
4066 4229
4067void CalendarView::undo_delete() 4230void CalendarView::undo_delete()
4068{ 4231{
4069 //qDebug("undo_delete() "); 4232 //qDebug("undo_delete() ");
4070 Incidence* undo = mCalendar->undoIncidence(); 4233 Incidence* undo = mCalendar->undoIncidence();
4071 if ( !undo ) { 4234 if ( !undo ) {
4072 KMessageBox::sorry(this,i18n("There is nothing to undo!"), 4235 KMessageBox::sorry(this,i18n("There is nothing to undo!"),
4073 i18n("KO/Pi")); 4236 i18n("KO/Pi"));
4074 return; 4237 return;
4075 } 4238 }
4076 if ( KMessageBox::Continue ==KMessageBox::warningContinueCancel(this,undo->summary().left(25) + 4239 if ( KMessageBox::Continue ==KMessageBox::warningContinueCancel(this,undo->summary().left(25) +
4077 i18n("\nAre you sure you want\nto restore this?"), 4240 i18n("\nAre you sure you want\nto restore this?"),
4078 i18n("KO/Pi Confirmation"),i18n("Restore"))) { 4241 i18n("KO/Pi Confirmation"),i18n("Restore"))) {
4079 mCalendar->undoDeleteIncidence(); 4242 mCalendar->undoDeleteIncidence();
4080 updateView(); 4243 updateView();
4081 } 4244 }
4082} 4245}
4083 4246
4084void CalendarView::slotViewerClosed() 4247void CalendarView::slotViewerClosed()
4085{ 4248{
4086 QTimer::singleShot( 50, this, SLOT ( resetFocus() ) ); 4249 QTimer::singleShot( 50, this, SLOT ( resetFocus() ) );
4087} 4250}
4088 4251
4089void CalendarView::resetFocus() 4252void CalendarView::resetFocus()
4090{ 4253{
4091 if ( mViewerCallerIsSearchDialog ) { 4254 if ( mViewerCallerIsSearchDialog ) {
4092 if ( mDialogManager->getSearchDialog()->isVisible() ){ 4255 if ( mDialogManager->getSearchDialog()->isVisible() ){
4093 mDialogManager->getSearchDialog()->raise(); 4256 mDialogManager->getSearchDialog()->raise();
4094 mDialogManager->getSearchDialog()->setActiveWindow(); 4257 mDialogManager->getSearchDialog()->setActiveWindow();
4095 mDialogManager->getSearchDialog()->listview()->resetFocus(); 4258 mDialogManager->getSearchDialog()->listview()->resetFocus();
4096 } else 4259 } else
4097 mViewerCallerIsSearchDialog = false; 4260 mViewerCallerIsSearchDialog = false;
4098 } 4261 }
4099 if ( !mViewerCallerIsSearchDialog ) { 4262 if ( !mViewerCallerIsSearchDialog ) {
4100 //mViewManager->currentView()->setFocus(); 4263 //mViewManager->currentView()->setFocus();
4101 //qDebug("sssssssssssssssset focus "); 4264 //qDebug("sssssssssssssssset focus ");
4102 topLevelWidget()->raise(); 4265 topLevelWidget()->raise();
4103 setActiveWindow(); 4266 setActiveWindow();
4104 //setFocus(); 4267 //setFocus();
4105 } 4268 }
4106 mViewerCallerIsSearchDialog = false; 4269 mViewerCallerIsSearchDialog = false;
4107} 4270}
4108 4271
4109void CalendarView::showNextAlarms() 4272void CalendarView::showNextAlarms()
4110{ 4273{
4111 QString message; 4274 QString message;
4112 QDateTime nextAl = mCalendar->nextAlarmEventDateTime(); 4275 QDateTime nextAl = mCalendar->nextAlarmEventDateTime();
4113 if ( nextAl.isValid() && mNextAlarmDateTime > QDateTime::currentDateTime() ) { 4276 if ( nextAl.isValid() && mNextAlarmDateTime > QDateTime::currentDateTime() ) {
4114 QString sum = mCalendar->nextSummary(); 4277 QString sum = mCalendar->nextSummary();
4115 QDateTime nextA = mNextAlarmDateTime; 4278 QDateTime nextA = mNextAlarmDateTime;
4116 QDateTime cur = QDateTime::currentDateTime(); 4279 QDateTime cur = QDateTime::currentDateTime();
4117 int secs = cur.secsTo( nextA ); 4280 int secs = cur.secsTo( nextA );
4118 int min = secs /60; 4281 int min = secs /60;
4119 int hours = min /60; 4282 int hours = min /60;
4120 min = min % 60; 4283 min = min % 60;
4121 int days = hours /24; 4284 int days = hours /24;
4122 hours = hours % 24; 4285 hours = hours % 24;
4123 4286
4124 //message = i18n("The next alarm is in:\n"); 4287 //message = i18n("The next alarm is in:\n");
4125 if ( days > 1 ) 4288 if ( days > 1 )
4126 message += i18n("%1 days\n").arg( days ); 4289 message += i18n("%1 days\n").arg( days );
4127 else if ( days == 1 ) 4290 else if ( days == 1 )
4128 message += i18n("1 day\n"); 4291 message += i18n("1 day\n");
4129 if ( hours > 1 ) 4292 if ( hours > 1 )
4130 message += i18n("%1 hours\n").arg( hours ); 4293 message += i18n("%1 hours\n").arg( hours );
4131 else if ( hours == 1 ) 4294 else if ( hours == 1 )
4132 message += i18n("1 hour\n"); 4295 message += i18n("1 hour\n");
4133 if ( min > 1 ) 4296 if ( min > 1 )
4134 message += i18n("%1 minutes\n").arg( min ); 4297 message += i18n("%1 minutes\n").arg( min );
4135 else if ( min == 1 ) 4298 else if ( min == 1 )
4136 message += i18n("1 minute\n"); 4299 message += i18n("1 minute\n");
4137 if ( message.isEmpty() ) 4300 if ( message.isEmpty() )
4138 message = i18n("The next alarm is in\nless than one minute!"); 4301 message = i18n("The next alarm is in\nless than one minute!");
4139 else 4302 else
4140 message = i18n("The next alarm is in:\n") + message; 4303 message = i18n("The next alarm is in:\n") + message;
4141 message += i18n("\n(%1)\n\n%2\n(%3)\n").arg( KGlobal::locale()->formatDateTime(nextA , false)).arg(sum ).arg( KGlobal::locale()->formatDateTime(nextAl , false)) ; 4304 message += i18n("\n(%1)\n\n%2\n(%3)\n").arg( KGlobal::locale()->formatDateTime(nextA , false)).arg(sum ).arg( KGlobal::locale()->formatDateTime(nextAl , false)) ;
4142 } else { 4305 } else {
4143 message = i18n("There is no next alarm."); 4306 message = i18n("There is no next alarm.");
4144 4307
4145 } 4308 }
4146#ifdef DESKTOP_VERSION 4309#ifdef DESKTOP_VERSION
4147 if ( ! KOPrefs::instance()->mUseInternalAlarmNotification ) { 4310 if ( ! KOPrefs::instance()->mUseInternalAlarmNotification ) {
4148 message += i18n("\nThe internal alarm notification is disabled!\n"); 4311 message += i18n("\nThe internal alarm notification is disabled!\n");
4149 message += i18n("Enable it in the settings menu, TAB alarm."); 4312 message += i18n("Enable it in the settings menu, TAB alarm.");
4150 } 4313 }
4151 4314
4152#endif 4315#endif
4153 KMessageBox::information( this, message); 4316 KMessageBox::information( this, message);
4154} 4317}
diff --git a/korganizer/calendarview.h b/korganizer/calendarview.h
index 05a34b4..1eca905 100644
--- a/korganizer/calendarview.h
+++ b/korganizer/calendarview.h
@@ -1,620 +1,640 @@
1/* 1/*
2 This file is part of KOrganizer. 2 This file is part of KOrganizer.
3 Copyright (c) 2000, 2001 3 Copyright (c) 2000, 2001
4 Cornelius Schumacher <schumacher@kde.org> 4 Cornelius Schumacher <schumacher@kde.org>
5 5
6 This program is free software; you can redistribute it and/or modify 6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by 7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or 8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version. 9 (at your option) any later version.
10 10
11 This program is distributed in the hope that it will be useful, 11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of 12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details. 14 GNU General Public License for more details.
15 15
16 You should have received a copy of the GNU General Public License 16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software 17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 19
20 As a special exception, permission is given to link this program 20 As a special exception, permission is given to link this program
21 with any edition of Qt, and distribute the resulting executable, 21 with any edition of Qt, and distribute the resulting executable,
22 without including the source code for Qt in the source distribution. 22 without including the source code for Qt in the source distribution.
23*/ 23*/
24#ifndef CALENDARVIEW_H 24#ifndef CALENDARVIEW_H
25#define CALENDARVIEW_H 25#define CALENDARVIEW_H
26 26
27#include <qframe.h> 27#include <qframe.h>
28#include <qlayout.h> 28#include <qlayout.h>
29#include <qwidget.h> 29#include <qwidget.h>
30#include <qptrlist.h> 30#include <qptrlist.h>
31#include <qvbox.h> 31#include <qvbox.h>
32#include <qmap.h> 32#include <qmap.h>
33#ifndef DESKTOP_VERSION 33#ifndef DESKTOP_VERSION
34#include <qtopia/ir.h> 34#include <qtopia/ir.h>
35#else 35#else
36#define Ir char 36#define Ir char
37#endif 37#endif
38#include <libkcal/calendar.h> 38#include <libkcal/calendar.h>
39#include <libkcal/scheduler.h> 39#include <libkcal/scheduler.h>
40#include <libkcal/calendarresources.h> 40#include <libkcal/calendarresources.h>
41#include <libkcal/resourcecalendar.h> 41#include <libkcal/resourcecalendar.h>
42#include <KDGanttMinimizeSplitter.h> 42#include <KDGanttMinimizeSplitter.h>
43 43
44#include <korganizer/calendarviewbase.h> 44#include <korganizer/calendarviewbase.h>
45 45
46#include <ksyncmanager.h> 46#include <ksyncmanager.h>
47 47
48class QWidgetStack; 48class QWidgetStack;
49class QSplitter; 49class QSplitter;
50 50
51class CalPrinter; 51class CalPrinter;
52class KOFilterView; 52class KOFilterView;
53class KOViewManager; 53class KOViewManager;
54class KODialogManager; 54class KODialogManager;
55class KOTodoView; 55class KOTodoView;
56class KDateNavigator; 56class KDateNavigator;
57class DateNavigatorContainer; 57class DateNavigatorContainer;
58class DateNavigator; 58class DateNavigator;
59class KOIncidenceEditor; 59class KOIncidenceEditor;
60class KDatePicker; 60class KDatePicker;
61class ResourceView; 61class ResourceView;
62class KOEventEditor; 62class KOEventEditor;
63class KOTodoEditor ; 63class KOTodoEditor ;
64class KOEventViewerDialog; 64class KOEventViewerDialog;
65class KOBeamPrefs; 65class KOBeamPrefs;
66class KSyncProfile; 66class KSyncProfile;
67class AlarmDialog; 67class AlarmDialog;
68class KCal::Attendee; 68class KCal::Attendee;
69 69
70namespace KCal { class FileStorage; } 70namespace KCal { class FileStorage; }
71 71
72using namespace KCal; 72using namespace KCal;
73 73
74/** 74/**
75 This is the main calendar widget. It provides the different vies on t he 75 This is the main calendar widget. It provides the different vies on t he
76 calendar data as well as the date navigator. It also handles synchronisation 76 calendar data as well as the date navigator. It also handles synchronisation
77 of the different views and controls the different dialogs like preferences, 77 of the different views and controls the different dialogs like preferences,
78 event editor, search dialog etc. 78 event editor, search dialog etc.
79 79
80 @short main calendar view widget 80 @short main calendar view widget
81 @author Cornelius Schumacher 81 @author Cornelius Schumacher
82*/ 82*/
83
84#include <qtextbrowser.h>
85#include <qtextcodec.h>
86
87class MissedAlarmTextBrowser : public QTextBrowser {
88 Q_OBJECT
89 public:
90 MissedAlarmTextBrowser(QWidget *parent, QPtrList<Incidence> alarms ,QDateTime start);
91 void setSource(const QString & n);
92
93 private:
94 Incidence * getNextInc(QDateTime start );
95 QPtrList<Incidence> mAlarms;
96 signals:
97 void showIncidence( QString uid);
98};
99
100
83class CalendarView : public KOrg::CalendarViewBase, public KCal::Calendar::Observer, public KSyncInterface 101class CalendarView : public KOrg::CalendarViewBase, public KCal::Calendar::Observer, public KSyncInterface
84{ 102{
85 Q_OBJECT 103 Q_OBJECT
86 public: 104 public:
87 /** 105 /**
88 Constructs a new calendar view widget. 106 Constructs a new calendar view widget.
89 107
90 @param calendar calendar document 108 @param calendar calendar document
91 @param parent parent window 109 @param parent parent window
92 @param name Qt internal widget object name 110 @param name Qt internal widget object name
93 */ 111 */
94 CalendarView( CalendarResources *calendar, QWidget *parent = 0, 112 CalendarView( CalendarResources *calendar, QWidget *parent = 0,
95 const char *name = 0 ); 113 const char *name = 0 );
96 CalendarView( Calendar *calendar, QWidget *parent = 0, 114 CalendarView( Calendar *calendar, QWidget *parent = 0,
97 const char *name = 0 ); 115 const char *name = 0 );
98 virtual ~CalendarView(); 116 virtual ~CalendarView();
99 117
100 Calendar *calendar() { return mCalendar; } 118 Calendar *calendar() { return mCalendar; }
101 119
102 KOViewManager *viewManager(); 120 KOViewManager *viewManager();
103 KODialogManager *dialogManager(); 121 KODialogManager *dialogManager();
104 122
105 QDate startDate(); 123 QDate startDate();
106 QDate endDate(); 124 QDate endDate();
107 125
108 QWidgetStack *viewStack(); 126 QWidgetStack *viewStack();
109 QWidget *leftFrame(); 127 QWidget *leftFrame();
110 128
111 DateNavigator *dateNavigator(); 129 DateNavigator *dateNavigator();
112 KDateNavigator *dateNavigatorWidget(); 130 KDateNavigator *dateNavigatorWidget();
113 131
114 void addView(KOrg::BaseView *); 132 void addView(KOrg::BaseView *);
115 void showView(KOrg::BaseView *); 133 void showView(KOrg::BaseView *);
116 KOEventViewerDialog* getEventViewerDialog(); 134 KOEventViewerDialog* getEventViewerDialog();
117 Incidence *currentSelection(); 135 Incidence *currentSelection();
118 136
119 signals: 137 signals:
120 void save (); 138 void save ();
121 void saveStopTimer (); 139 void saveStopTimer ();
122 void tempDisableBR(bool); 140 void tempDisableBR(bool);
123 /** This todo has been modified */ 141 /** This todo has been modified */
124 void todoModified(Todo *, int); 142 void todoModified(Todo *, int);
125 143
126 /** when change is made to options dialog, the topwidget will catch this 144 /** when change is made to options dialog, the topwidget will catch this
127 * and emit this signal which notifies all widgets which have registered 145 * and emit this signal which notifies all widgets which have registered
128 * for notification to update their settings. */ 146 * for notification to update their settings. */
129 void configChanged(); 147 void configChanged();
130 /** emitted when the topwidget is closing down, so that any attached 148 /** emitted when the topwidget is closing down, so that any attached
131 child windows can also close. */ 149 child windows can also close. */
132 void closingDown(); 150 void closingDown();
133 /** emitted right before we die */ 151 /** emitted right before we die */
134 void closed(QWidget *); 152 void closed(QWidget *);
135 153
136 /** Emitted when state of modified flag changes */ 154 /** Emitted when state of modified flag changes */
137 void modifiedChanged(bool); 155 void modifiedChanged(bool);
138 void signalmodified(); 156 void signalmodified();
139 157
140 /** Emitted when state of read-only flag changes */ 158 /** Emitted when state of read-only flag changes */
141 void readOnlyChanged(bool); 159 void readOnlyChanged(bool);
142 160
143 /** Emitted when the unit of navigation changes */ 161 /** Emitted when the unit of navigation changes */
144 void changeNavStringPrev(const QString &); 162 void changeNavStringPrev(const QString &);
145 void changeNavStringNext(const QString &); 163 void changeNavStringNext(const QString &);
146 164
147 /** Emitted when state of events selection has changed and user is organizer*/ 165 /** Emitted when state of events selection has changed and user is organizer*/
148 void organizerEventsSelected(bool); 166 void organizerEventsSelected(bool);
149 /** Emitted when state of events selection has changed and user is attendee*/ 167 /** Emitted when state of events selection has changed and user is attendee*/
150 void groupEventsSelected(bool); 168 void groupEventsSelected(bool);
151 /** 169 /**
152 Emitted when an incidence gets selected. If the selection is cleared the 170 Emitted when an incidence gets selected. If the selection is cleared the
153 signal is emitted with 0 as argument. 171 signal is emitted with 0 as argument.
154 */ 172 */
155 void incidenceSelected( Incidence * ); 173 void incidenceSelected( Incidence * );
156 /** Emitted, when a todoitem is selected or deselected. */ 174 /** Emitted, when a todoitem is selected or deselected. */
157 void todoSelected( bool ); 175 void todoSelected( bool );
158 176
159 /** 177 /**
160 Emitted, when clipboard content changes. Parameter indicates if paste 178 Emitted, when clipboard content changes. Parameter indicates if paste
161 is possible or not. 179 is possible or not.
162 */ 180 */
163 void pasteEnabled(bool); 181 void pasteEnabled(bool);
164 182
165 /** Emitted, when the number of incoming messages has changed. */ 183 /** Emitted, when the number of incoming messages has changed. */
166 void numIncomingChanged(int); 184 void numIncomingChanged(int);
167 185
168 /** Emitted, when the number of outgoing messages has changed. */ 186 /** Emitted, when the number of outgoing messages has changed. */
169 void numOutgoingChanged(int); 187 void numOutgoingChanged(int);
170 188
171 /** Send status message, which can e.g. be displayed in the status bar. */ 189 /** Send status message, which can e.g. be displayed in the status bar. */
172 void statusMessage(const QString &); 190 void statusMessage(const QString &);
173 191
174 void calendarViewExpanded( bool ); 192 void calendarViewExpanded( bool );
175 void updateSearchDialog(); 193 void updateSearchDialog();
176 194
177 195
178 public slots: 196 public slots:
197 void checkAlarms();
179 void slotprintSelInc(); 198 void slotprintSelInc();
180 void showNextAlarms(); 199 void showNextAlarms();
181 void showOpenError(); 200 void showOpenError();
182 void watchSavedFile(); 201 void watchSavedFile();
183 void recheckTimerAlarm(); 202 void recheckTimerAlarm();
184 void checkNextTimerAlarm(); 203 void checkNextTimerAlarm();
185 void addAlarm(const QDateTime &qdt, const QString &noti ); 204 void addAlarm(const QDateTime &qdt, const QString &noti );
186 void addSuspendAlarm(const QDateTime &qdt, const QString &noti ); 205 void addSuspendAlarm(const QDateTime &qdt, const QString &noti );
187 void removeAlarm(const QDateTime &qdt, const QString &noti ); 206 void removeAlarm(const QDateTime &qdt, const QString &noti );
188 207
189 /** options dialog made a changed to the configuration. we catch this 208 /** options dialog made a changed to the configuration. we catch this
190 * and notify all widgets which need to update their configuration. */ 209 * and notify all widgets which need to update their configuration. */
191 void updateConfig(); 210 void updateConfig();
192 211
193 void insertBirthdays(const QString& uid, const QStringList& birthdayList, 212 void insertBirthdays(const QString& uid, const QStringList& birthdayList,
194 const QStringList& anniversaryList, const QStringList& realNameList, 213 const QStringList& anniversaryList, const QStringList& realNameList,
195 const QStringList& emailList, const QStringList& assembledNameList, 214 const QStringList& emailList, const QStringList& assembledNameList,
196 const QStringList& uidList); 215 const QStringList& uidList);
197 216
198 /** 217 /**
199 Load calendar from file \a filename. If \a merge is true, load 218 Load calendar from file \a filename. If \a merge is true, load
200 calendar into existing one, if it is false, clear calendar, before 219 calendar into existing one, if it is false, clear calendar, before
201 loading. Return true, if calendar could be successfully loaded. 220 loading. Return true, if calendar could be successfully loaded.
202 */ 221 */
203 bool openCalendar(QString filename, bool merge=false); 222 bool openCalendar(QString filename, bool merge=false);
204 bool syncCalendar(QString filename,int mode = 0 ); 223 bool syncCalendar(QString filename,int mode = 0 );
205 224
206 /** 225 /**
207 Save calendar data to file. Return true if calendar could be 226 Save calendar data to file. Return true if calendar could be
208 successfully saved. 227 successfully saved.
209 */ 228 */
210 bool saveCalendar(QString filename); 229 bool saveCalendar(QString filename);
211 230
212 /** 231 /**
213 Close calendar. Clear calendar data and reset views to display an empty 232 Close calendar. Clear calendar data and reset views to display an empty
214 calendar. 233 calendar.
215 */ 234 */
216 void closeCalendar(); 235 void closeCalendar();
217 236
218 /** Archive old events of calendar */ 237 /** Archive old events of calendar */
219 void archiveCalendar(); 238 void archiveCalendar();
220 239
221 void showIncidence(); 240 void showIncidence();
222 void editIncidence(); 241 void editIncidence();
223 void editIncidenceDescription(); 242 void editIncidenceDescription();
224 void deleteIncidence(); 243 void deleteIncidence();
225 void cloneIncidence(); 244 void cloneIncidence();
226 void moveIncidence(); 245 void moveIncidence();
227 void beamIncidence(); 246 void beamIncidence();
228 void toggleCancelIncidence(); 247 void toggleCancelIncidence();
229 248
230 /** create an editeventwin with supplied date/time, and if bool is true, 249 /** create an editeventwin with supplied date/time, and if bool is true,
231 * make the event take all day. */ 250 * make the event take all day. */
232 void newEvent(QDateTime, QDateTime, bool allDay ); 251 void newEvent(QDateTime, QDateTime, bool allDay );
233 void newEvent(QDateTime, QDateTime); 252 void newEvent(QDateTime, QDateTime);
234 void newEvent(QDateTime fh); 253 void newEvent(QDateTime fh);
235 void newEvent(QDate dt); 254 void newEvent(QDate dt);
236 /** create new event without having a date hint. Takes current date as 255 /** create new event without having a date hint. Takes current date as
237 default hint. */ 256 default hint. */
238 void newEvent(); 257 void newEvent();
239 void newFloatingEvent(); 258 void newFloatingEvent();
240 259
241 /** Create a read-only viewer dialog for the supplied incidence. It calls the correct showXXX method*/ 260 /** Create a read-only viewer dialog for the supplied incidence. It calls the correct showXXX method*/
242 void showIncidence(Incidence *); 261 void showIncidence(Incidence *);
262 void showIncidence(QString uid);
243 /** Create an editor for the supplied incidence. It calls the correct editXXX method*/ 263 /** Create an editor for the supplied incidence. It calls the correct editXXX method*/
244 void editIncidence(Incidence *); 264 void editIncidence(Incidence *);
245 /** Delete the supplied incidence. It calls the correct deleteXXX method*/ 265 /** Delete the supplied incidence. It calls the correct deleteXXX method*/
246 void deleteIncidence(Incidence *); 266 void deleteIncidence(Incidence *);
247 void cloneIncidence(Incidence *); 267 void cloneIncidence(Incidence *);
248 void cancelIncidence(Incidence *); 268 void cancelIncidence(Incidence *);
249 /** Create an editor for the supplied event. */ 269 /** Create an editor for the supplied event. */
250 void editEvent(Event *); 270 void editEvent(Event *);
251 /** Delete the supplied event. */ 271 /** Delete the supplied event. */
252 void deleteEvent(Event *); 272 void deleteEvent(Event *);
253 /** Delete the event with the given unique ID. Returns false, if event wasn't 273 /** Delete the event with the given unique ID. Returns false, if event wasn't
254 found. */ 274 found. */
255 bool deleteEvent(const QString &uid); 275 bool deleteEvent(const QString &uid);
256 /** Create a read-only viewer dialog for the supplied event. */ 276 /** Create a read-only viewer dialog for the supplied event. */
257 void showEvent(Event *); 277 void showEvent(Event *);
258 278
259 void editJournal(Journal *); 279 void editJournal(Journal *);
260 void showJournal(Journal *); 280 void showJournal(Journal *);
261 void deleteJournal(Journal *); 281 void deleteJournal(Journal *);
262 /** Create an editor dialog for a todo */ 282 /** Create an editor dialog for a todo */
263 void editTodo(Todo *); 283 void editTodo(Todo *);
264 /** Create a read-only viewer dialog for the supplied todo */ 284 /** Create a read-only viewer dialog for the supplied todo */
265 void showTodo(Todo *); 285 void showTodo(Todo *);
266 /** create new todo */ 286 /** create new todo */
267 void newTodo(); 287 void newTodo();
268 void newTodoDateTime(QDateTime, bool allday); 288 void newTodoDateTime(QDateTime, bool allday);
269 /** create new todo with a parent todo */ 289 /** create new todo with a parent todo */
270 void newSubTodo(); 290 void newSubTodo();
271 /** create new todo with a parent todo */ 291 /** create new todo with a parent todo */
272 void newSubTodo(Todo *); 292 void newSubTodo(Todo *);
273 /** Delete todo */ 293 /** Delete todo */
274 void deleteTodo(Todo *); 294 void deleteTodo(Todo *);
275 295
276 296
277 /** Check if clipboard contains vCalendar event. The signal pasteEnabled() is 297 /** Check if clipboard contains vCalendar event. The signal pasteEnabled() is
278 * emitted as result. */ 298 * emitted as result. */
279 void checkClipboard(); 299 void checkClipboard();
280 300
281 /** using the KConfig associated with the kapp variable, read in the 301 /** using the KConfig associated with the kapp variable, read in the
282 * settings from the config file. 302 * settings from the config file.
283 */ 303 */
284 void readSettings(); 304 void readSettings();
285 305
286 /** write current state to config file. */ 306 /** write current state to config file. */
287 void writeSettings(); 307 void writeSettings();
288 308
289 /** read settings for calendar filters */ 309 /** read settings for calendar filters */
290 void readFilterSettings(KConfig *config); 310 void readFilterSettings(KConfig *config);
291 311
292 /** write settings for calendar filters */ 312 /** write settings for calendar filters */
293 void writeFilterSettings(KConfig *config); 313 void writeFilterSettings(KConfig *config);
294 314
295 /** passes on the message that an event has changed to the currently 315 /** passes on the message that an event has changed to the currently
296 * activated view so that it can make appropriate display changes. */ 316 * activated view so that it can make appropriate display changes. */
297 void changeEventDisplay(Event *, int); 317 void changeEventDisplay(Event *, int);
298 void changeIncidenceDisplay(Incidence *, int); 318 void changeIncidenceDisplay(Incidence *, int);
299 void changeTodoDisplay(Todo *, int); 319 void changeTodoDisplay(Todo *, int);
300 320
301 void eventAdded(Event *); 321 void eventAdded(Event *);
302 void eventChanged(Event *); 322 void eventChanged(Event *);
303 void eventToBeDeleted(Event *); 323 void eventToBeDeleted(Event *);
304 void eventDeleted(); 324 void eventDeleted();
305 325
306 void todoAdded(Todo *); 326 void todoAdded(Todo *);
307 void todoChanged(Todo *); 327 void todoChanged(Todo *);
308 void todoToBeDeleted(Todo *); 328 void todoToBeDeleted(Todo *);
309 void todoDeleted(); 329 void todoDeleted();
310 330
311 void updateView(const QDate &start, const QDate &end); 331 void updateView(const QDate &start, const QDate &end);
312 void updateView(); 332 void updateView();
313 333
314 /** Full update of visible todo views */ 334 /** Full update of visible todo views */
315 void updateTodoViews(); 335 void updateTodoViews();
316 336
317 void updateUnmanagedViews(); 337 void updateUnmanagedViews();
318 338
319 /** cut the current appointment to the clipboard */ 339 /** cut the current appointment to the clipboard */
320 void edit_cut(); 340 void edit_cut();
321 341
322 /** copy the current appointment(s) to the clipboard */ 342 /** copy the current appointment(s) to the clipboard */
323 void edit_copy(); 343 void edit_copy();
324 344
325 /** paste the current vobject(s) in the clipboard buffer into calendar */ 345 /** paste the current vobject(s) in the clipboard buffer into calendar */
326 void edit_paste(); 346 void edit_paste();
327 347
328 /** edit viewing and configuration options. */ 348 /** edit viewing and configuration options. */
329 void edit_options(); 349 void edit_options();
330 /** 350 /**
331 Functions for printing, previewing a print, and setting up printing 351 Functions for printing, previewing a print, and setting up printing
332 parameters. 352 parameters.
333 */ 353 */
334 void print(); 354 void print();
335 void printSetup(); 355 void printSetup();
336 void printPreview(); 356 void printPreview();
337 357
338 /** Export as iCalendar file */ 358 /** Export as iCalendar file */
339 void exportICalendar(); 359 void exportICalendar();
340 360
341 /** Export as vCalendar file */ 361 /** Export as vCalendar file */
342 bool exportVCalendar( QString fn); 362 bool exportVCalendar( QString fn);
343 363
344 /** pop up a dialog to show an existing appointment. */ 364 /** pop up a dialog to show an existing appointment. */
345 void appointment_show(); 365 void appointment_show();
346 /** 366 /**
347 * pop up an Appointment Dialog to edit an existing appointment.Get 367 * pop up an Appointment Dialog to edit an existing appointment.Get
348 * information on the appointment from the list of unique IDs that is 368 * information on the appointment from the list of unique IDs that is
349 * currently in the View, called currIds. 369 * currently in the View, called currIds.
350 */ 370 */
351 void appointment_edit(); 371 void appointment_edit();
352 /** 372 /**
353 * pop up dialog confirming deletion of currently selected event in the 373 * pop up dialog confirming deletion of currently selected event in the
354 * View. 374 * View.
355 */ 375 */
356 void appointment_delete(); 376 void appointment_delete();
357 377
358 /** mails the currently selected event to a particular user as a vCalendar 378 /** mails the currently selected event to a particular user as a vCalendar
359 attachment. */ 379 attachment. */
360 void action_mail(); 380 void action_mail();
361 381
362 /* frees a subtodo from it's relation */ 382 /* frees a subtodo from it's relation */
363 void todo_unsub( Todo * ); 383 void todo_unsub( Todo * );
364 void todo_resub( Todo * parent, Todo * sub ); 384 void todo_resub( Todo * parent, Todo * sub );
365 385
366 /** Take ownership of selected event. */ 386 /** Take ownership of selected event. */
367 void takeOverEvent(); 387 void takeOverEvent();
368 388
369 /** Take ownership of all events in calendar. */ 389 /** Take ownership of all events in calendar. */
370 void takeOverCalendar(); 390 void takeOverCalendar();
371 391
372 /** query whether or not the calendar is "dirty". */ 392 /** query whether or not the calendar is "dirty". */
373 bool isModified(); 393 bool isModified();
374 /** set the state of calendar. Modified means "dirty", i.e. needing a save. */ 394 /** set the state of calendar. Modified means "dirty", i.e. needing a save. */
375 void setModified(bool modified=true); 395 void setModified(bool modified=true);
376 396
377 /** query if the calendar is read-only. */ 397 /** query if the calendar is read-only. */
378 bool isReadOnly(); 398 bool isReadOnly();
379 /** set state of calendar to read-only */ 399 /** set state of calendar to read-only */
380 void setReadOnly(bool readOnly=true); 400 void setReadOnly(bool readOnly=true);
381 401
382 void eventUpdated(Incidence *); 402 void eventUpdated(Incidence *);
383 403
384 /* iTIP scheduling actions */ 404 /* iTIP scheduling actions */
385 void schedule_publish(Incidence *incidence = 0); 405 void schedule_publish(Incidence *incidence = 0);
386 void schedule_request(Incidence *incidence = 0); 406 void schedule_request(Incidence *incidence = 0);
387 void schedule_refresh(Incidence *incidence = 0); 407 void schedule_refresh(Incidence *incidence = 0);
388 void schedule_cancel(Incidence *incidence = 0); 408 void schedule_cancel(Incidence *incidence = 0);
389 void schedule_add(Incidence *incidence = 0); 409 void schedule_add(Incidence *incidence = 0);
390 void schedule_reply(Incidence *incidence = 0); 410 void schedule_reply(Incidence *incidence = 0);
391 void schedule_counter(Incidence *incidence = 0); 411 void schedule_counter(Incidence *incidence = 0);
392 void schedule_declinecounter(Incidence *incidence = 0); 412 void schedule_declinecounter(Incidence *incidence = 0);
393 void schedule_publish_freebusy(int daysToPublish = 30); 413 void schedule_publish_freebusy(int daysToPublish = 30);
394 414
395 void openAddressbook(); 415 void openAddressbook();
396 416
397 void editFilters(); 417 void editFilters();
398 void toggleFilerEnabled(); 418 void toggleFilerEnabled();
399 QPtrList<CalFilter> filters(); 419 QPtrList<CalFilter> filters();
400 void toggleFilter(); 420 void toggleFilter();
401 void showFilter(bool visible); 421 void showFilter(bool visible);
402 void updateFilter(); 422 void updateFilter();
403 void filterEdited(); 423 void filterEdited();
404 void selectFilter( int ); 424 void selectFilter( int );
405 KOFilterView *filterView(); 425 KOFilterView *filterView();
406 426
407 void showIntro(); 427 void showIntro();
408 428
409 /** Move the curdatepient view date to today */ 429 /** Move the curdatepient view date to today */
410 void goToday(); 430 void goToday();
411 431
412 /** Move to the next date(s) in the current view */ 432 /** Move to the next date(s) in the current view */
413 void goNext(); 433 void goNext();
414 434
415 /** Move to the previous date(s) in the current view */ 435 /** Move to the previous date(s) in the current view */
416 void goPrevious(); 436 void goPrevious();
417 /** Move to the next date(s) in the current view */ 437 /** Move to the next date(s) in the current view */
418 void goNextMonth(); 438 void goNextMonth();
419 439
420 /** Move to the previous date(s) in the current view */ 440 /** Move to the previous date(s) in the current view */
421 void goPreviousMonth(); 441 void goPreviousMonth();
422 442
423 void toggleExpand(); 443 void toggleExpand();
424 void toggleDateNavigatorWidget(); 444 void toggleDateNavigatorWidget();
425 void toggleAllDaySize(); 445 void toggleAllDaySize();
426 void dialogClosing(Incidence *); 446 void dialogClosing(Incidence *);
427 447
428 /** Look for new messages in the inbox */ 448 /** Look for new messages in the inbox */
429 void lookForIncomingMessages(); 449 void lookForIncomingMessages();
430 /** Look for new messages in the outbox */ 450 /** Look for new messages in the outbox */
431 void lookForOutgoingMessages(); 451 void lookForOutgoingMessages();
432 452
433 void processMainViewSelection( Incidence * ); 453 void processMainViewSelection( Incidence * );
434 void processTodoListSelection( Incidence * ); 454 void processTodoListSelection( Incidence * );
435 455
436 void processIncidenceSelection( Incidence * ); 456 void processIncidenceSelection( Incidence * );
437 457
438 void purgeCompleted(); 458 void purgeCompleted();
439 bool removeCompletedSubTodos( Todo* ); 459 bool removeCompletedSubTodos( Todo* );
440 void slotCalendarChanged(); 460 void slotCalendarChanged();
441 bool importBday(); 461 bool importBday();
442 bool addAnniversary( QDate data, QString name, KCal::Attendee* a , bool birthday ); 462 bool addAnniversary( QDate data, QString name, KCal::Attendee* a , bool birthday );
443 bool importQtopia( const QString &categoriesFile, 463 bool importQtopia( const QString &categoriesFile,
444 const QString &datebookFile, 464 const QString &datebookFile,
445 const QString &tasklistFile ); 465 const QString &tasklistFile );
446 void syncExternal( int mode ); 466 void syncExternal( int mode );
447 void slotSelectPickerDate( QDate ) ; 467 void slotSelectPickerDate( QDate ) ;
448 void showDatePicker() ; 468 void showDatePicker() ;
449 void showDatePickerPopup() ; 469 void showDatePickerPopup() ;
450 void moveIncidence(Incidence *) ; 470 void moveIncidence(Incidence *) ;
451 void beamIncidence(Incidence *) ; 471 void beamIncidence(Incidence *) ;
452 void beamCalendar() ; 472 void beamCalendar() ;
453 void beamFilteredCalendar() ; 473 void beamFilteredCalendar() ;
454 void beamIncidenceList(QPtrList<Incidence>) ; 474 void beamIncidenceList(QPtrList<Incidence>) ;
455 void manageCategories(); 475 void manageCategories();
456 int addCategories(); 476 int addCategories();
457 void removeCategories(); 477 void removeCategories();
458 void setSyncDevice( QString ); 478 void setSyncDevice( QString );
459 void setSyncName( QString ); 479 void setSyncName( QString );
460 void showDay( QDate ); 480 void showDay( QDate );
461 void undo_delete(); 481 void undo_delete();
462 protected slots: 482 protected slots:
463 void resetFocus(); 483 void resetFocus();
464 void slotViewerClosed(); 484 void slotViewerClosed();
465 void timerAlarm(); 485 void timerAlarm();
466 void suspendAlarm(); 486 void suspendAlarm();
467 void beamDone( Ir *ir ); 487 void beamDone( Ir *ir );
468 /** Select a view or adapt the current view to display the specified dates. */ 488 /** Select a view or adapt the current view to display the specified dates. */
469 void showDates( const KCal::DateList & ); 489 void showDates( const KCal::DateList & );
470 void selectWeekNum ( int ); 490 void selectWeekNum ( int );
471 491
472 public: 492 public:
473 // show a standard warning 493 // show a standard warning
474 // returns KMsgBox::yesNoCancel() 494 // returns KMsgBox::yesNoCancel()
475 int msgCalModified(); 495 int msgCalModified();
476 virtual bool sync(KSyncManager* manager, QString filename, int mode); 496 virtual bool sync(KSyncManager* manager, QString filename, int mode);
477 497
478 virtual bool syncExternal(KSyncManager* manager, QString resource); 498 virtual bool syncExternal(KSyncManager* manager, QString resource);
479 virtual void removeSyncInfo( QString syncProfile); 499 virtual void removeSyncInfo( QString syncProfile);
480 void setSyncManager(KSyncManager* manager); 500 void setSyncManager(KSyncManager* manager);
481 void setLoadedFileVersion(QDateTime); 501 void setLoadedFileVersion(QDateTime);
482 bool checkFileVersion(QString fn); 502 bool checkFileVersion(QString fn);
483 bool checkFileChanged(QString fn); 503 bool checkFileChanged(QString fn);
484 Event* getLastSyncEvent(); 504 Event* getLastSyncEvent();
485 /** Adapt navigation units correpsonding to step size of navigation of the 505 /** Adapt navigation units correpsonding to step size of navigation of the
486 * current view. 506 * current view.
487 */ 507 */
488 void adaptNavigationUnits(); 508 void adaptNavigationUnits();
489 bool synchronizeCalendar( Calendar* local, Calendar* remote, int mode ); 509 bool synchronizeCalendar( Calendar* local, Calendar* remote, int mode );
490 int takeEvent( Incidence* local, Incidence* remote, int mode, bool full = false ); 510 int takeEvent( Incidence* local, Incidence* remote, int mode, bool full = false );
491 //Attendee* getYourAttendee(Event *event); 511 //Attendee* getYourAttendee(Event *event);
492 void setBlockShowDates( bool b ) { mBlockShowDates = b ;} 512 void setBlockShowDates( bool b ) { mBlockShowDates = b ;}
493 protected: 513 protected:
494 void schedule(Scheduler::Method, Incidence *incidence = 0); 514 void schedule(Scheduler::Method, Incidence *incidence = 0);
495 515
496 // returns KMsgBox::OKCandel() 516 // returns KMsgBox::OKCandel()
497 int msgItemDelete(const QString name); 517 int msgItemDelete(const QString name);
498 void showEventEditor(); 518 void showEventEditor();
499 void showTodoEditor(); 519 void showTodoEditor();
500 void writeLocale(); 520 void writeLocale();
501 Todo *selectedTodo(); 521 Todo *selectedTodo();
502 522
503 private: 523 private:
504 QDateTime mNextAlarmDateTime; 524 QDateTime mNextAlarmDateTime;
505 bool mViewerCallerIsSearchDialog; 525 bool mViewerCallerIsSearchDialog;
506 bool mBlockShowDates; 526 bool mBlockShowDates;
507 KSyncManager* mSyncManager; 527 KSyncManager* mSyncManager;
508 AlarmDialog * mAlarmDialog; 528 AlarmDialog * mAlarmDialog;
509 QString mAlarmNotification; 529 QString mAlarmNotification;
510 QString mSuspendAlarmNotification; 530 QString mSuspendAlarmNotification;
511 QTimer* mSuspendTimer; 531 QTimer* mSuspendTimer;
512 QTimer* mAlarmTimer; 532 QTimer* mAlarmTimer;
513 QTimer* mRecheckAlarmTimer; 533 QTimer* mRecheckAlarmTimer;
514 void computeAlarm( QString ); 534 void computeAlarm( QString );
515 void startAlarm( QString, QString ); 535 void startAlarm( QString, QString );
516 void setSyncEventsReadOnly(); 536 void setSyncEventsReadOnly();
517 537
518 QDateTime loadedFileVersion; 538 QDateTime loadedFileVersion;
519 void checkExternSyncEvent( QPtrList<Event> lastSync , Incidence* toDelete ); 539 void checkExternSyncEvent( QPtrList<Event> lastSync , Incidence* toDelete );
520 void checkExternalId( Incidence * inc ); 540 void checkExternalId( Incidence * inc );
521 int mGlobalSyncMode; 541 int mGlobalSyncMode;
522 QString mCurrentSyncDevice; 542 QString mCurrentSyncDevice;
523 QString mCurrentSyncName; 543 QString mCurrentSyncName;
524 KOBeamPrefs* beamDialog; 544 KOBeamPrefs* beamDialog;
525 void init(); 545 void init();
526 int mDatePickerMode; 546 int mDatePickerMode;
527 bool mFlagEditDescription; 547 bool mFlagEditDescription;
528 QDateTime mLastCalendarSync; 548 QDateTime mLastCalendarSync;
529 void createPrinter(); 549 void createPrinter();
530 550
531 void calendarModified( bool, Calendar * ); 551 void calendarModified( bool, Calendar * );
532 552
533 CalPrinter *mCalPrinter; 553 CalPrinter *mCalPrinter;
534 554
535 QSplitter *mPanner; 555 QSplitter *mPanner;
536 QSplitter *mLeftSplitter; 556 QSplitter *mLeftSplitter;
537 KDGanttMinimizeSplitter *mLeftFrame, *mMainFrame; 557 KDGanttMinimizeSplitter *mLeftFrame, *mMainFrame;
538 QWidgetStack *mRightFrame; 558 QWidgetStack *mRightFrame;
539 559
540 KDatePicker* mDatePicker; 560 KDatePicker* mDatePicker;
541 QVBox* mDateFrame; 561 QVBox* mDateFrame;
542 562
543 DateNavigatorContainer *mDateNavigator; // widget showing small month view. 563 DateNavigatorContainer *mDateNavigator; // widget showing small month view.
544 564
545 KOFilterView *mFilterView; 565 KOFilterView *mFilterView;
546 566
547 ResourceView *mResourceView; 567 ResourceView *mResourceView;
548 568
549 // calendar object for this viewing instance 569 // calendar object for this viewing instance
550 Calendar *mCalendar; 570 Calendar *mCalendar;
551 571
552 CalendarResourceManager *mResourceManager; 572 CalendarResourceManager *mResourceManager;
553 573
554 FileStorage *mStorage; 574 FileStorage *mStorage;
555 575
556 DateNavigator *mNavigator; 576 DateNavigator *mNavigator;
557 577
558 KOViewManager *mViewManager; 578 KOViewManager *mViewManager;
559 KODialogManager *mDialogManager; 579 KODialogManager *mDialogManager;
560 580
561 // Calendar filters 581 // Calendar filters
562 QPtrList<CalFilter> mFilters; 582 QPtrList<CalFilter> mFilters;
563 583
564 // various housekeeping variables. 584 // various housekeeping variables.
565 bool mModified; // flag indicating if calendar is modified 585 bool mModified; // flag indicating if calendar is modified
566 bool mReadOnly; // flag indicating if calendar is read-only 586 bool mReadOnly; // flag indicating if calendar is read-only
567 QDate mSaveSingleDate; 587 QDate mSaveSingleDate;
568 588
569 Incidence *mSelectedIncidence; 589 Incidence *mSelectedIncidence;
570 Incidence *mMoveIncidence; 590 Incidence *mMoveIncidence;
571 QDate mMoveIncidenceOldDate; 591 QDate mMoveIncidenceOldDate;
572 KOTodoView *mTodoList; 592 KOTodoView *mTodoList;
573 KOEventEditor * mEventEditor; 593 KOEventEditor * mEventEditor;
574 KOTodoEditor * mTodoEditor; 594 KOTodoEditor * mTodoEditor;
575 KOEventViewerDialog * mEventViewerDialog; 595 KOEventViewerDialog * mEventViewerDialog;
576 void keyPressEvent ( QKeyEvent *e) ; 596 void keyPressEvent ( QKeyEvent *e) ;
577 //QMap<Incidence*,KOIncidenceEditor*> mDialogList; 597 //QMap<Incidence*,KOIncidenceEditor*> mDialogList;
578}; 598};
579 599
580 600
581class CalendarViewVisitor : public Incidence::Visitor 601class CalendarViewVisitor : public Incidence::Visitor
582{ 602{
583 public: 603 public:
584 CalendarViewVisitor() : mView( 0 ) {} 604 CalendarViewVisitor() : mView( 0 ) {}
585 605
586 bool act( Incidence *incidence, CalendarView *view ) 606 bool act( Incidence *incidence, CalendarView *view )
587 { 607 {
588 mView = view; 608 mView = view;
589 return incidence->accept( *this ); 609 return incidence->accept( *this );
590 } 610 }
591 611
592 protected: 612 protected:
593 CalendarView *mView; 613 CalendarView *mView;
594}; 614};
595 615
596class ShowIncidenceVisitor : public CalendarViewVisitor 616class ShowIncidenceVisitor : public CalendarViewVisitor
597{ 617{
598 protected: 618 protected:
599 bool visit( Event *event ) { mView->showEvent( event ); return true; } 619 bool visit( Event *event ) { mView->showEvent( event ); return true; }
600 bool visit( Todo *todo ) { mView->showTodo( todo ); return true; } 620 bool visit( Todo *todo ) { mView->showTodo( todo ); return true; }
601 bool visit( Journal * j ) { mView->showJournal( j );return true; } 621 bool visit( Journal * j ) { mView->showJournal( j );return true; }
602}; 622};
603 623
604class EditIncidenceVisitor : public CalendarViewVisitor 624class EditIncidenceVisitor : public CalendarViewVisitor
605{ 625{
606 protected: 626 protected:
607 bool visit( Event *event ) { mView->editEvent( event ); return true; } 627 bool visit( Event *event ) { mView->editEvent( event ); return true; }
608 bool visit( Todo *todo ) { mView->editTodo( todo ); return true; } 628 bool visit( Todo *todo ) { mView->editTodo( todo ); return true; }
609 bool visit( Journal *j ) { mView->editJournal( j); return true; } 629 bool visit( Journal *j ) { mView->editJournal( j); return true; }
610}; 630};
611 631
612class DeleteIncidenceVisitor : public CalendarViewVisitor 632class DeleteIncidenceVisitor : public CalendarViewVisitor
613{ 633{
614 protected: 634 protected:
615 bool visit( Event *event ) { mView->deleteEvent( event ); return true; } 635 bool visit( Event *event ) { mView->deleteEvent( event ); return true; }
616 bool visit( Todo *todo ) { mView->deleteTodo( todo ); return true; } 636 bool visit( Todo *todo ) { mView->deleteTodo( todo ); return true; }
617 bool visit( Journal * j) {mView->deleteJournal( j ); return true; } 637 bool visit( Journal * j) {mView->deleteJournal( j ); return true; }
618}; 638};
619 639
620#endif 640#endif
diff --git a/korganizer/kotodoview.cpp b/korganizer/kotodoview.cpp
index 8fe9999..5aaf360 100644
--- a/korganizer/kotodoview.cpp
+++ b/korganizer/kotodoview.cpp
@@ -1,993 +1,995 @@
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 28
29#include <qinputdialog.h> 29#include <qinputdialog.h>
30 30
31#include <qvbox.h> 31#include <qvbox.h>
32#include <kdebug.h> 32#include <kdebug.h>
33#include "koprefs.h" 33#include "koprefs.h"
34#include <klocale.h> 34#include <klocale.h>
35#include <kglobal.h> 35#include <kglobal.h>
36#include <kiconloader.h> 36#include <kiconloader.h>
37#include <kmessagebox.h> 37#include <kmessagebox.h>
38 38
39#include <libkcal/icaldrag.h> 39#include <libkcal/icaldrag.h>
40#include <libkcal/vcaldrag.h> 40#include <libkcal/vcaldrag.h>
41#include <libkcal/calfilter.h> 41#include <libkcal/calfilter.h>
42#include <libkcal/dndfactory.h> 42#include <libkcal/dndfactory.h>
43#include <libkcal/calendarresources.h> 43#include <libkcal/calendarresources.h>
44#include <libkcal/resourcecalendar.h> 44#include <libkcal/resourcecalendar.h>
45#include <kresources/resourceselectdialog.h> 45#include <kresources/resourceselectdialog.h>
46#include <libkcal/kincidenceformatter.h> 46#include <libkcal/kincidenceformatter.h>
47#ifndef DESKTOP_VERSION 47#ifndef DESKTOP_VERSION
48#include <qpe/qpeapplication.h> 48#include <qpe/qpeapplication.h>
49#else 49#else
50#include <qapplication.h> 50#include <qapplication.h>
51#endif 51#endif
52#ifndef KORG_NOPRINTER 52#ifndef KORG_NOPRINTER
53#include "calprinter.h" 53#include "calprinter.h"
54#endif 54#endif
55#include "docprefs.h" 55#include "docprefs.h"
56 56
57#include "kotodoview.h" 57#include "kotodoview.h"
58using namespace KOrg; 58using namespace KOrg;
59 59
60 60
61class KOTodoViewWhatsThis :public QWhatsThis 61class KOTodoViewWhatsThis :public QWhatsThis
62{ 62{
63public: 63public:
64 KOTodoViewWhatsThis( QWidget *wid, KOTodoView* view ) : QWhatsThis( wid ), _wid(wid),_view (view) { }; 64 KOTodoViewWhatsThis( QWidget *wid, KOTodoView* view ) : QWhatsThis( wid ), _wid(wid),_view (view) { };
65 65
66protected: 66protected:
67 virtual QString text( const QPoint& p) 67 virtual QString text( const QPoint& p)
68 { 68 {
69 return _view->getWhatsThisText(p) ; 69 return _view->getWhatsThisText(p) ;
70 } 70 }
71private: 71private:
72 QWidget* _wid; 72 QWidget* _wid;
73 KOTodoView * _view; 73 KOTodoView * _view;
74}; 74};
75 75
76KOTodoListView::KOTodoListView(Calendar *calendar,QWidget *parent, 76KOTodoListView::KOTodoListView(Calendar *calendar,QWidget *parent,
77 const char *name) : 77 const char *name) :
78 KListView(parent,name) 78 KListView(parent,name)
79{ 79{
80 mName = QString ( name ); 80 mName = QString ( name );
81 mCalendar = calendar; 81 mCalendar = calendar;
82#ifndef DESKTOP_VERSION 82#ifndef DESKTOP_VERSION
83 QPEApplication::setStylusOperation(viewport(), QPEApplication::RightOnHold ); 83 QPEApplication::setStylusOperation(viewport(), QPEApplication::RightOnHold );
84#endif 84#endif
85 mOldCurrent = 0; 85 mOldCurrent = 0;
86 mMousePressed = false; 86 mMousePressed = false;
87 87
88 setAcceptDrops(true); 88 setAcceptDrops(true);
89 viewport()->setAcceptDrops(true); 89 viewport()->setAcceptDrops(true);
90 int size = 16; 90 int size = 16;
91 if (qApp->desktop()->width() < 300 ) 91 if (qApp->desktop()->width() < 300 )
92 size = 12; 92 size = 12;
93 setTreeStepSize( size + 6 ); 93 setTreeStepSize( size + 6 );
94 94
95} 95}
96 96
97void KOTodoListView::contentsDragEnterEvent(QDragEnterEvent *e) 97void KOTodoListView::contentsDragEnterEvent(QDragEnterEvent *e)
98{ 98{
99#ifndef KORG_NODND 99#ifndef KORG_NODND
100// kdDebug() << "KOTodoListView::contentsDragEnterEvent" << endl; 100// kdDebug() << "KOTodoListView::contentsDragEnterEvent" << endl;
101 if ( !ICalDrag::canDecode( e ) && !VCalDrag::canDecode( e ) && 101 if ( !ICalDrag::canDecode( e ) && !VCalDrag::canDecode( e ) &&
102 !QTextDrag::canDecode( e ) ) { 102 !QTextDrag::canDecode( e ) ) {
103 e->ignore(); 103 e->ignore();
104 return; 104 return;
105 } 105 }
106 106
107 mOldCurrent = currentItem(); 107 mOldCurrent = currentItem();
108#endif 108#endif
109} 109}
110 110
111 111
112void KOTodoListView::contentsDragMoveEvent(QDragMoveEvent *e) 112void KOTodoListView::contentsDragMoveEvent(QDragMoveEvent *e)
113{ 113{
114#ifndef KORG_NODND 114#ifndef KORG_NODND
115// kdDebug() << "KOTodoListView::contentsDragMoveEvent" << endl; 115// kdDebug() << "KOTodoListView::contentsDragMoveEvent" << endl;
116 116
117 if ( !ICalDrag::canDecode( e ) && !VCalDrag::canDecode( e ) && 117 if ( !ICalDrag::canDecode( e ) && !VCalDrag::canDecode( e ) &&
118 !QTextDrag::canDecode( e ) ) { 118 !QTextDrag::canDecode( e ) ) {
119 e->ignore(); 119 e->ignore();
120 return; 120 return;
121 } 121 }
122 122
123 e->accept(); 123 e->accept();
124#endif 124#endif
125} 125}
126 126
127void KOTodoListView::contentsDragLeaveEvent(QDragLeaveEvent *) 127void KOTodoListView::contentsDragLeaveEvent(QDragLeaveEvent *)
128{ 128{
129#ifndef KORG_NODND 129#ifndef KORG_NODND
130// kdDebug() << "KOTodoListView::contentsDragLeaveEvent" << endl; 130// kdDebug() << "KOTodoListView::contentsDragLeaveEvent" << endl;
131 131
132 setCurrentItem(mOldCurrent); 132 setCurrentItem(mOldCurrent);
133 setSelected(mOldCurrent,true); 133 setSelected(mOldCurrent,true);
134#endif 134#endif
135} 135}
136 136
137void KOTodoListView::contentsDropEvent(QDropEvent *e) 137void KOTodoListView::contentsDropEvent(QDropEvent *e)
138{ 138{
139#ifndef KORG_NODND 139#ifndef KORG_NODND
140// kdDebug() << "KOTodoListView::contentsDropEvent" << endl; 140// kdDebug() << "KOTodoListView::contentsDropEvent" << endl;
141 141
142 if ( !ICalDrag::canDecode( e ) && !VCalDrag::canDecode( e ) && 142 if ( !ICalDrag::canDecode( e ) && !VCalDrag::canDecode( e ) &&
143 !QTextDrag::canDecode( e ) ) { 143 !QTextDrag::canDecode( e ) ) {
144 e->ignore(); 144 e->ignore();
145 return; 145 return;
146 } 146 }
147 147
148 DndFactory factory( mCalendar ); 148 DndFactory factory( mCalendar );
149 Todo *todo = factory.createDropTodo(e); 149 Todo *todo = factory.createDropTodo(e);
150 150
151 if (todo) { 151 if (todo) {
152 e->acceptAction(); 152 e->acceptAction();
153 153
154 KOTodoViewItem *destination = 154 KOTodoViewItem *destination =
155 (KOTodoViewItem *)itemAt(contentsToViewport(e->pos())); 155 (KOTodoViewItem *)itemAt(contentsToViewport(e->pos()));
156 Todo *destinationEvent = 0; 156 Todo *destinationEvent = 0;
157 if (destination) destinationEvent = destination->todo(); 157 if (destination) destinationEvent = destination->todo();
158 158
159 Todo *existingTodo = mCalendar->todo(todo->uid()); 159 Todo *existingTodo = mCalendar->todo(todo->uid());
160 160
161 if(existingTodo) { 161 if(existingTodo) {
162 Incidence *to = destinationEvent; 162 Incidence *to = destinationEvent;
163 while(to) { 163 while(to) {
164 if (to->uid() == todo->uid()) { 164 if (to->uid() == todo->uid()) {
165 KMessageBox::sorry(this, 165 KMessageBox::sorry(this,
166 i18n("Cannot move Todo to itself\nor a child of itself"), 166 i18n("Cannot move Todo to itself\nor a child of itself"),
167 i18n("Drop Todo")); 167 i18n("Drop Todo"));
168 delete todo; 168 delete todo;
169 return; 169 return;
170 } 170 }
171 to = to->relatedTo(); 171 to = to->relatedTo();
172 } 172 }
173 internalDrop = true; 173 internalDrop = true;
174 if ( destinationEvent ) 174 if ( destinationEvent )
175 reparentTodoSignal( destinationEvent, existingTodo ); 175 reparentTodoSignal( destinationEvent, existingTodo );
176 else 176 else
177 unparentTodoSignal(existingTodo); 177 unparentTodoSignal(existingTodo);
178 delete todo; 178 delete todo;
179 } else { 179 } else {
180 mCalendar->addTodo(todo); 180 mCalendar->addTodo(todo);
181 emit todoDropped(todo, KOGlobals::EVENTADDED); 181 emit todoDropped(todo, KOGlobals::EVENTADDED);
182 if ( destinationEvent ) 182 if ( destinationEvent )
183 reparentTodoSignal( destinationEvent, todo ); 183 reparentTodoSignal( destinationEvent, todo );
184 } 184 }
185 } 185 }
186 else { 186 else {
187 QString text; 187 QString text;
188 if (QTextDrag::decode(e,text)) { 188 if (QTextDrag::decode(e,text)) {
189 //QListViewItem *qlvi = itemAt( contentsToViewport(e->pos()) ); 189 //QListViewItem *qlvi = itemAt( contentsToViewport(e->pos()) );
190 KOTodoViewItem *todoi = static_cast<KOTodoViewItem *>(itemAt( contentsToViewport(e->pos()) )); 190 KOTodoViewItem *todoi = static_cast<KOTodoViewItem *>(itemAt( contentsToViewport(e->pos()) ));
191 qDebug("Dropped : " + text); 191 qDebug("Dropped : " + text);
192 QStringList emails = QStringList::split(",",text); 192 QStringList emails = QStringList::split(",",text);
193 for(QStringList::ConstIterator it = emails.begin();it!=emails.end();++it) { 193 for(QStringList::ConstIterator it = emails.begin();it!=emails.end();++it) {
194 int pos = (*it).find("<"); 194 int pos = (*it).find("<");
195 QString name = (*it).left(pos); 195 QString name = (*it).left(pos);
196 QString email = (*it).mid(pos); 196 QString email = (*it).mid(pos);
197 if (!email.isEmpty() && todoi) { 197 if (!email.isEmpty() && todoi) {
198 todoi->todo()->addAttendee(new Attendee(name,email)); 198 todoi->todo()->addAttendee(new Attendee(name,email));
199 } 199 }
200 } 200 }
201 } 201 }
202 else { 202 else {
203 qDebug("KOTodoListView::contentsDropEvent(): Todo from drop not decodable "); 203 qDebug("KOTodoListView::contentsDropEvent(): Todo from drop not decodable ");
204 e->ignore(); 204 e->ignore();
205 } 205 }
206 } 206 }
207#endif 207#endif
208} 208}
209void KOTodoListView::wheelEvent (QWheelEvent *e) 209void KOTodoListView::wheelEvent (QWheelEvent *e)
210{ 210{
211 QListView::wheelEvent (e); 211 QListView::wheelEvent (e);
212} 212}
213 213
214void KOTodoListView::contentsMousePressEvent(QMouseEvent* e) 214void KOTodoListView::contentsMousePressEvent(QMouseEvent* e)
215{ 215{
216 216
217 QPoint p(contentsToViewport(e->pos())); 217 QPoint p(contentsToViewport(e->pos()));
218 QListViewItem *i = itemAt(p); 218 QListViewItem *i = itemAt(p);
219 bool rootClicked = true; 219 bool rootClicked = true;
220 if (i) { 220 if (i) {
221 // if the user clicked into the root decoration of the item, don't 221 // if the user clicked into the root decoration of the item, don't
222 // try to start a drag! 222 // try to start a drag!
223 int X = p.x(); 223 int X = p.x();
224 //qDebug("%d %d %d", X, header()->sectionPos(0), treeStepSize() ); 224 //qDebug("%d %d %d", X, header()->sectionPos(0), treeStepSize() );
225 if (X > header()->sectionPos(0) + 225 if (X > header()->sectionPos(0) +
226 treeStepSize() * (i->depth() + (rootIsDecorated() ? 1 : 0)) + 226 treeStepSize() * (i->depth() + (rootIsDecorated() ? 1 : 0)) +
227 itemMargin() +i->height()|| 227 itemMargin() +i->height()||
228 X < header()->sectionPos(0)) { 228 X < header()->sectionPos(0)) {
229 rootClicked = false; 229 rootClicked = false;
230 } 230 }
231 } else { 231 } else {
232 rootClicked = false; 232 rootClicked = false;
233 } 233 }
234#ifndef KORG_NODND 234#ifndef KORG_NODND
235 mMousePressed = false; 235 mMousePressed = false;
236 if (! rootClicked && !( e->button() == RightButton) ) { 236 if (! rootClicked && !( e->button() == RightButton) ) {
237 mPressPos = e->pos(); 237 mPressPos = e->pos();
238 mMousePressed = true; 238 mMousePressed = true;
239 } else { 239 } else {
240 mMousePressed = false; 240 mMousePressed = false;
241 } 241 }
242#endif 242#endif
243 //qDebug("KOTodoListView::contentsMousePressEvent %d", rootClicked); 243 //qDebug("KOTodoListView::contentsMousePressEvent %d", rootClicked);
244#ifndef DESKTOP_VERSION 244#ifndef DESKTOP_VERSION
245 if (!( e->button() == RightButton && rootClicked) ) 245 if (!( e->button() == RightButton && rootClicked) )
246 QListView::contentsMousePressEvent(e); 246 QListView::contentsMousePressEvent(e);
247#else 247#else
248 QListView::contentsMousePressEvent(e); 248 QListView::contentsMousePressEvent(e);
249#endif 249#endif
250} 250}
251void KOTodoListView::paintEvent(QPaintEvent* e) 251void KOTodoListView::paintEvent(QPaintEvent* e)
252{ 252{
253 emit paintNeeded(); 253 emit paintNeeded();
254 QListView::paintEvent( e); 254 QListView::paintEvent( e);
255} 255}
256void KOTodoListView::contentsMouseMoveEvent(QMouseEvent* e) 256void KOTodoListView::contentsMouseMoveEvent(QMouseEvent* e)
257{ 257{
258 258
259#ifndef KORG_NODND 259#ifndef KORG_NODND
260 //QListView::contentsMouseMoveEvent(e); 260 //QListView::contentsMouseMoveEvent(e);
261 if (mMousePressed && (mPressPos - e->pos()).manhattanLength() > 261 if (mMousePressed && (mPressPos - e->pos()).manhattanLength() >
262 QApplication::startDragDistance()*3) { 262 QApplication::startDragDistance()*3) {
263 mMousePressed = false; 263 mMousePressed = false;
264 QListViewItem *item = itemAt(contentsToViewport(mPressPos)); 264 QListViewItem *item = itemAt(contentsToViewport(mPressPos));
265 if (item) { 265 if (item) {
266 DndFactory factory( mCalendar ); 266 DndFactory factory( mCalendar );
267 ICalDrag *vd = factory.createDrag( 267 ICalDrag *vd = factory.createDrag(
268 ((KOTodoViewItem *)item)->todo(),viewport()); 268 ((KOTodoViewItem *)item)->todo(),viewport());
269 internalDrop = false; 269 internalDrop = false;
270 // we cannot do any senseful here, because the DnD is still broken in Qt 270 // we cannot do any senseful here, because the DnD is still broken in Qt
271 if (vd->drag()) { 271 if (vd->drag()) {
272 if ( !internalDrop ) { 272 if ( !internalDrop ) {
273 //emit deleteTodo( ((KOTodoViewItem *)item)->todo() ); 273 //emit deleteTodo( ((KOTodoViewItem *)item)->todo() );
274 qDebug("Dnd: External move: Delete drag source "); 274 qDebug("Dnd: External move: Delete drag source ");
275 } else 275 } else
276 qDebug("Dnd: Internal move "); 276 qDebug("Dnd: Internal move ");
277 277
278 } else { 278 } else {
279 if ( !internalDrop ) { 279 if ( !internalDrop ) {
280 qDebug("Dnd: External Copy"); 280 qDebug("Dnd: External Copy");
281 } else 281 } else
282 qDebug("DnD: Internal copy: Copy pending"); 282 qDebug("DnD: Internal copy: Copy pending");
283 } 283 }
284 } 284 }
285 } 285 }
286#endif 286#endif
287} 287}
288void KOTodoListView::keyReleaseEvent ( QKeyEvent *e ) 288void KOTodoListView::keyReleaseEvent ( QKeyEvent *e )
289{ 289{
290 if ( !e->isAutoRepeat() ) { 290 if ( !e->isAutoRepeat() ) {
291 mFlagKeyPressed = false; 291 mFlagKeyPressed = false;
292 } 292 }
293} 293}
294 294
295 295
296void KOTodoListView::keyPressEvent ( QKeyEvent * e ) 296void KOTodoListView::keyPressEvent ( QKeyEvent * e )
297{ 297{
298 qApp->processEvents(); 298 qApp->processEvents();
299 if ( e->isAutoRepeat() && !mFlagKeyPressed ) { 299 if ( e->isAutoRepeat() && !mFlagKeyPressed ) {
300 e->ignore(); 300 e->ignore();
301 // qDebug(" ignore %d",e->isAutoRepeat() ); 301 // qDebug(" ignore %d",e->isAutoRepeat() );
302 return; 302 return;
303 } 303 }
304 if (! e->isAutoRepeat() ) 304 if (! e->isAutoRepeat() )
305 mFlagKeyPressed = true; 305 mFlagKeyPressed = true;
306 QListViewItem* cn; 306 QListViewItem* cn;
307 if ( e->key() == Qt::Key_Return || e->key() == Qt::Key_Enter ) { 307 if ( e->key() == Qt::Key_Return || e->key() == Qt::Key_Enter ) {
308 cn = currentItem(); 308 cn = currentItem();
309 if ( cn ) { 309 if ( cn ) {
310 KOTodoViewItem* ci = (KOTodoViewItem*)( cn ); 310 KOTodoViewItem* ci = (KOTodoViewItem*)( cn );
311 if ( ci ){ 311 if ( ci ){
312 if ( e->state() == ShiftButton ) 312 if ( e->state() == ShiftButton )
313 ci->setOn( false ); 313 ci->setOn( false );
314 else 314 else
315 ci->setOn( true ); 315 ci->setOn( true );
316 cn = cn->itemBelow(); 316 cn = cn->itemBelow();
317 if ( cn ) { 317 if ( cn ) {
318 setCurrentItem ( cn ); 318 setCurrentItem ( cn );
319 ensureItemVisible ( cn ); 319 ensureItemVisible ( cn );
320 } 320 }
321 321
322 } 322 }
323 } 323 }
324 324
325 return; 325 return;
326 } 326 }
327 327
328 if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton || mName != "todolistsmall" ) { 328 if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton || mName != "todolistsmall" ) {
329 switch ( e->key() ) { 329 switch ( e->key() ) {
330 case Qt::Key_Down: 330 case Qt::Key_Down:
331 case Qt::Key_Up: 331 case Qt::Key_Up:
332 QListView::keyPressEvent ( e ); 332 QListView::keyPressEvent ( e );
333 break; 333 break;
334 case Qt::Key_Left: 334 case Qt::Key_Left:
335 case Qt::Key_Right: 335 case Qt::Key_Right:
336 QListView::keyPressEvent ( e ); 336 QListView::keyPressEvent ( e );
337 e->accept(); 337 e->accept();
338 return; 338 return;
339 break; 339 break;
340 default: 340 default:
341 e->ignore(); 341 e->ignore();
342 break; 342 break;
343 } 343 }
344 return; 344 return;
345 } 345 }
346 e->ignore(); 346 e->ignore();
347} 347}
348void KOTodoListView::contentsMouseReleaseEvent(QMouseEvent *e) 348void KOTodoListView::contentsMouseReleaseEvent(QMouseEvent *e)
349{ 349{
350 QListView::contentsMouseReleaseEvent(e); 350 QListView::contentsMouseReleaseEvent(e);
351 mMousePressed = false; 351 mMousePressed = false;
352} 352}
353 353
354void KOTodoListView::contentsMouseDoubleClickEvent(QMouseEvent *e) 354void KOTodoListView::contentsMouseDoubleClickEvent(QMouseEvent *e)
355{ 355{
356 if (!e) return; 356 if (!e) return;
357 357
358 QPoint vp = contentsToViewport(e->pos()); 358 QPoint vp = contentsToViewport(e->pos());
359 359
360 QListViewItem *item = itemAt(vp); 360 QListViewItem *item = itemAt(vp);
361 361
362 emit double_Clicked(item); 362 emit double_Clicked(item);
363 if (!item) return; 363 if (!item) return;
364 364
365 emit doubleClicked(item,vp,0); 365 emit doubleClicked(item,vp,0);
366} 366}
367 367
368///////////////////////////////////////////////////////////////////////////// 368/////////////////////////////////////////////////////////////////////////////
369 369
370KOQuickTodo::KOQuickTodo(QWidget *parent) : 370KOQuickTodo::KOQuickTodo(QWidget *parent) :
371 QLineEdit(parent) 371 QLineEdit(parent)
372{ 372{
373 setText(i18n("Click to add a new Todo")); 373 setText(i18n("Click to add a new Todo"));
374} 374}
375 375
376void KOQuickTodo::focusInEvent(QFocusEvent *ev) 376void KOQuickTodo::focusInEvent(QFocusEvent *ev)
377{ 377{
378 if ( text()==i18n("Click to add a new Todo") ) 378 if ( text()==i18n("Click to add a new Todo") )
379 setText(""); 379 setText("");
380 QLineEdit::focusInEvent(ev); 380 QLineEdit::focusInEvent(ev);
381} 381}
382 382
383void KOQuickTodo::focusOutEvent(QFocusEvent *ev) 383void KOQuickTodo::focusOutEvent(QFocusEvent *ev)
384{ 384{
385 setText(i18n("Click to add a new Todo")); 385 setText(i18n("Click to add a new Todo"));
386 QLineEdit::focusOutEvent(ev); 386 QLineEdit::focusOutEvent(ev);
387} 387}
388 388
389///////////////////////////////////////////////////////////////////////////// 389/////////////////////////////////////////////////////////////////////////////
390 390
391KOTodoView::KOTodoView(Calendar *calendar,QWidget* parent,const char* name) : 391KOTodoView::KOTodoView(Calendar *calendar,QWidget* parent,const char* name) :
392 KOrg::BaseView(calendar,parent,name) 392 KOrg::BaseView(calendar,parent,name)
393{ 393{
394 mPendingUpdateBeforeRepaint = false; 394 mPendingUpdateBeforeRepaint = false;
395 isFlatDisplay = false; 395 isFlatDisplay = false;
396 mNavigator = 0; 396 mNavigator = 0;
397 QBoxLayout *topLayout = new QVBoxLayout(this); 397 QBoxLayout *topLayout = new QVBoxLayout(this);
398 mName = QString ( name ); 398 mName = QString ( name );
399 mBlockUpdate = false; 399 mBlockUpdate = false;
400 mQuickAdd = new KOQuickTodo(this); 400 mQuickAdd = new KOQuickTodo(this);
401 topLayout->addWidget(mQuickAdd); 401 topLayout->addWidget(mQuickAdd);
402 402
403 if ( !KOPrefs::instance()->mEnableQuickTodo ) mQuickAdd->hide(); 403 if ( !KOPrefs::instance()->mEnableQuickTodo ) mQuickAdd->hide();
404 404
405 mTodoListView = new KOTodoListView(calendar,this, name ); 405 mTodoListView = new KOTodoListView(calendar,this, name );
406 topLayout->addWidget(mTodoListView); 406 topLayout->addWidget(mTodoListView);
407 //mTodoListView->header()->setMaximumHeight(30); 407 //mTodoListView->header()->setMaximumHeight(30);
408 mTodoListView->setRootIsDecorated(true); 408 mTodoListView->setRootIsDecorated(true);
409 mTodoListView->setAllColumnsShowFocus(true); 409 mTodoListView->setAllColumnsShowFocus(true);
410 410
411 mTodoListView->setShowSortIndicator(true); 411 mTodoListView->setShowSortIndicator(true);
412 412
413 mTodoListView->addColumn(i18n("Todo")); 413 mTodoListView->addColumn(i18n("Todo"));
414 mTodoListView->addColumn(i18n("Prio")); 414 mTodoListView->addColumn(i18n("Prio"));
415 mTodoListView->setColumnAlignment(1,AlignHCenter); 415 mTodoListView->setColumnAlignment(1,AlignHCenter);
416 mTodoListView->addColumn(i18n("Complete")); 416 mTodoListView->addColumn(i18n("Complete"));
417 mTodoListView->setColumnAlignment(2,AlignCenter); 417 mTodoListView->setColumnAlignment(2,AlignCenter);
418 418
419 mTodoListView->addColumn(i18n("Due Date")); 419 mTodoListView->addColumn(i18n("Due Date"));
420 mTodoListView->setColumnAlignment(3,AlignLeft); 420 mTodoListView->setColumnAlignment(3,AlignLeft);
421 mTodoListView->addColumn(i18n("Due Time")); 421 mTodoListView->addColumn(i18n("Due Time"));
422 mTodoListView->setColumnAlignment(4,AlignHCenter); 422 mTodoListView->setColumnAlignment(4,AlignHCenter);
423 423
424 mTodoListView->addColumn(i18n("Start Date")); 424 mTodoListView->addColumn(i18n("Start Date"));
425 mTodoListView->setColumnAlignment(5,AlignLeft); 425 mTodoListView->setColumnAlignment(5,AlignLeft);
426 mTodoListView->addColumn(i18n("Start Time")); 426 mTodoListView->addColumn(i18n("Start Time"));
427 mTodoListView->setColumnAlignment(6,AlignHCenter); 427 mTodoListView->setColumnAlignment(6,AlignHCenter);
428 428
429 mTodoListView->addColumn(i18n("Cancelled")); 429 mTodoListView->addColumn(i18n("Cancelled"));
430 mTodoListView->addColumn(i18n("Categories")); 430 mTodoListView->addColumn(i18n("Categories"));
431#if 0 431#if 0
432 mTodoListView->addColumn(i18n("Sort Id")); 432 mTodoListView->addColumn(i18n("Sort Id"));
433 mTodoListView->setColumnAlignment(4,AlignHCenter); 433 mTodoListView->setColumnAlignment(4,AlignHCenter);
434#endif 434#endif
435 435
436 mTodoListView->setMinimumHeight( 60 ); 436 mTodoListView->setMinimumHeight( 60 );
437 mTodoListView->setItemsRenameable( true ); 437 mTodoListView->setItemsRenameable( true );
438 mTodoListView->setRenameable( 0 ); 438 mTodoListView->setRenameable( 0 );
439 mTodoListView->setColumnWidth( 0, 120 ); 439 mTodoListView->setColumnWidth( 0, 120 );
440 mTodoListView->setColumnWidthMode(0, QListView::Manual); 440 mTodoListView->setColumnWidthMode(0, QListView::Manual);
441 mTodoListView->setColumnWidthMode(1, QListView::Manual); 441 mTodoListView->setColumnWidthMode(1, QListView::Manual);
442 mTodoListView->setColumnWidthMode(2, QListView::Manual); 442 mTodoListView->setColumnWidthMode(2, QListView::Manual);
443 mTodoListView->setColumnWidthMode(3, QListView::Manual); 443 mTodoListView->setColumnWidthMode(3, QListView::Manual);
444 mTodoListView->setColumnWidthMode(4, QListView::Manual); 444 mTodoListView->setColumnWidthMode(4, QListView::Manual);
445 mTodoListView->setColumnWidthMode(5, QListView::Manual); 445 mTodoListView->setColumnWidthMode(5, QListView::Manual);
446 mTodoListView->setColumnWidthMode(6, QListView::Manual); 446 mTodoListView->setColumnWidthMode(6, QListView::Manual);
447 mTodoListView->setColumnWidthMode(7, QListView::Manual); 447 mTodoListView->setColumnWidthMode(7, QListView::Manual);
448 mTodoListView->setColumnWidthMode(8, QListView::Manual); 448 mTodoListView->setColumnWidthMode(8, QListView::Manual);
449 449
450 450
451 mKOTodoViewWhatsThis = new KOTodoViewWhatsThis(mTodoListView->viewport(),this); 451 mKOTodoViewWhatsThis = new KOTodoViewWhatsThis(mTodoListView->viewport(),this);
452 452
453 mPriorityPopupMenu = new QPopupMenu(this); 453 mPriorityPopupMenu = new QPopupMenu(this);
454 for (int i = 1; i <= 5; i++) { 454 for (int i = 1; i <= 5; i++) {
455 QString label = QString ("%1").arg (i); 455 QString label = QString ("%1").arg (i);
456 mPriority[mPriorityPopupMenu->insertItem (label)] = i; 456 mPriority[mPriorityPopupMenu->insertItem (label)] = i;
457 } 457 }
458 connect (mPriorityPopupMenu, SIGNAL(activated (int)), SLOT (setNewPriority(int))); 458 connect (mPriorityPopupMenu, SIGNAL(activated (int)), SLOT (setNewPriority(int)));
459 459
460 mPercentageCompletedPopupMenu = new QPopupMenu(this); 460 mPercentageCompletedPopupMenu = new QPopupMenu(this);
461 for (int i = 0; i <= 100; i+=20) { 461 for (int i = 0; i <= 100; i+=20) {
462 QString label = QString ("%1 %").arg (i); 462 QString label = QString ("%1 %").arg (i);
463 mPercentage[mPercentageCompletedPopupMenu->insertItem (label)] = i; 463 mPercentage[mPercentageCompletedPopupMenu->insertItem (label)] = i;
464 } 464 }
465 connect (mPercentageCompletedPopupMenu, SIGNAL (activated (int)), SLOT (setNewPercentage (int))); 465 connect (mPercentageCompletedPopupMenu, SIGNAL (activated (int)), SLOT (setNewPercentage (int)));
466 466
467 467
468 468
469 mItemPopupMenu = new QPopupMenu(this); 469 mItemPopupMenu = new QPopupMenu(this);
470 mItemPopupMenu->insertItem(i18n("Show..."), this, 470 mItemPopupMenu->insertItem(i18n("Show..."), this,
471 SLOT (showTodo())); 471 SLOT (showTodo()));
472 mItemPopupMenu->insertItem(i18n("Edit..."), this, 472 mItemPopupMenu->insertItem(i18n("Edit..."), this,
473 SLOT (editTodo())); 473 SLOT (editTodo()));
474 mItemPopupMenu->insertItem( i18n("Delete"), this, 474 mItemPopupMenu->insertItem( i18n("Delete"), this,
475 SLOT (deleteTodo())); 475 SLOT (deleteTodo()));
476 mItemPopupMenu->insertItem( i18n("Clone..."), this, 476 mItemPopupMenu->insertItem( i18n("Clone..."), this,
477 SLOT (cloneTodo())); 477 SLOT (cloneTodo()));
478 mItemPopupMenu->insertItem( i18n("Move..."), this, 478 mItemPopupMenu->insertItem( i18n("Move..."), this,
479 SLOT (moveTodo())); 479 SLOT (moveTodo()));
480#ifndef DESKTOP_VERSION
480 mItemPopupMenu->insertItem( i18n("Beam..."), this, 481 mItemPopupMenu->insertItem( i18n("Beam..."), this,
481 SLOT (beamTodo())); 482 SLOT (beamTodo()));
483#endif
482 mItemPopupMenu->insertItem( i18n("Toggle Cancel"), this, 484 mItemPopupMenu->insertItem( i18n("Toggle Cancel"), this,
483 SLOT (cancelTodo())); 485 SLOT (cancelTodo()));
484 mItemPopupMenu->insertSeparator(); 486 mItemPopupMenu->insertSeparator();
485 mItemPopupMenu->insertItem( i18n("Start/Stop todo..."), this, 487 mItemPopupMenu->insertItem( i18n("Start/Stop todo..."), this,
486 SLOT (toggleRunningItem())); 488 SLOT (toggleRunningItem()));
487 mItemPopupMenu->insertSeparator(); 489 mItemPopupMenu->insertSeparator();
488 /* 490 /*
489 mItemPopupMenu->insertItem( i18n("New Todo..."), this, 491 mItemPopupMenu->insertItem( i18n("New Todo..."), this,
490 SLOT (newTodo())); 492 SLOT (newTodo()));
491 */ 493 */
492 mItemPopupMenu->insertItem(i18n("New Sub-Todo..."), this, 494 mItemPopupMenu->insertItem(i18n("New Sub-Todo..."), this,
493 SLOT (newSubTodo())); 495 SLOT (newSubTodo()));
494 mItemPopupMenu->insertItem(i18n("Unparent Todo"), this, 496 mItemPopupMenu->insertItem(i18n("Unparent Todo"), this,
495 SLOT (unparentTodo()),0,21); 497 SLOT (unparentTodo()),0,21);
496 mItemPopupMenu->insertItem(i18n("Reparent Todo"), this, 498 mItemPopupMenu->insertItem(i18n("Reparent Todo"), this,
497 SLOT (reparentTodo()),0,22); 499 SLOT (reparentTodo()),0,22);
498 mItemPopupMenu->insertSeparator(); 500 mItemPopupMenu->insertSeparator();
499#if 0 501#if 0
500 mItemPopupMenu->insertItem(i18n("Delete completed To-Dos","Purge Completed"), 502 mItemPopupMenu->insertItem(i18n("Delete completed To-Dos","Purge Completed"),
501 this, SLOT( purgeCompleted() ) ); 503 this, SLOT( purgeCompleted() ) );
502 mItemPopupMenu->insertItem(i18n("toggle completed To-Dos","Show Completed"), 504 mItemPopupMenu->insertItem(i18n("toggle completed To-Dos","Show Completed"),
503 this, SLOT( toggleCompleted() ),0, 33 ); 505 this, SLOT( toggleCompleted() ),0, 33 );
504 mItemPopupMenu->insertItem(i18n("toggle quick todo","Show Quick Todo"), 506 mItemPopupMenu->insertItem(i18n("toggle quick todo","Show Quick Todo"),
505 this, SLOT( toggleQuickTodo() ),0, 34 ); 507 this, SLOT( toggleQuickTodo() ),0, 34 );
506 mItemPopupMenu->insertItem(i18n("toggle running todo","Hide not Running"), 508 mItemPopupMenu->insertItem(i18n("toggle running todo","Hide not Running"),
507 this, SLOT( toggleRunning() ),0, 35 ); 509 this, SLOT( toggleRunning() ),0, 35 );
508 510
509#endif 511#endif
510 mPopupMenu = new QPopupMenu(this); 512 mPopupMenu = new QPopupMenu(this);
511 mPopupMenu->insertItem(SmallIconSet("todo"), i18n("New Todo..."), this, 513 mPopupMenu->insertItem(SmallIconSet("todo"), i18n("New Todo..."), this,
512 SLOT (newTodo()),0,1); 514 SLOT (newTodo()),0,1);
513 mPopupMenu->insertItem(i18n("delete completed To-Dos","Purge Completed"), 515 mPopupMenu->insertItem(i18n("delete completed To-Dos","Purge Completed"),
514 this, SLOT(purgeCompleted()),0,2); 516 this, SLOT(purgeCompleted()),0,2);
515 mPopupMenu->insertItem(i18n("Show Completed"), 517 mPopupMenu->insertItem(i18n("Show Completed"),
516 this, SLOT( toggleCompleted() ),0,3 ); 518 this, SLOT( toggleCompleted() ),0,3 );
517 mPopupMenu->insertItem(i18n("toggle running todo","Hide not Running"), 519 mPopupMenu->insertItem(i18n("toggle running todo","Hide not Running"),
518 this, SLOT( toggleRunning() ),0,5 ); 520 this, SLOT( toggleRunning() ),0,5 );
519 mPopupMenu->insertItem(i18n(" set all open","Display all opened"), 521 mPopupMenu->insertItem(i18n(" set all open","Display all opened"),
520 this, SLOT( setAllOpen() ),0,6 ); 522 this, SLOT( setAllOpen() ),0,6 );
521 mPopupMenu->insertItem(i18n(" set all close","Display all closed"), 523 mPopupMenu->insertItem(i18n(" set all close","Display all closed"),
522 this, SLOT( setAllClose() ),0,7 ); 524 this, SLOT( setAllClose() ),0,7 );
523 mPopupMenu->insertItem(i18n(" set all flat","Display all flat"), 525 mPopupMenu->insertItem(i18n(" set all flat","Display all flat"),
524 this, SLOT( setAllFlat() ),0,8 ); 526 this, SLOT( setAllFlat() ),0,8 );
525 mPopupMenu->insertSeparator(); 527 mPopupMenu->insertSeparator();
526 mPopupMenu->insertItem(i18n("toggle quick todo","Show Quick Todo"), 528 mPopupMenu->insertItem(i18n("toggle quick todo","Show Quick Todo"),
527 this, SLOT( toggleQuickTodo() ),0,4 ); 529 this, SLOT( toggleQuickTodo() ),0,4 );
528 mDocPrefs = new DocPrefs( name ); 530 mDocPrefs = new DocPrefs( name );
529 531
530 mItemPopupMenu->insertItem(i18n("Todo View"),mPopupMenu ); 532 mItemPopupMenu->insertItem(i18n("Todo View"),mPopupMenu );
531 mPopupMenu->setCheckable( true ); 533 mPopupMenu->setCheckable( true );
532 mItemPopupMenu->setCheckable( true ); 534 mItemPopupMenu->setCheckable( true );
533 535
534 536
535 mPopupMenu->setItemChecked( 3,KOPrefs::instance()->mShowCompletedTodo ); 537 mPopupMenu->setItemChecked( 3,KOPrefs::instance()->mShowCompletedTodo );
536 mItemPopupMenu->setItemChecked( 33 , KOPrefs::instance()->mShowCompletedTodo ); 538 mItemPopupMenu->setItemChecked( 33 , KOPrefs::instance()->mShowCompletedTodo );
537 539
538 mPopupMenu->setItemChecked(4,KOPrefs::instance()->mEnableQuickTodo); 540 mPopupMenu->setItemChecked(4,KOPrefs::instance()->mEnableQuickTodo);
539 mItemPopupMenu->setItemChecked( 34 , KOPrefs::instance()->mEnableQuickTodo ); 541 mItemPopupMenu->setItemChecked( 34 , KOPrefs::instance()->mEnableQuickTodo );
540 542
541 mPopupMenu->setItemChecked(5,KOPrefs::instance()->mHideNonStartedTodos); 543 mPopupMenu->setItemChecked(5,KOPrefs::instance()->mHideNonStartedTodos);
542 mItemPopupMenu->setItemChecked( 35 , KOPrefs::instance()->mHideNonStartedTodos ); 544 mItemPopupMenu->setItemChecked( 35 , KOPrefs::instance()->mHideNonStartedTodos );
543 545
544 546
545 // Double clicking conflicts with opening/closing the subtree 547 // Double clicking conflicts with opening/closing the subtree
546 connect( mTodoListView, SIGNAL( doubleClicked( QListViewItem *) ), 548 connect( mTodoListView, SIGNAL( doubleClicked( QListViewItem *) ),
547 SLOT( editItem( QListViewItem *) ) ); 549 SLOT( editItem( QListViewItem *) ) );
548 /* 550 /*
549 connect( mTodoListView, SIGNAL( rightButtonClicked ( QListViewItem *, 551 connect( mTodoListView, SIGNAL( rightButtonClicked ( QListViewItem *,
550 const QPoint &,int ) ), 552 const QPoint &,int ) ),
551 SLOT( popupMenu( QListViewItem *, const QPoint & ,int) ) ); 553 SLOT( popupMenu( QListViewItem *, const QPoint & ,int) ) );
552 */ 554 */
553 connect( mTodoListView, SIGNAL( contextRequest ( QListViewItem *, 555 connect( mTodoListView, SIGNAL( contextRequest ( QListViewItem *,
554 const QPoint &,int ) ), 556 const QPoint &,int ) ),
555 SLOT( popupMenu( QListViewItem *, const QPoint & ,int) ) ); 557 SLOT( popupMenu( QListViewItem *, const QPoint & ,int) ) );
556 connect( mTodoListView, SIGNAL( clicked( QListViewItem * ) ), 558 connect( mTodoListView, SIGNAL( clicked( QListViewItem * ) ),
557 SLOT( itemClicked( QListViewItem * ) ) ); 559 SLOT( itemClicked( QListViewItem * ) ) );
558 connect( mTodoListView, SIGNAL( double_Clicked( QListViewItem * ) ), 560 connect( mTodoListView, SIGNAL( double_Clicked( QListViewItem * ) ),
559 SLOT( itemDoubleClicked( QListViewItem * ) ) ); 561 SLOT( itemDoubleClicked( QListViewItem * ) ) );
560 connect( mTodoListView, SIGNAL( todoDropped( Todo *, int ) ), 562 connect( mTodoListView, SIGNAL( todoDropped( Todo *, int ) ),
561 SLOT( updateView() ) ); 563 SLOT( updateView() ) );
562 connect( mTodoListView, SIGNAL( todoDropped( Todo *, int ) ), 564 connect( mTodoListView, SIGNAL( todoDropped( Todo *, int ) ),
563 SLOT( todoModified(Todo *, int) ) ); 565 SLOT( todoModified(Todo *, int) ) );
564 connect( mTodoListView, SIGNAL( expanded( QListViewItem * ) ), 566 connect( mTodoListView, SIGNAL( expanded( QListViewItem * ) ),
565 SLOT( itemStateChanged( QListViewItem * ) ) ); 567 SLOT( itemStateChanged( QListViewItem * ) ) );
566 connect( mTodoListView, SIGNAL( collapsed( QListViewItem * ) ), 568 connect( mTodoListView, SIGNAL( collapsed( QListViewItem * ) ),
567 SLOT( itemStateChanged( QListViewItem * ) ) ); 569 SLOT( itemStateChanged( QListViewItem * ) ) );
568 connect( mTodoListView, SIGNAL( paintNeeded() ), 570 connect( mTodoListView, SIGNAL( paintNeeded() ),
569 SLOT( paintNeeded()) ); 571 SLOT( paintNeeded()) );
570 572
571#if 0 573#if 0
572 connect(mTodoListView,SIGNAL(selectionChanged(QListViewItem *)), 574 connect(mTodoListView,SIGNAL(selectionChanged(QListViewItem *)),
573 SLOT(selectionChanged(QListViewItem *))); 575 SLOT(selectionChanged(QListViewItem *)));
574 connect(mTodoListView,SIGNAL(clicked(QListViewItem *)), 576 connect(mTodoListView,SIGNAL(clicked(QListViewItem *)),
575 SLOT(selectionChanged(QListViewItem *))); 577 SLOT(selectionChanged(QListViewItem *)));
576 connect(mTodoListView,SIGNAL(pressed(QListViewItem *)), 578 connect(mTodoListView,SIGNAL(pressed(QListViewItem *)),
577 SLOT(selectionChanged(QListViewItem *))); 579 SLOT(selectionChanged(QListViewItem *)));
578#endif 580#endif
579 581
580 connect( mTodoListView, SIGNAL(reparentTodoSignal( Todo *,Todo * ) ), SIGNAL(reparentTodoSignal( Todo *,Todo * ) )); 582 connect( mTodoListView, SIGNAL(reparentTodoSignal( Todo *,Todo * ) ), SIGNAL(reparentTodoSignal( Todo *,Todo * ) ));
581 connect( mTodoListView, SIGNAL(unparentTodoSignal(Todo *) ), SIGNAL(unparentTodoSignal(Todo *) )); 583 connect( mTodoListView, SIGNAL(unparentTodoSignal(Todo *) ), SIGNAL(unparentTodoSignal(Todo *) ));
582 connect( mTodoListView, SIGNAL( deleteTodo(Todo *) ), SIGNAL(deleteTodoSignal(Todo *) )); 584 connect( mTodoListView, SIGNAL( deleteTodo(Todo *) ), SIGNAL(deleteTodoSignal(Todo *) ));
583 585
584 connect( mTodoListView, SIGNAL(selectionChanged() ), 586 connect( mTodoListView, SIGNAL(selectionChanged() ),
585 SLOT( processSelectionChange() ) ); 587 SLOT( processSelectionChange() ) );
586 connect( mQuickAdd, SIGNAL( returnPressed () ), 588 connect( mQuickAdd, SIGNAL( returnPressed () ),
587 SLOT( addQuickTodo() ) ); 589 SLOT( addQuickTodo() ) );
588 590
589} 591}
590 592
591KOTodoView::~KOTodoView() 593KOTodoView::~KOTodoView()
592{ 594{
593 595
594#if QT_VERSION >= 0x030000 596#if QT_VERSION >= 0x030000
595 597
596#else 598#else
597 delete mKOTodoViewWhatsThis; 599 delete mKOTodoViewWhatsThis;
598#endif 600#endif
599 601
600 delete mDocPrefs; 602 delete mDocPrefs;
601} 603}
602QString KOTodoView::getWhatsThisText(QPoint p) 604QString KOTodoView::getWhatsThisText(QPoint p)
603{ 605{
604 KOTodoViewItem* item = ( KOTodoViewItem* ) mTodoListView->itemAt( p ); 606 KOTodoViewItem* item = ( KOTodoViewItem* ) mTodoListView->itemAt( p );
605 if ( item ) 607 if ( item )
606 return KIncidenceFormatter::instance()->getFormattedText( item->todo(), 608 return KIncidenceFormatter::instance()->getFormattedText( item->todo(),
607 KOPrefs::instance()->mWTshowDetails, 609 KOPrefs::instance()->mWTshowDetails,
608 KOPrefs::instance()->mWTshowCreated, 610 KOPrefs::instance()->mWTshowCreated,
609 KOPrefs::instance()->mWTshowChanged); 611 KOPrefs::instance()->mWTshowChanged);
610 return i18n("That is the todo view" ); 612 return i18n("That is the todo view" );
611 613
612} 614}
613 615
614void KOTodoView::jumpToDate () 616void KOTodoView::jumpToDate ()
615{ 617{
616 // if (mActiveItem) { 618 // if (mActiveItem) {
617// mActiveItem->todo()); 619// mActiveItem->todo());
618// if ( mActiveItem->todo()->hasDueDate() ) 620// if ( mActiveItem->todo()->hasDueDate() )
619// emit mActiveItem->todo()jumpToTime( mTodo->dtDue().date() ); 621// emit mActiveItem->todo()jumpToTime( mTodo->dtDue().date() );
620} 622}
621void KOTodoView::paintNeeded() 623void KOTodoView::paintNeeded()
622{ 624{
623 if ( mPendingUpdateBeforeRepaint ) { 625 if ( mPendingUpdateBeforeRepaint ) {
624 updateView(); 626 updateView();
625 mPendingUpdateBeforeRepaint = false; 627 mPendingUpdateBeforeRepaint = false;
626 } 628 }
627} 629}
628void KOTodoView::paintEvent(QPaintEvent * pevent) 630void KOTodoView::paintEvent(QPaintEvent * pevent)
629{ 631{
630 if ( mPendingUpdateBeforeRepaint ) { 632 if ( mPendingUpdateBeforeRepaint ) {
631 updateView(); 633 updateView();
632 mPendingUpdateBeforeRepaint = false; 634 mPendingUpdateBeforeRepaint = false;
633 } 635 }
634 KOrg::BaseView::paintEvent( pevent); 636 KOrg::BaseView::paintEvent( pevent);
635} 637}
636 638
637void KOTodoView::updateView() 639void KOTodoView::updateView()
638{ 640{
639 pendingSubtodo = 0; 641 pendingSubtodo = 0;
640 if ( mBlockUpdate ) { 642 if ( mBlockUpdate ) {
641 return; 643 return;
642 } 644 }
643 if ( !isVisible() ) { 645 if ( !isVisible() ) {
644 mPendingUpdateBeforeRepaint = true; 646 mPendingUpdateBeforeRepaint = true;
645 return; 647 return;
646 } 648 }
647 storeCurrentItem(); 649 storeCurrentItem();
648 //qDebug("KOTodoView::updateView() %x", this); 650 //qDebug("KOTodoView::updateView() %x", this);
649 if ( isFlatDisplay ) { 651 if ( isFlatDisplay ) {
650 displayAllFlat(); 652 displayAllFlat();
651 resetCurrentItem(); 653 resetCurrentItem();
652 return; 654 return;
653 } 655 }
654 //qDebug("update "); 656 //qDebug("update ");
655// kdDebug() << "KOTodoView::updateView()" << endl; 657// kdDebug() << "KOTodoView::updateView()" << endl;
656 QFont fo = KOPrefs::instance()->mTodoViewFont; 658 QFont fo = KOPrefs::instance()->mTodoViewFont;
657 659
658 660
659 mTodoListView->clear(); 661 mTodoListView->clear();
660 if ( mName == "todolistsmall" ) { 662 if ( mName == "todolistsmall" ) {
661 if ( KOPrefs::instance()->mTodoViewUsesSmallFont ) { 663 if ( KOPrefs::instance()->mTodoViewUsesSmallFont ) {
662 int ps = fo.pointSize() -2; 664 int ps = fo.pointSize() -2;
663 if ( ps > 12 ) 665 if ( ps > 12 )
664 ps -= 2; 666 ps -= 2;
665 fo.setPointSize( ps ); 667 fo.setPointSize( ps );
666 } 668 }
667 } 669 }
668 670
669 mTodoListView->setFont( fo ); 671 mTodoListView->setFont( fo );
670 // QFontMetrics fm ( KOPrefs::instance()->mTodoViewFont ); 672 // QFontMetrics fm ( KOPrefs::instance()->mTodoViewFont );
671 //mTodoListView->header()->setMaximumHeight(fm.height()); 673 //mTodoListView->header()->setMaximumHeight(fm.height());
672 QPtrList<Todo> todoList = calendar()->todos(); 674 QPtrList<Todo> todoList = calendar()->todos();
673 675
674/* 676/*
675 kdDebug() << "KOTodoView::updateView(): Todo List:" << endl; 677 kdDebug() << "KOTodoView::updateView(): Todo List:" << endl;
676 Event *t; 678 Event *t;
677 for(t = todoList.first(); t; t = todoList.next()) { 679 for(t = todoList.first(); t; t = todoList.next()) {
678 kdDebug() << " " << t->getSummary() << endl; 680 kdDebug() << " " << t->getSummary() << endl;
679 681
680 if (t->getRelatedTo()) { 682 if (t->getRelatedTo()) {
681 kdDebug() << " (related to " << t->getRelatedTo()->getSummary() << ")" << endl; 683 kdDebug() << " (related to " << t->getRelatedTo()->getSummary() << ")" << endl;
682 } 684 }
683 685
684 QPtrList<Event> l = t->getRelations(); 686 QPtrList<Event> l = t->getRelations();
685 Event *c; 687 Event *c;
686 for(c=l.first();c;c=l.next()) { 688 for(c=l.first();c;c=l.next()) {
687 kdDebug() << " - relation: " << c->getSummary() << endl; 689 kdDebug() << " - relation: " << c->getSummary() << endl;
688 } 690 }
689 } 691 }
690*/ 692*/
691 693
692 // Put for each Event a KOTodoViewItem in the list view. Don't rely on a 694 // Put for each Event a KOTodoViewItem in the list view. Don't rely on a
693 // specific order of events. That means that we have to generate parent items 695 // specific order of events. That means that we have to generate parent items
694 // recursively for proper hierarchical display of Todos. 696 // recursively for proper hierarchical display of Todos.
695 mTodoMap.clear(); 697 mTodoMap.clear();
696 Todo *todo; 698 Todo *todo;
697 todo = todoList.first();// todo; todo = todoList.next()) { 699 todo = todoList.first();// todo; todo = todoList.next()) {
698 while ( todo ) { 700 while ( todo ) {
699 bool next = true; 701 bool next = true;
700 // qDebug("todo %s ", todo->summary().latin1()); 702 // qDebug("todo %s ", todo->summary().latin1());
701 Incidence *incidence = todo->relatedTo(); 703 Incidence *incidence = todo->relatedTo();
702 while ( incidence ) { 704 while ( incidence ) {
703 if ( incidence->type() == "Todo") { 705 if ( incidence->type() == "Todo") {
704 //qDebug("related %s ",incidence->summary().latin1() ); 706 //qDebug("related %s ",incidence->summary().latin1() );
705 if ( !(todoList.contains ( ((Todo* )incidence ) ) )) { 707 if ( !(todoList.contains ( ((Todo* )incidence ) ) )) {
706 //qDebug("related not found "); 708 //qDebug("related not found ");
707 todoList.remove( ); 709 todoList.remove( );
708 todo = todoList.current(); 710 todo = todoList.current();
709 next = false; 711 next = false;
710 incidence = 0; 712 incidence = 0;
711 713
712 } else { 714 } else {
713 //qDebug("related found "); 715 //qDebug("related found ");
714 incidence = incidence->relatedTo(); 716 incidence = incidence->relatedTo();
715 } 717 }
716 } else 718 } else
717 incidence = 0; 719 incidence = 0;
718 } 720 }
719 if ( next ) 721 if ( next )
720 todo = todoList.next(); 722 todo = todoList.next();
721 } 723 }
722 724
723 for(todo = todoList.first(); todo; todo = todoList.next()) { 725 for(todo = todoList.first(); todo; todo = todoList.next()) {
724 if (!mTodoMap.contains(todo) && checkTodo( todo ) ) 726 if (!mTodoMap.contains(todo) && checkTodo( todo ) )
725 { 727 {
726 insertTodoItem(todo); 728 insertTodoItem(todo);
727 } 729 }
728 } 730 }
729 // Restore opened/closed state 731 // Restore opened/closed state
730 mTodoListView->blockSignals( true ); 732 mTodoListView->blockSignals( true );
731 if( mDocPrefs ) restoreItemState( mTodoListView->firstChild() ); 733 if( mDocPrefs ) restoreItemState( mTodoListView->firstChild() );
732 mTodoListView->blockSignals( false ); 734 mTodoListView->blockSignals( false );
733 resetCurrentItem(); 735 resetCurrentItem();
734 processSelectionChange(); 736 processSelectionChange();
735} 737}
736 738
737void KOTodoView::storeCurrentItem() 739void KOTodoView::storeCurrentItem()
738{ 740{
739 mCurItem = 0; 741 mCurItem = 0;
740 mCurItemRootParent = 0; 742 mCurItemRootParent = 0;
741 mCurItemParent = 0; 743 mCurItemParent = 0;
742 mCurItemAbove = 0; 744 mCurItemAbove = 0;
743 mActiveItem = (KOTodoViewItem*)mTodoListView->currentItem(); 745 mActiveItem = (KOTodoViewItem*)mTodoListView->currentItem();
744 if (mActiveItem) { 746 if (mActiveItem) {
745 mCurItem = mActiveItem->todo(); 747 mCurItem = mActiveItem->todo();
746 KOTodoViewItem* activeItemAbove = (KOTodoViewItem*)mActiveItem->itemAbove (); 748 KOTodoViewItem* activeItemAbove = (KOTodoViewItem*)mActiveItem->itemAbove ();
747 if ( activeItemAbove ) 749 if ( activeItemAbove )
748 mCurItemAbove = activeItemAbove->todo(); 750 mCurItemAbove = activeItemAbove->todo();
749 mCurItemRootParent = mCurItem; 751 mCurItemRootParent = mCurItem;
750 mCurItemParent = mCurItemRootParent->relatedTo(); 752 mCurItemParent = mCurItemRootParent->relatedTo();
751 while ( mCurItemRootParent->relatedTo() != 0 ) 753 while ( mCurItemRootParent->relatedTo() != 0 )
752 mCurItemRootParent = mCurItemRootParent->relatedTo(); 754 mCurItemRootParent = mCurItemRootParent->relatedTo();
753 } 755 }
754 mActiveItem = 0; 756 mActiveItem = 0;
755} 757}
756 758
757void KOTodoView::resetCurrentItem() 759void KOTodoView::resetCurrentItem()
758{ 760{
759 mTodoListView->setFocus(); 761 mTodoListView->setFocus();
760 KOTodoViewItem* foundItem = 0; 762 KOTodoViewItem* foundItem = 0;
761 KOTodoViewItem* foundItemRoot = 0; 763 KOTodoViewItem* foundItemRoot = 0;
762 KOTodoViewItem* foundItemParent = 0; 764 KOTodoViewItem* foundItemParent = 0;
763 KOTodoViewItem* foundItemAbove = 0; 765 KOTodoViewItem* foundItemAbove = 0;
764 if ( mTodoListView->firstChild () ) { 766 if ( mTodoListView->firstChild () ) {
765 if ( mCurItem ) { 767 if ( mCurItem ) {
766 KOTodoViewItem* item = (KOTodoViewItem*)mTodoListView->firstChild (); 768 KOTodoViewItem* item = (KOTodoViewItem*)mTodoListView->firstChild ();
767 while ( item ) { 769 while ( item ) {
768 if ( item->todo() == mCurItem ) { 770 if ( item->todo() == mCurItem ) {
769 foundItem = item; 771 foundItem = item;
770 break; 772 break;
771 } else if ( item->todo() == mCurItemAbove ) { 773 } else if ( item->todo() == mCurItemAbove ) {
772 foundItemAbove = item; 774 foundItemAbove = item;
773 775
774 } 776 }
775 if ( item->todo() == mCurItemRootParent ) { 777 if ( item->todo() == mCurItemRootParent ) {
776 foundItemRoot = item; 778 foundItemRoot = item;
777 } 779 }
778 if ( item->todo() == mCurItemParent ) { 780 if ( item->todo() == mCurItemParent ) {
779 foundItemParent = item; 781 foundItemParent = item;
780 } 782 }
781 item = (KOTodoViewItem*)item->itemBelow(); 783 item = (KOTodoViewItem*)item->itemBelow();
782 } 784 }
783 if ( ! foundItem ) { 785 if ( ! foundItem ) {
784 if ( foundItemParent ) { 786 if ( foundItemParent ) {
785 foundItem = foundItemParent; 787 foundItem = foundItemParent;
786 } else { 788 } else {
787 if ( foundItemRoot ) 789 if ( foundItemRoot )
788 foundItem = foundItemRoot; 790 foundItem = foundItemRoot;
789 else 791 else
790 foundItem = foundItemAbove; 792 foundItem = foundItemAbove;
791 } 793 }
792 } 794 }
793 } 795 }
794 if ( foundItem ) { 796 if ( foundItem ) {
795 mTodoListView->setCurrentItem( foundItem ); 797 mTodoListView->setCurrentItem( foundItem );
796 mTodoListView->ensureItemVisible( foundItem ); 798 mTodoListView->ensureItemVisible( foundItem );
797 } else { 799 } else {
798 mTodoListView->setCurrentItem( mTodoListView->firstChild () ); 800 mTodoListView->setCurrentItem( mTodoListView->firstChild () );
799 } 801 }
800 } 802 }
801 mTodoListView->setFocus(); 803 mTodoListView->setFocus();
802} 804}
803//Incidence * mCurItem, *mCurItemRootParent,*mCurItemAbove; 805//Incidence * mCurItem, *mCurItemRootParent,*mCurItemAbove;
804bool KOTodoView::checkTodo( Todo * todo ) 806bool KOTodoView::checkTodo( Todo * todo )
805{ 807{
806 808
807 if ( !KOPrefs::instance()->mShowCompletedTodo && todo->isCompleted() ) 809 if ( !KOPrefs::instance()->mShowCompletedTodo && todo->isCompleted() )
808 return false; 810 return false;
809 if ( !todo->isCompleted() ) { 811 if ( !todo->isCompleted() ) {
810 if ( todo->hasDueDate() && todo->dtDue().date() <= QDate::currentDate() ) 812 if ( todo->hasDueDate() && todo->dtDue().date() <= QDate::currentDate() )
811 return true; 813 return true;
812 } 814 }
813 if ( KOPrefs::instance()->mHideNonStartedTodos && mNavigator ) { 815 if ( KOPrefs::instance()->mHideNonStartedTodos && mNavigator ) {
814 if ( todo->hasStartDate() ) 816 if ( todo->hasStartDate() )
815 if ( mNavigator->selectedDates().last() < todo->dtStart().date() ) 817 if ( mNavigator->selectedDates().last() < todo->dtStart().date() )
816 return false; 818 return false;
817 if ( todo->hasDueDate() ) 819 if ( todo->hasDueDate() )
818 if ( mNavigator->selectedDates().first() > todo->dtDue().date() ) 820 if ( mNavigator->selectedDates().first() > todo->dtDue().date() )
819 return false; 821 return false;
820 } 822 }
821 return true; 823 return true;
822} 824}
823 825
824void KOTodoView::restoreItemState( QListViewItem *item ) 826void KOTodoView::restoreItemState( QListViewItem *item )
825{ 827{
826 pendingSubtodo = 0; 828 pendingSubtodo = 0;
827 while( item ) { 829 while( item ) {
828 KOTodoViewItem *todoItem = (KOTodoViewItem *)item; 830 KOTodoViewItem *todoItem = (KOTodoViewItem *)item;
829 todoItem->setOpen( mDocPrefs->readBoolEntry( todoItem->todo()->uid() ) ); 831 todoItem->setOpen( mDocPrefs->readBoolEntry( todoItem->todo()->uid() ) );
830 if( item->childCount() > 0 ) restoreItemState( item->firstChild() ); 832 if( item->childCount() > 0 ) restoreItemState( item->firstChild() );
831 item = item->nextSibling(); 833 item = item->nextSibling();
832 } 834 }
833} 835}
834 836
835 837
836QMap<Todo *,KOTodoViewItem *>::ConstIterator 838QMap<Todo *,KOTodoViewItem *>::ConstIterator
837 KOTodoView::insertTodoItem(Todo *todo) 839 KOTodoView::insertTodoItem(Todo *todo)
838{ 840{
839 841
840// kdDebug() << "KOTodoView::insertTodoItem(): " << todo->getSummary() << endl; 842// kdDebug() << "KOTodoView::insertTodoItem(): " << todo->getSummary() << endl;
841 // TODO: Check, if dynmaic cast is necessary 843 // TODO: Check, if dynmaic cast is necessary
842 844
843 pendingSubtodo = 0; 845 pendingSubtodo = 0;
844 Incidence *incidence = todo->relatedTo(); 846 Incidence *incidence = todo->relatedTo();
845 if (incidence && incidence->type() == "Todo") { 847 if (incidence && incidence->type() == "Todo") {
846 Todo *relatedTodo = static_cast<Todo *>(incidence); 848 Todo *relatedTodo = static_cast<Todo *>(incidence);
847 849
848// kdDebug() << " has Related" << endl; 850// kdDebug() << " has Related" << endl;
849 QMap<Todo *,KOTodoViewItem *>::ConstIterator itemIterator; 851 QMap<Todo *,KOTodoViewItem *>::ConstIterator itemIterator;
850 itemIterator = mTodoMap.find(relatedTodo); 852 itemIterator = mTodoMap.find(relatedTodo);
851 if (itemIterator == mTodoMap.end()) { 853 if (itemIterator == mTodoMap.end()) {
852// kdDebug() << " related not yet in list" << endl; 854// kdDebug() << " related not yet in list" << endl;
853 itemIterator = insertTodoItem (relatedTodo); 855 itemIterator = insertTodoItem (relatedTodo);
854 } 856 }
855 // isn't this pretty stupid? We give one Todo to the KOTodoViewItem 857 // isn't this pretty stupid? We give one Todo to the KOTodoViewItem
856 // and one into the map. Sure finding is more easy but why? -zecke 858 // and one into the map. Sure finding is more easy but why? -zecke
857 KOTodoViewItem *todoItem = new KOTodoViewItem(*itemIterator,todo,this); 859 KOTodoViewItem *todoItem = new KOTodoViewItem(*itemIterator,todo,this);
858 return mTodoMap.insert(todo,todoItem); 860 return mTodoMap.insert(todo,todoItem);
859 } else { 861 } else {
860// kdDebug() << " no Related" << endl; 862// kdDebug() << " no Related" << endl;
861 // see above -zecke 863 // see above -zecke
862 KOTodoViewItem *todoItem = new KOTodoViewItem(mTodoListView,todo,this); 864 KOTodoViewItem *todoItem = new KOTodoViewItem(mTodoListView,todo,this);
863 return mTodoMap.insert(todo,todoItem); 865 return mTodoMap.insert(todo,todoItem);
864 } 866 }
865} 867}
866 868
867 869
868void KOTodoView::updateConfig() 870void KOTodoView::updateConfig()
869{ 871{
870 updateView(); 872 updateView();
871 mTodoListView->repaintContents(); 873 mTodoListView->repaintContents();
872} 874}
873 875
874QPtrList<Incidence> KOTodoView::selectedIncidences() 876QPtrList<Incidence> KOTodoView::selectedIncidences()
875{ 877{
876 QPtrList<Incidence> selected; 878 QPtrList<Incidence> selected;
877 879
878 KOTodoViewItem *item = (KOTodoViewItem *)(mTodoListView->selectedItem()); 880 KOTodoViewItem *item = (KOTodoViewItem *)(mTodoListView->selectedItem());
879// if (!item) item = mActiveItem; 881// if (!item) item = mActiveItem;
880 if (item) selected.append(item->todo()); 882 if (item) selected.append(item->todo());
881 883
882 return selected; 884 return selected;
883} 885}
884 886
885QPtrList<Todo> KOTodoView::selectedTodos() 887QPtrList<Todo> KOTodoView::selectedTodos()
886{ 888{
887 QPtrList<Todo> selected; 889 QPtrList<Todo> selected;
888 890
889 KOTodoViewItem *item = (KOTodoViewItem *)(mTodoListView->selectedItem()); 891 KOTodoViewItem *item = (KOTodoViewItem *)(mTodoListView->selectedItem());
890// if (!item) item = mActiveItem; 892// if (!item) item = mActiveItem;
891 if (item) selected.append(item->todo()); 893 if (item) selected.append(item->todo());
892 894
893 return selected; 895 return selected;
894} 896}
895 897
896void KOTodoView::changeEventDisplay(Event *, int) 898void KOTodoView::changeEventDisplay(Event *, int)
897{ 899{
898 updateView(); 900 updateView();
899} 901}
900 902
901void KOTodoView::showDates(const QDate &, const QDate &) 903void KOTodoView::showDates(const QDate &, const QDate &)
902{ 904{
903} 905}
904 906
905void KOTodoView::showEvents(QPtrList<Event>) 907void KOTodoView::showEvents(QPtrList<Event>)
906{ 908{
907 kdDebug() << "KOTodoView::selectEvents(): not yet implemented" << endl; 909 kdDebug() << "KOTodoView::selectEvents(): not yet implemented" << endl;
908} 910}
909 911
910void KOTodoView::printPreview(CalPrinter *calPrinter, const QDate &fd, 912void KOTodoView::printPreview(CalPrinter *calPrinter, const QDate &fd,
911 const QDate &td) 913 const QDate &td)
912{ 914{
913#ifndef KORG_NOPRINTER 915#ifndef KORG_NOPRINTER
914 calPrinter->preview(CalPrinter::Todolist, fd, td); 916 calPrinter->preview(CalPrinter::Todolist, fd, td);
915#endif 917#endif
916} 918}
917 919
918void KOTodoView::editItem(QListViewItem *item ) 920void KOTodoView::editItem(QListViewItem *item )
919{ 921{
920 emit editTodoSignal(((KOTodoViewItem *)item)->todo()); 922 emit editTodoSignal(((KOTodoViewItem *)item)->todo());
921} 923}
922 924
923void KOTodoView::showItem(QListViewItem *item,const QPoint &,int) 925void KOTodoView::showItem(QListViewItem *item,const QPoint &,int)
924{ 926{
925 emit showTodoSignal(((KOTodoViewItem *)item)->todo()); 927 emit showTodoSignal(((KOTodoViewItem *)item)->todo());
926} 928}
927 929
928void KOTodoView::popupMenu(QListViewItem *item,const QPoint &p,int column) 930void KOTodoView::popupMenu(QListViewItem *item,const QPoint &p,int column)
929{ 931{
930 pendingSubtodo = 0; 932 pendingSubtodo = 0;
931 mActiveItem = (KOTodoViewItem *)item; 933 mActiveItem = (KOTodoViewItem *)item;
932 if (item) { 934 if (item) {
933 switch (column){ 935 switch (column){
934 case 1: 936 case 1:
935 mPriorityPopupMenu->popup(QCursor::pos ()); break; 937 mPriorityPopupMenu->popup(QCursor::pos ()); break;
936 case 2: 938 case 2:
937 mPercentageCompletedPopupMenu->popup(QCursor::pos ()); break; 939 mPercentageCompletedPopupMenu->popup(QCursor::pos ()); break;
938 case 3: 940 case 3:
939 moveTodo(); 941 moveTodo();
940 break; 942 break;
941 case 8: 943 case 8:
942 getCategoryPopupMenu((KOTodoViewItem *)item)->popup(QCursor::pos ()); break; 944 getCategoryPopupMenu((KOTodoViewItem *)item)->popup(QCursor::pos ()); break;
943 default: 945 default:
944 mItemPopupMenu->popup(QCursor::pos()); 946 mItemPopupMenu->popup(QCursor::pos());
945 } 947 }
946 } else mPopupMenu->popup(QCursor::pos()); 948 } else mPopupMenu->popup(QCursor::pos());
947} 949}
948void KOTodoView::newTodo() 950void KOTodoView::newTodo()
949{ 951{
950 emit newTodoSignal(); 952 emit newTodoSignal();
951} 953}
952 954
953void KOTodoView::newSubTodo() 955void KOTodoView::newSubTodo()
954{ 956{
955 if (mActiveItem) { 957 if (mActiveItem) {
956 emit newSubTodoSignal(mActiveItem->todo()); 958 emit newSubTodoSignal(mActiveItem->todo());
957 } 959 }
958} 960}
959void KOTodoView::unparentTodo() 961void KOTodoView::unparentTodo()
960{ 962{
961 if (mActiveItem) { 963 if (mActiveItem) {
962 emit unparentTodoSignal(mActiveItem->todo()); 964 emit unparentTodoSignal(mActiveItem->todo());
963 } 965 }
964} 966}
965 967
966void KOTodoView::reparentTodo() 968void KOTodoView::reparentTodo()
967{ 969{
968 if (mActiveItem) { 970 if (mActiveItem) {
969 topLevelWidget()->setCaption(i18n("Click on new parent item")); 971 topLevelWidget()->setCaption(i18n("Click on new parent item"));
970 pendingSubtodo = mActiveItem; 972 pendingSubtodo = mActiveItem;
971 } 973 }
972} 974}
973void KOTodoView::editTodo() 975void KOTodoView::editTodo()
974{ 976{
975 if (mActiveItem) { 977 if (mActiveItem) {
976 emit editTodoSignal(mActiveItem->todo()); 978 emit editTodoSignal(mActiveItem->todo());
977 } 979 }
978} 980}
979void KOTodoView::cloneTodo() 981void KOTodoView::cloneTodo()
980{ 982{
981 if (mActiveItem) { 983 if (mActiveItem) {
982 emit cloneTodoSignal((Incidence*)mActiveItem->todo()); 984 emit cloneTodoSignal((Incidence*)mActiveItem->todo());
983 } 985 }
984} 986}
985void KOTodoView::cancelTodo() 987void KOTodoView::cancelTodo()
986{ 988{
987 if (mActiveItem) { 989 if (mActiveItem) {
988 emit cancelTodoSignal((Incidence*)mActiveItem->todo()); 990 emit cancelTodoSignal((Incidence*)mActiveItem->todo());
989 } 991 }
990} 992}
991void KOTodoView::moveTodo() 993void KOTodoView::moveTodo()
992{ 994{
993 if (mActiveItem) { 995 if (mActiveItem) {
diff --git a/korganizer/mainwindow.cpp b/korganizer/mainwindow.cpp
index 94d7293..1320231 100644
--- a/korganizer/mainwindow.cpp
+++ b/korganizer/mainwindow.cpp
@@ -1,1311 +1,1315 @@
1#include <stdlib.h> 1#include <stdlib.h>
2 2
3#include <qaction.h> 3#include <qaction.h>
4#include <qpopupmenu.h> 4#include <qpopupmenu.h>
5#include <qpainter.h> 5#include <qpainter.h>
6#include <qwhatsthis.h> 6#include <qwhatsthis.h>
7#include <qpushbutton.h> 7#include <qpushbutton.h>
8#include <qmessagebox.h> 8#include <qmessagebox.h>
9#include <qlineedit.h> 9#include <qlineedit.h>
10#include <qtextcodec.h> 10#include <qtextcodec.h>
11#include <qfile.h> 11#include <qfile.h>
12#include <qdir.h> 12#include <qdir.h>
13#include <qapp.h> 13#include <qapp.h>
14#include <qfileinfo.h> 14#include <qfileinfo.h>
15#include <qlabel.h> 15#include <qlabel.h>
16#include <qspinbox.h> 16#include <qspinbox.h>
17#include <qcheckbox.h> 17#include <qcheckbox.h>
18#include <qmap.h> 18#include <qmap.h>
19#include <qwmatrix.h> 19#include <qwmatrix.h>
20#include <qtextbrowser.h> 20#include <qtextbrowser.h>
21#include <qtextstream.h> 21#include <qtextstream.h>
22#ifndef DESKTOP_VERSION 22#ifndef DESKTOP_VERSION
23#include <qpe/global.h> 23#include <qpe/global.h>
24#include <qpe/qpemenubar.h> 24#include <qpe/qpemenubar.h>
25#include <qpe/qpetoolbar.h> 25#include <qpe/qpetoolbar.h>
26#include <qpe/resource.h> 26#include <qpe/resource.h>
27#include <qpe/qpeapplication.h> 27#include <qpe/qpeapplication.h>
28#include <qtopia/alarmserver.h> 28#include <qtopia/alarmserver.h>
29#include <qtopia/qcopenvelope_qws.h> 29#include <qtopia/qcopenvelope_qws.h>
30#include <unistd.h> // for sleep 30#include <unistd.h> // for sleep
31#else 31#else
32#include <qmenubar.h> 32#include <qmenubar.h>
33#include <qtoolbar.h> 33#include <qtoolbar.h>
34#include <qapplication.h> 34#include <qapplication.h>
35//#include <resource.h> 35//#include <resource.h>
36 36
37#endif 37#endif
38#include <libkcal/calendarlocal.h> 38#include <libkcal/calendarlocal.h>
39#include <libkcal/todo.h> 39#include <libkcal/todo.h>
40#include <libkcal/phoneformat.h> 40#include <libkcal/phoneformat.h>
41#include <libkdepim/ksyncprofile.h> 41#include <libkdepim/ksyncprofile.h>
42#include <libkdepim/phoneaccess.h> 42#include <libkdepim/phoneaccess.h>
43#include <libkcal/kincidenceformatter.h> 43#include <libkcal/kincidenceformatter.h>
44#include <libkdepim/kpimglobalprefs.h> 44#include <libkdepim/kpimglobalprefs.h>
45 45
46#include "calendarview.h" 46#include "calendarview.h"
47#include "koviewmanager.h" 47#include "koviewmanager.h"
48#include "datenavigator.h" 48#include "datenavigator.h"
49#include "koagendaview.h" 49#include "koagendaview.h"
50#include "koagenda.h" 50#include "koagenda.h"
51#include "kodialogmanager.h" 51#include "kodialogmanager.h"
52#include "kdialogbase.h" 52#include "kdialogbase.h"
53#include "kapplication.h" 53#include "kapplication.h"
54#include "kofilterview.h" 54#include "kofilterview.h"
55#include "kstandarddirs.h" 55#include "kstandarddirs.h"
56#include "koprefs.h" 56#include "koprefs.h"
57#include "kfiledialog.h" 57#include "kfiledialog.h"
58#include "koglobals.h" 58#include "koglobals.h"
59#include "kglobal.h" 59#include "kglobal.h"
60#include "ktoolbar.h" 60#include "ktoolbar.h"
61#include "klocale.h" 61#include "klocale.h"
62#include "kconfig.h" 62#include "kconfig.h"
63#include "externalapphandler.h" 63#include "externalapphandler.h"
64#include <kglobalsettings.h> 64#include <kglobalsettings.h>
65 65
66using namespace KCal; 66using namespace KCal;
67#ifndef _WIN32_ 67#ifndef _WIN32_
68#include <unistd.h> 68#include <unistd.h>
69#else 69#else
70#ifdef _OL_IMPORT_ 70#ifdef _OL_IMPORT_
71#include "koimportoldialog.h" 71#include "koimportoldialog.h"
72#endif 72#endif
73#endif 73#endif
74#include "mainwindow.h" 74#include "mainwindow.h"
75 75
76 76
77class KOex2phonePrefs : public QDialog 77class KOex2phonePrefs : public QDialog
78{ 78{
79 public: 79 public:
80 KOex2phonePrefs( QWidget *parent=0, const char *name=0 ) : 80 KOex2phonePrefs( QWidget *parent=0, const char *name=0 ) :
81 QDialog( parent, name, true ) 81 QDialog( parent, name, true )
82 { 82 {
83 setCaption( i18n("Export to phone options") ); 83 setCaption( i18n("Export to phone options") );
84 QVBoxLayout* lay = new QVBoxLayout( this ); 84 QVBoxLayout* lay = new QVBoxLayout( this );
85 lay->setSpacing( 3 ); 85 lay->setSpacing( 3 );
86 lay->setMargin( 3 ); 86 lay->setMargin( 3 );
87 QLabel *lab; 87 QLabel *lab;
88 lay->addWidget(lab = new QLabel( i18n("Please read Help-Sync Howto\nto know what settings to use."), this ) ); 88 lay->addWidget(lab = new QLabel( i18n("Please read Help-Sync Howto\nto know what settings to use."), this ) );
89 lab->setAlignment (AlignHCenter ); 89 lab->setAlignment (AlignHCenter );
90 QHBox* temphb; 90 QHBox* temphb;
91 temphb = new QHBox( this ); 91 temphb = new QHBox( this );
92 new QLabel( i18n("I/O device: "), temphb ); 92 new QLabel( i18n("I/O device: "), temphb );
93 mPhoneDevice = new QLineEdit( temphb); 93 mPhoneDevice = new QLineEdit( temphb);
94 lay->addWidget( temphb ); 94 lay->addWidget( temphb );
95 temphb = new QHBox( this ); 95 temphb = new QHBox( this );
96 new QLabel( i18n("Connection: "), temphb ); 96 new QLabel( i18n("Connection: "), temphb );
97 mPhoneConnection = new QLineEdit( temphb); 97 mPhoneConnection = new QLineEdit( temphb);
98 lay->addWidget( temphb ); 98 lay->addWidget( temphb );
99 temphb = new QHBox( this ); 99 temphb = new QHBox( this );
100 new QLabel( i18n("Model(opt.): "), temphb ); 100 new QLabel( i18n("Model(opt.): "), temphb );
101 mPhoneModel = new QLineEdit( temphb); 101 mPhoneModel = new QLineEdit( temphb);
102 lay->addWidget( temphb ); 102 lay->addWidget( temphb );
103 mWriteBackFuture= new QCheckBox( i18n("Write back events in future only"), this ); 103 mWriteBackFuture= new QCheckBox( i18n("Write back events in future only"), this );
104 mWriteBackFuture->setChecked( true ); 104 mWriteBackFuture->setChecked( true );
105 lay->addWidget( mWriteBackFuture ); 105 lay->addWidget( mWriteBackFuture );
106 temphb = new QHBox( this ); 106 temphb = new QHBox( this );
107 new QLabel( i18n("Max. weeks in future: ") , temphb ); 107 new QLabel( i18n("Max. weeks in future: ") , temphb );
108 mWriteBackFutureWeeks= new QSpinBox(1,104, 1, temphb); 108 mWriteBackFutureWeeks= new QSpinBox(1,104, 1, temphb);
109 mWriteBackFutureWeeks->setValue( 8 ); 109 mWriteBackFutureWeeks->setValue( 8 );
110 lay->addWidget( temphb ); 110 lay->addWidget( temphb );
111 lay->addWidget(lab = new QLabel( i18n("NOTE: This will remove all old\ntodo/calendar data on phone!"), this ) ); 111 lay->addWidget(lab = new QLabel( i18n("NOTE: This will remove all old\ntodo/calendar data on phone!"), this ) );
112 lab->setAlignment (AlignHCenter ); 112 lab->setAlignment (AlignHCenter );
113 QPushButton * ok = new QPushButton( i18n("Export to mobile phone!"), this ); 113 QPushButton * ok = new QPushButton( i18n("Export to mobile phone!"), this );
114 lay->addWidget( ok ); 114 lay->addWidget( ok );
115 QPushButton * cancel = new QPushButton( i18n("Cancel"), this ); 115 QPushButton * cancel = new QPushButton( i18n("Cancel"), this );
116 lay->addWidget( cancel ); 116 lay->addWidget( cancel );
117 connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) ); 117 connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) );
118 connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) ); 118 connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) );
119 resize( 220, 240 ); 119 resize( 220, 240 );
120 qApp->processEvents(); 120 qApp->processEvents();
121 int dw = QApplication::desktop()->width(); 121 int dw = QApplication::desktop()->width();
122 int dh = QApplication::desktop()->height(); 122 int dh = QApplication::desktop()->height();
123 move( (dw-width())/2, (dh - height() )/2 ); 123 move( (dw-width())/2, (dh - height() )/2 );
124 } 124 }
125 125
126public: 126public:
127 QLineEdit* mPhoneConnection, *mPhoneDevice, *mPhoneModel; 127 QLineEdit* mPhoneConnection, *mPhoneDevice, *mPhoneModel;
128 QCheckBox* mWriteBackFuture; 128 QCheckBox* mWriteBackFuture;
129 QSpinBox* mWriteBackFutureWeeks; 129 QSpinBox* mWriteBackFutureWeeks;
130}; 130};
131 131
132int globalFlagBlockStartup; 132int globalFlagBlockStartup;
133MainWindow::MainWindow( QWidget *parent, const char *name, QString msg) : 133MainWindow::MainWindow( QWidget *parent, const char *name, QString msg) :
134 QMainWindow( parent, name ) 134 QMainWindow( parent, name )
135{ 135{
136 136
137 mClosed = false; 137 mClosed = false;
138 //QString confFile = KStandardDirs::appDir() + "config/korganizerrc"; 138 //QString confFile = KStandardDirs::appDir() + "config/korganizerrc";
139 QString confFile = locateLocal("config","korganizerrc"); 139 QString confFile = locateLocal("config","korganizerrc");
140 QFileInfo finf ( confFile ); 140 QFileInfo finf ( confFile );
141 bool showWarning = !finf.exists(); 141 bool showWarning = !finf.exists();
142 setIcon(SmallIcon( "ko24" ) ); 142 setIcon(SmallIcon( "ko24" ) );
143 mBlockAtStartup = true; 143 mBlockAtStartup = true;
144 mFlagKeyPressed = false; 144 mFlagKeyPressed = false;
145 setCaption("KO/Pi"); 145 setCaption("KO/Pi");
146 KOPrefs *p = KOPrefs::instance(); 146 KOPrefs *p = KOPrefs::instance();
147 KPimGlobalPrefs::instance()->setGlobalConfig(); 147 KPimGlobalPrefs::instance()->setGlobalConfig();
148 p->mCurrentDisplayedView = 0; 148 p->mCurrentDisplayedView = 0;
149 if ( p->mHourSize > 22 ) 149 if ( p->mHourSize > 22 )
150 p->mHourSize = 22; 150 p->mHourSize = 22;
151 QMainWindow::ToolBarDock tbd; 151 QMainWindow::ToolBarDock tbd;
152 if ( p->mToolBarHor ) { 152 if ( p->mToolBarHor ) {
153 if ( p->mToolBarUp ) 153 if ( p->mToolBarUp )
154 tbd = Bottom; 154 tbd = Bottom;
155 else 155 else
156 tbd = Top; 156 tbd = Top;
157 } 157 }
158 else { 158 else {
159 if ( p->mToolBarUp ) 159 if ( p->mToolBarUp )
160 tbd = Right; 160 tbd = Right;
161 else 161 else
162 tbd = Left; 162 tbd = Left;
163 } 163 }
164 if ( KOPrefs::instance()->mUseAppColors ) 164 if ( KOPrefs::instance()->mUseAppColors )
165 QApplication::setPalette( QPalette (KOPrefs::instance()->mAppColor1, KOPrefs::instance()->mAppColor2), true ); 165 QApplication::setPalette( QPalette (KOPrefs::instance()->mAppColor1, KOPrefs::instance()->mAppColor2), true );
166 globalFlagBlockStartup = 1; 166 globalFlagBlockStartup = 1;
167 iconToolBar = new QPEToolBar( this ); 167 iconToolBar = new QPEToolBar( this );
168 addToolBar (iconToolBar , tbd ); 168 addToolBar (iconToolBar , tbd );
169 169
170#ifdef DESKTOP_VERSION 170#ifdef DESKTOP_VERSION
171 if ( KOPrefs::instance()->mShowIconFilter ) 171 if ( KOPrefs::instance()->mShowIconFilter )
172#else 172#else
173 if ( KOPrefs::instance()->mShowIconFilter || !p->mShowIconOnetoolbar ) 173 if ( KOPrefs::instance()->mShowIconFilter || !p->mShowIconOnetoolbar )
174#endif 174#endif
175 175
176{ 176{
177 if ( p->mToolBarHorF ) { 177 if ( p->mToolBarHorF ) {
178 if ( p->mToolBarUpF ) 178 if ( p->mToolBarUpF )
179 tbd = Bottom; 179 tbd = Bottom;
180 else 180 else
181 tbd = Top; 181 tbd = Top;
182 } 182 }
183 else { 183 else {
184 if ( p->mToolBarUpF ) 184 if ( p->mToolBarUpF )
185 tbd = Right; 185 tbd = Right;
186 else 186 else
187 tbd = Left; 187 tbd = Left;
188 } 188 }
189 filterToolBar = new QPEToolBar ( this ); 189 filterToolBar = new QPEToolBar ( this );
190 filterMenubar = new QMenuBar( 0 ); 190 filterMenubar = new QMenuBar( 0 );
191 QFontMetrics fm ( filterMenubar->font() ); 191 QFontMetrics fm ( filterMenubar->font() );
192 192
193 filterPopupMenu = new QPopupMenu( this ); 193 filterPopupMenu = new QPopupMenu( this );
194 filterMenubar->insertItem( i18n("No Filter"), filterPopupMenu,0 ); 194 filterMenubar->insertItem( i18n("No Filter"), filterPopupMenu,0 );
195 QString addTest = "A"; 195 QString addTest = "A";
196 filterMenubar->setMinimumWidth( fm.width( i18n("No Filter")+addTest ) ); 196 filterMenubar->setMinimumWidth( fm.width( i18n("No Filter")+addTest ) );
197#ifdef DESKTOP_VERSION 197#ifdef DESKTOP_VERSION
198 addTest = "AAABBBCCCx"; 198 addTest = "AAABBBCCCx";
199#else 199#else
200 addTest = "AAx"; 200 addTest = "AAx";
201#endif 201#endif
202 filterMenubar->setMaximumWidth( fm.width( i18n("No Filter")+addTest ) ); 202 filterMenubar->setMaximumWidth( fm.width( i18n("No Filter")+addTest ) );
203 addToolBar (filterToolBar , tbd ); 203 addToolBar (filterToolBar , tbd );
204 connect ( filterPopupMenu , SIGNAL( activated ( int ) ), this, SLOT (selectFilterPopup( int ) ) ); 204 connect ( filterPopupMenu , SIGNAL( activated ( int ) ), this, SLOT (selectFilterPopup( int ) ) );
205 connect ( filterPopupMenu , SIGNAL( aboutToShow() ), this, SLOT (fillFilterMenuPopup() ) ); 205 connect ( filterPopupMenu , SIGNAL( aboutToShow() ), this, SLOT (fillFilterMenuPopup() ) );
206 if ( !KOPrefs::instance()->mShowIconFilter && !p->mShowIconOnetoolbar ) 206 if ( !KOPrefs::instance()->mShowIconFilter && !p->mShowIconOnetoolbar )
207 filterToolBar->hide(); 207 filterToolBar->hide();
208 } else { 208 } else {
209 filterToolBar = 0; 209 filterToolBar = 0;
210 filterMenubar = 0; 210 filterMenubar = 0;
211 filterPopupMenu = 0; 211 filterPopupMenu = 0;
212 } 212 }
213 if ( p->mShowIconOnetoolbar ) { 213 if ( p->mShowIconOnetoolbar ) {
214 viewToolBar = iconToolBar ; 214 viewToolBar = iconToolBar ;
215 navigatorToolBar = iconToolBar ; 215 navigatorToolBar = iconToolBar ;
216 } else { 216 } else {
217#ifndef DESKTOP_VERSION 217#ifndef DESKTOP_VERSION
218 setToolBarsMovable( false ); 218 setToolBarsMovable( false );
219#endif 219#endif
220 if ( p->mToolBarHorV ) { 220 if ( p->mToolBarHorV ) {
221 if ( p->mToolBarUpV ) 221 if ( p->mToolBarUpV )
222 tbd = Bottom; 222 tbd = Bottom;
223 else 223 else
224 tbd = Top; 224 tbd = Top;
225 } 225 }
226 else { 226 else {
227 if ( p->mToolBarUpV ) 227 if ( p->mToolBarUpV )
228 tbd = Right; 228 tbd = Right;
229 else 229 else
230 tbd = Left; 230 tbd = Left;
231 } 231 }
232 viewToolBar = new QPEToolBar( this ); 232 viewToolBar = new QPEToolBar( this );
233 addToolBar (viewToolBar , tbd ); 233 addToolBar (viewToolBar , tbd );
234 if ( p->mToolBarHorN ) { 234 if ( p->mToolBarHorN ) {
235 if ( p->mToolBarUpN ) 235 if ( p->mToolBarUpN )
236 tbd = Bottom; 236 tbd = Bottom;
237 else 237 else
238 tbd = Top; 238 tbd = Top;
239 } 239 }
240 else { 240 else {
241 if ( p->mToolBarUpN ) 241 if ( p->mToolBarUpN )
242 tbd = Right; 242 tbd = Right;
243 else 243 else
244 tbd = Left; 244 tbd = Left;
245 } 245 }
246 navigatorToolBar = new QPEToolBar( this ); 246 navigatorToolBar = new QPEToolBar( this );
247 addToolBar (navigatorToolBar , tbd ); 247 addToolBar (navigatorToolBar , tbd );
248 } 248 }
249 249
250 250
251 251
252 mCalendarModifiedFlag = false; 252 mCalendarModifiedFlag = false;
253 QLabel* splash = new QLabel(i18n("KO/Pi is starting ... "), this ); 253 QLabel* splash = new QLabel(i18n("KO/Pi is starting ... "), this );
254 splash->setAlignment ( AlignCenter ); 254 splash->setAlignment ( AlignCenter );
255 setCentralWidget( splash ); 255 setCentralWidget( splash );
256#ifndef DESKTOP_VERSION 256#ifndef DESKTOP_VERSION
257 showMaximized(); 257 showMaximized();
258#endif 258#endif
259 259
260 //qDebug("Mainwidget x %d y %d w %d h %d", x(), y(), width(), height ()); 260 //qDebug("Mainwidget x %d y %d w %d h %d", x(), y(), width(), height ());
261 setDefaultPreferences(); 261 setDefaultPreferences();
262 mCalendar = new CalendarLocal(); 262 mCalendar = new CalendarLocal();
263 mView = new CalendarView( mCalendar, this,"mCalendar " ); 263 mView = new CalendarView( mCalendar, this,"mCalendar " );
264 mView->hide(); 264 mView->hide();
265 //mView->resize(splash->size() ); 265 //mView->resize(splash->size() );
266 initActions(); 266 initActions();
267 mSyncManager = new KSyncManager((QWidget*)this, (KSyncInterface*)mView, KSyncManager::KOPI, KOPrefs::instance(), syncMenu); 267 mSyncManager = new KSyncManager((QWidget*)this, (KSyncInterface*)mView, KSyncManager::KOPI, KOPrefs::instance(), syncMenu);
268 mSyncManager->setBlockSave(false); 268 mSyncManager->setBlockSave(false);
269 mView->setSyncManager(mSyncManager); 269 mView->setSyncManager(mSyncManager);
270#ifndef DESKTOP_VERSION 270#ifndef DESKTOP_VERSION
271 iconToolBar->show(); 271 iconToolBar->show();
272 qApp->processEvents(); 272 qApp->processEvents();
273#endif 273#endif
274 //qDebug("Splashwidget x %d y %d w %d h %d", splash-> x(), splash->y(), splash->width(),splash-> height ()); 274 //qDebug("Splashwidget x %d y %d w %d h %d", splash-> x(), splash->y(), splash->width(),splash-> height ());
275 int vh = height() ; 275 int vh = height() ;
276 int vw = width(); 276 int vw = width();
277 //qDebug("Toolbar hei %d ",iconToolBar->height() ); 277 //qDebug("Toolbar hei %d ",iconToolBar->height() );
278 if ( iconToolBar->orientation () == Qt:: Horizontal ) { 278 if ( iconToolBar->orientation () == Qt:: Horizontal ) {
279 vh -= iconToolBar->height(); 279 vh -= iconToolBar->height();
280 } else { 280 } else {
281 vw -= iconToolBar->height(); 281 vw -= iconToolBar->height();
282 } 282 }
283 //mView->setMaximumSize( splash->size() ); 283 //mView->setMaximumSize( splash->size() );
284 //mView->resize( splash->size() ); 284 //mView->resize( splash->size() );
285 //qDebug("MainView x %d y %d w %d h %d", mView->x(),mView-> y(), mView->width(), mView->height ()); 285 //qDebug("MainView x %d y %d w %d h %d", mView->x(),mView-> y(), mView->width(), mView->height ());
286 mView->readSettings(); 286 mView->readSettings();
287 bool newFile = false; 287 bool newFile = false;
288 if( !QFile::exists( defaultFileName() ) ) { 288 if( !QFile::exists( defaultFileName() ) ) {
289 QFileInfo finfo ( defaultFileName() ); 289 QFileInfo finfo ( defaultFileName() );
290 QString oldFile = QDir::convertSeparators( QDir::homeDirPath()+"/Applications/korganizer/mycalendar.ics"); 290 QString oldFile = QDir::convertSeparators( QDir::homeDirPath()+"/Applications/korganizer/mycalendar.ics");
291 QString message = "You are starting KO/Pi for the\nfirst time after updating to a\nversion >= 1.9.1. The location of the\ndefault calendar file has changed.\nA mycalendar.ics file was detected\nat the old location.\nThis file will be loaded now\nand stored at the new location!\n(Config file location has changed, too!)\nPlease read menu Help-What's New!\n"; 291 QString message = "You are starting KO/Pi for the\nfirst time after updating to a\nversion >= 1.9.1. The location of the\ndefault calendar file has changed.\nA mycalendar.ics file was detected\nat the old location.\nThis file will be loaded now\nand stored at the new location!\n(Config file location has changed, too!)\nPlease read menu Help-What's New!\n";
292 finfo.setFile( oldFile ); 292 finfo.setFile( oldFile );
293 if (finfo.exists() ) { 293 if (finfo.exists() ) {
294 KMessageBox::information( this, message); 294 KMessageBox::information( this, message);
295 mView->openCalendar( oldFile ); 295 mView->openCalendar( oldFile );
296 qApp->processEvents(); 296 qApp->processEvents();
297 } else { 297 } else {
298 oldFile = QDir::convertSeparators( QDir::homeDirPath()+"/korganizer/mycalendar.ics"); 298 oldFile = QDir::convertSeparators( QDir::homeDirPath()+"/korganizer/mycalendar.ics");
299 finfo.setFile( oldFile ); 299 finfo.setFile( oldFile );
300 if (finfo.exists() ) { 300 if (finfo.exists() ) {
301 KMessageBox::information( this, message); 301 KMessageBox::information( this, message);
302 mView->openCalendar( oldFile ); 302 mView->openCalendar( oldFile );
303 qApp->processEvents(); 303 qApp->processEvents();
304 } 304 }
305 } 305 }
306 mView->saveCalendar( defaultFileName() ); 306 mView->saveCalendar( defaultFileName() );
307 newFile = true; 307 newFile = true;
308 } 308 }
309 309
310 QTime neededSaveTime = QDateTime::currentDateTime().time(); 310 QTime neededSaveTime = QDateTime::currentDateTime().time();
311 mView->openCalendar( defaultFileName() ); 311 mView->openCalendar( defaultFileName() );
312 int msNeeded = neededSaveTime.msecsTo( QDateTime::currentDateTime().time() ); 312 int msNeeded = neededSaveTime.msecsTo( QDateTime::currentDateTime().time() );
313 qDebug("KO: Calendar loading time: %d ms",msNeeded ); 313 qDebug("KO: Calendar loading time: %d ms",msNeeded );
314 314
315 if ( KPimGlobalPrefs::instance()->mPreferredLanguage != KOPrefs::instance()->mOldLoadedLanguage ) { 315 if ( KPimGlobalPrefs::instance()->mPreferredLanguage != KOPrefs::instance()->mOldLoadedLanguage ) {
316 KOPrefs::instance()->setAllDefaults(); 316 KOPrefs::instance()->setAllDefaults();
317 int count = mView->addCategories(); 317 int count = mView->addCategories();
318 } 318 }
319 processIncidenceSelection( 0 ); 319 processIncidenceSelection( 0 );
320 connect( mView, SIGNAL( incidenceSelected( Incidence * ) ), 320 connect( mView, SIGNAL( incidenceSelected( Incidence * ) ),
321 SLOT( processIncidenceSelection( Incidence * ) ) ); 321 SLOT( processIncidenceSelection( Incidence * ) ) );
322 connect( mView, SIGNAL( modifiedChanged( bool ) ), 322 connect( mView, SIGNAL( modifiedChanged( bool ) ),
323 SLOT( slotModifiedChanged( bool ) ) ); 323 SLOT( slotModifiedChanged( bool ) ) );
324 324
325 325
326 connect( mView, SIGNAL( tempDisableBR(bool) ), 326 connect( mView, SIGNAL( tempDisableBR(bool) ),
327 SLOT( disableBR(bool) ) ); 327 SLOT( disableBR(bool) ) );
328 connect( &mSaveTimer, SIGNAL( timeout() ), SLOT( save() ) ); 328 connect( &mSaveTimer, SIGNAL( timeout() ), SLOT( save() ) );
329 mView->setModified( false ); 329 mView->setModified( false );
330 mBlockAtStartup = false; 330 mBlockAtStartup = false;
331 mView->setModified( false ); 331 mView->setModified( false );
332 setCentralWidget( mView ); 332 setCentralWidget( mView );
333 globalFlagBlockStartup = 0; 333 globalFlagBlockStartup = 0;
334 mView->show(); 334 mView->show();
335 delete splash; 335 delete splash;
336 if ( newFile ) 336 if ( newFile )
337 mView->updateConfig(); 337 mView->updateConfig();
338 // qApp->processEvents(); 338 // qApp->processEvents();
339 //qDebug("MainView x %d y %d w %d h %d", mView->x(),mView-> y(), mView->width(), mView->height ()); 339 //qDebug("MainView x %d y %d w %d h %d", mView->x(),mView-> y(), mView->width(), mView->height ());
340 //fillSyncMenu(); 340 //fillSyncMenu();
341 341
342 342
343 connect(mSyncManager , SIGNAL( save() ), this, SLOT( save() ) ); 343 connect(mSyncManager , SIGNAL( save() ), this, SLOT( save() ) );
344 connect(mView , SIGNAL( save() ), this, SLOT( save() ) ); 344 connect(mView , SIGNAL( save() ), this, SLOT( save() ) );
345 connect(mView , SIGNAL( saveStopTimer() ), this, SLOT( saveStopTimer() ) ); 345 connect(mView , SIGNAL( saveStopTimer() ), this, SLOT( saveStopTimer() ) );
346 connect(mSyncManager , SIGNAL( request_file() ), this, SLOT( syncFileRequest() ) ); 346 connect(mSyncManager , SIGNAL( request_file() ), this, SLOT( syncFileRequest() ) );
347 connect(mSyncManager , SIGNAL( getFile( bool )), this, SLOT(getFile( bool ) ) ); 347 connect(mSyncManager , SIGNAL( getFile( bool )), this, SLOT(getFile( bool ) ) );
348 mSyncManager->setDefaultFileName( sentSyncFile()); 348 mSyncManager->setDefaultFileName( sentSyncFile());
349 connect ( syncMenu, SIGNAL( activated ( int ) ), mSyncManager, SLOT (slotSyncMenu( int ) ) ); 349 connect ( syncMenu, SIGNAL( activated ( int ) ), mSyncManager, SLOT (slotSyncMenu( int ) ) );
350 mSyncManager->fillSyncMenu(); 350 mSyncManager->fillSyncMenu();
351 351
352 352
353 353
354 mView->viewManager()->agendaView()->setStartHour( KOPrefs::instance()->mDayBegins ); 354 mView->viewManager()->agendaView()->setStartHour( KOPrefs::instance()->mDayBegins );
355 if ( showWarning ) { 355 if ( showWarning ) {
356 KMessageBox::information( this, 356 KMessageBox::information( this,
357 "You are starting KO/Pi for the first time.\nPlease read menu: Help-What's New,\nif you did an update!\nPlease choose your timezone in the \nConfigure Dialog TAB Time Zone!\nPlease choose your language\nin the TAB Locale!\nYou get the Configure Dialog\nvia Menu: Actions - Configure....\nClick OK to show the Configure Dialog!\n", "KO/Pi information"); 357 "You are starting KO/Pi for the first time.\nPlease read menu: Help-What's New,\nif you did an update!\nPlease choose your timezone in the \nConfigure Dialog TAB Time Zone!\nPlease choose your language\nin the TAB Locale!\nYou get the Configure Dialog\nvia Menu: Actions - Configure....\nClick OK to show the Configure Dialog!\n", "KO/Pi information");
358 qApp->processEvents(); 358 qApp->processEvents();
359 mView->dialogManager()->showSyncOptions(); 359 mView->dialogManager()->showSyncOptions();
360 } 360 }
361 361
362 //US listen for result adressed from Ka/Pi 362 //US listen for result adressed from Ka/Pi
363#ifndef DESKTOP_VERSION 363#ifndef DESKTOP_VERSION
364 connect(qApp, SIGNAL (appMessage ( const QCString &, const QByteArray & )), ExternalAppHandler::instance(), SLOT (appMessage ( const QCString &, const QByteArray & ))); 364 connect(qApp, SIGNAL (appMessage ( const QCString &, const QByteArray & )), ExternalAppHandler::instance(), SLOT (appMessage ( const QCString &, const QByteArray & )));
365#endif 365#endif
366#ifndef DESKTOP_VERSION 366#ifndef DESKTOP_VERSION
367 infrared = 0; 367 infrared = 0;
368#endif 368#endif
369 updateFilterToolbar(); 369 updateFilterToolbar();
370 updateWeek( mView->startDate() ); 370 updateWeek( mView->startDate() );
371 connect( mView->dateNavigator(), SIGNAL( datesSelected( const KCal::DateList & ) ), 371 connect( mView->dateNavigator(), SIGNAL( datesSelected( const KCal::DateList & ) ),
372 SLOT( updateWeekNum( const KCal::DateList & ) ) ); 372 SLOT( updateWeekNum( const KCal::DateList & ) ) );
373 mBRdisabled = false; 373 mBRdisabled = false;
374 //toggleBeamReceive(); 374 //toggleBeamReceive();
375
376 QTimer::singleShot( 1000, mView, SLOT ( checkAlarms() ));
375} 377}
376MainWindow::~MainWindow() 378MainWindow::~MainWindow()
377{ 379{
378 //qDebug("MainWindow::~MainWindow() "); 380 //qDebug("MainWindow::~MainWindow() ");
379 //save toolbar location 381 //save toolbar location
380 delete mCalendar; 382 delete mCalendar;
381 delete mSyncManager; 383 delete mSyncManager;
382#ifndef DESKTOP_VERSION 384#ifndef DESKTOP_VERSION
383 if ( infrared ) 385 if ( infrared )
384 delete infrared; 386 delete infrared;
385#endif 387#endif
386 388
387 389
388} 390}
389 391
390void MainWindow::disableBR(bool b) 392void MainWindow::disableBR(bool b)
391{ 393{
392#ifndef DESKTOP_VERSION 394#ifndef DESKTOP_VERSION
393 if ( b ) { 395 if ( b ) {
394 if ( infrared ) { 396 if ( infrared ) {
395 toggleBeamReceive(); 397 toggleBeamReceive();
396 mBRdisabled = true; 398 mBRdisabled = true;
397 } 399 }
398 mBRdisabled = true; 400 mBRdisabled = true;
399 } else { 401 } else {
400 if ( mBRdisabled ) { 402 if ( mBRdisabled ) {
401 mBRdisabled = false; 403 mBRdisabled = false;
402 //makes no sense,because other cal ap is probably running 404 //makes no sense,because other cal ap is probably running
403 // toggleBeamReceive(); 405 // toggleBeamReceive();
404 } 406 }
405 } 407 }
406#endif 408#endif
407 409
408} 410}
409bool MainWindow::beamReceiveEnabled() 411bool MainWindow::beamReceiveEnabled()
410{ 412{
411#ifndef DESKTOP_VERSION 413#ifndef DESKTOP_VERSION
412 return ( infrared != 0 ); 414 return ( infrared != 0 );
413#endif 415#endif
414 return false; 416 return false;
415} 417}
416 418
417void MainWindow::toggleBeamReceive() 419void MainWindow::toggleBeamReceive()
418{ 420{
419 if ( mBRdisabled ) 421 if ( mBRdisabled )
420 return; 422 return;
421#ifndef DESKTOP_VERSION 423#ifndef DESKTOP_VERSION
422 if ( infrared ) { 424 if ( infrared ) {
423 qDebug("KO: Disable BeamReceive "); 425 qDebug("KO: Disable BeamReceive ");
424 delete infrared; 426 delete infrared;
425 infrared = 0; 427 infrared = 0;
426 brAction->setOn(false); 428 brAction->setOn(false);
427 return; 429 return;
428 } 430 }
429 qDebug("KO: Enable BeamReceive "); 431 qDebug("KO: Enable BeamReceive ");
430 brAction->setOn(true); 432 brAction->setOn(true);
431 infrared = new QCopChannel("QPE/Application/datebook",this, "channel" ) ; 433 infrared = new QCopChannel("QPE/Application/datebook",this, "channel" ) ;
432 QObject::connect( infrared, SIGNAL (received ( const QCString &, const QByteArray & )),this, SLOT(recieve( const QCString&, const QByteArray& ))); 434 QObject::connect( infrared, SIGNAL (received ( const QCString &, const QByteArray & )),this, SLOT(recieve( const QCString&, const QByteArray& )));
433#endif 435#endif
434} 436}
435void MainWindow::showMaximized () 437void MainWindow::showMaximized ()
436{ 438{
437#ifndef DESKTOP_VERSION 439#ifndef DESKTOP_VERSION
438 if ( ! globalFlagBlockStartup ) 440 if ( ! globalFlagBlockStartup )
439 if ( mClosed ) 441 if ( mClosed )
440 mView->goToday(); 442 mView->goToday();
441#endif 443#endif
442 QWidget::showMaximized () ; 444 QWidget::showMaximized () ;
443 mClosed = false; 445 mClosed = false;
444} 446}
445void MainWindow::closeEvent( QCloseEvent* ce ) 447void MainWindow::closeEvent( QCloseEvent* ce )
446{ 448{
447 449
448 450
449 451
450 if ( ! KOPrefs::instance()->mAskForQuit ) { 452 if ( ! KOPrefs::instance()->mAskForQuit ) {
451 saveOnClose(); 453 saveOnClose();
452 mClosed = true; 454 mClosed = true;
453 ce->accept(); 455 ce->accept();
454 return; 456 return;
455 457
456 } 458 }
457 459
458 switch( QMessageBox::information( this, "KO/Pi", 460 switch( QMessageBox::information( this, "KO/Pi",
459 i18n("Do you really want\nto close KO/Pi?"), 461 i18n("Do you really want\nto close KO/Pi?"),
460 i18n("Close"), i18n("No"), 462 i18n("Close"), i18n("No"),
461 0, 0 ) ) { 463 0, 0 ) ) {
462 case 0: 464 case 0:
463 saveOnClose(); 465 saveOnClose();
464 mClosed = true; 466 mClosed = true;
465 ce->accept(); 467 ce->accept();
466 break; 468 break;
467 case 1: 469 case 1:
468 ce->ignore(); 470 ce->ignore();
469 break; 471 break;
470 case 2: 472 case 2:
471 473
472 default: 474 default:
473 break; 475 break;
474 } 476 }
475 477
476 478
477} 479}
478 480
479void MainWindow::recieve( const QCString& cmsg, const QByteArray& data ) 481void MainWindow::recieve( const QCString& cmsg, const QByteArray& data )
480{ 482{
481 QDataStream stream( data, IO_ReadOnly ); 483 QDataStream stream( data, IO_ReadOnly );
482 // QMessageBox::about( this, "About KOrganizer/Pi", "*" +msg +"*" ); 484 // QMessageBox::about( this, "About KOrganizer/Pi", "*" +msg +"*" );
483 //QString datamess; 485 //QString datamess;
484 //qDebug("message "); 486 //qDebug("message ");
485 qDebug("KO: QCOP message received: %s ", cmsg.data() ); 487 qDebug("KO: QCOP message received: %s ", cmsg.data() );
486 488
487 if ( cmsg == "setDocument(QString)" ) { 489 if ( cmsg == "setDocument(QString)" ) {
488 QDataStream stream( data, IO_ReadOnly ); 490 QDataStream stream( data, IO_ReadOnly );
489 QString fileName; 491 QString fileName;
490 stream >> fileName; 492 stream >> fileName;
491 //qDebug("filename %s ", fileName.latin1()); 493 //qDebug("filename %s ", fileName.latin1());
492 showMaximized(); 494 showMaximized();
493 raise(); 495 raise();
494 KOPrefs::instance()->mLastSyncedLocalFile = fileName ; 496 KOPrefs::instance()->mLastSyncedLocalFile = fileName ;
495 mSyncManager->slotSyncMenu( 1002 ); 497 mSyncManager->slotSyncMenu( 1002 );
496 return; 498 return;
497 } 499 }
498 500
499 if ( cmsg == "-writeFile" ) { 501 if ( cmsg == "-writeFile" ) {
500 // I made from the "-writeFile" an "-writeAlarm" 502 // I made from the "-writeFile" an "-writeAlarm"
501 mView->viewManager()->showWhatsNextView(); 503 mView->viewManager()->showWhatsNextView();
502 mCalendar->checkAlarmForIncidence( 0, true); 504 mCalendar->checkAlarmForIncidence( 0, true);
503 showMaximized(); 505 showMaximized();
504 raise(); 506 raise();
505 return; 507 return;
506 508
507 } 509 }
508 if ( cmsg == "-writeFileSilent" ) { 510 if ( cmsg == "-writeFileSilent" ) {
509 // I made from the "-writeFile" an "-writeAlarm" 511 // I made from the "-writeFile" an "-writeAlarm"
510 // mView->viewManager()->showWhatsNextView(); 512 // mView->viewManager()->showWhatsNextView();
511 mCalendar->checkAlarmForIncidence( 0, true); 513 mCalendar->checkAlarmForIncidence( 0, true);
512 //showMaximized(); 514 //showMaximized();
513 //raise(); 515 //raise();
514 hide(); 516 hide();
515 return; 517 return;
516 } 518 }
517 if ( cmsg == "-newCountdown" ) { 519 if ( cmsg == "-newCountdown" ) {
518 qDebug("newCountdown "); 520 qDebug("newCountdown ");
519 521
520 } 522 }
521 QString msg ; 523 QString msg ;
522 QString allmsg = cmsg; 524 QString allmsg = cmsg;
523 while ( allmsg.length() > 0 ) { 525 while ( allmsg.length() > 0 ) {
524 int nextC = allmsg.find( "-", 1 ); 526 int nextC = allmsg.find( "-", 1 );
525 if ( nextC == -1 ) { 527 if ( nextC == -1 ) {
526 msg = allmsg; 528 msg = allmsg;
527 allmsg = ""; 529 allmsg = "";
528 } else{ 530 } else{
529 msg = allmsg.left( nextC ); 531 msg = allmsg.left( nextC );
530 allmsg = allmsg.mid( nextC, allmsg.length()-nextC ); 532 allmsg = allmsg.mid( nextC, allmsg.length()-nextC );
531 } 533 }
532 //qDebug("msg: %s all: %s ", msg.latin1(), allmsg.latin1() ); 534 //qDebug("msg: %s all: %s ", msg.latin1(), allmsg.latin1() );
533 if ( msg == "-newEvent" ) { 535 if ( msg == "-newEvent" ) {
534 mView->newEvent(); 536 mView->newEvent();
535 } 537 }
536 if ( msg == "-newTodo" ) { 538 if ( msg == "-newTodo" ) {
537 mView->newTodo(); 539 mView->newTodo();
538 540
539 } 541 }
540 if ( msg == "-showWN" ) { 542 if ( msg == "-showWN" ) {
541 mView->viewManager()->showWhatsNextView(); 543 mView->viewManager()->showWhatsNextView();
542 } 544 }
543 if ( msg == "-showTodo" ) { 545 if ( msg == "-showTodo" ) {
544 mView->viewManager()->showTodoView(); 546 mView->viewManager()->showTodoView();
545 } 547 }
546 if ( msg == "-showList" ) { 548 if ( msg == "-showList" ) {
547 mView->viewManager()->showListView(); 549 mView->viewManager()->showListView();
548 } 550 }
549 else if ( msg == "-showDay" ) { 551 else if ( msg == "-showDay" ) {
550 mView->viewManager()->showDayView(); 552 mView->viewManager()->showDayView();
551 } 553 }
552 else if ( msg == "-showWWeek" ) { 554 else if ( msg == "-showWWeek" ) {
553 mView->viewManager()->showWorkWeekView(); 555 mView->viewManager()->showWorkWeekView();
554 } 556 }
555 else if ( msg == "-ringSync" ) { 557 else if ( msg == "-ringSync" ) {
556 mSyncManager->multiSync( false ); 558 mSyncManager->multiSync( false );
557 } 559 }
558 else if ( msg == "-showWeek" ) { 560 else if ( msg == "-showWeek" ) {
559 mView->viewManager()->showWeekView(); 561 mView->viewManager()->showWeekView();
560 } 562 }
561 else if ( msg == "-showTodo" ) { 563 else if ( msg == "-showTodo" ) {
562 mView->viewManager()->showTodoView(); 564 mView->viewManager()->showTodoView();
563 } 565 }
564 else if ( msg == "-showJournal" ) { 566 else if ( msg == "-showJournal" ) {
565 mView->dateNavigator()->selectDates( 1 ); 567 mView->dateNavigator()->selectDates( 1 );
566 mView->dateNavigator()->selectToday(); 568 mView->dateNavigator()->selectToday();
567 mView->viewManager()->showJournalView(); 569 mView->viewManager()->showJournalView();
568 } 570 }
569 else if ( msg == "-showKO" ) { 571 else if ( msg == "-showKO" ) {
570 mView->viewManager()->showNextXView(); 572 mView->viewManager()->showNextXView();
571 } 573 }
572 else if ( msg == "-showWNext" ) { 574 else if ( msg == "-showWNext" ) {
573 mView->viewManager()->showWhatsNextView(); 575 mView->viewManager()->showWhatsNextView();
574 } 576 }
575 else if ( msg == "nextView()" ) { 577 else if ( msg == "nextView()" ) {
576 mView->viewManager()->showNextView(); 578 mView->viewManager()->showNextView();
577 } 579 }
578 else if ( msg == "-showNextXView" ) { 580 else if ( msg == "-showNextXView" ) {
579 mView->viewManager()->showNextXView(); 581 mView->viewManager()->showNextXView();
580 } 582 }
581 583
582 584
583 } 585 }
584 586
585 showMaximized(); 587 showMaximized();
586 raise(); 588 raise();
587} 589}
588 590
589QPixmap MainWindow::loadPixmap( QString name ) 591QPixmap MainWindow::loadPixmap( QString name )
590{ 592{
591 return SmallIcon( name ); 593 return SmallIcon( name );
592 594
593} 595}
594void MainWindow::setUsesBigPixmaps ( bool b ) 596void MainWindow::setUsesBigPixmaps ( bool b )
595{ 597{
596 qDebug("KO: MainWindow::setUsesBigPixmaps %d called", b); 598 qDebug("KO: MainWindow::setUsesBigPixmaps %d called", b);
597 if ( b ) 599 if ( b )
598 qDebug("KO: BigPixmaps are not supported "); 600 qDebug("KO: BigPixmaps are not supported ");
599} 601}
600void MainWindow::initActions() 602void MainWindow::initActions()
601{ 603{
602 //KOPrefs::instance()->mShowFullMenu 604 //KOPrefs::instance()->mShowFullMenu
603 iconToolBar->clear(); 605 iconToolBar->clear();
604 KOPrefs *p = KOPrefs::instance(); 606 KOPrefs *p = KOPrefs::instance();
605 //QPEMenuBar *menuBar1;// = new QPEMenuBar( iconToolBar ); 607 //QPEMenuBar *menuBar1;// = new QPEMenuBar( iconToolBar );
606 608
607 QPopupMenu *viewMenu = new QPopupMenu( this ); 609 QPopupMenu *viewMenu = new QPopupMenu( this );
608 QPopupMenu *actionMenu = new QPopupMenu( this ); 610 QPopupMenu *actionMenu = new QPopupMenu( this );
609 QPopupMenu *importMenu = new QPopupMenu( this ); 611 QPopupMenu *importMenu = new QPopupMenu( this );
610 QPopupMenu *importMenu_X = new QPopupMenu( this ); 612 QPopupMenu *importMenu_X = new QPopupMenu( this );
611 QPopupMenu *exportMenu_X = new QPopupMenu( this ); 613 QPopupMenu *exportMenu_X = new QPopupMenu( this );
612 QPopupMenu *beamMenu_X = new QPopupMenu( this ); 614 QPopupMenu *beamMenu_X = new QPopupMenu( this );
613 selectFilterMenu = new QPopupMenu( this ); 615 selectFilterMenu = new QPopupMenu( this );
614 selectFilterMenu->setCheckable( true ); 616 selectFilterMenu->setCheckable( true );
615 syncMenu = new QPopupMenu( this ); 617 syncMenu = new QPopupMenu( this );
616 configureAgendaMenu = new QPopupMenu( this ); 618 configureAgendaMenu = new QPopupMenu( this );
617 configureToolBarMenu = new QPopupMenu( this ); 619 configureToolBarMenu = new QPopupMenu( this );
618 QPopupMenu *helpMenu = new QPopupMenu( this ); 620 QPopupMenu *helpMenu = new QPopupMenu( this );
619 QIconSet icon; 621 QIconSet icon;
620 int pixWid = 22, pixHei = 22; 622 int pixWid = 22, pixHei = 22;
621 QString pathString = ""; 623 QString pathString = "";
622 if ( !p->mToolBarMiniIcons ) { 624 if ( !p->mToolBarMiniIcons ) {
623 if ( QApplication::desktop()->width() < 480 ) { 625 if ( QApplication::desktop()->width() < 480 ) {
624 pathString += "icons16/"; 626 pathString += "icons16/";
625 pixWid = 18; pixHei = 16; 627 pixWid = 18; pixHei = 16;
626 } 628 }
627 } else { 629 } else {
628 pathString += "iconsmini/"; 630 pathString += "iconsmini/";
629 pixWid = 18; pixHei = 16; 631 pixWid = 18; pixHei = 16;
630 } 632 }
631 if ( KOPrefs::instance()->mShowFullMenu ) { 633 if ( KOPrefs::instance()->mShowFullMenu ) {
632 QMenuBar *menuBar1; 634 QMenuBar *menuBar1;
633 menuBar1 = menuBar(); 635 menuBar1 = menuBar();
634 menuBar1->insertItem( i18n("File"), importMenu ); 636 menuBar1->insertItem( i18n("File"), importMenu );
635 menuBar1->insertItem( i18n("View"), viewMenu ); 637 menuBar1->insertItem( i18n("View"), viewMenu );
636 menuBar1->insertItem( i18n("Actions"), actionMenu ); 638 menuBar1->insertItem( i18n("Actions"), actionMenu );
637#ifdef DESKTOP_VERSION 639#ifdef DESKTOP_VERSION
638 menuBar1->insertItem( i18n("Synchronize"), syncMenu ); 640 menuBar1->insertItem( i18n("Synchronize"), syncMenu );
639 menuBar1->insertItem( i18n("AgendaSize"),configureAgendaMenu ); 641 menuBar1->insertItem( i18n("AgendaSize"),configureAgendaMenu );
640#else 642#else
641 menuBar1->insertItem( i18n("Sync"), syncMenu ); 643 menuBar1->insertItem( i18n("Sync"), syncMenu );
642 menuBar1->insertItem( i18n("Agenda"),configureAgendaMenu ); 644 menuBar1->insertItem( i18n("Agenda"),configureAgendaMenu );
643#endif 645#endif
644 //menuBar1->insertItem( i18n("Toolbar"),configureToolBarMenu ); 646 //menuBar1->insertItem( i18n("Toolbar"),configureToolBarMenu );
645 menuBar1->insertItem( i18n("Filter"),selectFilterMenu ); 647 menuBar1->insertItem( i18n("Filter"),selectFilterMenu );
646 menuBar1->insertItem( i18n("Help"), helpMenu ); 648 menuBar1->insertItem( i18n("Help"), helpMenu );
647 } else { 649 } else {
648 QPEMenuBar *menuBar1; 650 QPEMenuBar *menuBar1;
649 menuBar1 = new QPEMenuBar( iconToolBar ); 651 menuBar1 = new QPEMenuBar( iconToolBar );
650 QPopupMenu *menuBar = new QPopupMenu( this ); 652 QPopupMenu *menuBar = new QPopupMenu( this );
651 icon = loadPixmap( pathString + "z_menu" ); 653 icon = loadPixmap( pathString + "z_menu" );
652 menuBar1->insertItem( icon.pixmap(), menuBar); 654 menuBar1->insertItem( icon.pixmap(), menuBar);
653 //menuBar1->insertItem( i18n("ME"), menuBar); 655 //menuBar1->insertItem( i18n("ME"), menuBar);
654 menuBar->insertItem( i18n("File"), importMenu ); 656 menuBar->insertItem( i18n("File"), importMenu );
655 menuBar->insertItem( i18n("View"), viewMenu ); 657 menuBar->insertItem( i18n("View"), viewMenu );
656 menuBar->insertItem( i18n("Actions"), actionMenu ); 658 menuBar->insertItem( i18n("Actions"), actionMenu );
657 menuBar->insertItem( i18n("Synchronize"), syncMenu ); 659 menuBar->insertItem( i18n("Synchronize"), syncMenu );
658 menuBar->insertItem( i18n("AgendaSize"),configureAgendaMenu ); 660 menuBar->insertItem( i18n("AgendaSize"),configureAgendaMenu );
659 menuBar->insertItem( i18n("Toolbar"),configureToolBarMenu ); 661 menuBar->insertItem( i18n("Toolbar"),configureToolBarMenu );
660 menuBar->insertItem( i18n("Filter"),selectFilterMenu ); 662 menuBar->insertItem( i18n("Filter"),selectFilterMenu );
661 menuBar->insertItem( i18n("Help"), helpMenu ); 663 menuBar->insertItem( i18n("Help"), helpMenu );
662 //menuBar1->setMaximumWidth( menuBar1->sizeHint().width() ); 664 //menuBar1->setMaximumWidth( menuBar1->sizeHint().width() );
663 menuBar1->setMaximumSize( menuBar1->sizeHint( )); 665 menuBar1->setMaximumSize( menuBar1->sizeHint( ));
664 } 666 }
665 connect ( selectFilterMenu, SIGNAL( activated ( int ) ), this, SLOT (selectFilter( int ) ) ); 667 connect ( selectFilterMenu, SIGNAL( activated ( int ) ), this, SLOT (selectFilter( int ) ) );
666 connect ( selectFilterMenu, SIGNAL( aboutToShow() ), this, SLOT (fillFilterMenu() ) ); 668 connect ( selectFilterMenu, SIGNAL( aboutToShow() ), this, SLOT (fillFilterMenu() ) );
667 669
668 670
669 mWeekBgColor = iconToolBar->backgroundColor(); 671 mWeekBgColor = iconToolBar->backgroundColor();
670 mWeekPixmap.resize( pixWid , pixHei ); 672 mWeekPixmap.resize( pixWid , pixHei );
671 mWeekPixmap.fill( mWeekBgColor ); 673 mWeekPixmap.fill( mWeekBgColor );
672 icon = mWeekPixmap; 674 icon = mWeekPixmap;
673 mWeekAction = new QAction( i18n("Select week number"),icon, i18n("Select week number"), 0, this ); 675 mWeekAction = new QAction( i18n("Select week number"),icon, i18n("Select week number"), 0, this );
674 if ( p-> mShowIconWeekNum ) 676 if ( p-> mShowIconWeekNum )
675 mWeekAction->addTo( iconToolBar ); 677 mWeekAction->addTo( iconToolBar );
676 mWeekFont = font(); 678 mWeekFont = font();
677 679
678 int fontPoint = mWeekFont.pointSize(); 680 int fontPoint = mWeekFont.pointSize();
679 QFontMetrics f( mWeekFont ); 681 QFontMetrics f( mWeekFont );
680 int fontWid = f.width( "30" ); 682 int fontWid = f.width( "30" );
681 while ( fontWid > pixWid ) { 683 while ( fontWid > pixWid ) {
682 --fontPoint; 684 --fontPoint;
683 mWeekFont.setPointSize( fontPoint ); 685 mWeekFont.setPointSize( fontPoint );
684 QFontMetrics f( mWeekFont ); 686 QFontMetrics f( mWeekFont );
685 fontWid = f.width( "30" ); 687 fontWid = f.width( "30" );
686 //qDebug("dec-- "); 688 //qDebug("dec-- ");
687 } 689 }
688 690
689 connect( mWeekAction, SIGNAL( activated() ), 691 connect( mWeekAction, SIGNAL( activated() ),
690 this, SLOT( weekAction() ) ); 692 this, SLOT( weekAction() ) );
691 693
692 connect( this, SIGNAL( selectWeek ( int ) ), mView->dateNavigator(), SLOT( selectWeek ( int ) ) ); 694 connect( this, SIGNAL( selectWeek ( int ) ), mView->dateNavigator(), SLOT( selectWeek ( int ) ) );
693 if ( p->mShowIconFilterview ) { 695 if ( p->mShowIconFilterview ) {
694 icon = loadPixmap( pathString + "filter" ); 696 icon = loadPixmap( pathString + "filter" );
695 actionFilterMenuTB = new QAction( i18n("Filter selector"), icon, i18n("Filter selector"), 0, this ); 697 actionFilterMenuTB = new QAction( i18n("Filter selector"), icon, i18n("Filter selector"), 0, this );
696 connect( actionFilterMenuTB, SIGNAL( activated() ), 698 connect( actionFilterMenuTB, SIGNAL( activated() ),
697 this, SLOT( fillFilterMenuTB() ) ); 699 this, SLOT( fillFilterMenuTB() ) );
698 actionFilterMenuTB->addTo( iconToolBar ); 700 actionFilterMenuTB->addTo( iconToolBar );
699 selectFilterMenuTB = new QPopupMenu( this ); 701 selectFilterMenuTB = new QPopupMenu( this );
700 selectFilterMenuTB->setCheckable( true ); 702 selectFilterMenuTB->setCheckable( true );
701 connect ( selectFilterMenuTB, SIGNAL( activated ( int ) ), this, SLOT (selectFilter( int ) ) ); 703 connect ( selectFilterMenuTB, SIGNAL( activated ( int ) ), this, SLOT (selectFilter( int ) ) );
702 } 704 }
703 705
704 //#endif 706 //#endif
705 // ****************** 707 // ******************
706 QAction *action; 708 QAction *action;
707 // QPopupMenu *configureMenu= new QPopupMenu( menuBar ); 709 // QPopupMenu *configureMenu= new QPopupMenu( menuBar );
708 configureToolBarMenu->setCheckable( true ); 710 configureToolBarMenu->setCheckable( true );
709 711
710 712
711 configureAgendaMenu->setCheckable( true ); 713 configureAgendaMenu->setCheckable( true );
712 int iii ; 714 int iii ;
713 for ( iii = 1;iii<= 10 ;++iii ){ 715 for ( iii = 1;iii<= 10 ;++iii ){
714 configureAgendaMenu->insertItem(i18n("Size %1").arg(iii), (iii+1)*2 ); 716 configureAgendaMenu->insertItem(i18n("Size %1").arg(iii), (iii+1)*2 );
715 } 717 }
716 //configureMenu->insertItem( "AgendaSize",configureAgendaMenu ); 718 //configureMenu->insertItem( "AgendaSize",configureAgendaMenu );
717 719
718 connect( configureAgendaMenu, SIGNAL( aboutToShow()), 720 connect( configureAgendaMenu, SIGNAL( aboutToShow()),
719 this, SLOT( showConfigureAgenda( ) ) ); 721 this, SLOT( showConfigureAgenda( ) ) );
720 722
721 icon = loadPixmap( pathString + "configure" ); 723 icon = loadPixmap( pathString + "configure" );
722 action = new QAction( i18n("Configure"),icon, i18n("Configure..."), 0, this ); 724 action = new QAction( i18n("Configure"),icon, i18n("Configure..."), 0, this );
723 action->addTo( actionMenu ); 725 action->addTo( actionMenu );
724 connect( action, SIGNAL( activated() ), 726 connect( action, SIGNAL( activated() ),
725 mView, SLOT( edit_options() ) ); 727 mView, SLOT( edit_options() ) );
726 actionMenu->insertSeparator(); 728 actionMenu->insertSeparator();
727 729
728 action = new QAction( i18n("Undo Delete"), i18n("Undo Delete..."), 0, this ); 730 action = new QAction( i18n("Undo Delete"), i18n("Undo Delete..."), 0, this );
729 action->addTo( actionMenu ); 731 action->addTo( actionMenu );
730 connect( action, SIGNAL( activated() ), 732 connect( action, SIGNAL( activated() ),
731 mView, SLOT( undo_delete() ) ); 733 mView, SLOT( undo_delete() ) );
732 actionMenu->insertSeparator(); 734 actionMenu->insertSeparator();
733 735
734 icon = loadPixmap( pathString + "newevent" ); 736 icon = loadPixmap( pathString + "newevent" );
735 configureToolBarMenu->insertItem(i18n("Stretched TB"), 5 ); 737 configureToolBarMenu->insertItem(i18n("Stretched TB"), 5 );
736 configureToolBarMenu->insertItem(i18n("Only one toolbar"), 6 ); 738 configureToolBarMenu->insertItem(i18n("Only one toolbar"), 6 );
737 configureToolBarMenu->insertSeparator(); 739 configureToolBarMenu->insertSeparator();
738 configureToolBarMenu->insertItem(i18n("Filtermenu"), 7 ); 740 configureToolBarMenu->insertItem(i18n("Filtermenu"), 7 );
739 configureToolBarMenu->insertSeparator(); 741 configureToolBarMenu->insertSeparator();
740 configureToolBarMenu->insertItem(i18n("Week Number"), 400); 742 configureToolBarMenu->insertItem(i18n("Week Number"), 400);
741 configureToolBarMenu->insertItem(icon, i18n("New Event..."), 10 ); 743 configureToolBarMenu->insertItem(icon, i18n("New Event..."), 10 );
742 QAction* ne_action = new QAction( i18n("New Event..."), icon, i18n("New Event..."), 0, this ); 744 QAction* ne_action = new QAction( i18n("New Event..."), icon, i18n("New Event..."), 0, this );
743 ne_action->addTo( actionMenu ); 745 ne_action->addTo( actionMenu );
744 connect( ne_action, SIGNAL( activated() ), 746 connect( ne_action, SIGNAL( activated() ),
745 mView, SLOT( newEvent() ) ); 747 mView, SLOT( newEvent() ) );
746 icon = loadPixmap( pathString + "newtodo" ); 748 icon = loadPixmap( pathString + "newtodo" );
747 configureToolBarMenu->insertItem(icon, i18n("New Todo..."), 20 ); 749 configureToolBarMenu->insertItem(icon, i18n("New Todo..."), 20 );
748 QAction* nt_action = new QAction( i18n("New Todo..."), icon, i18n("New Todo..."), 0, this ); 750 QAction* nt_action = new QAction( i18n("New Todo..."), icon, i18n("New Todo..."), 0, this );
749 nt_action->addTo( actionMenu ); 751 nt_action->addTo( actionMenu );
750 connect( nt_action, SIGNAL( activated() ), 752 connect( nt_action, SIGNAL( activated() ),
751 mView, SLOT( newTodo() ) ); 753 mView, SLOT( newTodo() ) );
752 754
753 icon = loadPixmap( pathString + "today" ); 755 icon = loadPixmap( pathString + "today" );
754 QAction* today_action = new QAction( i18n("Go to Today"), icon, i18n("Go to Today"), 0, this ); 756 QAction* today_action = new QAction( i18n("Go to Today"), icon, i18n("Go to Today"), 0, this );
755 today_action->addTo( viewMenu ); 757 today_action->addTo( viewMenu );
756 connect( today_action, SIGNAL( activated() ), 758 connect( today_action, SIGNAL( activated() ),
757 mView, SLOT( goToday() ) ); 759 mView, SLOT( goToday() ) );
758 viewMenu->insertSeparator(); 760 viewMenu->insertSeparator();
759 761
760 // *********************** 762 // ***********************
761 if ( KOPrefs::instance()->mVerticalScreen ) { 763 if ( KOPrefs::instance()->mVerticalScreen ) {
762 icon = SmallIcon( "1updownarrow" ); 764 icon = SmallIcon( "1updownarrow" );
763 } else { 765 } else {
764 icon = SmallIcon("1leftrightarrow" ); 766 icon = SmallIcon("1leftrightarrow" );
765 } 767 }
766 configureToolBarMenu->insertItem(icon, i18n("Toggle Fullscreen"), 28 ); 768 configureToolBarMenu->insertItem(icon, i18n("Toggle Fullscreen"), 28 );
767 QAction* FSaction = new QAction( i18n("Toggle Fullscreen"), icon, i18n("Toggle Fullscreen"), 0, this ); 769 QAction* FSaction = new QAction( i18n("Toggle Fullscreen"), icon, i18n("Toggle Fullscreen"), 0, this );
768 FSaction->addTo( viewMenu ); 770 FSaction->addTo( viewMenu );
769 connect( FSaction, SIGNAL( activated() ), mView, SLOT( toggleExpand() )); 771 connect( FSaction, SIGNAL( activated() ), mView, SLOT( toggleExpand() ));
770 772
771 icon = loadPixmap( pathString + "navi" ); 773 icon = loadPixmap( pathString + "navi" );
772 configureToolBarMenu->insertItem(icon, i18n("Toggle DateNavigator"), 22 ); 774 configureToolBarMenu->insertItem(icon, i18n("Toggle DateNavigator"), 22 );
773 action = new QAction( i18n("Toggle DateNavigator"), icon, i18n("Toggle DateNavigator"), 0, this ); 775 action = new QAction( i18n("Toggle DateNavigator"), icon, i18n("Toggle DateNavigator"), 0, this );
774 action->addTo( viewMenu ); 776 action->addTo( viewMenu );
775 connect( action, SIGNAL( activated() ), 777 connect( action, SIGNAL( activated() ),
776 mView, SLOT( toggleDateNavigatorWidget() ) ); 778 mView, SLOT( toggleDateNavigatorWidget() ) );
777 mToggleNav = action ; 779 mToggleNav = action ;
778 icon = loadPixmap( pathString + "filter" ); 780 icon = loadPixmap( pathString + "filter" );
779 configureToolBarMenu->insertItem(icon, i18n("Filter menu icon"), 26 ); 781 configureToolBarMenu->insertItem(icon, i18n("Filter menu icon"), 26 );
780 action = new QAction( i18n("Toggle FilterView"), icon, i18n("Toggle FilterView"), 0, this ); 782 action = new QAction( i18n("Toggle FilterView"), icon, i18n("Toggle FilterView"), 0, this );
781 action->addTo( viewMenu ); 783 action->addTo( viewMenu );
782 connect( action, SIGNAL( activated() ), 784 connect( action, SIGNAL( activated() ),
783 mView, SLOT( toggleFilter() ) ); 785 mView, SLOT( toggleFilter() ) );
784 mToggleFilter = action; 786 mToggleFilter = action;
785 icon = loadPixmap( pathString + "allday" ); 787 icon = loadPixmap( pathString + "allday" );
786 configureToolBarMenu->insertItem(icon, i18n("Toggle Allday"), 24 ); 788 configureToolBarMenu->insertItem(icon, i18n("Toggle Allday"), 24 );
787 action = new QAction( i18n("Toggle Allday"), icon,i18n("Toggle Allday"), 0, this ); 789 action = new QAction( i18n("Toggle Allday"), icon,i18n("Toggle Allday"), 0, this );
788 action->addTo( viewMenu ); 790 action->addTo( viewMenu );
789 connect( action, SIGNAL( activated() ), 791 connect( action, SIGNAL( activated() ),
790 mView, SLOT( toggleAllDaySize() ) ); 792 mView, SLOT( toggleAllDaySize() ) );
791 mToggleAllday = action; 793 mToggleAllday = action;
792 794
793 795
794 connect( mView->viewManager(), SIGNAL( signalFullScreen( bool ) ), 796 connect( mView->viewManager(), SIGNAL( signalFullScreen( bool ) ),
795 mToggleNav, SLOT( setEnabled ( bool ) ) ); 797 mToggleNav, SLOT( setEnabled ( bool ) ) );
796 connect( mView->viewManager(), SIGNAL( signalFullScreen( bool ) ), 798 connect( mView->viewManager(), SIGNAL( signalFullScreen( bool ) ),
797 mToggleFilter, SLOT( setEnabled ( bool ) ) ); 799 mToggleFilter, SLOT( setEnabled ( bool ) ) );
798 connect( mView->viewManager(), SIGNAL( signalAgendaView( bool ) ), 800 connect( mView->viewManager(), SIGNAL( signalAgendaView( bool ) ),
799 mToggleAllday, SLOT( setEnabled ( bool ) ) ); 801 mToggleAllday, SLOT( setEnabled ( bool ) ) );
802 // connect( mView->viewManager(), SIGNAL( signalAgendaView( bool ) ),
803 // configureAgendaMenu, SLOT( setEnabled ( bool ) ) );
800 804
801 viewMenu->insertSeparator(); 805 viewMenu->insertSeparator();
802 icon = loadPixmap( pathString + "picker" ); 806 icon = loadPixmap( pathString + "picker" );
803 action = new QAction( i18n("Date Picker"), icon, i18n("Date Picker"), 0, this ); 807 action = new QAction( i18n("Date Picker"), icon, i18n("Date Picker"), 0, this );
804 action->addTo( viewMenu ); 808 action->addTo( viewMenu );
805 connect( action, SIGNAL( activated() ), 809 connect( action, SIGNAL( activated() ),
806 mView, SLOT( showDatePicker() ) ); 810 mView, SLOT( showDatePicker() ) );
807 action->addTo( iconToolBar ); 811 action->addTo( iconToolBar );
808 viewMenu->insertSeparator(); 812 viewMenu->insertSeparator();
809 813
810 if ( p-> mShowIconToggleFull ) 814 if ( p-> mShowIconToggleFull )
811 FSaction->addTo( iconToolBar ); 815 FSaction->addTo( iconToolBar );
812 if ( p->mShowIconNavigator ) mToggleNav ->addTo( iconToolBar ); 816 if ( p->mShowIconNavigator ) mToggleNav ->addTo( iconToolBar );
813 817
814 //******************** 818 //********************
815 if ( p->mShowIconAllday ) mToggleAllday->addTo( iconToolBar ); 819 if ( p->mShowIconAllday ) mToggleAllday->addTo( iconToolBar );
816 820
817 821
818 icon = loadPixmap( pathString + "whatsnext" ); 822 icon = loadPixmap( pathString + "whatsnext" );
819 configureToolBarMenu->insertItem(icon, i18n("What's Next"), 110 ); 823 configureToolBarMenu->insertItem(icon, i18n("What's Next"), 110 );
820 QAction* whatsnext_action = new QAction( i18n("What's Next"), icon, i18n("What's Next"), 0, this ); 824 QAction* whatsnext_action = new QAction( i18n("What's Next"), icon, i18n("What's Next"), 0, this );
821 whatsnext_action->addTo( viewMenu ); 825 whatsnext_action->addTo( viewMenu );
822 connect( whatsnext_action, SIGNAL( activated() ), 826 connect( whatsnext_action, SIGNAL( activated() ),
823 mView->viewManager(), SLOT( showWhatsNextView() ) ); 827 mView->viewManager(), SLOT( showWhatsNextView() ) );
824 828
825 icon = loadPixmap( pathString + "xdays" ); 829 icon = loadPixmap( pathString + "xdays" );
826 configureToolBarMenu->insertItem(icon, i18n("Next days"), 100 ); 830 configureToolBarMenu->insertItem(icon, i18n("Next days"), 100 );
827 QAction* xdays_action = new QAction( i18n("Next days"), icon, i18n("Next days"), 0, this ); 831 QAction* xdays_action = new QAction( i18n("Next days"), icon, i18n("Next days"), 0, this );
828 xdays_action->addTo( viewMenu ); 832 xdays_action->addTo( viewMenu );
829 connect( xdays_action, SIGNAL( activated() ), 833 connect( xdays_action, SIGNAL( activated() ),
830 mView->viewManager(), SLOT( showNextXView() ) ); 834 mView->viewManager(), SLOT( showNextXView() ) );
831 835
832 836
833 icon = loadPixmap( pathString + "journal" ); 837 icon = loadPixmap( pathString + "journal" );
834 configureToolBarMenu->insertItem(icon, i18n("Journal"), 90 ); 838 configureToolBarMenu->insertItem(icon, i18n("Journal"), 90 );
835 QAction* viewjournal_action = new QAction( i18n("Journal"), icon, i18n("Journal"), 0, this ); 839 QAction* viewjournal_action = new QAction( i18n("Journal"), icon, i18n("Journal"), 0, this );
836 viewjournal_action->addTo( viewMenu ); 840 viewjournal_action->addTo( viewMenu );
837 connect( viewjournal_action, SIGNAL( activated() ), 841 connect( viewjournal_action, SIGNAL( activated() ),
838 mView->viewManager(), SLOT( showJournalView() ) ); 842 mView->viewManager(), SLOT( showJournalView() ) );
839 843
840 844
841 icon = loadPixmap( pathString + "day" ); 845 icon = loadPixmap( pathString + "day" );
842 configureToolBarMenu->insertItem(icon, i18n("Day View"), 40 ); 846 configureToolBarMenu->insertItem(icon, i18n("Day View"), 40 );
843 QAction* day1_action = new QAction( i18n("Day View"), icon, i18n("Day View"), 0, this ); 847 QAction* day1_action = new QAction( i18n("Day View"), icon, i18n("Day View"), 0, this );
844 day1_action->addTo( viewMenu ); 848 day1_action->addTo( viewMenu );
845 // action->addTo( toolBar ); 849 // action->addTo( toolBar );
846 connect( day1_action, SIGNAL( activated() ), 850 connect( day1_action, SIGNAL( activated() ),
847 mView->viewManager(), SLOT( showDayView() ) ); 851 mView->viewManager(), SLOT( showDayView() ) );
848 852
849 icon = loadPixmap( pathString + "workweek" ); 853 icon = loadPixmap( pathString + "workweek" );
850 configureToolBarMenu->insertItem(icon, i18n("Work Week"), 50 ); 854 configureToolBarMenu->insertItem(icon, i18n("Work Week"), 50 );
851 QAction* day5_action = new QAction( i18n("Work Week"), icon, i18n("Work Week"), 0, this ); 855 QAction* day5_action = new QAction( i18n("Work Week"), icon, i18n("Work Week"), 0, this );
852 day5_action->addTo( viewMenu ); 856 day5_action->addTo( viewMenu );
853 connect( day5_action, SIGNAL( activated() ), 857 connect( day5_action, SIGNAL( activated() ),
854 mView->viewManager(), SLOT( showWorkWeekView() ) ); 858 mView->viewManager(), SLOT( showWorkWeekView() ) );
855 859
856 icon = loadPixmap( pathString + "week" ); 860 icon = loadPixmap( pathString + "week" );
857 configureToolBarMenu->insertItem(icon, i18n("Week"), 60 ); 861 configureToolBarMenu->insertItem(icon, i18n("Week"), 60 );
858 QAction* day7_action = new QAction( i18n("Week"), icon, i18n("Week"), 0, this ); 862 QAction* day7_action = new QAction( i18n("Week"), icon, i18n("Week"), 0, this );
859 day7_action->addTo( viewMenu ); 863 day7_action->addTo( viewMenu );
860 connect( day7_action, SIGNAL( activated() ), 864 connect( day7_action, SIGNAL( activated() ),
861 mView->viewManager(), SLOT( showWeekView() ) ); 865 mView->viewManager(), SLOT( showWeekView() ) );
862 866
863 icon = loadPixmap( pathString + "workweek2" ); 867 icon = loadPixmap( pathString + "workweek2" );
864 configureToolBarMenu->insertItem(icon, i18n("List week view"), 75 ); 868 configureToolBarMenu->insertItem(icon, i18n("List week view"), 75 );
865 QAction* day6_action = new QAction( i18n("List week"), icon, i18n("List week"), 0, this ); 869 QAction* day6_action = new QAction( i18n("List week"), icon, i18n("List week"), 0, this );
866 day6_action->addTo( viewMenu ); 870 day6_action->addTo( viewMenu );
867 connect( day6_action, SIGNAL( activated() ), 871 connect( day6_action, SIGNAL( activated() ),
868 mView->viewManager(), SLOT( showMonthViewWeek() ) ); 872 mView->viewManager(), SLOT( showMonthViewWeek() ) );
869 873
870 icon = loadPixmap( pathString + "month" ); 874 icon = loadPixmap( pathString + "month" );
871 configureToolBarMenu->insertItem(icon, i18n("Month"), 70 ); 875 configureToolBarMenu->insertItem(icon, i18n("Month"), 70 );
872 QAction* month_action = new QAction( i18n("Month"), icon, i18n("Month"), 0, this ); 876 QAction* month_action = new QAction( i18n("Month"), icon, i18n("Month"), 0, this );
873 month_action->addTo( viewMenu ); 877 month_action->addTo( viewMenu );
874 connect( month_action, SIGNAL( activated() ), 878 connect( month_action, SIGNAL( activated() ),
875 mView->viewManager(), SLOT( showMonthView() ) ); 879 mView->viewManager(), SLOT( showMonthView() ) );
876 880
877 icon = loadPixmap( pathString + "list" ); 881 icon = loadPixmap( pathString + "list" );
878 configureToolBarMenu->insertItem(icon, i18n("List View"), 30 ); 882 configureToolBarMenu->insertItem(icon, i18n("List View"), 30 );
879 QAction* showlist_action = new QAction( i18n("List View"), icon, i18n("List View"), 0, this ); 883 QAction* showlist_action = new QAction( i18n("List View"), icon, i18n("List View"), 0, this );
880 showlist_action->addTo( viewMenu ); 884 showlist_action->addTo( viewMenu );
881 connect( showlist_action, SIGNAL( activated() ), 885 connect( showlist_action, SIGNAL( activated() ),
882 mView->viewManager(), SLOT( showListView() ) ); 886 mView->viewManager(), SLOT( showListView() ) );
883 887
884 icon = loadPixmap( pathString + "todo" ); 888 icon = loadPixmap( pathString + "todo" );
885 configureToolBarMenu->insertItem(icon, i18n("Todo View"), 80 ); 889 configureToolBarMenu->insertItem(icon, i18n("Todo View"), 80 );
886 QAction* todoview_action = new QAction( i18n("Todo View"), icon, i18n("Todo View"), 0, this ); 890 QAction* todoview_action = new QAction( i18n("Todo View"), icon, i18n("Todo View"), 0, this );
887 todoview_action->addTo( viewMenu ); 891 todoview_action->addTo( viewMenu );
888 connect( todoview_action, SIGNAL( activated() ), 892 connect( todoview_action, SIGNAL( activated() ),
889 mView->viewManager(), SLOT( showTodoView() ) ); 893 mView->viewManager(), SLOT( showTodoView() ) );
890 894
891 895
892 896
893#if 0 897#if 0
894 action = new QAction( "view_timespan", "Time Span", 0, this ); 898 action = new QAction( "view_timespan", "Time Span", 0, this );
895 action->addTo( viewMenu ); 899 action->addTo( viewMenu );
896 connect( action, SIGNAL( activated() ), 900 connect( action, SIGNAL( activated() ),
897 mView->viewManager(), SLOT( showTimeSpanView() ) ); 901 mView->viewManager(), SLOT( showTimeSpanView() ) );
898#endif 902#endif
899 903
900 mNewSubTodoAction = new QAction( "new_subtodo", i18n("New Sub-Todo..."), 0, 904 mNewSubTodoAction = new QAction( "new_subtodo", i18n("New Sub-Todo..."), 0,
901 this ); 905 this );
902 mNewSubTodoAction->addTo( actionMenu ); 906 mNewSubTodoAction->addTo( actionMenu );
903 connect( mNewSubTodoAction, SIGNAL( activated() ), 907 connect( mNewSubTodoAction, SIGNAL( activated() ),
904 mView, SLOT( newSubTodo() ) ); 908 mView, SLOT( newSubTodo() ) );
905 909
906 actionMenu->insertSeparator(); 910 actionMenu->insertSeparator();
907 911
908 mShowAction = new QAction( "show_incidence", i18n("Show..."), 0, this ); 912 mShowAction = new QAction( "show_incidence", i18n("Show..."), 0, this );
909 mShowAction->addTo( actionMenu ); 913 mShowAction->addTo( actionMenu );
910 connect( mShowAction, SIGNAL( activated() ), 914 connect( mShowAction, SIGNAL( activated() ),
911 mView, SLOT( showIncidence() ) ); 915 mView, SLOT( showIncidence() ) );
912 916
913 mEditAction = new QAction( "edit_incidence", i18n("Edit..."), 0, this ); 917 mEditAction = new QAction( "edit_incidence", i18n("Edit..."), 0, this );
914 mEditAction->addTo( actionMenu ); 918 mEditAction->addTo( actionMenu );
915 connect( mEditAction, SIGNAL( activated() ), 919 connect( mEditAction, SIGNAL( activated() ),
916 mView, SLOT( editIncidence() ) ); 920 mView, SLOT( editIncidence() ) );
917 921
918 mDeleteAction = new QAction( "delete_incidence", i18n("Delete..."), 0, this ); 922 mDeleteAction = new QAction( "delete_incidence", i18n("Delete..."), 0, this );
919 mDeleteAction->addTo( actionMenu ); 923 mDeleteAction->addTo( actionMenu );
920 connect( mDeleteAction, SIGNAL( activated() ), 924 connect( mDeleteAction, SIGNAL( activated() ),
921 mView, SLOT( deleteIncidence() ) ); 925 mView, SLOT( deleteIncidence() ) );
922 926
923 927
924 mCloneAction = new QAction( "clone_incidence", i18n("Clone..."), 0, this ); 928 mCloneAction = new QAction( "clone_incidence", i18n("Clone..."), 0, this );
925 mCloneAction->addTo( actionMenu ); 929 mCloneAction->addTo( actionMenu );
926 connect( mCloneAction, SIGNAL( activated() ), 930 connect( mCloneAction, SIGNAL( activated() ),
927 mView, SLOT( cloneIncidence() ) ); 931 mView, SLOT( cloneIncidence() ) );
928 mMoveAction = new QAction( "Move_incidence", i18n("Move..."), 0, this ); 932 mMoveAction = new QAction( "Move_incidence", i18n("Move..."), 0, this );
929 mMoveAction->addTo( actionMenu ); 933 mMoveAction->addTo( actionMenu );
930 connect( mMoveAction, SIGNAL( activated() ), 934 connect( mMoveAction, SIGNAL( activated() ),
931 mView, SLOT( moveIncidence() ) ); 935 mView, SLOT( moveIncidence() ) );
932 mBeamAction = new QAction( "Beam_incidence", i18n("Beam..."), 0, this ); 936 mBeamAction = new QAction( "Beam_incidence", i18n("Beam..."), 0, this );
933 mBeamAction->addTo( actionMenu ); 937 mBeamAction->addTo( actionMenu );
934 connect( mBeamAction, SIGNAL( activated() ), 938 connect( mBeamAction, SIGNAL( activated() ),
935 mView, SLOT( beamIncidence() ) ); 939 mView, SLOT( beamIncidence() ) );
936 mCancelAction = new QAction( "Cancel_incidence", i18n("Toggle Cancel"), 0, this ); 940 mCancelAction = new QAction( "Cancel_incidence", i18n("Toggle Cancel"), 0, this );
937 mCancelAction->addTo( actionMenu ); 941 mCancelAction->addTo( actionMenu );
938 connect( mCancelAction, SIGNAL( activated() ), 942 connect( mCancelAction, SIGNAL( activated() ),
939 mView, SLOT( toggleCancelIncidence() ) ); 943 mView, SLOT( toggleCancelIncidence() ) );
940 944
941 actionMenu->insertSeparator(); 945 actionMenu->insertSeparator();
942 946
943 action = new QAction( "purge_completed", i18n("Purge Completed"), 0, 947 action = new QAction( "purge_completed", i18n("Purge Completed"), 0,
944 this ); 948 this );
945 action->addTo( actionMenu ); 949 action->addTo( actionMenu );
946 connect( action, SIGNAL( activated() ), mView, SLOT( purgeCompleted() ) ); 950 connect( action, SIGNAL( activated() ), mView, SLOT( purgeCompleted() ) );
947 951
948 icon = loadPixmap( pathString + "search" ); 952 icon = loadPixmap( pathString + "search" );
949 QAction* search_action = new QAction( i18n("Search"), icon, i18n("Search..."), 0, this ); 953 QAction* search_action = new QAction( i18n("Search"), icon, i18n("Search..."), 0, this );
950 configureToolBarMenu->insertItem(icon, i18n("Search"), 120 , 5); 954 configureToolBarMenu->insertItem(icon, i18n("Search"), 120 , 5);
951 search_action->addTo( actionMenu ); 955 search_action->addTo( actionMenu );
952 connect( search_action, SIGNAL( activated() ), 956 connect( search_action, SIGNAL( activated() ),
953 mView->dialogManager(), SLOT( showSearchDialog() ) ); 957 mView->dialogManager(), SLOT( showSearchDialog() ) );
954 958
955 959
956 960
957 if ( KOPrefs::instance()->mShowFullMenu ) { 961 if ( KOPrefs::instance()->mShowFullMenu ) {
958 actionMenu->insertSeparator(); 962 actionMenu->insertSeparator();
959 actionMenu->insertItem( i18n("Configure Toolbar"),configureToolBarMenu ); 963 actionMenu->insertItem( i18n("Configure Toolbar"),configureToolBarMenu );
960 964
961 } 965 }
962 // actionMenu->insertSeparator(); 966 // actionMenu->insertSeparator();
963 action = new QAction( "import_qtopia", i18n("Import (*.ics/*.vcs) file"), 0, 967 action = new QAction( "import_qtopia", i18n("Import (*.ics/*.vcs) file"), 0,
964 this ); 968 this );
965 action->addTo( importMenu_X ); 969 action->addTo( importMenu_X );
966 connect( action, SIGNAL( activated() ), SLOT( importIcal() ) ); 970 connect( action, SIGNAL( activated() ), SLOT( importIcal() ) );
967 action = new QAction( "import_quick", i18n("Import last file"), 0, 971 action = new QAction( "import_quick", i18n("Import last file"), 0,
968 this ); 972 this );
969 action->addTo( importMenu_X ); 973 action->addTo( importMenu_X );
970 connect( action, SIGNAL( activated() ), SLOT( quickImportIcal() ) ); 974 connect( action, SIGNAL( activated() ), SLOT( quickImportIcal() ) );
971 importMenu_X->insertSeparator(); 975 importMenu_X->insertSeparator();
972 action = new QAction( "import_bday", i18n("Import Birthdays (KA/Pi)"), 0, 976 action = new QAction( "import_bday", i18n("Import Birthdays (KA/Pi)"), 0,
973 this ); 977 this );
974 action->addTo( importMenu_X ); 978 action->addTo( importMenu_X );
975 connect( action, SIGNAL( activated() ), SLOT( importBday() ) ); 979 connect( action, SIGNAL( activated() ), SLOT( importBday() ) );
976 //#ifndef DESKTOP_VERSION 980 //#ifndef DESKTOP_VERSION
977 importMenu_X->insertSeparator(); 981 importMenu_X->insertSeparator();
978 action = new QAction( "import_qtopia", i18n("Import Opie/Qtopia Cal."), 0, 982 action = new QAction( "import_qtopia", i18n("Import Opie/Qtopia Cal."), 0,
979 this ); 983 this );
980 action->addTo( importMenu_X ); 984 action->addTo( importMenu_X );
981 connect( action, SIGNAL( activated() ), SLOT( importQtopia() ) ); 985 connect( action, SIGNAL( activated() ), SLOT( importQtopia() ) );
982 //#else 986 //#else
983#ifdef _OL_IMPORT_ 987#ifdef _OL_IMPORT_
984 importMenu_X->insertSeparator(); 988 importMenu_X->insertSeparator();
985 action = new QAction( "import_ol", i18n("Import from OL"), 0, 989 action = new QAction( "import_ol", i18n("Import from OL"), 0,
986 this ); 990 this );
987 action->addTo( importMenu_X ); 991 action->addTo( importMenu_X );
988 connect( action, SIGNAL( activated() ), SLOT( importOL() ) ); 992 connect( action, SIGNAL( activated() ), SLOT( importOL() ) );
989#endif 993#endif
990 //#endif 994 //#endif
991 995
992 //importMenu->insertSeparator(); 996 //importMenu->insertSeparator();
993 action = new QAction( "load_cal", i18n("Load Calendar Backup"), 0, 997 action = new QAction( "load_cal", i18n("Load Calendar Backup"), 0,
994 this ); 998 this );
995 action->addTo( importMenu ); 999 action->addTo( importMenu );
996 connect( action, SIGNAL( activated() ), SLOT( loadCalendar() ) ); 1000 connect( action, SIGNAL( activated() ), SLOT( loadCalendar() ) );
997 1001
998 action = new QAction( "save_cal", i18n("Save Calendar Backup"), 0, 1002 action = new QAction( "save_cal", i18n("Save Calendar Backup"), 0,
999 this ); 1003 this );
1000 action->addTo( importMenu ); 1004 action->addTo( importMenu );
1001 connect( action, SIGNAL( activated() ), SLOT( saveCalendar() ) ); 1005 connect( action, SIGNAL( activated() ), SLOT( saveCalendar() ) );
1002 importMenu->insertSeparator(); 1006 importMenu->insertSeparator();
1003 importMenu->insertItem( i18n("Import"), importMenu_X ); 1007 importMenu->insertItem( i18n("Import"), importMenu_X );
1004 //importMenu->insertSeparator(); 1008 //importMenu->insertSeparator();
1005 action = new QAction( "import_qtopia", i18n("Export VCalendar"), 0, 1009 action = new QAction( "import_qtopia", i18n("Export VCalendar"), 0,
1006 this ); 1010 this );
1007 action->addTo( exportMenu_X ); 1011 action->addTo( exportMenu_X );
1008 connect( action, SIGNAL( activated() ), SLOT( exportVCalendar() ) ); 1012 connect( action, SIGNAL( activated() ), SLOT( exportVCalendar() ) );
1009 1013
1010 1014
1011 //LR 1015 //LR
1012 QPopupMenu *ex2phone = new QPopupMenu( this ); 1016 QPopupMenu *ex2phone = new QPopupMenu( this );
1013 ex2phone->insertItem(i18n("Complete calendar..."), 1 ); 1017 ex2phone->insertItem(i18n("Complete calendar..."), 1 );
1014 ex2phone->insertItem(i18n("Filtered calendar..."), 2 ); 1018 ex2phone->insertItem(i18n("Filtered calendar..."), 2 );
1015 connect( ex2phone, SIGNAL( activated(int) ), this, SLOT( exportToPhone( int)) ); 1019 connect( ex2phone, SIGNAL( activated(int) ), this, SLOT( exportToPhone( int)) );
1016 exportMenu_X->insertItem( i18n("Export to phone"), ex2phone ); 1020 exportMenu_X->insertItem( i18n("Export to phone"), ex2phone );
1017 1021
1018 importMenu->insertItem( i18n("Export"), exportMenu_X ); 1022 importMenu->insertItem( i18n("Export"), exportMenu_X );
1019#ifndef DESKTOP_VERSION 1023#ifndef DESKTOP_VERSION
1020 //importMenu->insertSeparator(); 1024 //importMenu->insertSeparator();
1021 brAction = new QAction( "beam toggle", i18n("Beam receive enabled"), 0, 1025 brAction = new QAction( "beam toggle", i18n("Beam receive enabled"), 0,
1022 this ); 1026 this );
1023 brAction->addTo( beamMenu_X ); 1027 brAction->addTo( beamMenu_X );
1024 brAction->setToggleAction (true ) ; 1028 brAction->setToggleAction (true ) ;
1025 connect( brAction, SIGNAL( activated() ), this, SLOT( toggleBeamReceive() ) ); 1029 connect( brAction, SIGNAL( activated() ), this, SLOT( toggleBeamReceive() ) );
1026 1030
1027 action = new QAction( "beam all", i18n("Beam complete calendar..."), 0, 1031 action = new QAction( "beam all", i18n("Beam complete calendar..."), 0,
1028 this ); 1032 this );
1029 action->addTo( beamMenu_X ); 1033 action->addTo( beamMenu_X );
1030 connect( action, SIGNAL( activated() ), mView, SLOT( beamCalendar() ) ); 1034 connect( action, SIGNAL( activated() ), mView, SLOT( beamCalendar() ) );
1031 1035
1032 action = new QAction( "beam all", i18n("Beam filtered calendar..."), 0, 1036 action = new QAction( "beam all", i18n("Beam filtered calendar..."), 0,
1033 this ); 1037 this );
1034 action->addTo( beamMenu_X ); 1038 action->addTo( beamMenu_X );
1035 connect( action, SIGNAL( activated() ), mView, SLOT( beamFilteredCalendar()) ); 1039 connect( action, SIGNAL( activated() ), mView, SLOT( beamFilteredCalendar()) );
1036 importMenu->insertItem( i18n("Beam"), beamMenu_X ); 1040 importMenu->insertItem( i18n("Beam"), beamMenu_X );
1037#else 1041#else
1038 //importMenu->insertSeparator(); 1042 //importMenu->insertSeparator();
1039 icon = loadPixmap( pathString + "print" ); 1043 icon = loadPixmap( pathString + "print" );
1040 action = new QAction( i18n("Print calendar..."),icon,i18n("Print calendar..."), 0, this ); 1044 action = new QAction( i18n("Print calendar..."),icon,i18n("Print calendar..."), 0, this );
1041 action->addTo( beamMenu_X ); 1045 action->addTo( beamMenu_X );
1042 connect( action, SIGNAL( activated() ), 1046 connect( action, SIGNAL( activated() ),
1043 this, SLOT( printCal() ) ); 1047 this, SLOT( printCal() ) );
1044 1048
1045 icon = loadPixmap( pathString + "print" ); 1049 icon = loadPixmap( pathString + "print" );
1046 action = new QAction( i18n("Print agenda selection..."),icon,i18n("Print agenda selection..."), 0, this ); 1050 action = new QAction( i18n("Print agenda selection..."),icon,i18n("Print agenda selection..."), 0, this );
1047 action->addTo( beamMenu_X ); 1051 action->addTo( beamMenu_X );
1048 connect( action, SIGNAL( activated() ), 1052 connect( action, SIGNAL( activated() ),
1049 this, SLOT( printSel() ) ); 1053 this, SLOT( printSel() ) );
1050 action = new QAction( i18n("Print What's Next View..."),icon,i18n("Print What's Next View..."), 0, this ); 1054 action = new QAction( i18n("Print What's Next View..."),icon,i18n("Print What's Next View..."), 0, this );
1051 action->addTo( beamMenu_X ); 1055 action->addTo( beamMenu_X );
1052 connect( action, SIGNAL( activated() ), 1056 connect( action, SIGNAL( activated() ),
1053 mView->viewManager(), SLOT( slotprintWNV() ) ); 1057 mView->viewManager(), SLOT( slotprintWNV() ) );
1054 1058
1055 action = new QAction( i18n("Print selected event / todo..."),icon,i18n("Print selected event / todo..."), 0, this ); 1059 action = new QAction( i18n("Print selected event / todo..."),icon,i18n("Print selected event / todo..."), 0, this );
1056 action->addTo( beamMenu_X ); 1060 action->addTo( beamMenu_X );
1057 connect( action, SIGNAL( activated() ), 1061 connect( action, SIGNAL( activated() ),
1058 mView, SLOT( slotprintSelInc() ) ); 1062 mView, SLOT( slotprintSelInc() ) );
1059 1063
1060 1064
1061 importMenu->insertItem( i18n("Print"), beamMenu_X ); 1065 importMenu->insertItem( i18n("Print"), beamMenu_X );
1062#endif 1066#endif
1063 importMenu->insertSeparator(); 1067 importMenu->insertSeparator();
1064 action = new QAction( "manage cat", i18n("Manage new categories..."), 0, 1068 action = new QAction( "manage cat", i18n("Manage new categories..."), 0,
1065 this ); 1069 this );
1066 action->addTo( importMenu ); 1070 action->addTo( importMenu );
1067 connect( action, SIGNAL( activated() ), mView, SLOT( manageCategories() ) ); 1071 connect( action, SIGNAL( activated() ), mView, SLOT( manageCategories() ) );
1068 importMenu->insertSeparator(); 1072 importMenu->insertSeparator();
1069 action = new QAction( "beam all", i18n("Save"), 0, 1073 action = new QAction( "beam all", i18n("Save"), 0,
1070 this ); 1074 this );
1071 action->addTo( importMenu ); 1075 action->addTo( importMenu );
1072 connect( action, SIGNAL( activated() ), this, SLOT( save() ) ); 1076 connect( action, SIGNAL( activated() ), this, SLOT( save() ) );
1073 action = new QAction( "beam all", i18n("Exit (+save)"), 0, 1077 action = new QAction( "beam all", i18n("Exit (+save)"), 0,
1074 this ); 1078 this );
1075 action->addTo( importMenu ); 1079 action->addTo( importMenu );
1076 connect( action, SIGNAL( activated() ), this, SLOT( close() ) ); 1080 connect( action, SIGNAL( activated() ), this, SLOT( close() ) );
1077 1081
1078 //menuBar->insertItem( "Configure",configureMenu ); 1082 //menuBar->insertItem( "Configure",configureMenu );
1079 //configureMenu->insertItem( "Toolbar",configureToolBarMenu ); 1083 //configureMenu->insertItem( "Toolbar",configureToolBarMenu );
1080 icon = loadPixmap( "korganizer/korganizer" ); 1084 icon = loadPixmap( "korganizer/korganizer" );
1081 1085
1082 action = new QAction( "Whats New", i18n("What's new?"), 0,this ); 1086 action = new QAction( "Whats New", i18n("What's new?"), 0,this );
1083 action->addTo( helpMenu ); 1087 action->addTo( helpMenu );
1084 connect( action, SIGNAL( activated() ), 1088 connect( action, SIGNAL( activated() ),
1085 SLOT( whatsNew() ) ); 1089 SLOT( whatsNew() ) );
1086 action = new QAction( "featureHowto", i18n("Features + hints..."), 0,this ); 1090 action = new QAction( "featureHowto", i18n("Features + hints..."), 0,this );
1087 action->addTo( helpMenu ); 1091 action->addTo( helpMenu );
1088 connect( action, SIGNAL( activated() ), 1092 connect( action, SIGNAL( activated() ),
1089 SLOT( features() ) ); 1093 SLOT( features() ) );
1090 action = new QAction( "Keys + Colors", i18n("Keys + Colors..."), 0, this ); 1094 action = new QAction( "Keys + Colors", i18n("Keys + Colors..."), 0, this );
1091 action->addTo( helpMenu ); 1095 action->addTo( helpMenu );
1092 connect( action, SIGNAL( activated() ), 1096 connect( action, SIGNAL( activated() ),
1093 SLOT( keyBindings() ) ); 1097 SLOT( keyBindings() ) );
1094 action = new QAction( "Storage Howto", i18n("Storage HowTo..."), 0,this ); 1098 action = new QAction( "Storage Howto", i18n("Storage HowTo..."), 0,this );
1095 action->addTo( helpMenu ); 1099 action->addTo( helpMenu );
1096 connect( action, SIGNAL( activated() ), 1100 connect( action, SIGNAL( activated() ),
1097 SLOT( storagehowto() ) ); 1101 SLOT( storagehowto() ) );
1098 action = new QAction( "Timetracking Howto", i18n("Timetracking HowTo..."), 0,this ); 1102 action = new QAction( "Timetracking Howto", i18n("Timetracking HowTo..."), 0,this );
1099 action->addTo( helpMenu ); 1103 action->addTo( helpMenu );
1100 connect( action, SIGNAL( activated() ), 1104 connect( action, SIGNAL( activated() ),
1101 SLOT( timetrackinghowto() ) ); 1105 SLOT( timetrackinghowto() ) );
1102 action = new QAction( "Sync Howto", i18n("Sync HowTo..."), 0,this ); 1106 action = new QAction( "Sync Howto", i18n("Sync HowTo..."), 0,this );
1103 action->addTo( helpMenu ); 1107 action->addTo( helpMenu );
1104 connect( action, SIGNAL( activated() ), 1108 connect( action, SIGNAL( activated() ),
1105 SLOT( synchowto() ) ); 1109 SLOT( synchowto() ) );
1106 action = new QAction( "KDE Sync Howto", i18n("KDE Sync HowTo..."), 0,this ); 1110 action = new QAction( "KDE Sync Howto", i18n("KDE Sync HowTo..."), 0,this );
1107 action->addTo( helpMenu ); 1111 action->addTo( helpMenu );
1108 connect( action, SIGNAL( activated() ), 1112 connect( action, SIGNAL( activated() ),
1109 SLOT( kdesynchowto() ) ); 1113 SLOT( kdesynchowto() ) );
1110 action = new QAction( "Multi Sync Howto", i18n("Multi Sync HowTo..."), 0,this ); 1114 action = new QAction( "Multi Sync Howto", i18n("Multi Sync HowTo..."), 0,this );
1111 action->addTo( helpMenu ); 1115 action->addTo( helpMenu );
1112 connect( action, SIGNAL( activated() ), 1116 connect( action, SIGNAL( activated() ),
1113 SLOT( multisynchowto() ) ); 1117 SLOT( multisynchowto() ) );
1114 action = new QAction( "Auto saving", i18n("Auto saving..."), 0, this ); 1118 action = new QAction( "Auto saving", i18n("Auto saving..."), 0, this );
1115 action->addTo( helpMenu ); 1119 action->addTo( helpMenu );
1116 connect( action, SIGNAL( activated() ), 1120 connect( action, SIGNAL( activated() ),
1117 SLOT( aboutAutoSaving() ) ); 1121 SLOT( aboutAutoSaving() ) );
1118 action = new QAction( "Problemd", i18n("Known Problems..."), 0,this ); 1122 action = new QAction( "Problemd", i18n("Known Problems..."), 0,this );
1119 action->addTo( helpMenu ); 1123 action->addTo( helpMenu );
1120 connect( action, SIGNAL( activated() ), 1124 connect( action, SIGNAL( activated() ),
1121 SLOT( aboutKnownBugs() ) ); 1125 SLOT( aboutKnownBugs() ) );
1122 action = new QAction( "Translate Howto", i18n("User translation..."), 0,this ); 1126 action = new QAction( "Translate Howto", i18n("User translation..."), 0,this );
1123 action->addTo( helpMenu ); 1127 action->addTo( helpMenu );
1124 connect( action, SIGNAL( activated() ), 1128 connect( action, SIGNAL( activated() ),
1125 SLOT( usertrans() ) ); 1129 SLOT( usertrans() ) );
1126 action = new QAction( "Frequently asked questions", i18n("FAQ..."), 0,this ); 1130 action = new QAction( "Frequently asked questions", i18n("FAQ..."), 0,this );
1127 action->addTo( helpMenu ); 1131 action->addTo( helpMenu );
1128 connect( action, SIGNAL( activated() ), 1132 connect( action, SIGNAL( activated() ),
1129 SLOT( faq() ) ); 1133 SLOT( faq() ) );
1130 action = new QAction( "licence", i18n("Licence..."), 0, this ); 1134 action = new QAction( "licence", i18n("Licence..."), 0, this );
1131 action->addTo( helpMenu ); 1135 action->addTo( helpMenu );
1132 connect( action, SIGNAL( activated() ), 1136 connect( action, SIGNAL( activated() ),
1133 SLOT( licence() ) ); 1137 SLOT( licence() ) );
1134 action = new QAction( "about", i18n("About..."), 0, this ); 1138 action = new QAction( "about", i18n("About..."), 0, this );
1135 action->addTo( helpMenu ); 1139 action->addTo( helpMenu );
1136 connect( action, SIGNAL( activated() ), 1140 connect( action, SIGNAL( activated() ),
1137 SLOT( about() ) ); 1141 SLOT( about() ) );
1138 //menuBar->insertSeparator(); 1142 //menuBar->insertSeparator();
1139 1143
1140 // ****************************************************** 1144 // ******************************************************
1141 // menubar icons 1145 // menubar icons
1142 1146
1143 1147
1144 1148
1145 //menuBar->insertItem( iconToolBar ); 1149 //menuBar->insertItem( iconToolBar );
1146 //xdays_action 1150 //xdays_action
1147 if (p-> mShowIconNewEvent) 1151 if (p-> mShowIconNewEvent)
1148 ne_action->addTo( iconToolBar ); 1152 ne_action->addTo( iconToolBar );
1149 if (p->mShowIconNewTodo ) 1153 if (p->mShowIconNewTodo )
1150 nt_action->addTo( iconToolBar ); 1154 nt_action->addTo( iconToolBar );
1151 if (p-> mShowIconSearch) 1155 if (p-> mShowIconSearch)
1152 search_action->addTo( iconToolBar ); 1156 search_action->addTo( iconToolBar );
1153 if (p-> mShowIconWhatsThis) 1157 if (p-> mShowIconWhatsThis)
1154 QWhatsThis::whatsThisButton ( iconToolBar ); 1158 QWhatsThis::whatsThisButton ( iconToolBar );
1155 if (p-> mShowIconNext) 1159 if (p-> mShowIconNext)
1156 whatsnext_action->addTo( viewToolBar ); 1160 whatsnext_action->addTo( viewToolBar );
1157 if (p-> mShowIconNextDays) 1161 if (p-> mShowIconNextDays)
1158 xdays_action->addTo( viewToolBar ); 1162 xdays_action->addTo( viewToolBar );
1159 if (p-> mShowIconJournal) 1163 if (p-> mShowIconJournal)
1160 viewjournal_action->addTo( viewToolBar ); 1164 viewjournal_action->addTo( viewToolBar );
1161 if (p-> mShowIconDay1) 1165 if (p-> mShowIconDay1)
1162 day1_action->addTo( viewToolBar ); 1166 day1_action->addTo( viewToolBar );
1163 if (p-> mShowIconDay5) 1167 if (p-> mShowIconDay5)
1164 day5_action->addTo( viewToolBar ); 1168 day5_action->addTo( viewToolBar );
1165 if (p-> mShowIconDay7) 1169 if (p-> mShowIconDay7)
1166 day7_action->addTo( viewToolBar ); 1170 day7_action->addTo( viewToolBar );
1167 if (p-> mShowIconDay6) 1171 if (p-> mShowIconDay6)
1168 day6_action->addTo( viewToolBar ); 1172 day6_action->addTo( viewToolBar );
1169 if (p-> mShowIconMonth) 1173 if (p-> mShowIconMonth)
1170 month_action->addTo( viewToolBar ); 1174 month_action->addTo( viewToolBar );
1171 if (p-> mShowIconList) 1175 if (p-> mShowIconList)
1172 showlist_action->addTo( viewToolBar ); 1176 showlist_action->addTo( viewToolBar );
1173 if (p-> mShowIconTodoview) 1177 if (p-> mShowIconTodoview)
1174 todoview_action->addTo( viewToolBar ); 1178 todoview_action->addTo( viewToolBar );
1175 1179
1176 icon = loadPixmap( pathString + "2leftarrowB" ); 1180 icon = loadPixmap( pathString + "2leftarrowB" );
1177 configureToolBarMenu->insertItem(icon, i18n("Prev. month"), 200); 1181 configureToolBarMenu->insertItem(icon, i18n("Prev. month"), 200);
1178 if (p-> mShowIconBackFast) { 1182 if (p-> mShowIconBackFast) {
1179 action = new QAction( i18n("Prev. month"), icon, i18n("Prev. month"),0 , this ); 1183 action = new QAction( i18n("Prev. month"), icon, i18n("Prev. month"),0 , this );
1180 connect( action, SIGNAL( activated() ), 1184 connect( action, SIGNAL( activated() ),
1181 mView, SLOT( goPreviousMonth() ) ); 1185 mView, SLOT( goPreviousMonth() ) );
1182 action->addTo( navigatorToolBar ); 1186 action->addTo( navigatorToolBar );
1183 } 1187 }
1184 icon = loadPixmap( pathString + "1leftarrowB" ); 1188 icon = loadPixmap( pathString + "1leftarrowB" );
1185 configureToolBarMenu->insertItem(icon, i18n("Go backward"), 210); 1189 configureToolBarMenu->insertItem(icon, i18n("Go backward"), 210);
1186 if (p-> mShowIconBack) { 1190 if (p-> mShowIconBack) {
1187 action = new QAction( i18n("Go backward"), icon, i18n("Go backward"),0 , this ); 1191 action = new QAction( i18n("Go backward"), icon, i18n("Go backward"),0 , this );
1188 connect( action, SIGNAL( activated() ), 1192 connect( action, SIGNAL( activated() ),
1189 mView, SLOT( goPrevious() ) ); 1193 mView, SLOT( goPrevious() ) );
1190 action->addTo( navigatorToolBar ); 1194 action->addTo( navigatorToolBar );
1191 } 1195 }
1192 icon = loadPixmap( pathString + "today" ); 1196 icon = loadPixmap( pathString + "today" );
1193 configureToolBarMenu->insertItem(icon, i18n("Go to Today"), 130); 1197 configureToolBarMenu->insertItem(icon, i18n("Go to Today"), 130);
1194 if (p-> mShowIconToday) 1198 if (p-> mShowIconToday)
1195 today_action->addTo( navigatorToolBar ); 1199 today_action->addTo( navigatorToolBar );
1196 icon = loadPixmap( pathString + "1rightarrowB" ); 1200 icon = loadPixmap( pathString + "1rightarrowB" );
1197 configureToolBarMenu->insertItem(icon, i18n("Go forward"), 220); 1201 configureToolBarMenu->insertItem(icon, i18n("Go forward"), 220);
1198 if (p-> mShowIconForward) { 1202 if (p-> mShowIconForward) {
1199 action = new QAction( i18n("Go forward"), icon, i18n("Go forward"),0 , this ); 1203 action = new QAction( i18n("Go forward"), icon, i18n("Go forward"),0 , this );
1200 connect( action, SIGNAL( activated() ), 1204 connect( action, SIGNAL( activated() ),
1201 mView, SLOT( goNext() ) ); 1205 mView, SLOT( goNext() ) );
1202 action->addTo( navigatorToolBar ); 1206 action->addTo( navigatorToolBar );
1203 } 1207 }
1204 icon = loadPixmap( pathString + "2rightarrowB" ); 1208 icon = loadPixmap( pathString + "2rightarrowB" );
1205 configureToolBarMenu->insertItem(icon, i18n("Next month"), 230); 1209 configureToolBarMenu->insertItem(icon, i18n("Next month"), 230);
1206 if (p-> mShowIconForwardFast) { 1210 if (p-> mShowIconForwardFast) {
1207 action = new QAction( i18n("Next month"), icon, i18n("Next month"),0 , this ); 1211 action = new QAction( i18n("Next month"), icon, i18n("Next month"),0 , this );
1208 connect( action, SIGNAL( activated() ), 1212 connect( action, SIGNAL( activated() ),
1209 mView, SLOT( goNextMonth() ) ); 1213 mView, SLOT( goNextMonth() ) );
1210 action->addTo( navigatorToolBar ); 1214 action->addTo( navigatorToolBar );
1211 } 1215 }
1212 1216
1213 1217
1214 configureToolBarMenu->insertItem(i18n("What's This?"), 300, 6); 1218 configureToolBarMenu->insertItem(i18n("What's This?"), 300, 6);
1215 1219
1216 1220
1217 if ( p->mShowIconNavigator ) configureToolBarMenu->setItemChecked( 22 , true); 1221 if ( p->mShowIconNavigator ) configureToolBarMenu->setItemChecked( 22 , true);
1218 if ( p->mShowIconAllday ) configureToolBarMenu->setItemChecked( 24 , true); 1222 if ( p->mShowIconAllday ) configureToolBarMenu->setItemChecked( 24 , true);
1219 if ( p->mShowIconFilterview ) configureToolBarMenu->setItemChecked( 26 , true); 1223 if ( p->mShowIconFilterview ) configureToolBarMenu->setItemChecked( 26 , true);
1220 if ( p->mShowIconToggleFull ) configureToolBarMenu->setItemChecked( 28 , true); 1224 if ( p->mShowIconToggleFull ) configureToolBarMenu->setItemChecked( 28 , true);
1221 1225
1222 if (p-> mShowIconNewEvent) 1226 if (p-> mShowIconNewEvent)
1223 configureToolBarMenu->setItemChecked( 10, true ); 1227 configureToolBarMenu->setItemChecked( 10, true );
1224 if (p->mShowIconNewTodo ) 1228 if (p->mShowIconNewTodo )
1225 configureToolBarMenu->setItemChecked( 20, true ); 1229 configureToolBarMenu->setItemChecked( 20, true );
1226 if (p-> mShowIconSearch) 1230 if (p-> mShowIconSearch)
1227 configureToolBarMenu->setItemChecked( 120, true ); 1231 configureToolBarMenu->setItemChecked( 120, true );
1228 if (p-> mShowIconList) 1232 if (p-> mShowIconList)
1229 configureToolBarMenu->setItemChecked( 30, true ); 1233 configureToolBarMenu->setItemChecked( 30, true );
1230 if (p-> mShowIconDay1) 1234 if (p-> mShowIconDay1)
1231 configureToolBarMenu->setItemChecked( 40, true ); 1235 configureToolBarMenu->setItemChecked( 40, true );
1232 if (p-> mShowIconDay5) 1236 if (p-> mShowIconDay5)
1233 configureToolBarMenu->setItemChecked( 50, true ); 1237 configureToolBarMenu->setItemChecked( 50, true );
1234 if (p-> mShowIconDay6) 1238 if (p-> mShowIconDay6)
1235 configureToolBarMenu->setItemChecked( 75, true ); 1239 configureToolBarMenu->setItemChecked( 75, true );
1236 if (p-> mShowIconDay7) 1240 if (p-> mShowIconDay7)
1237 configureToolBarMenu->setItemChecked( 60, true ); 1241 configureToolBarMenu->setItemChecked( 60, true );
1238 if (p-> mShowIconMonth) 1242 if (p-> mShowIconMonth)
1239 configureToolBarMenu->setItemChecked( 70, true ); 1243 configureToolBarMenu->setItemChecked( 70, true );
1240 if (p-> mShowIconTodoview) 1244 if (p-> mShowIconTodoview)
1241 configureToolBarMenu->setItemChecked( 80, true ); 1245 configureToolBarMenu->setItemChecked( 80, true );
1242 if (p-> mShowIconBackFast) 1246 if (p-> mShowIconBackFast)
1243 configureToolBarMenu->setItemChecked( 200, true ); 1247 configureToolBarMenu->setItemChecked( 200, true );
1244 if (p-> mShowIconBack) 1248 if (p-> mShowIconBack)
1245 configureToolBarMenu->setItemChecked( 210, true ); 1249 configureToolBarMenu->setItemChecked( 210, true );
1246 if (p-> mShowIconToday) 1250 if (p-> mShowIconToday)
1247 configureToolBarMenu->setItemChecked( 130, true ); 1251 configureToolBarMenu->setItemChecked( 130, true );
1248 if (p-> mShowIconForward) 1252 if (p-> mShowIconForward)
1249 configureToolBarMenu->setItemChecked( 220, true ); 1253 configureToolBarMenu->setItemChecked( 220, true );
1250 if (p-> mShowIconForwardFast) 1254 if (p-> mShowIconForwardFast)
1251 configureToolBarMenu->setItemChecked( 230, true ); 1255 configureToolBarMenu->setItemChecked( 230, true );
1252 if (p-> mShowIconNextDays) 1256 if (p-> mShowIconNextDays)
1253 configureToolBarMenu->setItemChecked( 100, true ); 1257 configureToolBarMenu->setItemChecked( 100, true );
1254 if (p-> mShowIconNext) 1258 if (p-> mShowIconNext)
1255 configureToolBarMenu->setItemChecked( 110, true ); 1259 configureToolBarMenu->setItemChecked( 110, true );
1256 if (p-> mShowIconJournal) 1260 if (p-> mShowIconJournal)
1257 configureToolBarMenu->setItemChecked( 90, true ); 1261 configureToolBarMenu->setItemChecked( 90, true );
1258 if (p-> mShowIconWhatsThis) 1262 if (p-> mShowIconWhatsThis)
1259 configureToolBarMenu->setItemChecked( 300, true ); 1263 configureToolBarMenu->setItemChecked( 300, true );
1260 if (p-> mShowIconWeekNum) 1264 if (p-> mShowIconWeekNum)
1261 configureToolBarMenu->setItemChecked( 400, true ); 1265 configureToolBarMenu->setItemChecked( 400, true );
1262 if (!p-> mShowIconStretch) { 1266 if (!p-> mShowIconStretch) {
1263 QLabel* dummy = new QLabel( iconToolBar ); 1267 QLabel* dummy = new QLabel( iconToolBar );
1264 dummy->setBackgroundColor( iconToolBar->backgroundColor() ); 1268 dummy->setBackgroundColor( iconToolBar->backgroundColor() );
1265 dummy->setMinimumWidth( 0 ); 1269 dummy->setMinimumWidth( 0 );
1266 iconToolBar->setStretchableWidget ( dummy ) ; 1270 iconToolBar->setStretchableWidget ( dummy ) ;
1267 } 1271 }
1268 else { 1272 else {
1269 iconToolBar->setHorizontalStretchable (true ); 1273 iconToolBar->setHorizontalStretchable (true );
1270 viewToolBar->setHorizontalStretchable (true ); 1274 viewToolBar->setHorizontalStretchable (true );
1271 navigatorToolBar->setHorizontalStretchable (true ); 1275 navigatorToolBar->setHorizontalStretchable (true );
1272 iconToolBar->setVerticalStretchable (true ); 1276 iconToolBar->setVerticalStretchable (true );
1273 viewToolBar->setVerticalStretchable (true ); 1277 viewToolBar->setVerticalStretchable (true );
1274 navigatorToolBar->setVerticalStretchable (true ); 1278 navigatorToolBar->setVerticalStretchable (true );
1275 configureToolBarMenu->setItemChecked( 5, true ); 1279 configureToolBarMenu->setItemChecked( 5, true );
1276 } 1280 }
1277 if (p-> mShowIconFilter) 1281 if (p-> mShowIconFilter)
1278 configureToolBarMenu->setItemChecked( 7, true ); 1282 configureToolBarMenu->setItemChecked( 7, true );
1279 if (p-> mShowIconOnetoolbar) 1283 if (p-> mShowIconOnetoolbar)
1280 configureToolBarMenu->setItemChecked( 6, true ); 1284 configureToolBarMenu->setItemChecked( 6, true );
1281 1285
1282 1286
1283 if ( filterMenubar ) { 1287 if ( filterMenubar ) {
1284 filterMenubar->reparent(filterToolBar,0,QPoint(0,0) ); 1288 filterMenubar->reparent(filterToolBar,0,QPoint(0,0) );
1285 connect( mView->filterView(), SIGNAL( filterChanged() ), SLOT( updateFilterToolbar() ) ); 1289 connect( mView->filterView(), SIGNAL( filterChanged() ), SLOT( updateFilterToolbar() ) );
1286 } 1290 }
1287 connect( configureToolBarMenu, SIGNAL( activated( int ) ),this, SLOT(configureToolBar( int ) ) ); 1291 connect( configureToolBarMenu, SIGNAL( activated( int ) ),this, SLOT(configureToolBar( int ) ) );
1288 configureAgenda( p->mHourSize ); 1292 configureAgenda( p->mHourSize );
1289 connect( configureAgendaMenu, SIGNAL( activated( int ) ),this, SLOT(configureAgenda( int ) ) ); 1293 connect( configureAgendaMenu, SIGNAL( activated( int ) ),this, SLOT(configureAgenda( int ) ) );
1290} 1294}
1291 1295
1292void MainWindow::exportToPhone( int mode ) 1296void MainWindow::exportToPhone( int mode )
1293{ 1297{
1294 1298
1295 //ex2phone->insertItem(i18n("Complete calendar..."), 1 ); 1299 //ex2phone->insertItem(i18n("Complete calendar..."), 1 );
1296 //ex2phone->insertItem(i18n("Filtered calendar..."), 2 ); 1300 //ex2phone->insertItem(i18n("Filtered calendar..."), 2 );
1297 KOex2phonePrefs ex2phone; 1301 KOex2phonePrefs ex2phone;
1298 1302
1299 ex2phone.mPhoneConnection->setText( KPimGlobalPrefs::instance()->mEx2PhoneConnection ); 1303 ex2phone.mPhoneConnection->setText( KPimGlobalPrefs::instance()->mEx2PhoneConnection );
1300 ex2phone.mPhoneDevice->setText( KPimGlobalPrefs::instance()->mEx2PhoneDevice ); 1304 ex2phone.mPhoneDevice->setText( KPimGlobalPrefs::instance()->mEx2PhoneDevice );
1301 ex2phone.mPhoneModel->setText( KPimGlobalPrefs::instance()->mEx2PhoneModel ); 1305 ex2phone.mPhoneModel->setText( KPimGlobalPrefs::instance()->mEx2PhoneModel );
1302 if ( mode == 1 ) 1306 if ( mode == 1 )
1303 ex2phone.setCaption(i18n("Export complete calendar")); 1307 ex2phone.setCaption(i18n("Export complete calendar"));
1304 if ( mode == 2 ) 1308 if ( mode == 2 )
1305 ex2phone.setCaption(i18n("Export filtered calendar")); 1309 ex2phone.setCaption(i18n("Export filtered calendar"));
1306 1310
1307 if ( !ex2phone.exec() ) { 1311 if ( !ex2phone.exec() ) {
1308 return; 1312 return;
1309 } 1313 }
1310 KPimGlobalPrefs::instance()->mEx2PhoneConnection = ex2phone.mPhoneConnection->text(); 1314 KPimGlobalPrefs::instance()->mEx2PhoneConnection = ex2phone.mPhoneConnection->text();
1311 KPimGlobalPrefs::instance()->mEx2PhoneDevice = ex2phone.mPhoneDevice->text(); 1315 KPimGlobalPrefs::instance()->mEx2PhoneDevice = ex2phone.mPhoneDevice->text();