author | zautrix <zautrix> | 2005-01-19 08:52:01 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-01-19 08:52:01 (UTC) |
commit | af56077eeeab7b46b98ad5159c6653114abf6602 (patch) (unidiff) | |
tree | b621bc3c2c8d283d0aec81b2b8276074082c951a /korganizer | |
parent | c626089f47244d0c0a9ba73bcd12f42927acb28f (diff) | |
download | kdepimpi-af56077eeeab7b46b98ad5159c6653114abf6602.zip kdepimpi-af56077eeeab7b46b98ad5159c6653114abf6602.tar.gz kdepimpi-af56077eeeab7b46b98ad5159c6653114abf6602.tar.bz2 |
kopi fixes
-rw-r--r-- | korganizer/calendarview.cpp | 10 | ||||
-rw-r--r-- | korganizer/koprefs.cpp | 1 | ||||
-rw-r--r-- | korganizer/koprefs.h | 2 | ||||
-rw-r--r-- | korganizer/mainwindow.cpp | 12 |
4 files changed, 17 insertions, 8 deletions
diff --git a/korganizer/calendarview.cpp b/korganizer/calendarview.cpp index 9c10ba6..12af655 100644 --- a/korganizer/calendarview.cpp +++ b/korganizer/calendarview.cpp | |||
@@ -1,854 +1,855 @@ | |||
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 (preston.brown@yale.edu) | 8 | Preston Brown (preston.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 "statusdialog.h" | 110 | #include "statusdialog.h" |
111 | #include "kdatenavigator.h" | 111 | #include "kdatenavigator.h" |
112 | #include "kotodoview.h" | 112 | #include "kotodoview.h" |
113 | #include "datenavigator.h" | 113 | #include "datenavigator.h" |
114 | #include "resourceview.h" | 114 | #include "resourceview.h" |
115 | #include "navigatorbar.h" | 115 | #include "navigatorbar.h" |
116 | #include "searchdialog.h" | 116 | #include "searchdialog.h" |
117 | #include "mainwindow.h" | 117 | #include "mainwindow.h" |
118 | 118 | ||
119 | #include "calendarview.h" | 119 | #include "calendarview.h" |
120 | #ifndef DESKTOP_VERSION | 120 | #ifndef DESKTOP_VERSION |
121 | #include <qtopia/alarmserver.h> | 121 | #include <qtopia/alarmserver.h> |
122 | #endif | 122 | #endif |
123 | #ifndef _WIN32_ | 123 | #ifndef _WIN32_ |
124 | #include <stdlib.h> | 124 | #include <stdlib.h> |
125 | #include <stdio.h> | 125 | #include <stdio.h> |
126 | #include <unistd.h> | 126 | #include <unistd.h> |
127 | #else | 127 | #else |
128 | #include <qprocess.h> | 128 | #include <qprocess.h> |
129 | #endif | 129 | #endif |
130 | 130 | ||
131 | #ifdef DESKTOP_VERSION | 131 | #ifdef DESKTOP_VERSION |
132 | #include <kabc/stdaddressbook.h> | 132 | #include <kabc/stdaddressbook.h> |
133 | #endif | 133 | #endif |
134 | using namespace KOrg; | 134 | using namespace KOrg; |
135 | using namespace KCal; | 135 | using namespace KCal; |
136 | extern int globalFlagBlockAgenda; | 136 | extern int globalFlagBlockAgenda; |
137 | extern int globalFlagBlockStartup; | 137 | extern int globalFlagBlockStartup; |
138 | 138 | ||
139 | 139 | ||
140 | 140 | ||
141 | class KOBeamPrefs : public QDialog | 141 | class KOBeamPrefs : public QDialog |
142 | { | 142 | { |
143 | public: | 143 | public: |
144 | KOBeamPrefs( QWidget *parent=0, const char *name=0 ) : | 144 | KOBeamPrefs( QWidget *parent=0, const char *name=0 ) : |
145 | QDialog( parent, name, true ) | 145 | QDialog( parent, name, true ) |
146 | { | 146 | { |
147 | setCaption( i18n("Beam Options") ); | 147 | setCaption( i18n("Beam Options") ); |
148 | QVBoxLayout* lay = new QVBoxLayout( this ); | 148 | QVBoxLayout* lay = new QVBoxLayout( this ); |
149 | lay->setSpacing( 3 ); | 149 | lay->setSpacing( 3 ); |
150 | lay->setMargin( 3 ); | 150 | lay->setMargin( 3 ); |
151 | QButtonGroup* format = new QButtonGroup( 1, Horizontal, i18n("File format"), this ); | 151 | QButtonGroup* format = new QButtonGroup( 1, Horizontal, i18n("File format"), this ); |
152 | lay->addWidget( format ); | 152 | lay->addWidget( format ); |
153 | format->setExclusive ( true ) ; | 153 | format->setExclusive ( true ) ; |
154 | QButtonGroup* time = new QButtonGroup(1, Horizontal, i18n("Time format"), this ); | 154 | QButtonGroup* time = new QButtonGroup(1, Horizontal, i18n("Time format"), this ); |
155 | lay->addWidget( time ); time->setExclusive ( true ) ; | 155 | lay->addWidget( time ); time->setExclusive ( true ) ; |
156 | vcal = new QRadioButton(" vCalendar ", format ); | 156 | vcal = new QRadioButton(" vCalendar ", format ); |
157 | ical = new QRadioButton(" iCalendar ", format ); | 157 | ical = new QRadioButton(" iCalendar ", format ); |
158 | vcal->setChecked( true ); | 158 | vcal->setChecked( true ); |
159 | tz = new QRadioButton(i18n(" With timezone "), time ); | 159 | tz = new QRadioButton(i18n(" With timezone "), time ); |
160 | local = new QRadioButton(i18n(" Local time "), time ); | 160 | local = new QRadioButton(i18n(" Local time "), time ); |
161 | tz->setChecked( true ); | 161 | tz->setChecked( true ); |
162 | QPushButton * ok = new QPushButton( i18n("Beam via IR!"), this ); | 162 | QPushButton * ok = new QPushButton( i18n("Beam via IR!"), this ); |
163 | lay->addWidget( ok ); | 163 | lay->addWidget( ok ); |
164 | QPushButton * cancel = new QPushButton( i18n("Cancel"), this ); | 164 | QPushButton * cancel = new QPushButton( i18n("Cancel"), this ); |
165 | lay->addWidget( cancel ); | 165 | lay->addWidget( cancel ); |
166 | connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) ); | 166 | connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) ); |
167 | connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) ); | 167 | connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) ); |
168 | resize( 200, 200 ); | 168 | resize( 200, 200 ); |
169 | } | 169 | } |
170 | 170 | ||
171 | bool beamVcal() { return vcal->isChecked(); } | 171 | bool beamVcal() { return vcal->isChecked(); } |
172 | bool beamLocal() { return local->isChecked(); } | 172 | bool beamLocal() { return local->isChecked(); } |
173 | private: | 173 | private: |
174 | QRadioButton* vcal, *ical, *local, *tz; | 174 | QRadioButton* vcal, *ical, *local, *tz; |
175 | }; | 175 | }; |
176 | class KOCatPrefs : public QDialog | 176 | class KOCatPrefs : public QDialog |
177 | { | 177 | { |
178 | public: | 178 | public: |
179 | KOCatPrefs( QWidget *parent=0, const char *name=0 ) : | 179 | KOCatPrefs( QWidget *parent=0, const char *name=0 ) : |
180 | QDialog( parent, name, true ) | 180 | QDialog( parent, name, true ) |
181 | { | 181 | { |
182 | setCaption( i18n("Manage new Categories") ); | 182 | setCaption( i18n("Manage new Categories") ); |
183 | QVBoxLayout* lay = new QVBoxLayout( this ); | 183 | QVBoxLayout* lay = new QVBoxLayout( this ); |
184 | lay->setSpacing( 3 ); | 184 | lay->setSpacing( 3 ); |
185 | lay->setMargin( 3 ); | 185 | lay->setMargin( 3 ); |
186 | 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 ); | 186 | 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 ); |
187 | lay->addWidget( lab ); | 187 | lay->addWidget( lab ); |
188 | QButtonGroup* format = new QButtonGroup( 1, Horizontal, i18n("New categories not in list:"), this ); | 188 | QButtonGroup* format = new QButtonGroup( 1, Horizontal, i18n("New categories not in list:"), this ); |
189 | lay->addWidget( format ); | 189 | lay->addWidget( format ); |
190 | format->setExclusive ( true ) ; | 190 | format->setExclusive ( true ) ; |
191 | addCatBut = new QRadioButton(i18n("Add to category list"), format ); | 191 | addCatBut = new QRadioButton(i18n("Add to category list"), format ); |
192 | new QRadioButton(i18n("Remove from Events/Todos"), format ); | 192 | new QRadioButton(i18n("Remove from Events/Todos"), format ); |
193 | addCatBut->setChecked( true ); | 193 | addCatBut->setChecked( true ); |
194 | QPushButton * ok = new QPushButton( i18n("OK"), this ); | 194 | QPushButton * ok = new QPushButton( i18n("OK"), this ); |
195 | lay->addWidget( ok ); | 195 | lay->addWidget( ok ); |
196 | QPushButton * cancel = new QPushButton( i18n("Cancel"), this ); | 196 | QPushButton * cancel = new QPushButton( i18n("Cancel"), this ); |
197 | lay->addWidget( cancel ); | 197 | lay->addWidget( cancel ); |
198 | connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) ); | 198 | connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) ); |
199 | connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) ); | 199 | connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) ); |
200 | resize( 200, 200 ); | 200 | resize( 200, 200 ); |
201 | } | 201 | } |
202 | 202 | ||
203 | bool addCat() { return addCatBut->isChecked(); } | 203 | bool addCat() { return addCatBut->isChecked(); } |
204 | private: | 204 | private: |
205 | QRadioButton* addCatBut; | 205 | QRadioButton* addCatBut; |
206 | }; | 206 | }; |
207 | 207 | ||
208 | 208 | ||
209 | 209 | ||
210 | CalendarView::CalendarView( CalendarResources *calendar, | 210 | CalendarView::CalendarView( CalendarResources *calendar, |
211 | QWidget *parent, const char *name ) | 211 | QWidget *parent, const char *name ) |
212 | : CalendarViewBase( parent, name ), | 212 | : CalendarViewBase( parent, name ), |
213 | mCalendar( calendar ), | 213 | mCalendar( calendar ), |
214 | mResourceManager( calendar->resourceManager() ) | 214 | mResourceManager( calendar->resourceManager() ) |
215 | { | 215 | { |
216 | 216 | ||
217 | mEventEditor = 0; | 217 | mEventEditor = 0; |
218 | mTodoEditor = 0; | 218 | mTodoEditor = 0; |
219 | 219 | ||
220 | init(); | 220 | init(); |
221 | } | 221 | } |
222 | 222 | ||
223 | CalendarView::CalendarView( Calendar *calendar, | 223 | CalendarView::CalendarView( Calendar *calendar, |
224 | QWidget *parent, const char *name ) | 224 | QWidget *parent, const char *name ) |
225 | : CalendarViewBase( parent, name ), | 225 | : CalendarViewBase( parent, name ), |
226 | mCalendar( calendar ), | 226 | mCalendar( calendar ), |
227 | mResourceManager( 0 ) | 227 | mResourceManager( 0 ) |
228 | { | 228 | { |
229 | 229 | ||
230 | mEventEditor = 0; | 230 | mEventEditor = 0; |
231 | mTodoEditor = 0; | 231 | mTodoEditor = 0; |
232 | init();} | 232 | init();} |
233 | 233 | ||
234 | void CalendarView::init() | 234 | void CalendarView::init() |
235 | { | 235 | { |
236 | beamDialog = new KOBeamPrefs(); | 236 | beamDialog = new KOBeamPrefs(); |
237 | mDatePickerMode = 0; | 237 | mDatePickerMode = 0; |
238 | mCurrentSyncDevice = ""; | 238 | mCurrentSyncDevice = ""; |
239 | writeLocale(); | 239 | writeLocale(); |
240 | mViewManager = new KOViewManager( this ); | 240 | mViewManager = new KOViewManager( this ); |
241 | mDialogManager = new KODialogManager( this ); | 241 | mDialogManager = new KODialogManager( this ); |
242 | mEventViewerDialog = 0; | 242 | mEventViewerDialog = 0; |
243 | mModified = false; | 243 | mModified = false; |
244 | mReadOnly = false; | 244 | mReadOnly = false; |
245 | mSelectedIncidence = 0; | 245 | mSelectedIncidence = 0; |
246 | mCalPrinter = 0; | 246 | mCalPrinter = 0; |
247 | mFilters.setAutoDelete(true); | 247 | mFilters.setAutoDelete(true); |
248 | 248 | ||
249 | mCalendar->registerObserver( this ); | 249 | mCalendar->registerObserver( this ); |
250 | // TODO: Make sure that view is updated, when calendar is changed. | 250 | // TODO: Make sure that view is updated, when calendar is changed. |
251 | 251 | ||
252 | mStorage = new FileStorage( mCalendar ); | 252 | mStorage = new FileStorage( mCalendar ); |
253 | mNavigator = new DateNavigator( this, "datevav", mViewManager ); | 253 | mNavigator = new DateNavigator( this, "datevav", mViewManager ); |
254 | 254 | ||
255 | QBoxLayout *topLayout = (QBoxLayout*)layout(); | 255 | QBoxLayout *topLayout = (QBoxLayout*)layout(); |
256 | #ifndef KORG_NOSPLITTER | 256 | #ifndef KORG_NOSPLITTER |
257 | // create the main layout frames. | 257 | // create the main layout frames. |
258 | mPanner = new QSplitter(QSplitter::Horizontal,this,"CalendarView::Panner"); | 258 | mPanner = new QSplitter(QSplitter::Horizontal,this,"CalendarView::Panner"); |
259 | topLayout->addWidget(mPanner); | 259 | topLayout->addWidget(mPanner); |
260 | 260 | ||
261 | mLeftSplitter = new QSplitter(QSplitter::Vertical,mPanner, | 261 | mLeftSplitter = new QSplitter(QSplitter::Vertical,mPanner, |
262 | "CalendarView::LeftFrame"); | 262 | "CalendarView::LeftFrame"); |
263 | mPanner->setResizeMode(mLeftSplitter,QSplitter::KeepSize); | 263 | mPanner->setResizeMode(mLeftSplitter,QSplitter::KeepSize); |
264 | 264 | ||
265 | mDateNavigator = new KDateNavigator(mLeftSplitter, mCalendar, TRUE, | 265 | mDateNavigator = new KDateNavigator(mLeftSplitter, mCalendar, TRUE, |
266 | "CalendarView::DateNavigator", QDate::currentDate() ); | 266 | "CalendarView::DateNavigator", QDate::currentDate() ); |
267 | mLeftSplitter->setResizeMode(mDateNavigator,QSplitter::KeepSize); | 267 | mLeftSplitter->setResizeMode(mDateNavigator,QSplitter::KeepSize); |
268 | mTodoList = new KOTodoView(mCalendar, mLeftSplitter, "todolist_small2"); | 268 | mTodoList = new KOTodoView(mCalendar, mLeftSplitter, "todolist_small2"); |
269 | mTodoList->setNavigator( mNavigator ); | 269 | mTodoList->setNavigator( mNavigator ); |
270 | mFilterView = new KOFilterView(&mFilters,mLeftSplitter,"CalendarView::FilterView"); | 270 | mFilterView = new KOFilterView(&mFilters,mLeftSplitter,"CalendarView::FilterView"); |
271 | 271 | ||
272 | #ifdef KORG_NORESOURCEVIEW | 272 | #ifdef KORG_NORESOURCEVIEW |
273 | mResourceView = 0; | 273 | mResourceView = 0; |
274 | #else | 274 | #else |
275 | if ( mResourceManager ) { | 275 | if ( mResourceManager ) { |
276 | mResourceView = new ResourceView( mResourceManager, mLeftSplitter ); | 276 | mResourceView = new ResourceView( mResourceManager, mLeftSplitter ); |
277 | mResourceView->updateView(); | 277 | mResourceView->updateView(); |
278 | connect( mResourceView, SIGNAL( resourcesChanged() ), | 278 | connect( mResourceView, SIGNAL( resourcesChanged() ), |
279 | SLOT( updateView() ) ); | 279 | SLOT( updateView() ) ); |
280 | } else { | 280 | } else { |
281 | mResourceView = 0; | 281 | mResourceView = 0; |
282 | } | 282 | } |
283 | #endif | 283 | #endif |
284 | QWidget *rightBox = new QWidget( mPanner ); | 284 | QWidget *rightBox = new QWidget( mPanner ); |
285 | QBoxLayout *rightLayout = new QVBoxLayout( rightBox ); | 285 | QBoxLayout *rightLayout = new QVBoxLayout( rightBox ); |
286 | 286 | ||
287 | mNavigatorBar = new NavigatorBar( QDate::currentDate(), rightBox, "useBigPixmaps" ); | 287 | mNavigatorBar = new NavigatorBar( QDate::currentDate(), rightBox, "useBigPixmaps" ); |
288 | rightLayout->addWidget( mNavigatorBar ); | 288 | rightLayout->addWidget( mNavigatorBar ); |
289 | 289 | ||
290 | mRightFrame = new QWidgetStack( rightBox ); | 290 | mRightFrame = new QWidgetStack( rightBox ); |
291 | rightLayout->addWidget( mRightFrame, 1 ); | 291 | rightLayout->addWidget( mRightFrame, 1 ); |
292 | 292 | ||
293 | mLeftFrame = mLeftSplitter; | 293 | mLeftFrame = mLeftSplitter; |
294 | #else | 294 | #else |
295 | QWidget *mainBox = new QWidget( this ); | 295 | QWidget *mainBox = new QWidget( this ); |
296 | QWidget *leftFrame = new QWidget( mainBox ); | 296 | QWidget *leftFrame = new QWidget( mainBox ); |
297 | 297 | ||
298 | QBoxLayout * mainBoxLayout; | 298 | QBoxLayout * mainBoxLayout; |
299 | QBoxLayout * leftFrameLayout; | 299 | QBoxLayout * leftFrameLayout; |
300 | if ( KOPrefs::instance()->mVerticalScreen ) { | 300 | if ( KOPrefs::instance()->mVerticalScreen ) { |
301 | mainBoxLayout = new QVBoxLayout(mainBox); | 301 | mainBoxLayout = new QVBoxLayout(mainBox); |
302 | leftFrameLayout = new QHBoxLayout(leftFrame ); | 302 | leftFrameLayout = new QHBoxLayout(leftFrame ); |
303 | } else { | 303 | } else { |
304 | mainBoxLayout = new QHBoxLayout(mainBox); | 304 | mainBoxLayout = new QHBoxLayout(mainBox); |
305 | leftFrameLayout = new QVBoxLayout(leftFrame ); | 305 | leftFrameLayout = new QVBoxLayout(leftFrame ); |
306 | } | 306 | } |
307 | topLayout->addWidget( mainBox ); | 307 | topLayout->addWidget( mainBox ); |
308 | mainBoxLayout->addWidget (leftFrame); | 308 | mainBoxLayout->addWidget (leftFrame); |
309 | mDateNavigator = new KDateNavigator(leftFrame, mCalendar, TRUE, | 309 | mDateNavigator = new KDateNavigator(leftFrame, mCalendar, TRUE, |
310 | "CalendarView::DateNavigator", QDate::currentDate()); | 310 | "CalendarView::DateNavigator", QDate::currentDate()); |
311 | // mDateNavigator->blockSignals( true ); | 311 | // mDateNavigator->blockSignals( true ); |
312 | leftFrameLayout->addWidget( mDateNavigator ); | 312 | leftFrameLayout->addWidget( mDateNavigator ); |
313 | mFilterView = new KOFilterView(&mFilters,leftFrame,"CalendarView::FilterView"); | 313 | mFilterView = new KOFilterView(&mFilters,leftFrame,"CalendarView::FilterView"); |
314 | mTodoList = new KOTodoView(mCalendar, leftFrame, "todolistsmall"); | 314 | mTodoList = new KOTodoView(mCalendar, leftFrame, "todolistsmall"); |
315 | mTodoList->setNavigator( mNavigator ); | 315 | mTodoList->setNavigator( mNavigator ); |
316 | 316 | ||
317 | if ( QApplication::desktop()->width() < 480 ) { | 317 | if ( QApplication::desktop()->width() < 480 ) { |
318 | leftFrameLayout->addWidget(mFilterView); | 318 | leftFrameLayout->addWidget(mFilterView); |
319 | leftFrameLayout->addWidget(mTodoList, 2 ); | 319 | leftFrameLayout->addWidget(mTodoList, 2 ); |
320 | 320 | ||
321 | } else { | 321 | } else { |
322 | leftFrameLayout->addWidget(mTodoList,2 ); | 322 | leftFrameLayout->addWidget(mTodoList,2 ); |
323 | leftFrameLayout->addWidget(mFilterView ); | 323 | leftFrameLayout->addWidget(mFilterView ); |
324 | } | 324 | } |
325 | mFilterView->hide(); | 325 | mFilterView->hide(); |
326 | QWidget *rightBox = new QWidget( mainBox ); | 326 | QWidget *rightBox = new QWidget( mainBox ); |
327 | mainBoxLayout->addWidget ( rightBox, 10 ); | 327 | mainBoxLayout->addWidget ( rightBox, 10 ); |
328 | QBoxLayout *rightLayout = new QVBoxLayout( rightBox ); | 328 | QBoxLayout *rightLayout = new QVBoxLayout( rightBox ); |
329 | mNavigatorBar = new NavigatorBar( QDate::currentDate(), rightBox, "useBigPixmaps" ); | 329 | mNavigatorBar = new NavigatorBar( QDate::currentDate(), rightBox, "useBigPixmaps" ); |
330 | mRightFrame = new QWidgetStack( rightBox ); | 330 | mRightFrame = new QWidgetStack( rightBox ); |
331 | rightLayout->addWidget( mNavigatorBar ); | 331 | rightLayout->addWidget( mNavigatorBar ); |
332 | rightLayout->addWidget( mRightFrame, 10 ); | 332 | rightLayout->addWidget( mRightFrame, 10 ); |
333 | 333 | ||
334 | mLeftFrame = leftFrame; | 334 | mLeftFrame = leftFrame; |
335 | if ( KOPrefs::instance()->mVerticalScreen ) { | 335 | if ( KOPrefs::instance()->mVerticalScreen ) { |
336 | mTodoList->setFixedHeight( mDateNavigator->sizeHint().height() ); | 336 | mTodoList->setFixedHeight( mDateNavigator->sizeHint().height() ); |
337 | leftFrame->setFixedHeight( mDateNavigator->sizeHint().height() ); | 337 | leftFrame->setFixedHeight( mDateNavigator->sizeHint().height() ); |
338 | } else { | 338 | } else { |
339 | mTodoList->setFixedWidth( mDateNavigator->sizeHint().width() ); | 339 | mTodoList->setFixedWidth( mDateNavigator->sizeHint().width() ); |
340 | leftFrame->setFixedWidth( mDateNavigator->sizeHint().width() ); | 340 | leftFrame->setFixedWidth( mDateNavigator->sizeHint().width() ); |
341 | } | 341 | } |
342 | 342 | if ( !KOPrefs::instance()->mShowDateNavigator) | |
343 | mDateNavigator->hide(); | ||
343 | //qDebug("Calendarview Size %d %d ", width(), height()); | 344 | //qDebug("Calendarview Size %d %d ", width(), height()); |
344 | #endif | 345 | #endif |
345 | 346 | ||
346 | connect( mNavigator, SIGNAL( datesSelected( const KCal::DateList & ) ), | 347 | connect( mNavigator, SIGNAL( datesSelected( const KCal::DateList & ) ), |
347 | SLOT( showDates( const KCal::DateList & ) ) ); | 348 | SLOT( showDates( const KCal::DateList & ) ) ); |
348 | connect( mNavigator, SIGNAL( datesSelected( const KCal::DateList & ) ), | 349 | connect( mNavigator, SIGNAL( datesSelected( const KCal::DateList & ) ), |
349 | mDateNavigator, SLOT( selectDates( const KCal::DateList & ) ) ); | 350 | mDateNavigator, SLOT( selectDates( const KCal::DateList & ) ) ); |
350 | 351 | ||
351 | connect( mNavigatorBar, SIGNAL( goPrevYear() ), | 352 | connect( mNavigatorBar, SIGNAL( goPrevYear() ), |
352 | mNavigator, SLOT( selectPreviousYear() ) ); | 353 | mNavigator, SLOT( selectPreviousYear() ) ); |
353 | connect( mNavigatorBar, SIGNAL( goNextYear() ), | 354 | connect( mNavigatorBar, SIGNAL( goNextYear() ), |
354 | mNavigator, SLOT( selectNextYear() ) ); | 355 | mNavigator, SLOT( selectNextYear() ) ); |
355 | connect( mNavigatorBar, SIGNAL( goPrevMonth() ), | 356 | connect( mNavigatorBar, SIGNAL( goPrevMonth() ), |
356 | mNavigator, SLOT( selectPreviousMonth() ) ); | 357 | mNavigator, SLOT( selectPreviousMonth() ) ); |
357 | connect( mNavigatorBar, SIGNAL( goNextMonth() ), | 358 | connect( mNavigatorBar, SIGNAL( goNextMonth() ), |
358 | mNavigator, SLOT( selectNextMonth() ) ); | 359 | mNavigator, SLOT( selectNextMonth() ) ); |
359 | 360 | ||
360 | connect( mNavigator, SIGNAL( datesSelected( const KCal::DateList & ) ), | 361 | connect( mNavigator, SIGNAL( datesSelected( const KCal::DateList & ) ), |
361 | mNavigatorBar, SLOT( selectDates( const KCal::DateList & ) ) ); | 362 | mNavigatorBar, SLOT( selectDates( const KCal::DateList & ) ) ); |
362 | 363 | ||
363 | connect( mDateNavigator, SIGNAL( weekClicked( const QDate & ) ), | 364 | connect( mDateNavigator, SIGNAL( weekClicked( const QDate & ) ), |
364 | mNavigator, SLOT( selectWeek( const QDate & ) ) ); | 365 | mNavigator, SLOT( selectWeek( const QDate & ) ) ); |
365 | 366 | ||
366 | connect( mDateNavigator, SIGNAL( goPrevYear() ), | 367 | connect( mDateNavigator, SIGNAL( goPrevYear() ), |
367 | mNavigator, SLOT( selectPreviousYear() ) ); | 368 | mNavigator, SLOT( selectPreviousYear() ) ); |
368 | connect( mDateNavigator, SIGNAL( goNextYear() ), | 369 | connect( mDateNavigator, SIGNAL( goNextYear() ), |
369 | mNavigator, SLOT( selectNextYear() ) ); | 370 | mNavigator, SLOT( selectNextYear() ) ); |
370 | connect( mDateNavigator, SIGNAL( goPrevMonth() ), | 371 | connect( mDateNavigator, SIGNAL( goPrevMonth() ), |
371 | mNavigator, SLOT( selectPreviousMonth() ) ); | 372 | mNavigator, SLOT( selectPreviousMonth() ) ); |
372 | connect( mDateNavigator, SIGNAL( goNextMonth() ), | 373 | connect( mDateNavigator, SIGNAL( goNextMonth() ), |
373 | mNavigator, SLOT( selectNextMonth() ) ); | 374 | mNavigator, SLOT( selectNextMonth() ) ); |
374 | 375 | ||
375 | connect( mDateNavigator, SIGNAL( goPrevious() ), | 376 | connect( mDateNavigator, SIGNAL( goPrevious() ), |
376 | mNavigator, SLOT( selectPrevious() ) ); | 377 | mNavigator, SLOT( selectPrevious() ) ); |
377 | connect( mDateNavigator, SIGNAL( goNext() ), | 378 | connect( mDateNavigator, SIGNAL( goNext() ), |
378 | mNavigator, SLOT( selectNext() ) ); | 379 | mNavigator, SLOT( selectNext() ) ); |
379 | connect( mDateNavigator, SIGNAL( monthSelected ( int ) ), | 380 | connect( mDateNavigator, SIGNAL( monthSelected ( int ) ), |
380 | mNavigator, SLOT( slotMonthSelect( int ) ) ); | 381 | mNavigator, SLOT( slotMonthSelect( int ) ) ); |
381 | connect( mNavigatorBar, SIGNAL( monthSelected ( int ) ), | 382 | connect( mNavigatorBar, SIGNAL( monthSelected ( int ) ), |
382 | mNavigator, SLOT( slotMonthSelect( int ) ) ); | 383 | mNavigator, SLOT( slotMonthSelect( int ) ) ); |
383 | 384 | ||
384 | connect( mDateNavigator, SIGNAL( datesSelected( const KCal::DateList & ) ), | 385 | connect( mDateNavigator, SIGNAL( datesSelected( const KCal::DateList & ) ), |
385 | mNavigator, SLOT( selectDates( const KCal::DateList & ) ) ); | 386 | mNavigator, SLOT( selectDates( const KCal::DateList & ) ) ); |
386 | 387 | ||
387 | connect( mDateNavigator, SIGNAL( eventDropped( Event * ) ), | 388 | connect( mDateNavigator, SIGNAL( eventDropped( Event * ) ), |
388 | SLOT( eventAdded( Event *) ) ); | 389 | SLOT( eventAdded( Event *) ) ); |
389 | 390 | ||
390 | connect(mDateNavigator,SIGNAL(dayPassed(QDate)),SLOT(updateView())); | 391 | connect(mDateNavigator,SIGNAL(dayPassed(QDate)),SLOT(updateView())); |
391 | 392 | ||
392 | connect( this, SIGNAL( configChanged() ), | 393 | connect( this, SIGNAL( configChanged() ), |
393 | mDateNavigator, SLOT( updateConfig() ) ); | 394 | mDateNavigator, SLOT( updateConfig() ) ); |
394 | 395 | ||
395 | connect( mTodoList, SIGNAL( newTodoSignal() ), | 396 | connect( mTodoList, SIGNAL( newTodoSignal() ), |
396 | SLOT( newTodo() ) ); | 397 | SLOT( newTodo() ) ); |
397 | connect( mTodoList, SIGNAL( newSubTodoSignal( Todo *) ), | 398 | connect( mTodoList, SIGNAL( newSubTodoSignal( Todo *) ), |
398 | SLOT( newSubTodo( Todo * ) ) ); | 399 | SLOT( newSubTodo( Todo * ) ) ); |
399 | connect( mTodoList, SIGNAL( editTodoSignal( Todo * ) ), | 400 | connect( mTodoList, SIGNAL( editTodoSignal( Todo * ) ), |
400 | SLOT( editTodo( Todo * ) ) ); | 401 | SLOT( editTodo( Todo * ) ) ); |
401 | connect( mTodoList, SIGNAL( showTodoSignal( Todo * ) ), | 402 | connect( mTodoList, SIGNAL( showTodoSignal( Todo * ) ), |
402 | SLOT( showTodo( Todo *) ) ); | 403 | SLOT( showTodo( Todo *) ) ); |
403 | connect( mTodoList, SIGNAL( deleteTodoSignal( Todo *) ), | 404 | connect( mTodoList, SIGNAL( deleteTodoSignal( Todo *) ), |
404 | SLOT( deleteTodo( Todo *) ) ); | 405 | SLOT( deleteTodo( Todo *) ) ); |
405 | connect( this, SIGNAL( configChanged()), mTodoList, SLOT( updateConfig() ) ); | 406 | connect( this, SIGNAL( configChanged()), mTodoList, SLOT( updateConfig() ) ); |
406 | connect( mTodoList, SIGNAL( purgeCompletedSignal() ), | 407 | connect( mTodoList, SIGNAL( purgeCompletedSignal() ), |
407 | SLOT( purgeCompleted() ) ); | 408 | SLOT( purgeCompleted() ) ); |
408 | connect( mTodoList, SIGNAL( todoModifiedSignal( Todo *, int ) ), | 409 | connect( mTodoList, SIGNAL( todoModifiedSignal( Todo *, int ) ), |
409 | SIGNAL( todoModified( Todo *, int ) ) ); | 410 | SIGNAL( todoModified( Todo *, int ) ) ); |
410 | 411 | ||
411 | connect( mTodoList, SIGNAL( cloneTodoSignal( Incidence * ) ), | 412 | connect( mTodoList, SIGNAL( cloneTodoSignal( Incidence * ) ), |
412 | this, SLOT ( cloneIncidence( Incidence * ) ) ); | 413 | this, SLOT ( cloneIncidence( Incidence * ) ) ); |
413 | connect( mTodoList, SIGNAL( cancelTodoSignal( Incidence * ) ), | 414 | connect( mTodoList, SIGNAL( cancelTodoSignal( Incidence * ) ), |
414 | this, SLOT (cancelIncidence( Incidence * ) ) ); | 415 | this, SLOT (cancelIncidence( Incidence * ) ) ); |
415 | 416 | ||
416 | connect( mTodoList, SIGNAL( moveTodoSignal( Incidence * ) ), | 417 | connect( mTodoList, SIGNAL( moveTodoSignal( Incidence * ) ), |
417 | this, SLOT ( moveIncidence( Incidence * ) ) ); | 418 | this, SLOT ( moveIncidence( Incidence * ) ) ); |
418 | connect( mTodoList, SIGNAL( beamTodoSignal( Incidence * ) ), | 419 | connect( mTodoList, SIGNAL( beamTodoSignal( Incidence * ) ), |
419 | this, SLOT ( beamIncidence( Incidence * ) ) ); | 420 | this, SLOT ( beamIncidence( Incidence * ) ) ); |
420 | 421 | ||
421 | connect( mTodoList, SIGNAL( unparentTodoSignal( Todo * ) ), | 422 | connect( mTodoList, SIGNAL( unparentTodoSignal( Todo * ) ), |
422 | this, SLOT ( todo_unsub( Todo * ) ) ); | 423 | this, SLOT ( todo_unsub( Todo * ) ) ); |
423 | 424 | ||
424 | connect( mTodoList, SIGNAL( reparentTodoSignal( Todo *,Todo * ) ), | 425 | connect( mTodoList, SIGNAL( reparentTodoSignal( Todo *,Todo * ) ), |
425 | this, SLOT ( todo_resub( Todo *,Todo * ) ) ); | 426 | this, SLOT ( todo_resub( Todo *,Todo * ) ) ); |
426 | connect( this, SIGNAL( todoModified( Todo *, int )), mTodoList, | 427 | connect( this, SIGNAL( todoModified( Todo *, int )), mTodoList, |
427 | SLOT( updateTodo( Todo *, int ) ) ); | 428 | SLOT( updateTodo( Todo *, int ) ) ); |
428 | connect( this, SIGNAL( todoModified( Todo *, int )), this, | 429 | connect( this, SIGNAL( todoModified( Todo *, int )), this, |
429 | SLOT( changeTodoDisplay( Todo *, int ) ) ); | 430 | SLOT( changeTodoDisplay( Todo *, int ) ) ); |
430 | 431 | ||
431 | 432 | ||
432 | connect( mFilterView, SIGNAL( filterChanged() ), SLOT( updateFilter() ) ); | 433 | connect( mFilterView, SIGNAL( filterChanged() ), SLOT( updateFilter() ) ); |
433 | connect( mFilterView, SIGNAL( editFilters() ), SLOT( editFilters() ) ); | 434 | connect( mFilterView, SIGNAL( editFilters() ), SLOT( editFilters() ) ); |
434 | connect( mCalendar, SIGNAL( addAlarm(const QDateTime &, const QString & ) ), SLOT( addAlarm(const QDateTime &, const QString & ) ) ); | 435 | connect( mCalendar, SIGNAL( addAlarm(const QDateTime &, const QString & ) ), SLOT( addAlarm(const QDateTime &, const QString & ) ) ); |
435 | connect( mCalendar, SIGNAL( removeAlarm(const QDateTime &, const QString & ) ), SLOT( removeAlarm(const QDateTime &, const QString & ) ) ); | 436 | connect( mCalendar, SIGNAL( removeAlarm(const QDateTime &, const QString & ) ), SLOT( removeAlarm(const QDateTime &, const QString & ) ) ); |
436 | 437 | ||
437 | 438 | ||
438 | 439 | ||
439 | 440 | ||
440 | 441 | ||
441 | connect(QApplication::clipboard(),SIGNAL(dataChanged()), | 442 | connect(QApplication::clipboard(),SIGNAL(dataChanged()), |
442 | SLOT(checkClipboard())); | 443 | SLOT(checkClipboard())); |
443 | connect( mTodoList,SIGNAL( incidenceSelected( Incidence * ) ), | 444 | connect( mTodoList,SIGNAL( incidenceSelected( Incidence * ) ), |
444 | SLOT( processTodoListSelection( Incidence * ) ) ); | 445 | SLOT( processTodoListSelection( Incidence * ) ) ); |
445 | connect(mTodoList,SIGNAL(isModified(bool)),SLOT(setModified(bool))); | 446 | connect(mTodoList,SIGNAL(isModified(bool)),SLOT(setModified(bool))); |
446 | 447 | ||
447 | // kdDebug() << "CalendarView::CalendarView() done" << endl; | 448 | // kdDebug() << "CalendarView::CalendarView() done" << endl; |
448 | 449 | ||
449 | mDateFrame = new QVBox(0,0,WType_Popup); | 450 | mDateFrame = new QVBox(0,0,WType_Popup); |
450 | //mDateFrame->setFrameStyle(QFrame::PopupPanel | QFrame::Raised); | 451 | //mDateFrame->setFrameStyle(QFrame::PopupPanel | QFrame::Raised); |
451 | mDateFrame->setFrameStyle( QFrame::WinPanel |QFrame::Raised ); | 452 | mDateFrame->setFrameStyle( QFrame::WinPanel |QFrame::Raised ); |
452 | mDateFrame->setLineWidth(3); | 453 | mDateFrame->setLineWidth(3); |
453 | mDateFrame->hide(); | 454 | mDateFrame->hide(); |
454 | mDateFrame->setCaption( i18n( "Pick a date to display")); | 455 | mDateFrame->setCaption( i18n( "Pick a date to display")); |
455 | mDatePicker = new KDatePicker ( mDateFrame , QDate::currentDate() ); | 456 | mDatePicker = new KDatePicker ( mDateFrame , QDate::currentDate() ); |
456 | 457 | ||
457 | connect(mDatePicker,SIGNAL(dateSelected(QDate)),SLOT(slotSelectPickerDate(QDate))); | 458 | connect(mDatePicker,SIGNAL(dateSelected(QDate)),SLOT(slotSelectPickerDate(QDate))); |
458 | 459 | ||
459 | mEventEditor = mDialogManager->getEventEditor(); | 460 | mEventEditor = mDialogManager->getEventEditor(); |
460 | mTodoEditor = mDialogManager->getTodoEditor(); | 461 | mTodoEditor = mDialogManager->getTodoEditor(); |
461 | 462 | ||
462 | mFlagEditDescription = false; | 463 | mFlagEditDescription = false; |
463 | 464 | ||
464 | mSuspendTimer = new QTimer( this ); | 465 | mSuspendTimer = new QTimer( this ); |
465 | mAlarmTimer = new QTimer( this ); | 466 | mAlarmTimer = new QTimer( this ); |
466 | mRecheckAlarmTimer = new QTimer( this ); | 467 | mRecheckAlarmTimer = new QTimer( this ); |
467 | connect( mRecheckAlarmTimer, SIGNAL( timeout () ), SLOT( recheckTimerAlarm() ) ); | 468 | connect( mRecheckAlarmTimer, SIGNAL( timeout () ), SLOT( recheckTimerAlarm() ) ); |
468 | connect( mSuspendTimer, SIGNAL( timeout () ), SLOT( suspendAlarm() ) ); | 469 | connect( mSuspendTimer, SIGNAL( timeout () ), SLOT( suspendAlarm() ) ); |
469 | connect( mAlarmTimer, SIGNAL( timeout () ), SLOT( timerAlarm() ) ); | 470 | connect( mAlarmTimer, SIGNAL( timeout () ), SLOT( timerAlarm() ) ); |
470 | mAlarmDialog = new AlarmDialog( this ); | 471 | mAlarmDialog = new AlarmDialog( this ); |
471 | connect( mAlarmDialog, SIGNAL( addAlarm(const QDateTime &, const QString & ) ), SLOT( addSuspendAlarm(const QDateTime &, const QString & ) ) ); | 472 | connect( mAlarmDialog, SIGNAL( addAlarm(const QDateTime &, const QString & ) ), SLOT( addSuspendAlarm(const QDateTime &, const QString & ) ) ); |
472 | mAlarmDialog->setServerNotification( false ); | 473 | mAlarmDialog->setServerNotification( false ); |
473 | mAlarmDialog->setSuspendTime( KOPrefs::instance()->mAlarmSuspendTime ); | 474 | mAlarmDialog->setSuspendTime( KOPrefs::instance()->mAlarmSuspendTime ); |
474 | 475 | ||
475 | 476 | ||
476 | #ifndef DESKTOP_VERSION | 477 | #ifndef DESKTOP_VERSION |
477 | //US listen for arriving address resultsets | 478 | //US listen for arriving address resultsets |
478 | connect(ExternalAppHandler::instance(), SIGNAL(receivedBirthdayListEvent(const QString&, const QStringList&, const QStringList&, const QStringList&, const QStringList&, const QStringList&, const QStringList&)), | 479 | connect(ExternalAppHandler::instance(), SIGNAL(receivedBirthdayListEvent(const QString&, const QStringList&, const QStringList&, const QStringList&, const QStringList&, const QStringList&, const QStringList&)), |
479 | this, SLOT(insertBirthdays(const QString&, const QStringList&, const QStringList&, const QStringList&, const QStringList&, const QStringList&, const QStringList&))); | 480 | this, SLOT(insertBirthdays(const QString&, const QStringList&, const QStringList&, const QStringList&, const QStringList&, const QStringList&, const QStringList&))); |
480 | #endif | 481 | #endif |
481 | 482 | ||
482 | } | 483 | } |
483 | 484 | ||
484 | 485 | ||
485 | CalendarView::~CalendarView() | 486 | CalendarView::~CalendarView() |
486 | { | 487 | { |
487 | // kdDebug() << "~CalendarView()" << endl; | 488 | // kdDebug() << "~CalendarView()" << endl; |
488 | //qDebug("CalendarView::~CalendarView() "); | 489 | //qDebug("CalendarView::~CalendarView() "); |
489 | delete mDialogManager; | 490 | delete mDialogManager; |
490 | delete mViewManager; | 491 | delete mViewManager; |
491 | delete mStorage; | 492 | delete mStorage; |
492 | delete mDateFrame ; | 493 | delete mDateFrame ; |
493 | delete beamDialog; | 494 | delete beamDialog; |
494 | //kdDebug() << "~CalendarView() done" << endl; | 495 | //kdDebug() << "~CalendarView() done" << endl; |
495 | } | 496 | } |
496 | 497 | ||
497 | void CalendarView::showDay( QDate d ) | 498 | void CalendarView::showDay( QDate d ) |
498 | { | 499 | { |
499 | dateNavigator()->selectDate( d ); | 500 | dateNavigator()->selectDate( d ); |
500 | mViewManager->showWeekView(); | 501 | mViewManager->showWeekView(); |
501 | dateNavigator()->selectDate( d ); | 502 | dateNavigator()->selectDate( d ); |
502 | } | 503 | } |
503 | void CalendarView::timerAlarm() | 504 | void CalendarView::timerAlarm() |
504 | { | 505 | { |
505 | //qDebug("CalendarView::timerAlarm() "); | 506 | //qDebug("CalendarView::timerAlarm() "); |
506 | computeAlarm(mAlarmNotification ); | 507 | computeAlarm(mAlarmNotification ); |
507 | } | 508 | } |
508 | 509 | ||
509 | void CalendarView::suspendAlarm() | 510 | void CalendarView::suspendAlarm() |
510 | { | 511 | { |
511 | //qDebug(" CalendarView::suspendAlarm() "); | 512 | //qDebug(" CalendarView::suspendAlarm() "); |
512 | computeAlarm(mSuspendAlarmNotification ); | 513 | computeAlarm(mSuspendAlarmNotification ); |
513 | 514 | ||
514 | } | 515 | } |
515 | 516 | ||
516 | void CalendarView::startAlarm( QString mess , QString filename) | 517 | void CalendarView::startAlarm( QString mess , QString filename) |
517 | { | 518 | { |
518 | mAlarmDialog->eventNotification( mess, KOPrefs::instance()->mAlarmPlayBeeps, filename, true,KOPrefs::instance()->mAlarmBeepInterval ,KOPrefs::instance()->mAlarmSuspendCount ); | 519 | mAlarmDialog->eventNotification( mess, KOPrefs::instance()->mAlarmPlayBeeps, filename, true,KOPrefs::instance()->mAlarmBeepInterval ,KOPrefs::instance()->mAlarmSuspendCount ); |
519 | QTimer::singleShot( 3000, this, SLOT( checkNextTimerAlarm() ) ); | 520 | QTimer::singleShot( 3000, this, SLOT( checkNextTimerAlarm() ) ); |
520 | 521 | ||
521 | } | 522 | } |
522 | 523 | ||
523 | void CalendarView::checkNextTimerAlarm() | 524 | void CalendarView::checkNextTimerAlarm() |
524 | { | 525 | { |
525 | mCalendar->checkAlarmForIncidence( 0, true ); | 526 | mCalendar->checkAlarmForIncidence( 0, true ); |
526 | } | 527 | } |
527 | 528 | ||
528 | void CalendarView::computeAlarm( QString msg ) | 529 | void CalendarView::computeAlarm( QString msg ) |
529 | { | 530 | { |
530 | 531 | ||
531 | QString mess = msg; | 532 | QString mess = msg; |
532 | QString mAlarmMessage = mess.mid( 9 ); | 533 | QString mAlarmMessage = mess.mid( 9 ); |
533 | QString filename = MainWindow::resourcePath(); | 534 | QString filename = MainWindow::resourcePath(); |
534 | filename += "koalarm.wav"; | 535 | filename += "koalarm.wav"; |
535 | QString tempfilename; | 536 | QString tempfilename; |
536 | if ( mess.left( 13 ) == "suspend_alarm") { | 537 | if ( mess.left( 13 ) == "suspend_alarm") { |
537 | bool error = false; | 538 | bool error = false; |
538 | int len = mess.mid( 13 ).find("+++"); | 539 | int len = mess.mid( 13 ).find("+++"); |
539 | if ( len < 2 ) | 540 | if ( len < 2 ) |
540 | error = true; | 541 | error = true; |
541 | else { | 542 | else { |
542 | tempfilename = mess.mid( 13, len ); | 543 | tempfilename = mess.mid( 13, len ); |
543 | if ( !QFile::exists( tempfilename ) ) | 544 | if ( !QFile::exists( tempfilename ) ) |
544 | error = true; | 545 | error = true; |
545 | } | 546 | } |
546 | if ( ! error ) { | 547 | if ( ! error ) { |
547 | filename = tempfilename; | 548 | filename = tempfilename; |
548 | } | 549 | } |
549 | mAlarmMessage = mess.mid( 13+len+3 ); | 550 | mAlarmMessage = mess.mid( 13+len+3 ); |
550 | //qDebug("suspend file %s ",tempfilename.latin1() ); | 551 | //qDebug("suspend file %s ",tempfilename.latin1() ); |
551 | startAlarm( mAlarmMessage, filename); | 552 | startAlarm( mAlarmMessage, filename); |
552 | return; | 553 | return; |
553 | } | 554 | } |
554 | if ( mess.left( 11 ) == "timer_alarm") { | 555 | if ( mess.left( 11 ) == "timer_alarm") { |
555 | //mTimerTime = 0; | 556 | //mTimerTime = 0; |
556 | startAlarm( mess.mid( 11 ), filename ); | 557 | startAlarm( mess.mid( 11 ), filename ); |
557 | return; | 558 | return; |
558 | } | 559 | } |
559 | if ( mess.left( 10 ) == "proc_alarm") { | 560 | if ( mess.left( 10 ) == "proc_alarm") { |
560 | bool error = false; | 561 | bool error = false; |
561 | int len = mess.mid( 10 ).find("+++"); | 562 | int len = mess.mid( 10 ).find("+++"); |
562 | if ( len < 2 ) | 563 | if ( len < 2 ) |
563 | error = true; | 564 | error = true; |
564 | else { | 565 | else { |
565 | tempfilename = mess.mid( 10, len ); | 566 | tempfilename = mess.mid( 10, len ); |
566 | if ( !QFile::exists( tempfilename ) ) | 567 | if ( !QFile::exists( tempfilename ) ) |
567 | error = true; | 568 | error = true; |
568 | } | 569 | } |
569 | if ( error ) { | 570 | if ( error ) { |
570 | mAlarmMessage = "Procedure Alarm\nError - File not found\n"; | 571 | mAlarmMessage = "Procedure Alarm\nError - File not found\n"; |
571 | mAlarmMessage += mess.mid( 10+len+3+9 ); | 572 | mAlarmMessage += mess.mid( 10+len+3+9 ); |
572 | } else { | 573 | } else { |
573 | //QCopEnvelope e("QPE/Application/kopi", "-writeFileSilent"); | 574 | //QCopEnvelope e("QPE/Application/kopi", "-writeFileSilent"); |
574 | //qDebug("-----system command %s ",tempfilename.latin1() ); | 575 | //qDebug("-----system command %s ",tempfilename.latin1() ); |
575 | #ifndef _WIN32_ | 576 | #ifndef _WIN32_ |
576 | if ( vfork () == 0 ) { | 577 | if ( vfork () == 0 ) { |
577 | execl ( tempfilename.latin1(), 0 ); | 578 | execl ( tempfilename.latin1(), 0 ); |
578 | return; | 579 | return; |
579 | } | 580 | } |
580 | #else | 581 | #else |
581 | QProcess* p = new QProcess(); | 582 | QProcess* p = new QProcess(); |
582 | p->addArgument( tempfilename.latin1() ); | 583 | p->addArgument( tempfilename.latin1() ); |
583 | p->start(); | 584 | p->start(); |
584 | return; | 585 | return; |
585 | #endif | 586 | #endif |
586 | 587 | ||
587 | return; | 588 | return; |
588 | } | 589 | } |
589 | 590 | ||
590 | //qDebug("+++++++system command %s ",tempfilename.latin1() ); | 591 | //qDebug("+++++++system command %s ",tempfilename.latin1() ); |
591 | } | 592 | } |
592 | if ( mess.left( 11 ) == "audio_alarm") { | 593 | if ( mess.left( 11 ) == "audio_alarm") { |
593 | bool error = false; | 594 | bool error = false; |
594 | int len = mess.mid( 11 ).find("+++"); | 595 | int len = mess.mid( 11 ).find("+++"); |
595 | if ( len < 2 ) | 596 | if ( len < 2 ) |
596 | error = true; | 597 | error = true; |
597 | else { | 598 | else { |
598 | tempfilename = mess.mid( 11, len ); | 599 | tempfilename = mess.mid( 11, len ); |
599 | if ( !QFile::exists( tempfilename ) ) | 600 | if ( !QFile::exists( tempfilename ) ) |
600 | error = true; | 601 | error = true; |
601 | } | 602 | } |
602 | if ( ! error ) { | 603 | if ( ! error ) { |
603 | filename = tempfilename; | 604 | filename = tempfilename; |
604 | } | 605 | } |
605 | mAlarmMessage = mess.mid( 11+len+3+9 ); | 606 | mAlarmMessage = mess.mid( 11+len+3+9 ); |
606 | //qDebug("audio file command %s ",tempfilename.latin1() ); | 607 | //qDebug("audio file command %s ",tempfilename.latin1() ); |
607 | } | 608 | } |
608 | if ( mess.left( 9 ) == "cal_alarm") { | 609 | if ( mess.left( 9 ) == "cal_alarm") { |
609 | mAlarmMessage = mess.mid( 9 ) ; | 610 | mAlarmMessage = mess.mid( 9 ) ; |
610 | } | 611 | } |
611 | 612 | ||
612 | startAlarm( mAlarmMessage, filename ); | 613 | startAlarm( mAlarmMessage, filename ); |
613 | 614 | ||
614 | 615 | ||
615 | } | 616 | } |
616 | 617 | ||
617 | void CalendarView::addSuspendAlarm(const QDateTime &qdt, const QString ¬i ) | 618 | void CalendarView::addSuspendAlarm(const QDateTime &qdt, const QString ¬i ) |
618 | { | 619 | { |
619 | //qDebug("+++++addSUSPENDAlarm %s %s ", qdt.toString().latin1() , noti.latin1() ); | 620 | //qDebug("+++++addSUSPENDAlarm %s %s ", qdt.toString().latin1() , noti.latin1() ); |
620 | 621 | ||
621 | mSuspendAlarmNotification = noti; | 622 | mSuspendAlarmNotification = noti; |
622 | int ms = QDateTime::currentDateTime().secsTo( qdt )*1000; | 623 | int ms = QDateTime::currentDateTime().secsTo( qdt )*1000; |
623 | //qDebug("Suspend Alarm timer started with secs: %d ", ms/1000); | 624 | //qDebug("Suspend Alarm timer started with secs: %d ", ms/1000); |
624 | mSuspendTimer->start( ms , true ); | 625 | mSuspendTimer->start( ms , true ); |
625 | 626 | ||
626 | } | 627 | } |
627 | 628 | ||
628 | void CalendarView::addAlarm(const QDateTime &qdt, const QString ¬i ) | 629 | void CalendarView::addAlarm(const QDateTime &qdt, const QString ¬i ) |
629 | { | 630 | { |
630 | //qDebug("+++++addAlarm %s %s ", qdt.toString().latin1() , noti.latin1() ); | 631 | //qDebug("+++++addAlarm %s %s ", qdt.toString().latin1() , noti.latin1() ); |
631 | if ( ! KOPrefs::instance()->mUseInternalAlarmNotification ) { | 632 | if ( ! KOPrefs::instance()->mUseInternalAlarmNotification ) { |
632 | #ifndef DESKTOP_VERSION | 633 | #ifndef DESKTOP_VERSION |
633 | AlarmServer::addAlarm ( qdt,"koalarm", noti.latin1() ); | 634 | AlarmServer::addAlarm ( qdt,"koalarm", noti.latin1() ); |
634 | #endif | 635 | #endif |
635 | return; | 636 | return; |
636 | } | 637 | } |
637 | int maxSec; | 638 | int maxSec; |
638 | //maxSec = 5; //testing only | 639 | //maxSec = 5; //testing only |
639 | maxSec = 86400+3600; // one day+1hour | 640 | maxSec = 86400+3600; // one day+1hour |
640 | mAlarmNotification = noti; | 641 | mAlarmNotification = noti; |
641 | int sec = QDateTime::currentDateTime().secsTo( qdt ); | 642 | int sec = QDateTime::currentDateTime().secsTo( qdt ); |
642 | if ( sec > maxSec ) { | 643 | if ( sec > maxSec ) { |
643 | mRecheckAlarmTimer->start( maxSec * 1000 ); | 644 | mRecheckAlarmTimer->start( maxSec * 1000 ); |
644 | // qDebug("recheck Alarm timer started with secs: %d next alarm in sec:%d", maxSec,sec ); | 645 | // qDebug("recheck Alarm timer started with secs: %d next alarm in sec:%d", maxSec,sec ); |
645 | return; | 646 | return; |
646 | } else { | 647 | } else { |
647 | mRecheckAlarmTimer->stop(); | 648 | mRecheckAlarmTimer->stop(); |
648 | } | 649 | } |
649 | //qDebug("Alarm timer started with secs: %d ", sec); | 650 | //qDebug("Alarm timer started with secs: %d ", sec); |
650 | mAlarmTimer->start( sec *1000 , true ); | 651 | mAlarmTimer->start( sec *1000 , true ); |
651 | 652 | ||
652 | } | 653 | } |
653 | // called by mRecheckAlarmTimer to get next alarm | 654 | // called by mRecheckAlarmTimer to get next alarm |
654 | // we need this, because a QTimer has only a max range of 25 days | 655 | // we need this, because a QTimer has only a max range of 25 days |
655 | void CalendarView::recheckTimerAlarm() | 656 | void CalendarView::recheckTimerAlarm() |
656 | { | 657 | { |
657 | mAlarmTimer->stop(); | 658 | mAlarmTimer->stop(); |
658 | mRecheckAlarmTimer->stop(); | 659 | mRecheckAlarmTimer->stop(); |
659 | mCalendar->checkAlarmForIncidence( 0, true ); | 660 | mCalendar->checkAlarmForIncidence( 0, true ); |
660 | } | 661 | } |
661 | void CalendarView::removeAlarm(const QDateTime &qdt, const QString ¬i ) | 662 | void CalendarView::removeAlarm(const QDateTime &qdt, const QString ¬i ) |
662 | { | 663 | { |
663 | //qDebug("-----removeAlarm %s %s ", qdt.toString().latin1() , noti.latin1() ); | 664 | //qDebug("-----removeAlarm %s %s ", qdt.toString().latin1() , noti.latin1() ); |
664 | if ( ! KOPrefs::instance()->mUseInternalAlarmNotification ) { | 665 | if ( ! KOPrefs::instance()->mUseInternalAlarmNotification ) { |
665 | #ifndef DESKTOP_VERSION | 666 | #ifndef DESKTOP_VERSION |
666 | AlarmServer::deleteAlarm (qdt ,"koalarm" ,noti.latin1() ); | 667 | AlarmServer::deleteAlarm (qdt ,"koalarm" ,noti.latin1() ); |
667 | #endif | 668 | #endif |
668 | return; | 669 | return; |
669 | } | 670 | } |
670 | mAlarmTimer->stop(); | 671 | mAlarmTimer->stop(); |
671 | } | 672 | } |
672 | void CalendarView::selectWeekNum ( int num ) | 673 | void CalendarView::selectWeekNum ( int num ) |
673 | { | 674 | { |
674 | dateNavigator()->selectWeek( num ); | 675 | dateNavigator()->selectWeek( num ); |
675 | mViewManager->showWeekView(); | 676 | mViewManager->showWeekView(); |
676 | } | 677 | } |
677 | KOViewManager *CalendarView::viewManager() | 678 | KOViewManager *CalendarView::viewManager() |
678 | { | 679 | { |
679 | return mViewManager; | 680 | return mViewManager; |
680 | } | 681 | } |
681 | 682 | ||
682 | KODialogManager *CalendarView::dialogManager() | 683 | KODialogManager *CalendarView::dialogManager() |
683 | { | 684 | { |
684 | return mDialogManager; | 685 | return mDialogManager; |
685 | } | 686 | } |
686 | 687 | ||
687 | QDate CalendarView::startDate() | 688 | QDate CalendarView::startDate() |
688 | { | 689 | { |
689 | DateList dates = mNavigator->selectedDates(); | 690 | DateList dates = mNavigator->selectedDates(); |
690 | 691 | ||
691 | return dates.first(); | 692 | return dates.first(); |
692 | } | 693 | } |
693 | 694 | ||
694 | QDate CalendarView::endDate() | 695 | QDate CalendarView::endDate() |
695 | { | 696 | { |
696 | DateList dates = mNavigator->selectedDates(); | 697 | DateList dates = mNavigator->selectedDates(); |
697 | 698 | ||
698 | return dates.last(); | 699 | return dates.last(); |
699 | } | 700 | } |
700 | 701 | ||
701 | 702 | ||
702 | void CalendarView::createPrinter() | 703 | void CalendarView::createPrinter() |
703 | { | 704 | { |
704 | #ifndef KORG_NOPRINTER | 705 | #ifndef KORG_NOPRINTER |
705 | if (!mCalPrinter) { | 706 | if (!mCalPrinter) { |
706 | mCalPrinter = new CalPrinter(this, mCalendar); | 707 | mCalPrinter = new CalPrinter(this, mCalendar); |
707 | connect(this, SIGNAL(configChanged()), mCalPrinter, SLOT(updateConfig())); | 708 | connect(this, SIGNAL(configChanged()), mCalPrinter, SLOT(updateConfig())); |
708 | } | 709 | } |
709 | #endif | 710 | #endif |
710 | } | 711 | } |
711 | 712 | ||
712 | 713 | ||
713 | //KOPrefs::instance()->mWriteBackFile | 714 | //KOPrefs::instance()->mWriteBackFile |
714 | //KOPrefs::instance()->mWriteBackExistingOnly | 715 | //KOPrefs::instance()->mWriteBackExistingOnly |
715 | 716 | ||
716 | // 0 syncPrefsGroup->addRadio(i18n("Take local entry on conflict")); | 717 | // 0 syncPrefsGroup->addRadio(i18n("Take local entry on conflict")); |
717 | // 1 syncPrefsGroup->addRadio(i18n("Take remote entry on conflict")); | 718 | // 1 syncPrefsGroup->addRadio(i18n("Take remote entry on conflict")); |
718 | // 2 syncPrefsGroup->addRadio(i18n("Take newest entry on conflict")); | 719 | // 2 syncPrefsGroup->addRadio(i18n("Take newest entry on conflict")); |
719 | // 3 syncPrefsGroup->addRadio(i18n("Ask for every entry on conflict")); | 720 | // 3 syncPrefsGroup->addRadio(i18n("Ask for every entry on conflict")); |
720 | // 4 syncPrefsGroup->addRadio(i18n("Force take local entry always")); | 721 | // 4 syncPrefsGroup->addRadio(i18n("Force take local entry always")); |
721 | // 5 syncPrefsGroup->addRadio(i18n("Force take remote entry always")); | 722 | // 5 syncPrefsGroup->addRadio(i18n("Force take remote entry always")); |
722 | 723 | ||
723 | int CalendarView::takeEvent( Incidence* local, Incidence* remote, int mode , bool full ) | 724 | int CalendarView::takeEvent( Incidence* local, Incidence* remote, int mode , bool full ) |
724 | { | 725 | { |
725 | 726 | ||
726 | // 0 equal | 727 | // 0 equal |
727 | // 1 take local | 728 | // 1 take local |
728 | // 2 take remote | 729 | // 2 take remote |
729 | // 3 cancel | 730 | // 3 cancel |
730 | QDateTime lastSync = mLastCalendarSync; | 731 | QDateTime lastSync = mLastCalendarSync; |
731 | QDateTime localMod = local->lastModified(); | 732 | QDateTime localMod = local->lastModified(); |
732 | QDateTime remoteMod = remote->lastModified(); | 733 | QDateTime remoteMod = remote->lastModified(); |
733 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 734 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
734 | bool remCh, locCh; | 735 | bool remCh, locCh; |
735 | remCh = ( remote->getCsum(mCurrentSyncDevice) != local->getCsum(mCurrentSyncDevice) ); | 736 | remCh = ( remote->getCsum(mCurrentSyncDevice) != local->getCsum(mCurrentSyncDevice) ); |
736 | //if ( remCh ) | 737 | //if ( remCh ) |
737 | //qDebug("loc %s rem %s", local->getCsum(mCurrentSyncDevice).latin1(), remote->getCsum(mCurrentSyncDevice).latin1() ); | 738 | //qDebug("loc %s rem %s", local->getCsum(mCurrentSyncDevice).latin1(), remote->getCsum(mCurrentSyncDevice).latin1() ); |
738 | locCh = ( localMod > mLastCalendarSync ); | 739 | locCh = ( localMod > mLastCalendarSync ); |
739 | if ( !remCh && ! locCh ) { | 740 | if ( !remCh && ! locCh ) { |
740 | //qDebug("both not changed "); | 741 | //qDebug("both not changed "); |
741 | lastSync = localMod.addDays(1); | 742 | lastSync = localMod.addDays(1); |
742 | if ( mode <= SYNC_PREF_ASK ) | 743 | if ( mode <= SYNC_PREF_ASK ) |
743 | return 0; | 744 | return 0; |
744 | } else { | 745 | } else { |
745 | if ( locCh ) { | 746 | if ( locCh ) { |
746 | //qDebug("loc changed %d %s %s", local->revision() , localMod.toString().latin1(), mLastCalendarSync.toString().latin1()); | 747 | //qDebug("loc changed %d %s %s", local->revision() , localMod.toString().latin1(), mLastCalendarSync.toString().latin1()); |
747 | lastSync = localMod.addDays( -1 ); | 748 | lastSync = localMod.addDays( -1 ); |
748 | if ( !remCh ) | 749 | if ( !remCh ) |
749 | remoteMod = ( lastSync.addDays( -1 ) ); | 750 | remoteMod = ( lastSync.addDays( -1 ) ); |
750 | } else { | 751 | } else { |
751 | //qDebug(" not loc changed "); | 752 | //qDebug(" not loc changed "); |
752 | lastSync = localMod.addDays( 1 ); | 753 | lastSync = localMod.addDays( 1 ); |
753 | if ( remCh ) | 754 | if ( remCh ) |
754 | remoteMod =( lastSync.addDays( 1 ) ); | 755 | remoteMod =( lastSync.addDays( 1 ) ); |
755 | 756 | ||
756 | } | 757 | } |
757 | } | 758 | } |
758 | full = true; | 759 | full = true; |
759 | if ( mode < SYNC_PREF_ASK ) | 760 | if ( mode < SYNC_PREF_ASK ) |
760 | mode = SYNC_PREF_ASK; | 761 | mode = SYNC_PREF_ASK; |
761 | } else { | 762 | } else { |
762 | if ( localMod == remoteMod ) | 763 | if ( localMod == remoteMod ) |
763 | // if ( local->revision() == remote->revision() ) | 764 | // if ( local->revision() == remote->revision() ) |
764 | return 0; | 765 | return 0; |
765 | 766 | ||
766 | } | 767 | } |
767 | // qDebug(" %d %d conflict on %s %s ", mode, full, local->summary().latin1(), remote->summary().latin1() ); | 768 | // qDebug(" %d %d conflict on %s %s ", mode, full, local->summary().latin1(), remote->summary().latin1() ); |
768 | 769 | ||
769 | //qDebug("%s %d %s %d", localMod.toString().latin1() , local->revision(), remoteMod.toString().latin1(), remote->revision()); | 770 | //qDebug("%s %d %s %d", localMod.toString().latin1() , local->revision(), remoteMod.toString().latin1(), remote->revision()); |
770 | //qDebug("%d %d %d %d ", localMod.time().second(), localMod.time().msec(), remoteMod.time().second(), remoteMod.time().msec() ); | 771 | //qDebug("%d %d %d %d ", localMod.time().second(), localMod.time().msec(), remoteMod.time().second(), remoteMod.time().msec() ); |
771 | //full = true; //debug only | 772 | //full = true; //debug only |
772 | if ( full ) { | 773 | if ( full ) { |
773 | bool equ = false; | 774 | bool equ = false; |
774 | if ( local->type() == "Event" ) { | 775 | if ( local->type() == "Event" ) { |
775 | equ = (*((Event*) local) == *((Event*) remote)); | 776 | equ = (*((Event*) local) == *((Event*) remote)); |
776 | } | 777 | } |
777 | else if ( local->type() =="Todo" ) | 778 | else if ( local->type() =="Todo" ) |
778 | equ = (*((Todo*) local) == (*(Todo*) remote)); | 779 | equ = (*((Todo*) local) == (*(Todo*) remote)); |
779 | else if ( local->type() =="Journal" ) | 780 | else if ( local->type() =="Journal" ) |
780 | equ = (*((Journal*) local) == *((Journal*) remote)); | 781 | equ = (*((Journal*) local) == *((Journal*) remote)); |
781 | if ( equ ) { | 782 | if ( equ ) { |
782 | //qDebug("equal "); | 783 | //qDebug("equal "); |
783 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 784 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
784 | local->setCsum( mCurrentSyncDevice, remote->getCsum(mCurrentSyncDevice) ); | 785 | local->setCsum( mCurrentSyncDevice, remote->getCsum(mCurrentSyncDevice) ); |
785 | } | 786 | } |
786 | if ( mode < SYNC_PREF_FORCE_LOCAL ) | 787 | if ( mode < SYNC_PREF_FORCE_LOCAL ) |
787 | return 0; | 788 | return 0; |
788 | 789 | ||
789 | }//else //debug only | 790 | }//else //debug only |
790 | //qDebug("not equal %s %s ", local->summary().latin1(), remote->summary().latin1()); | 791 | //qDebug("not equal %s %s ", local->summary().latin1(), remote->summary().latin1()); |
791 | } | 792 | } |
792 | int result; | 793 | int result; |
793 | bool localIsNew; | 794 | bool localIsNew; |
794 | //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() ); | 795 | //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() ); |
795 | 796 | ||
796 | if ( full && mode < SYNC_PREF_NEWEST ) | 797 | if ( full && mode < SYNC_PREF_NEWEST ) |
797 | mode = SYNC_PREF_ASK; | 798 | mode = SYNC_PREF_ASK; |
798 | 799 | ||
799 | switch( mode ) { | 800 | switch( mode ) { |
800 | case SYNC_PREF_LOCAL: | 801 | case SYNC_PREF_LOCAL: |
801 | if ( lastSync > remoteMod ) | 802 | if ( lastSync > remoteMod ) |
802 | return 1; | 803 | return 1; |
803 | if ( lastSync > localMod ) | 804 | if ( lastSync > localMod ) |
804 | return 2; | 805 | return 2; |
805 | return 1; | 806 | return 1; |
806 | break; | 807 | break; |
807 | case SYNC_PREF_REMOTE: | 808 | case SYNC_PREF_REMOTE: |
808 | if ( lastSync > remoteMod ) | 809 | if ( lastSync > remoteMod ) |
809 | return 1; | 810 | return 1; |
810 | if ( lastSync > localMod ) | 811 | if ( lastSync > localMod ) |
811 | return 2; | 812 | return 2; |
812 | return 2; | 813 | return 2; |
813 | break; | 814 | break; |
814 | case SYNC_PREF_NEWEST: | 815 | case SYNC_PREF_NEWEST: |
815 | if ( localMod > remoteMod ) | 816 | if ( localMod > remoteMod ) |
816 | return 1; | 817 | return 1; |
817 | else | 818 | else |
818 | return 2; | 819 | return 2; |
819 | break; | 820 | break; |
820 | case SYNC_PREF_ASK: | 821 | case SYNC_PREF_ASK: |
821 | //qDebug("lsy %s --- lo %s --- re %s ", lastSync.toString().latin1(), localMod.toString().latin1(), remoteMod.toString().latin1() ); | 822 | //qDebug("lsy %s --- lo %s --- re %s ", lastSync.toString().latin1(), localMod.toString().latin1(), remoteMod.toString().latin1() ); |
822 | if ( lastSync > remoteMod ) | 823 | if ( lastSync > remoteMod ) |
823 | return 1; | 824 | return 1; |
824 | if ( lastSync > localMod ) | 825 | if ( lastSync > localMod ) |
825 | return 2; | 826 | return 2; |
826 | //qDebug("lsy %s --- lo %s --- re %s ", lastSync.toString().latin1(), localMod.toString().latin1(), remoteMod.toString().latin1() ); | 827 | //qDebug("lsy %s --- lo %s --- re %s ", lastSync.toString().latin1(), localMod.toString().latin1(), remoteMod.toString().latin1() ); |
827 | localIsNew = localMod >= remoteMod; | 828 | localIsNew = localMod >= remoteMod; |
828 | if ( localIsNew ) | 829 | if ( localIsNew ) |
829 | getEventViewerDialog()->setColorMode( 1 ); | 830 | getEventViewerDialog()->setColorMode( 1 ); |
830 | else | 831 | else |
831 | getEventViewerDialog()->setColorMode( 2 ); | 832 | getEventViewerDialog()->setColorMode( 2 ); |
832 | getEventViewerDialog()->setIncidence(local); | 833 | getEventViewerDialog()->setIncidence(local); |
833 | if ( localIsNew ) | 834 | if ( localIsNew ) |
834 | getEventViewerDialog()->setColorMode( 2 ); | 835 | getEventViewerDialog()->setColorMode( 2 ); |
835 | else | 836 | else |
836 | getEventViewerDialog()->setColorMode( 1 ); | 837 | getEventViewerDialog()->setColorMode( 1 ); |
837 | getEventViewerDialog()->addIncidence(remote); | 838 | getEventViewerDialog()->addIncidence(remote); |
838 | getEventViewerDialog()->setColorMode( 0 ); | 839 | getEventViewerDialog()->setColorMode( 0 ); |
839 | //qDebug("local %d remote %d ",local->relatedTo(),remote->relatedTo() ); | 840 | //qDebug("local %d remote %d ",local->relatedTo(),remote->relatedTo() ); |
840 | getEventViewerDialog()->setCaption( mCurrentSyncDevice +i18n(" : Conflict! Please choose entry!")); | 841 | getEventViewerDialog()->setCaption( mCurrentSyncDevice +i18n(" : Conflict! Please choose entry!")); |
841 | getEventViewerDialog()->showMe(); | 842 | getEventViewerDialog()->showMe(); |
842 | result = getEventViewerDialog()->executeS( localIsNew ); | 843 | result = getEventViewerDialog()->executeS( localIsNew ); |
843 | return result; | 844 | return result; |
844 | 845 | ||
845 | break; | 846 | break; |
846 | case SYNC_PREF_FORCE_LOCAL: | 847 | case SYNC_PREF_FORCE_LOCAL: |
847 | return 1; | 848 | return 1; |
848 | break; | 849 | break; |
849 | case SYNC_PREF_FORCE_REMOTE: | 850 | case SYNC_PREF_FORCE_REMOTE: |
850 | return 2; | 851 | return 2; |
851 | break; | 852 | break; |
852 | 853 | ||
853 | default: | 854 | default: |
854 | // SYNC_PREF_TAKE_BOTH not implemented | 855 | // SYNC_PREF_TAKE_BOTH not implemented |
@@ -1659,1028 +1660,1028 @@ bool CalendarView::openCalendar(QString filename, bool merge) | |||
1659 | } | 1660 | } |
1660 | 1661 | ||
1661 | //KMessageBox::error(this,i18n("Couldn't load calendar\n '%1'.").arg(filename)); | 1662 | //KMessageBox::error(this,i18n("Couldn't load calendar\n '%1'.").arg(filename)); |
1662 | 1663 | ||
1663 | QTimer::singleShot ( 1, this, SLOT ( showOpenError() ) ); | 1664 | QTimer::singleShot ( 1, this, SLOT ( showOpenError() ) ); |
1664 | globalFlagBlockAgenda = 2; | 1665 | globalFlagBlockAgenda = 2; |
1665 | mCalendar->reInitAlarmSettings(); | 1666 | mCalendar->reInitAlarmSettings(); |
1666 | setSyncEventsReadOnly(); | 1667 | setSyncEventsReadOnly(); |
1667 | updateUnmanagedViews(); | 1668 | updateUnmanagedViews(); |
1668 | updateView(); | 1669 | updateView(); |
1669 | } | 1670 | } |
1670 | return false; | 1671 | return false; |
1671 | } | 1672 | } |
1672 | void CalendarView::showOpenError() | 1673 | void CalendarView::showOpenError() |
1673 | { | 1674 | { |
1674 | KMessageBox::error(this,i18n("Couldn't load calendar\n.")); | 1675 | KMessageBox::error(this,i18n("Couldn't load calendar\n.")); |
1675 | } | 1676 | } |
1676 | void CalendarView::setLoadedFileVersion(QDateTime dt) | 1677 | void CalendarView::setLoadedFileVersion(QDateTime dt) |
1677 | { | 1678 | { |
1678 | loadedFileVersion = dt; | 1679 | loadedFileVersion = dt; |
1679 | } | 1680 | } |
1680 | bool CalendarView::checkFileChanged(QString fn) | 1681 | bool CalendarView::checkFileChanged(QString fn) |
1681 | { | 1682 | { |
1682 | QFileInfo finf ( fn ); | 1683 | QFileInfo finf ( fn ); |
1683 | if ( !finf.exists() ) | 1684 | if ( !finf.exists() ) |
1684 | return true; | 1685 | return true; |
1685 | QDateTime dt = finf.lastModified (); | 1686 | QDateTime dt = finf.lastModified (); |
1686 | if ( dt <= loadedFileVersion ) | 1687 | if ( dt <= loadedFileVersion ) |
1687 | return false; | 1688 | return false; |
1688 | return true; | 1689 | return true; |
1689 | 1690 | ||
1690 | } | 1691 | } |
1691 | void CalendarView::watchSavedFile() | 1692 | void CalendarView::watchSavedFile() |
1692 | { | 1693 | { |
1693 | QFileInfo finf ( MainWindow::defaultFileName()); | 1694 | QFileInfo finf ( MainWindow::defaultFileName()); |
1694 | if ( !finf.exists() ) | 1695 | if ( !finf.exists() ) |
1695 | return; | 1696 | return; |
1696 | QDateTime dt = finf.lastModified (); | 1697 | QDateTime dt = finf.lastModified (); |
1697 | if ( dt < loadedFileVersion ) { | 1698 | if ( dt < loadedFileVersion ) { |
1698 | //qDebug("watch %s %s ", dt.toString().latin1(), loadedFileVersion.toString().latin1()); | 1699 | //qDebug("watch %s %s ", dt.toString().latin1(), loadedFileVersion.toString().latin1()); |
1699 | QTimer::singleShot( 1000 , this, SLOT ( watchSavedFile() ) ); | 1700 | QTimer::singleShot( 1000 , this, SLOT ( watchSavedFile() ) ); |
1700 | return; | 1701 | return; |
1701 | } | 1702 | } |
1702 | loadedFileVersion = dt; | 1703 | loadedFileVersion = dt; |
1703 | } | 1704 | } |
1704 | 1705 | ||
1705 | bool CalendarView::checkFileVersion(QString fn) | 1706 | bool CalendarView::checkFileVersion(QString fn) |
1706 | { | 1707 | { |
1707 | QFileInfo finf ( fn ); | 1708 | QFileInfo finf ( fn ); |
1708 | if ( !finf.exists() ) | 1709 | if ( !finf.exists() ) |
1709 | return true; | 1710 | return true; |
1710 | QDateTime dt = finf.lastModified (); | 1711 | QDateTime dt = finf.lastModified (); |
1711 | //qDebug("loaded file version %s",loadedFileVersion.toString().latin1()); | 1712 | //qDebug("loaded file version %s",loadedFileVersion.toString().latin1()); |
1712 | //qDebug("file on disk version %s",dt.toString().latin1()); | 1713 | //qDebug("file on disk version %s",dt.toString().latin1()); |
1713 | if ( dt <= loadedFileVersion ) | 1714 | if ( dt <= loadedFileVersion ) |
1714 | return true; | 1715 | return true; |
1715 | 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)) , | 1716 | 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)) , |
1716 | i18n("KO/Pi Warning"),i18n("Overwrite"), | 1717 | i18n("KO/Pi Warning"),i18n("Overwrite"), |
1717 | i18n("Sync+save")); | 1718 | i18n("Sync+save")); |
1718 | 1719 | ||
1719 | if ( km == KMessageBox::Cancel ) | 1720 | if ( km == KMessageBox::Cancel ) |
1720 | return false; | 1721 | return false; |
1721 | if ( km == KMessageBox::Yes ) | 1722 | if ( km == KMessageBox::Yes ) |
1722 | return true; | 1723 | return true; |
1723 | 1724 | ||
1724 | setSyncDevice("deleteaftersync" ); | 1725 | setSyncDevice("deleteaftersync" ); |
1725 | mSyncManager->mAskForPreferences = true; | 1726 | mSyncManager->mAskForPreferences = true; |
1726 | mSyncManager->mSyncAlgoPrefs = 3; | 1727 | mSyncManager->mSyncAlgoPrefs = 3; |
1727 | mSyncManager->mWriteBackFile = false; | 1728 | mSyncManager->mWriteBackFile = false; |
1728 | mSyncManager->mWriteBackExistingOnly = false; | 1729 | mSyncManager->mWriteBackExistingOnly = false; |
1729 | mSyncManager->mShowSyncSummary = false; | 1730 | mSyncManager->mShowSyncSummary = false; |
1730 | syncCalendar( fn, 3 ); | 1731 | syncCalendar( fn, 3 ); |
1731 | Event * e = getLastSyncEvent(); | 1732 | Event * e = getLastSyncEvent(); |
1732 | mCalendar->deleteEvent ( e ); | 1733 | mCalendar->deleteEvent ( e ); |
1733 | updateView(); | 1734 | updateView(); |
1734 | return true; | 1735 | return true; |
1735 | } | 1736 | } |
1736 | 1737 | ||
1737 | bool CalendarView::saveCalendar( QString filename ) | 1738 | bool CalendarView::saveCalendar( QString filename ) |
1738 | { | 1739 | { |
1739 | 1740 | ||
1740 | // Store back all unsaved data into calendar object | 1741 | // Store back all unsaved data into calendar object |
1741 | // qDebug("file %s %d ", filename.latin1() , mViewManager->currentView() ); | 1742 | // qDebug("file %s %d ", filename.latin1() , mViewManager->currentView() ); |
1742 | if ( mViewManager->currentView() ) | 1743 | if ( mViewManager->currentView() ) |
1743 | mViewManager->currentView()->flushView(); | 1744 | mViewManager->currentView()->flushView(); |
1744 | 1745 | ||
1745 | 1746 | ||
1746 | QDateTime lfv = QDateTime::currentDateTime().addSecs( -2); | 1747 | QDateTime lfv = QDateTime::currentDateTime().addSecs( -2); |
1747 | mStorage->setSaveFormat( new ICalFormat() ); | 1748 | mStorage->setSaveFormat( new ICalFormat() ); |
1748 | mStorage->setFileName( filename ); | 1749 | mStorage->setFileName( filename ); |
1749 | bool success; | 1750 | bool success; |
1750 | success = mStorage->save(); | 1751 | success = mStorage->save(); |
1751 | if ( !success ) { | 1752 | if ( !success ) { |
1752 | return false; | 1753 | return false; |
1753 | } | 1754 | } |
1754 | if ( filename == MainWindow::defaultFileName() ) { | 1755 | if ( filename == MainWindow::defaultFileName() ) { |
1755 | setLoadedFileVersion( lfv ); | 1756 | setLoadedFileVersion( lfv ); |
1756 | watchSavedFile(); | 1757 | watchSavedFile(); |
1757 | } | 1758 | } |
1758 | return true; | 1759 | return true; |
1759 | } | 1760 | } |
1760 | 1761 | ||
1761 | void CalendarView::closeCalendar() | 1762 | void CalendarView::closeCalendar() |
1762 | { | 1763 | { |
1763 | 1764 | ||
1764 | // child windows no longer valid | 1765 | // child windows no longer valid |
1765 | emit closingDown(); | 1766 | emit closingDown(); |
1766 | 1767 | ||
1767 | mCalendar->close(); | 1768 | mCalendar->close(); |
1768 | setModified(false); | 1769 | setModified(false); |
1769 | updateView(); | 1770 | updateView(); |
1770 | } | 1771 | } |
1771 | 1772 | ||
1772 | void CalendarView::archiveCalendar() | 1773 | void CalendarView::archiveCalendar() |
1773 | { | 1774 | { |
1774 | mDialogManager->showArchiveDialog(); | 1775 | mDialogManager->showArchiveDialog(); |
1775 | } | 1776 | } |
1776 | 1777 | ||
1777 | 1778 | ||
1778 | void CalendarView::readSettings() | 1779 | void CalendarView::readSettings() |
1779 | { | 1780 | { |
1780 | 1781 | ||
1781 | 1782 | ||
1782 | // mViewManager->showAgendaView(); | 1783 | // mViewManager->showAgendaView(); |
1783 | QString str; | 1784 | QString str; |
1784 | //qDebug("CalendarView::readSettings() "); | 1785 | //qDebug("CalendarView::readSettings() "); |
1785 | // read settings from the KConfig, supplying reasonable | 1786 | // read settings from the KConfig, supplying reasonable |
1786 | // defaults where none are to be found | 1787 | // defaults where none are to be found |
1787 | KConfig *config = KOGlobals::config(); | 1788 | KConfig *config = KOGlobals::config(); |
1788 | #ifndef KORG_NOSPLITTER | 1789 | #ifndef KORG_NOSPLITTER |
1789 | config->setGroup("KOrganizer Geometry"); | 1790 | config->setGroup("KOrganizer Geometry"); |
1790 | 1791 | ||
1791 | QValueList<int> sizes = config->readIntListEntry("Separator1"); | 1792 | QValueList<int> sizes = config->readIntListEntry("Separator1"); |
1792 | if (sizes.count() != 2) { | 1793 | if (sizes.count() != 2) { |
1793 | sizes << mDateNavigator->minimumSizeHint().width(); | 1794 | sizes << mDateNavigator->minimumSizeHint().width(); |
1794 | sizes << 300; | 1795 | sizes << 300; |
1795 | } | 1796 | } |
1796 | mPanner->setSizes(sizes); | 1797 | mPanner->setSizes(sizes); |
1797 | 1798 | ||
1798 | sizes = config->readIntListEntry("Separator2"); | 1799 | sizes = config->readIntListEntry("Separator2"); |
1799 | if ( ( mResourceView && sizes.count() == 4 ) || | 1800 | if ( ( mResourceView && sizes.count() == 4 ) || |
1800 | ( !mResourceView && sizes.count() == 3 ) ) { | 1801 | ( !mResourceView && sizes.count() == 3 ) ) { |
1801 | mLeftSplitter->setSizes(sizes); | 1802 | mLeftSplitter->setSizes(sizes); |
1802 | } | 1803 | } |
1803 | #endif | 1804 | #endif |
1804 | globalFlagBlockAgenda = 1; | 1805 | globalFlagBlockAgenda = 1; |
1805 | mViewManager->showAgendaView(); | 1806 | mViewManager->showAgendaView(); |
1806 | //mViewManager->readSettings( config ); | 1807 | //mViewManager->readSettings( config ); |
1807 | mTodoList->restoreLayout(config,QString("Todo Layout")); | 1808 | mTodoList->restoreLayout(config,QString("Todo Layout")); |
1808 | readFilterSettings(config); | 1809 | readFilterSettings(config); |
1809 | config->setGroup( "Views" ); | 1810 | config->setGroup( "Views" ); |
1810 | int dateCount = config->readNumEntry( "ShownDatesCount", 7 ); | 1811 | int dateCount = config->readNumEntry( "ShownDatesCount", 7 ); |
1811 | if ( dateCount == 5 ) mNavigator->selectWorkWeek(); | 1812 | if ( dateCount == 5 ) mNavigator->selectWorkWeek(); |
1812 | else if ( dateCount == 7 ) mNavigator->selectWeek(); | 1813 | else if ( dateCount == 7 ) mNavigator->selectWeek(); |
1813 | else mNavigator->selectDates( dateCount ); | 1814 | else mNavigator->selectDates( dateCount ); |
1814 | // mViewManager->readSettings( config ); | 1815 | // mViewManager->readSettings( config ); |
1815 | updateConfig(); | 1816 | updateConfig(); |
1816 | globalFlagBlockAgenda = 2; | 1817 | globalFlagBlockAgenda = 2; |
1817 | mViewManager->readSettings( config ); | 1818 | mViewManager->readSettings( config ); |
1818 | #ifdef DESKTOP_VERSION | 1819 | #ifdef DESKTOP_VERSION |
1819 | config->setGroup("WidgetLayout"); | 1820 | config->setGroup("WidgetLayout"); |
1820 | QStringList list; | 1821 | QStringList list; |
1821 | list = config->readListEntry("MainLayout"); | 1822 | list = config->readListEntry("MainLayout"); |
1822 | int x,y,w,h; | 1823 | int x,y,w,h; |
1823 | if ( ! list.isEmpty() ) { | 1824 | if ( ! list.isEmpty() ) { |
1824 | x = list[0].toInt(); | 1825 | x = list[0].toInt(); |
1825 | y = list[1].toInt(); | 1826 | y = list[1].toInt(); |
1826 | w = list[2].toInt(); | 1827 | w = list[2].toInt(); |
1827 | h = list[3].toInt(); | 1828 | h = list[3].toInt(); |
1828 | topLevelWidget()->setGeometry(x,y,w,h); | 1829 | topLevelWidget()->setGeometry(x,y,w,h); |
1829 | 1830 | ||
1830 | } else { | 1831 | } else { |
1831 | topLevelWidget()->setGeometry( 40 ,40 , 640, 440); | 1832 | topLevelWidget()->setGeometry( 40 ,40 , 640, 440); |
1832 | } | 1833 | } |
1833 | list = config->readListEntry("EditEventLayout"); | 1834 | list = config->readListEntry("EditEventLayout"); |
1834 | if ( ! list.isEmpty() ) { | 1835 | if ( ! list.isEmpty() ) { |
1835 | x = list[0].toInt(); | 1836 | x = list[0].toInt(); |
1836 | y = list[1].toInt(); | 1837 | y = list[1].toInt(); |
1837 | w = list[2].toInt(); | 1838 | w = list[2].toInt(); |
1838 | h = list[3].toInt(); | 1839 | h = list[3].toInt(); |
1839 | mEventEditor->setGeometry(x,y,w,h); | 1840 | mEventEditor->setGeometry(x,y,w,h); |
1840 | 1841 | ||
1841 | } | 1842 | } |
1842 | list = config->readListEntry("EditTodoLayout"); | 1843 | list = config->readListEntry("EditTodoLayout"); |
1843 | if ( ! list.isEmpty() ) { | 1844 | if ( ! list.isEmpty() ) { |
1844 | x = list[0].toInt(); | 1845 | x = list[0].toInt(); |
1845 | y = list[1].toInt(); | 1846 | y = list[1].toInt(); |
1846 | w = list[2].toInt(); | 1847 | w = list[2].toInt(); |
1847 | h = list[3].toInt(); | 1848 | h = list[3].toInt(); |
1848 | mTodoEditor->setGeometry(x,y,w,h); | 1849 | mTodoEditor->setGeometry(x,y,w,h); |
1849 | 1850 | ||
1850 | } | 1851 | } |
1851 | list = config->readListEntry("ViewerLayout"); | 1852 | list = config->readListEntry("ViewerLayout"); |
1852 | if ( ! list.isEmpty() ) { | 1853 | if ( ! list.isEmpty() ) { |
1853 | x = list[0].toInt(); | 1854 | x = list[0].toInt(); |
1854 | y = list[1].toInt(); | 1855 | y = list[1].toInt(); |
1855 | w = list[2].toInt(); | 1856 | w = list[2].toInt(); |
1856 | h = list[3].toInt(); | 1857 | h = list[3].toInt(); |
1857 | getEventViewerDialog()->setGeometry(x,y,w,h); | 1858 | getEventViewerDialog()->setGeometry(x,y,w,h); |
1858 | } | 1859 | } |
1859 | #endif | 1860 | #endif |
1860 | 1861 | ||
1861 | } | 1862 | } |
1862 | 1863 | ||
1863 | 1864 | ||
1864 | void CalendarView::writeSettings() | 1865 | void CalendarView::writeSettings() |
1865 | { | 1866 | { |
1866 | // kdDebug() << "CalendarView::writeSettings" << endl; | 1867 | // kdDebug() << "CalendarView::writeSettings" << endl; |
1867 | 1868 | ||
1868 | KConfig *config = KOGlobals::config(); | 1869 | KConfig *config = KOGlobals::config(); |
1869 | 1870 | ||
1870 | #ifndef KORG_NOSPLITTER | 1871 | #ifndef KORG_NOSPLITTER |
1871 | config->setGroup("KOrganizer Geometry"); | 1872 | config->setGroup("KOrganizer Geometry"); |
1872 | 1873 | ||
1873 | QValueList<int> list = mPanner->sizes(); | 1874 | QValueList<int> list = mPanner->sizes(); |
1874 | config->writeEntry("Separator1",list); | 1875 | config->writeEntry("Separator1",list); |
1875 | 1876 | ||
1876 | list = mLeftSplitter->sizes(); | 1877 | list = mLeftSplitter->sizes(); |
1877 | config->writeEntry("Separator2",list); | 1878 | config->writeEntry("Separator2",list); |
1878 | #endif | 1879 | #endif |
1879 | 1880 | ||
1880 | mViewManager->writeSettings( config ); | 1881 | mViewManager->writeSettings( config ); |
1881 | mTodoList->saveLayout(config,QString("Todo Layout")); | 1882 | mTodoList->saveLayout(config,QString("Todo Layout")); |
1882 | mDialogManager->writeSettings( config ); | 1883 | mDialogManager->writeSettings( config ); |
1883 | //KOPrefs::instance()->usrWriteConfig(); | 1884 | //KOPrefs::instance()->usrWriteConfig(); |
1884 | KOPrefs::instance()->writeConfig(); | 1885 | KOPrefs::instance()->writeConfig(); |
1885 | 1886 | ||
1886 | writeFilterSettings(config); | 1887 | writeFilterSettings(config); |
1887 | 1888 | ||
1888 | config->setGroup( "Views" ); | 1889 | config->setGroup( "Views" ); |
1889 | config->writeEntry( "ShownDatesCount", mNavigator->selectedDates().count() ); | 1890 | config->writeEntry( "ShownDatesCount", mNavigator->selectedDates().count() ); |
1890 | 1891 | ||
1891 | #ifdef DESKTOP_VERSION | 1892 | #ifdef DESKTOP_VERSION |
1892 | config->setGroup("WidgetLayout"); | 1893 | config->setGroup("WidgetLayout"); |
1893 | QStringList list ;//= config->readListEntry("MainLayout"); | 1894 | QStringList list ;//= config->readListEntry("MainLayout"); |
1894 | int x,y,w,h; | 1895 | int x,y,w,h; |
1895 | QWidget* wid; | 1896 | QWidget* wid; |
1896 | wid = topLevelWidget(); | 1897 | wid = topLevelWidget(); |
1897 | x = wid->geometry().x(); | 1898 | x = wid->geometry().x(); |
1898 | y = wid->geometry().y(); | 1899 | y = wid->geometry().y(); |
1899 | w = wid->width(); | 1900 | w = wid->width(); |
1900 | h = wid->height(); | 1901 | h = wid->height(); |
1901 | list.clear(); | 1902 | list.clear(); |
1902 | list << QString::number( x ); | 1903 | list << QString::number( x ); |
1903 | list << QString::number( y ); | 1904 | list << QString::number( y ); |
1904 | list << QString::number( w ); | 1905 | list << QString::number( w ); |
1905 | list << QString::number( h ); | 1906 | list << QString::number( h ); |
1906 | config->writeEntry("MainLayout",list ); | 1907 | config->writeEntry("MainLayout",list ); |
1907 | 1908 | ||
1908 | wid = mEventEditor; | 1909 | wid = mEventEditor; |
1909 | x = wid->geometry().x(); | 1910 | x = wid->geometry().x(); |
1910 | y = wid->geometry().y(); | 1911 | y = wid->geometry().y(); |
1911 | w = wid->width(); | 1912 | w = wid->width(); |
1912 | h = wid->height(); | 1913 | h = wid->height(); |
1913 | list.clear(); | 1914 | list.clear(); |
1914 | list << QString::number( x ); | 1915 | list << QString::number( x ); |
1915 | list << QString::number( y ); | 1916 | list << QString::number( y ); |
1916 | list << QString::number( w ); | 1917 | list << QString::number( w ); |
1917 | list << QString::number( h ); | 1918 | list << QString::number( h ); |
1918 | config->writeEntry("EditEventLayout",list ); | 1919 | config->writeEntry("EditEventLayout",list ); |
1919 | 1920 | ||
1920 | wid = mTodoEditor; | 1921 | wid = mTodoEditor; |
1921 | x = wid->geometry().x(); | 1922 | x = wid->geometry().x(); |
1922 | y = wid->geometry().y(); | 1923 | y = wid->geometry().y(); |
1923 | w = wid->width(); | 1924 | w = wid->width(); |
1924 | h = wid->height(); | 1925 | h = wid->height(); |
1925 | list.clear(); | 1926 | list.clear(); |
1926 | list << QString::number( x ); | 1927 | list << QString::number( x ); |
1927 | list << QString::number( y ); | 1928 | list << QString::number( y ); |
1928 | list << QString::number( w ); | 1929 | list << QString::number( w ); |
1929 | list << QString::number( h ); | 1930 | list << QString::number( h ); |
1930 | config->writeEntry("EditTodoLayout",list ); | 1931 | config->writeEntry("EditTodoLayout",list ); |
1931 | wid = getEventViewerDialog(); | 1932 | wid = getEventViewerDialog(); |
1932 | x = wid->geometry().x(); | 1933 | x = wid->geometry().x(); |
1933 | y = wid->geometry().y(); | 1934 | y = wid->geometry().y(); |
1934 | w = wid->width(); | 1935 | w = wid->width(); |
1935 | h = wid->height(); | 1936 | h = wid->height(); |
1936 | list.clear(); | 1937 | list.clear(); |
1937 | list << QString::number( x ); | 1938 | list << QString::number( x ); |
1938 | list << QString::number( y ); | 1939 | list << QString::number( y ); |
1939 | list << QString::number( w ); | 1940 | list << QString::number( w ); |
1940 | list << QString::number( h ); | 1941 | list << QString::number( h ); |
1941 | config->writeEntry("ViewerLayout",list ); | 1942 | config->writeEntry("ViewerLayout",list ); |
1942 | wid = mDialogManager->getSearchDialog(); | 1943 | wid = mDialogManager->getSearchDialog(); |
1943 | if ( wid ) { | 1944 | if ( wid ) { |
1944 | x = wid->geometry().x(); | 1945 | x = wid->geometry().x(); |
1945 | y = wid->geometry().y(); | 1946 | y = wid->geometry().y(); |
1946 | w = wid->width(); | 1947 | w = wid->width(); |
1947 | h = wid->height(); | 1948 | h = wid->height(); |
1948 | list.clear(); | 1949 | list.clear(); |
1949 | list << QString::number( x ); | 1950 | list << QString::number( x ); |
1950 | list << QString::number( y ); | 1951 | list << QString::number( y ); |
1951 | list << QString::number( w ); | 1952 | list << QString::number( w ); |
1952 | list << QString::number( h ); | 1953 | list << QString::number( h ); |
1953 | config->writeEntry("SearchLayout",list ); | 1954 | config->writeEntry("SearchLayout",list ); |
1954 | } | 1955 | } |
1955 | #endif | 1956 | #endif |
1956 | 1957 | ||
1957 | 1958 | ||
1958 | config->sync(); | 1959 | config->sync(); |
1959 | } | 1960 | } |
1960 | 1961 | ||
1961 | void CalendarView::readFilterSettings(KConfig *config) | 1962 | void CalendarView::readFilterSettings(KConfig *config) |
1962 | { | 1963 | { |
1963 | // kdDebug() << "CalendarView::readFilterSettings()" << endl; | 1964 | // kdDebug() << "CalendarView::readFilterSettings()" << endl; |
1964 | 1965 | ||
1965 | mFilters.clear(); | 1966 | mFilters.clear(); |
1966 | 1967 | ||
1967 | config->setGroup("General"); | 1968 | config->setGroup("General"); |
1968 | QStringList filterList = config->readListEntry("CalendarFilters"); | 1969 | QStringList filterList = config->readListEntry("CalendarFilters"); |
1969 | 1970 | ||
1970 | QStringList::ConstIterator it = filterList.begin(); | 1971 | QStringList::ConstIterator it = filterList.begin(); |
1971 | QStringList::ConstIterator end = filterList.end(); | 1972 | QStringList::ConstIterator end = filterList.end(); |
1972 | while(it != end) { | 1973 | while(it != end) { |
1973 | // kdDebug() << " filter: " << (*it) << endl; | 1974 | // kdDebug() << " filter: " << (*it) << endl; |
1974 | 1975 | ||
1975 | CalFilter *filter; | 1976 | CalFilter *filter; |
1976 | filter = new CalFilter(*it); | 1977 | filter = new CalFilter(*it); |
1977 | config->setGroup("Filter_" + (*it)); | 1978 | config->setGroup("Filter_" + (*it)); |
1978 | //qDebug("readFilterSettings %d ",config->readNumEntry("Criteria",0) ); | 1979 | //qDebug("readFilterSettings %d ",config->readNumEntry("Criteria",0) ); |
1979 | filter->setCriteria(config->readNumEntry("Criteria",0)); | 1980 | filter->setCriteria(config->readNumEntry("Criteria",0)); |
1980 | filter->setCategoryList(config->readListEntry("CategoryList")); | 1981 | filter->setCategoryList(config->readListEntry("CategoryList")); |
1981 | mFilters.append(filter); | 1982 | mFilters.append(filter); |
1982 | 1983 | ||
1983 | ++it; | 1984 | ++it; |
1984 | } | 1985 | } |
1985 | 1986 | ||
1986 | if (mFilters.count() == 0) { | 1987 | if (mFilters.count() == 0) { |
1987 | CalFilter *filter = new CalFilter(i18n("Default")); | 1988 | CalFilter *filter = new CalFilter(i18n("Default")); |
1988 | mFilters.append(filter); | 1989 | mFilters.append(filter); |
1989 | } | 1990 | } |
1990 | mFilterView->updateFilters(); | 1991 | mFilterView->updateFilters(); |
1991 | config->setGroup("FilterView"); | 1992 | config->setGroup("FilterView"); |
1992 | 1993 | ||
1993 | mFilterView->blockSignals(true); | 1994 | mFilterView->blockSignals(true); |
1994 | mFilterView->setFiltersEnabled(config->readBoolEntry("FilterEnabled")); | 1995 | mFilterView->setFiltersEnabled(config->readBoolEntry("FilterEnabled")); |
1995 | mFilterView->setSelectedFilter(config->readEntry("Current Filter")); | 1996 | mFilterView->setSelectedFilter(config->readEntry("Current Filter")); |
1996 | mFilterView->blockSignals(false); | 1997 | mFilterView->blockSignals(false); |
1997 | // We do it manually to avoid it being done twice by the above calls | 1998 | // We do it manually to avoid it being done twice by the above calls |
1998 | updateFilter(); | 1999 | updateFilter(); |
1999 | } | 2000 | } |
2000 | 2001 | ||
2001 | void CalendarView::writeFilterSettings(KConfig *config) | 2002 | void CalendarView::writeFilterSettings(KConfig *config) |
2002 | { | 2003 | { |
2003 | // kdDebug() << "CalendarView::writeFilterSettings()" << endl; | 2004 | // kdDebug() << "CalendarView::writeFilterSettings()" << endl; |
2004 | 2005 | ||
2005 | QStringList filterList; | 2006 | QStringList filterList; |
2006 | 2007 | ||
2007 | CalFilter *filter = mFilters.first(); | 2008 | CalFilter *filter = mFilters.first(); |
2008 | while(filter) { | 2009 | while(filter) { |
2009 | // kdDebug() << " fn: " << filter->name() << endl; | 2010 | // kdDebug() << " fn: " << filter->name() << endl; |
2010 | filterList << filter->name(); | 2011 | filterList << filter->name(); |
2011 | config->setGroup("Filter_" + filter->name()); | 2012 | config->setGroup("Filter_" + filter->name()); |
2012 | config->writeEntry("Criteria",filter->criteria()); | 2013 | config->writeEntry("Criteria",filter->criteria()); |
2013 | config->writeEntry("CategoryList",filter->categoryList()); | 2014 | config->writeEntry("CategoryList",filter->categoryList()); |
2014 | filter = mFilters.next(); | 2015 | filter = mFilters.next(); |
2015 | } | 2016 | } |
2016 | config->setGroup("General"); | 2017 | config->setGroup("General"); |
2017 | config->writeEntry("CalendarFilters",filterList); | 2018 | config->writeEntry("CalendarFilters",filterList); |
2018 | 2019 | ||
2019 | config->setGroup("FilterView"); | 2020 | config->setGroup("FilterView"); |
2020 | config->writeEntry("FilterEnabled",mFilterView->filtersEnabled()); | 2021 | config->writeEntry("FilterEnabled",mFilterView->filtersEnabled()); |
2021 | config->writeEntry("Current Filter",mFilterView->selectedFilter()->name()); | 2022 | config->writeEntry("Current Filter",mFilterView->selectedFilter()->name()); |
2022 | } | 2023 | } |
2023 | 2024 | ||
2024 | 2025 | ||
2025 | void CalendarView::goToday() | 2026 | void CalendarView::goToday() |
2026 | { | 2027 | { |
2027 | if ( mViewManager->currentView()->isMonthView() ) | 2028 | if ( mViewManager->currentView()->isMonthView() ) |
2028 | mNavigator->selectTodayMonth(); | 2029 | mNavigator->selectTodayMonth(); |
2029 | else | 2030 | else |
2030 | mNavigator->selectToday(); | 2031 | mNavigator->selectToday(); |
2031 | } | 2032 | } |
2032 | 2033 | ||
2033 | void CalendarView::goNext() | 2034 | void CalendarView::goNext() |
2034 | { | 2035 | { |
2035 | mNavigator->selectNext(); | 2036 | mNavigator->selectNext(); |
2036 | } | 2037 | } |
2037 | 2038 | ||
2038 | void CalendarView::goPrevious() | 2039 | void CalendarView::goPrevious() |
2039 | { | 2040 | { |
2040 | mNavigator->selectPrevious(); | 2041 | mNavigator->selectPrevious(); |
2041 | } | 2042 | } |
2042 | void CalendarView::goNextMonth() | 2043 | void CalendarView::goNextMonth() |
2043 | { | 2044 | { |
2044 | mNavigator->selectNextMonth(); | 2045 | mNavigator->selectNextMonth(); |
2045 | } | 2046 | } |
2046 | 2047 | ||
2047 | void CalendarView::goPreviousMonth() | 2048 | void CalendarView::goPreviousMonth() |
2048 | { | 2049 | { |
2049 | mNavigator->selectPreviousMonth(); | 2050 | mNavigator->selectPreviousMonth(); |
2050 | } | 2051 | } |
2051 | void CalendarView::writeLocale() | 2052 | void CalendarView::writeLocale() |
2052 | { | 2053 | { |
2053 | //KPimGlobalPrefs::instance()->setGlobalConfig(); | 2054 | //KPimGlobalPrefs::instance()->setGlobalConfig(); |
2054 | #if 0 | 2055 | #if 0 |
2055 | KGlobal::locale()->setHore24Format( !KOPrefs::instance()->mPreferredTime ); | 2056 | KGlobal::locale()->setHore24Format( !KOPrefs::instance()->mPreferredTime ); |
2056 | KGlobal::locale()->setWeekStartMonday( !KOPrefs::instance()->mWeekStartsOnSunday ); | 2057 | KGlobal::locale()->setWeekStartMonday( !KOPrefs::instance()->mWeekStartsOnSunday ); |
2057 | KGlobal::locale()->setIntDateFormat( (KLocale::IntDateFormat)KOPrefs::instance()->mPreferredDate ); | 2058 | KGlobal::locale()->setIntDateFormat( (KLocale::IntDateFormat)KOPrefs::instance()->mPreferredDate ); |
2058 | KGlobal::locale()->setLanguage( KOPrefs::instance()->mPreferredLanguage ); | 2059 | KGlobal::locale()->setLanguage( KOPrefs::instance()->mPreferredLanguage ); |
2059 | QString dummy = KOPrefs::instance()->mUserDateFormatLong; | 2060 | QString dummy = KOPrefs::instance()->mUserDateFormatLong; |
2060 | KGlobal::locale()->setDateFormat(dummy.replace( QRegExp("K"), QString(",") )); | 2061 | KGlobal::locale()->setDateFormat(dummy.replace( QRegExp("K"), QString(",") )); |
2061 | dummy = KOPrefs::instance()->mUserDateFormatShort; | 2062 | dummy = KOPrefs::instance()->mUserDateFormatShort; |
2062 | KGlobal::locale()->setDateFormatShort(dummy.replace( QRegExp("K"), QString(",") )); | 2063 | KGlobal::locale()->setDateFormatShort(dummy.replace( QRegExp("K"), QString(",") )); |
2063 | KGlobal::locale()->setDaylightSaving( KOPrefs::instance()->mUseDaylightsaving, | 2064 | KGlobal::locale()->setDaylightSaving( KOPrefs::instance()->mUseDaylightsaving, |
2064 | KOPrefs::instance()->mDaylightsavingStart, | 2065 | KOPrefs::instance()->mDaylightsavingStart, |
2065 | KOPrefs::instance()->mDaylightsavingEnd ); | 2066 | KOPrefs::instance()->mDaylightsavingEnd ); |
2066 | KGlobal::locale()->setTimezone( KPimGlobalPrefs::instance()->mTimeZoneId ); | 2067 | KGlobal::locale()->setTimezone( KPimGlobalPrefs::instance()->mTimeZoneId ); |
2067 | #endif | 2068 | #endif |
2068 | } | 2069 | } |
2069 | void CalendarView::updateConfig() | 2070 | void CalendarView::updateConfig() |
2070 | { | 2071 | { |
2071 | writeLocale(); | 2072 | writeLocale(); |
2072 | if ( KOPrefs::instance()->mUseAppColors ) | 2073 | if ( KOPrefs::instance()->mUseAppColors ) |
2073 | QApplication::setPalette( QPalette (KOPrefs::instance()->mAppColor1, KOPrefs::instance()->mAppColor2), true ); | 2074 | QApplication::setPalette( QPalette (KOPrefs::instance()->mAppColor1, KOPrefs::instance()->mAppColor2), true ); |
2074 | emit configChanged(); | 2075 | emit configChanged(); |
2075 | mTodoList->updateConfig(); | 2076 | mTodoList->updateConfig(); |
2076 | // mDateNavigator->setFont ( KOPrefs::instance()->mDateNavigatorFont); | 2077 | // mDateNavigator->setFont ( KOPrefs::instance()->mDateNavigatorFont); |
2077 | mCalendar->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); | 2078 | mCalendar->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); |
2078 | // To make the "fill window" configurations work | 2079 | // To make the "fill window" configurations work |
2079 | //mViewManager->raiseCurrentView(); | 2080 | //mViewManager->raiseCurrentView(); |
2080 | } | 2081 | } |
2081 | 2082 | ||
2082 | 2083 | ||
2083 | void CalendarView::eventChanged(Event *event) | 2084 | void CalendarView::eventChanged(Event *event) |
2084 | { | 2085 | { |
2085 | changeEventDisplay(event,KOGlobals::EVENTEDITED); | 2086 | changeEventDisplay(event,KOGlobals::EVENTEDITED); |
2086 | //updateUnmanagedViews(); | 2087 | //updateUnmanagedViews(); |
2087 | } | 2088 | } |
2088 | 2089 | ||
2089 | void CalendarView::eventAdded(Event *event) | 2090 | void CalendarView::eventAdded(Event *event) |
2090 | { | 2091 | { |
2091 | changeEventDisplay(event,KOGlobals::EVENTADDED); | 2092 | changeEventDisplay(event,KOGlobals::EVENTADDED); |
2092 | } | 2093 | } |
2093 | 2094 | ||
2094 | void CalendarView::eventToBeDeleted(Event *) | 2095 | void CalendarView::eventToBeDeleted(Event *) |
2095 | { | 2096 | { |
2096 | kdDebug() << "CalendarView::eventToBeDeleted(): to be implemented" << endl; | 2097 | kdDebug() << "CalendarView::eventToBeDeleted(): to be implemented" << endl; |
2097 | } | 2098 | } |
2098 | 2099 | ||
2099 | void CalendarView::eventDeleted() | 2100 | void CalendarView::eventDeleted() |
2100 | { | 2101 | { |
2101 | changeEventDisplay(0,KOGlobals::EVENTDELETED); | 2102 | changeEventDisplay(0,KOGlobals::EVENTDELETED); |
2102 | } | 2103 | } |
2103 | void CalendarView::changeTodoDisplay(Todo *which, int action) | 2104 | void CalendarView::changeTodoDisplay(Todo *which, int action) |
2104 | { | 2105 | { |
2105 | changeIncidenceDisplay((Incidence *)which, action); | 2106 | changeIncidenceDisplay((Incidence *)which, action); |
2106 | mDateNavigator->updateView(); //LR | 2107 | mDateNavigator->updateView(); //LR |
2107 | //mDialogManager->updateSearchDialog(); | 2108 | //mDialogManager->updateSearchDialog(); |
2108 | 2109 | ||
2109 | if (which) { | 2110 | if (which) { |
2110 | mViewManager->updateWNview(); | 2111 | mViewManager->updateWNview(); |
2111 | //mTodoList->updateView(); | 2112 | //mTodoList->updateView(); |
2112 | } | 2113 | } |
2113 | 2114 | ||
2114 | } | 2115 | } |
2115 | 2116 | ||
2116 | void CalendarView::changeIncidenceDisplay(Incidence *which, int action) | 2117 | void CalendarView::changeIncidenceDisplay(Incidence *which, int action) |
2117 | { | 2118 | { |
2118 | updateUnmanagedViews(); | 2119 | updateUnmanagedViews(); |
2119 | //qDebug(" CalendarView::changeIncidenceDisplay++++++++++++++++++++++++++ %d %d ",which, action ); | 2120 | //qDebug(" CalendarView::changeIncidenceDisplay++++++++++++++++++++++++++ %d %d ",which, action ); |
2120 | if ( action == KOGlobals::EVENTDELETED ) { //delete | 2121 | if ( action == KOGlobals::EVENTDELETED ) { //delete |
2121 | mCalendar->checkAlarmForIncidence( 0, true ); | 2122 | mCalendar->checkAlarmForIncidence( 0, true ); |
2122 | if ( mEventViewerDialog ) | 2123 | if ( mEventViewerDialog ) |
2123 | mEventViewerDialog->hide(); | 2124 | mEventViewerDialog->hide(); |
2124 | } | 2125 | } |
2125 | else | 2126 | else |
2126 | mCalendar->checkAlarmForIncidence( which , false ); | 2127 | mCalendar->checkAlarmForIncidence( which , false ); |
2127 | } | 2128 | } |
2128 | 2129 | ||
2129 | // most of the changeEventDisplays() right now just call the view's | 2130 | // most of the changeEventDisplays() right now just call the view's |
2130 | // total update mode, but they SHOULD be recoded to be more refresh-efficient. | 2131 | // total update mode, but they SHOULD be recoded to be more refresh-efficient. |
2131 | void CalendarView::changeEventDisplay(Event *which, int action) | 2132 | void CalendarView::changeEventDisplay(Event *which, int action) |
2132 | { | 2133 | { |
2133 | // kdDebug() << "CalendarView::changeEventDisplay" << endl; | 2134 | // kdDebug() << "CalendarView::changeEventDisplay" << endl; |
2134 | changeIncidenceDisplay((Incidence *)which, action); | 2135 | changeIncidenceDisplay((Incidence *)which, action); |
2135 | mDateNavigator->updateView(); | 2136 | mDateNavigator->updateView(); |
2136 | //mDialogManager->updateSearchDialog(); | 2137 | //mDialogManager->updateSearchDialog(); |
2137 | 2138 | ||
2138 | if (which) { | 2139 | if (which) { |
2139 | // If there is an event view visible update the display | 2140 | // If there is an event view visible update the display |
2140 | mViewManager->currentView()->changeEventDisplay(which,action); | 2141 | mViewManager->currentView()->changeEventDisplay(which,action); |
2141 | // TODO: check, if update needed | 2142 | // TODO: check, if update needed |
2142 | // if (which->getTodoStatus()) { | 2143 | // if (which->getTodoStatus()) { |
2143 | mTodoList->updateView(); | 2144 | mTodoList->updateView(); |
2144 | // } | 2145 | // } |
2145 | } else { | 2146 | } else { |
2146 | mViewManager->currentView()->updateView(); | 2147 | mViewManager->currentView()->updateView(); |
2147 | } | 2148 | } |
2148 | } | 2149 | } |
2149 | 2150 | ||
2150 | 2151 | ||
2151 | void CalendarView::updateTodoViews() | 2152 | void CalendarView::updateTodoViews() |
2152 | { | 2153 | { |
2153 | 2154 | ||
2154 | mTodoList->updateView(); | 2155 | mTodoList->updateView(); |
2155 | mViewManager->currentView()->updateView(); | 2156 | mViewManager->currentView()->updateView(); |
2156 | 2157 | ||
2157 | } | 2158 | } |
2158 | 2159 | ||
2159 | 2160 | ||
2160 | void CalendarView::updateView(const QDate &start, const QDate &end) | 2161 | void CalendarView::updateView(const QDate &start, const QDate &end) |
2161 | { | 2162 | { |
2162 | mTodoList->updateView(); | 2163 | mTodoList->updateView(); |
2163 | mViewManager->updateView(start, end); | 2164 | mViewManager->updateView(start, end); |
2164 | //mDateNavigator->updateView(); | 2165 | //mDateNavigator->updateView(); |
2165 | } | 2166 | } |
2166 | 2167 | ||
2167 | void CalendarView::updateView() | 2168 | void CalendarView::updateView() |
2168 | { | 2169 | { |
2169 | DateList tmpList = mNavigator->selectedDates(); | 2170 | DateList tmpList = mNavigator->selectedDates(); |
2170 | 2171 | ||
2171 | // We assume that the navigator only selects consecutive days. | ||
2172 | updateView( tmpList.first(), tmpList.last() ); | ||
2173 | if ( KOPrefs::instance()->mHideNonStartedTodos ) | 2172 | if ( KOPrefs::instance()->mHideNonStartedTodos ) |
2174 | mTodoList->updateView(); | 2173 | mTodoList->updateView(); |
2174 | // We assume that the navigator only selects consecutive days. | ||
2175 | updateView( tmpList.first(), tmpList.last() ); | ||
2175 | } | 2176 | } |
2176 | 2177 | ||
2177 | void CalendarView::updateUnmanagedViews() | 2178 | void CalendarView::updateUnmanagedViews() |
2178 | { | 2179 | { |
2179 | mDateNavigator->updateDayMatrix(); | 2180 | mDateNavigator->updateDayMatrix(); |
2180 | } | 2181 | } |
2181 | 2182 | ||
2182 | int CalendarView::msgItemDelete() | 2183 | int CalendarView::msgItemDelete() |
2183 | { | 2184 | { |
2184 | return KMessageBox::warningContinueCancel(this, | 2185 | return KMessageBox::warningContinueCancel(this, |
2185 | i18n("This item will be\npermanently deleted."), | 2186 | i18n("This item will be\npermanently deleted."), |
2186 | i18n("KO/Pi Confirmation"),i18n("Delete")); | 2187 | i18n("KO/Pi Confirmation"),i18n("Delete")); |
2187 | } | 2188 | } |
2188 | 2189 | ||
2189 | 2190 | ||
2190 | void CalendarView::edit_cut() | 2191 | void CalendarView::edit_cut() |
2191 | { | 2192 | { |
2192 | Event *anEvent=0; | 2193 | Event *anEvent=0; |
2193 | 2194 | ||
2194 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); | 2195 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); |
2195 | 2196 | ||
2196 | if (mViewManager->currentView()->isEventView()) { | 2197 | if (mViewManager->currentView()->isEventView()) { |
2197 | if ( incidence && incidence->type() == "Event" ) { | 2198 | if ( incidence && incidence->type() == "Event" ) { |
2198 | anEvent = static_cast<Event *>(incidence); | 2199 | anEvent = static_cast<Event *>(incidence); |
2199 | } | 2200 | } |
2200 | } | 2201 | } |
2201 | 2202 | ||
2202 | if (!anEvent) { | 2203 | if (!anEvent) { |
2203 | KNotifyClient::beep(); | 2204 | KNotifyClient::beep(); |
2204 | return; | 2205 | return; |
2205 | } | 2206 | } |
2206 | DndFactory factory( mCalendar ); | 2207 | DndFactory factory( mCalendar ); |
2207 | factory.cutEvent(anEvent); | 2208 | factory.cutEvent(anEvent); |
2208 | changeEventDisplay(anEvent, KOGlobals::EVENTDELETED); | 2209 | changeEventDisplay(anEvent, KOGlobals::EVENTDELETED); |
2209 | } | 2210 | } |
2210 | 2211 | ||
2211 | void CalendarView::edit_copy() | 2212 | void CalendarView::edit_copy() |
2212 | { | 2213 | { |
2213 | Event *anEvent=0; | 2214 | Event *anEvent=0; |
2214 | 2215 | ||
2215 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); | 2216 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); |
2216 | 2217 | ||
2217 | if (mViewManager->currentView()->isEventView()) { | 2218 | if (mViewManager->currentView()->isEventView()) { |
2218 | if ( incidence && incidence->type() == "Event" ) { | 2219 | if ( incidence && incidence->type() == "Event" ) { |
2219 | anEvent = static_cast<Event *>(incidence); | 2220 | anEvent = static_cast<Event *>(incidence); |
2220 | } | 2221 | } |
2221 | } | 2222 | } |
2222 | 2223 | ||
2223 | if (!anEvent) { | 2224 | if (!anEvent) { |
2224 | KNotifyClient::beep(); | 2225 | KNotifyClient::beep(); |
2225 | return; | 2226 | return; |
2226 | } | 2227 | } |
2227 | DndFactory factory( mCalendar ); | 2228 | DndFactory factory( mCalendar ); |
2228 | factory.copyEvent(anEvent); | 2229 | factory.copyEvent(anEvent); |
2229 | } | 2230 | } |
2230 | 2231 | ||
2231 | void CalendarView::edit_paste() | 2232 | void CalendarView::edit_paste() |
2232 | { | 2233 | { |
2233 | QDate date = mNavigator->selectedDates().first(); | 2234 | QDate date = mNavigator->selectedDates().first(); |
2234 | 2235 | ||
2235 | DndFactory factory( mCalendar ); | 2236 | DndFactory factory( mCalendar ); |
2236 | Event *pastedEvent = factory.pasteEvent( date ); | 2237 | Event *pastedEvent = factory.pasteEvent( date ); |
2237 | 2238 | ||
2238 | changeEventDisplay( pastedEvent, KOGlobals::EVENTADDED ); | 2239 | changeEventDisplay( pastedEvent, KOGlobals::EVENTADDED ); |
2239 | } | 2240 | } |
2240 | 2241 | ||
2241 | void CalendarView::edit_options() | 2242 | void CalendarView::edit_options() |
2242 | { | 2243 | { |
2243 | mDialogManager->showOptionsDialog(); | 2244 | mDialogManager->showOptionsDialog(); |
2244 | //writeSettings(); | 2245 | //writeSettings(); |
2245 | } | 2246 | } |
2246 | 2247 | ||
2247 | 2248 | ||
2248 | void CalendarView::slotSelectPickerDate( QDate d) | 2249 | void CalendarView::slotSelectPickerDate( QDate d) |
2249 | { | 2250 | { |
2250 | mDateFrame->hide(); | 2251 | mDateFrame->hide(); |
2251 | if ( mDatePickerMode == 1 ) { | 2252 | if ( mDatePickerMode == 1 ) { |
2252 | mNavigator->slotDaySelect( d ); | 2253 | mNavigator->slotDaySelect( d ); |
2253 | } else if ( mDatePickerMode == 2 ) { | 2254 | } else if ( mDatePickerMode == 2 ) { |
2254 | if ( mMoveIncidence->type() == "Todo" ) { | 2255 | if ( mMoveIncidence->type() == "Todo" ) { |
2255 | Todo * to = (Todo *) mMoveIncidence; | 2256 | Todo * to = (Todo *) mMoveIncidence; |
2256 | QTime tim; | 2257 | QTime tim; |
2257 | if ( to->hasDueDate() ) | 2258 | if ( to->hasDueDate() ) |
2258 | tim = to->dtDue().time(); | 2259 | tim = to->dtDue().time(); |
2259 | else { | 2260 | else { |
2260 | tim = QTime ( 0,0,0 ); | 2261 | tim = QTime ( 0,0,0 ); |
2261 | to->setFloats( true ); | 2262 | to->setFloats( true ); |
2262 | to->setHasDueDate( true ); | 2263 | to->setHasDueDate( true ); |
2263 | } | 2264 | } |
2264 | QDateTime dt ( d,tim ); | 2265 | QDateTime dt ( d,tim ); |
2265 | to->setDtDue( dt ); | 2266 | to->setDtDue( dt ); |
2266 | todoChanged( to ); | 2267 | todoChanged( to ); |
2267 | } else { | 2268 | } else { |
2268 | if ( mMoveIncidence->doesRecur() ) { | 2269 | if ( mMoveIncidence->doesRecur() ) { |
2269 | #if 0 | 2270 | #if 0 |
2270 | // PENDING implement this | 2271 | // PENDING implement this |
2271 | Incidence* newInc = mMoveIncidence->recreateCloneException( mMoveIncidenceOldDate ); | 2272 | Incidence* newInc = mMoveIncidence->recreateCloneException( mMoveIncidenceOldDate ); |
2272 | mCalendar()->addIncidence( newInc ); | 2273 | mCalendar()->addIncidence( newInc ); |
2273 | if ( mMoveIncidence->type() == "Todo" ) | 2274 | if ( mMoveIncidence->type() == "Todo" ) |
2274 | emit todoMoved((Todo*)mMoveIncidence, KOGlobals::EVENTEDITED ); | 2275 | emit todoMoved((Todo*)mMoveIncidence, KOGlobals::EVENTEDITED ); |
2275 | else | 2276 | else |
2276 | emit incidenceChanged(mMoveIncidence, KOGlobals::EVENTEDITED); | 2277 | emit incidenceChanged(mMoveIncidence, KOGlobals::EVENTEDITED); |
2277 | mMoveIncidence = newInc; | 2278 | mMoveIncidence = newInc; |
2278 | 2279 | ||
2279 | #endif | 2280 | #endif |
2280 | } | 2281 | } |
2281 | QTime tim = mMoveIncidence->dtStart().time(); | 2282 | QTime tim = mMoveIncidence->dtStart().time(); |
2282 | int secs = mMoveIncidence->dtStart().secsTo( mMoveIncidence->dtEnd()); | 2283 | int secs = mMoveIncidence->dtStart().secsTo( mMoveIncidence->dtEnd()); |
2283 | QDateTime dt ( d,tim ); | 2284 | QDateTime dt ( d,tim ); |
2284 | mMoveIncidence->setDtStart( dt ); | 2285 | mMoveIncidence->setDtStart( dt ); |
2285 | ((Event*)mMoveIncidence)->setDtEnd( dt.addSecs( secs ) ); | 2286 | ((Event*)mMoveIncidence)->setDtEnd( dt.addSecs( secs ) ); |
2286 | changeEventDisplay((Event*)mMoveIncidence, KOGlobals::EVENTEDITED); | 2287 | changeEventDisplay((Event*)mMoveIncidence, KOGlobals::EVENTEDITED); |
2287 | } | 2288 | } |
2288 | 2289 | ||
2289 | mMoveIncidence->setRevision( mMoveIncidence->revision()+1 ); | 2290 | mMoveIncidence->setRevision( mMoveIncidence->revision()+1 ); |
2290 | } | 2291 | } |
2291 | } | 2292 | } |
2292 | 2293 | ||
2293 | void CalendarView::removeCategories() | 2294 | void CalendarView::removeCategories() |
2294 | { | 2295 | { |
2295 | QPtrList<Incidence> incList = mCalendar->rawIncidences(); | 2296 | QPtrList<Incidence> incList = mCalendar->rawIncidences(); |
2296 | QStringList catList = KOPrefs::instance()->mCustomCategories; | 2297 | QStringList catList = KOPrefs::instance()->mCustomCategories; |
2297 | QStringList catIncList; | 2298 | QStringList catIncList; |
2298 | QStringList newCatList; | 2299 | QStringList newCatList; |
2299 | Incidence* inc = incList.first(); | 2300 | Incidence* inc = incList.first(); |
2300 | int i; | 2301 | int i; |
2301 | int count = 0; | 2302 | int count = 0; |
2302 | while ( inc ) { | 2303 | while ( inc ) { |
2303 | newCatList.clear(); | 2304 | newCatList.clear(); |
2304 | catIncList = inc->categories() ; | 2305 | catIncList = inc->categories() ; |
2305 | for( i = 0; i< catIncList.count(); ++i ) { | 2306 | for( i = 0; i< catIncList.count(); ++i ) { |
2306 | if ( catList.contains (catIncList[i])) | 2307 | if ( catList.contains (catIncList[i])) |
2307 | newCatList.append( catIncList[i] ); | 2308 | newCatList.append( catIncList[i] ); |
2308 | } | 2309 | } |
2309 | newCatList.sort(); | 2310 | newCatList.sort(); |
2310 | inc->setCategories( newCatList.join(",") ); | 2311 | inc->setCategories( newCatList.join(",") ); |
2311 | inc = incList.next(); | 2312 | inc = incList.next(); |
2312 | } | 2313 | } |
2313 | } | 2314 | } |
2314 | 2315 | ||
2315 | int CalendarView::addCategories() | 2316 | int CalendarView::addCategories() |
2316 | { | 2317 | { |
2317 | QPtrList<Incidence> incList = mCalendar->rawIncidences(); | 2318 | QPtrList<Incidence> incList = mCalendar->rawIncidences(); |
2318 | QStringList catList = KOPrefs::instance()->mCustomCategories; | 2319 | QStringList catList = KOPrefs::instance()->mCustomCategories; |
2319 | QStringList catIncList; | 2320 | QStringList catIncList; |
2320 | Incidence* inc = incList.first(); | 2321 | Incidence* inc = incList.first(); |
2321 | int i; | 2322 | int i; |
2322 | int count = 0; | 2323 | int count = 0; |
2323 | while ( inc ) { | 2324 | while ( inc ) { |
2324 | catIncList = inc->categories() ; | 2325 | catIncList = inc->categories() ; |
2325 | for( i = 0; i< catIncList.count(); ++i ) { | 2326 | for( i = 0; i< catIncList.count(); ++i ) { |
2326 | if ( !catList.contains (catIncList[i])) { | 2327 | if ( !catList.contains (catIncList[i])) { |
2327 | catList.append( catIncList[i] ); | 2328 | catList.append( catIncList[i] ); |
2328 | //qDebug("add cat %s ", catIncList[i].latin1()); | 2329 | //qDebug("add cat %s ", catIncList[i].latin1()); |
2329 | ++count; | 2330 | ++count; |
2330 | } | 2331 | } |
2331 | } | 2332 | } |
2332 | inc = incList.next(); | 2333 | inc = incList.next(); |
2333 | } | 2334 | } |
2334 | catList.sort(); | 2335 | catList.sort(); |
2335 | KOPrefs::instance()->mCustomCategories = catList; | 2336 | KOPrefs::instance()->mCustomCategories = catList; |
2336 | return count; | 2337 | return count; |
2337 | } | 2338 | } |
2338 | 2339 | ||
2339 | void CalendarView::manageCategories() | 2340 | void CalendarView::manageCategories() |
2340 | { | 2341 | { |
2341 | KOCatPrefs* cp = new KOCatPrefs(); | 2342 | KOCatPrefs* cp = new KOCatPrefs(); |
2342 | cp->show(); | 2343 | cp->show(); |
2343 | int w =cp->sizeHint().width() ; | 2344 | int w =cp->sizeHint().width() ; |
2344 | int h = cp->sizeHint().height() ; | 2345 | int h = cp->sizeHint().height() ; |
2345 | int dw = QApplication::desktop()->width(); | 2346 | int dw = QApplication::desktop()->width(); |
2346 | int dh = QApplication::desktop()->height(); | 2347 | int dh = QApplication::desktop()->height(); |
2347 | cp->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); | 2348 | cp->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); |
2348 | if ( !cp->exec() ) { | 2349 | if ( !cp->exec() ) { |
2349 | delete cp; | 2350 | delete cp; |
2350 | return; | 2351 | return; |
2351 | } | 2352 | } |
2352 | int count = 0; | 2353 | int count = 0; |
2353 | if ( cp->addCat() ) { | 2354 | if ( cp->addCat() ) { |
2354 | count = addCategories(); | 2355 | count = addCategories(); |
2355 | if ( count ) { | 2356 | if ( count ) { |
2356 | topLevelWidget()->setCaption(QString::number( count )+ i18n(" Categories added to list! ")); | 2357 | topLevelWidget()->setCaption(QString::number( count )+ i18n(" Categories added to list! ")); |
2357 | writeSettings(); | 2358 | writeSettings(); |
2358 | } else | 2359 | } else |
2359 | topLevelWidget()->setCaption(QString::number( 0 )+ i18n(" Categories added to list! ")); | 2360 | topLevelWidget()->setCaption(QString::number( 0 )+ i18n(" Categories added to list! ")); |
2360 | } else { | 2361 | } else { |
2361 | removeCategories(); | 2362 | removeCategories(); |
2362 | updateView(); | 2363 | updateView(); |
2363 | } | 2364 | } |
2364 | delete cp; | 2365 | delete cp; |
2365 | } | 2366 | } |
2366 | 2367 | ||
2367 | void CalendarView::beamIncidence(Incidence * Inc) | 2368 | void CalendarView::beamIncidence(Incidence * Inc) |
2368 | { | 2369 | { |
2369 | QPtrList<Incidence> delSel ; | 2370 | QPtrList<Incidence> delSel ; |
2370 | delSel.append(Inc); | 2371 | delSel.append(Inc); |
2371 | beamIncidenceList( delSel ); | 2372 | beamIncidenceList( delSel ); |
2372 | } | 2373 | } |
2373 | void CalendarView::beamCalendar() | 2374 | void CalendarView::beamCalendar() |
2374 | { | 2375 | { |
2375 | QPtrList<Incidence> delSel = mCalendar->rawIncidences(); | 2376 | QPtrList<Incidence> delSel = mCalendar->rawIncidences(); |
2376 | //qDebug("beamCalendar() "); | 2377 | //qDebug("beamCalendar() "); |
2377 | beamIncidenceList( delSel ); | 2378 | beamIncidenceList( delSel ); |
2378 | } | 2379 | } |
2379 | void CalendarView::beamFilteredCalendar() | 2380 | void CalendarView::beamFilteredCalendar() |
2380 | { | 2381 | { |
2381 | QPtrList<Incidence> delSel = mCalendar->incidences(); | 2382 | QPtrList<Incidence> delSel = mCalendar->incidences(); |
2382 | //qDebug("beamFilteredCalendar() "); | 2383 | //qDebug("beamFilteredCalendar() "); |
2383 | beamIncidenceList( delSel ); | 2384 | beamIncidenceList( delSel ); |
2384 | } | 2385 | } |
2385 | void CalendarView::beamIncidenceList(QPtrList<Incidence> delSel ) | 2386 | void CalendarView::beamIncidenceList(QPtrList<Incidence> delSel ) |
2386 | { | 2387 | { |
2387 | if ( beamDialog->exec () == QDialog::Rejected ) | 2388 | if ( beamDialog->exec () == QDialog::Rejected ) |
2388 | return; | 2389 | return; |
2389 | #ifdef DESKTOP_VERSION | 2390 | #ifdef DESKTOP_VERSION |
2390 | QString fn = locateLocal( "tmp", "kopibeamfile" ); | 2391 | QString fn = locateLocal( "tmp", "kopibeamfile" ); |
2391 | #else | 2392 | #else |
2392 | QString fn = "/tmp/kopibeamfile"; | 2393 | QString fn = "/tmp/kopibeamfile"; |
2393 | #endif | 2394 | #endif |
2394 | QString mes; | 2395 | QString mes; |
2395 | bool createbup = true; | 2396 | bool createbup = true; |
2396 | if ( createbup ) { | 2397 | if ( createbup ) { |
2397 | QString description = "\n"; | 2398 | QString description = "\n"; |
2398 | CalendarLocal* cal = new CalendarLocal(); | 2399 | CalendarLocal* cal = new CalendarLocal(); |
2399 | if ( beamDialog->beamLocal() ) | 2400 | if ( beamDialog->beamLocal() ) |
2400 | cal->setLocalTime(); | 2401 | cal->setLocalTime(); |
2401 | else | 2402 | else |
2402 | cal->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); | 2403 | cal->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); |
2403 | Incidence *incidence = delSel.first(); | 2404 | Incidence *incidence = delSel.first(); |
2404 | bool addText = false; | 2405 | bool addText = false; |
2405 | if ( delSel.count() < 10 ) | 2406 | if ( delSel.count() < 10 ) |
2406 | addText = true; | 2407 | addText = true; |
2407 | else { | 2408 | else { |
2408 | description.sprintf(i18n(" %d items?"),delSel.count() ); | 2409 | description.sprintf(i18n(" %d items?"),delSel.count() ); |
2409 | } | 2410 | } |
2410 | while ( incidence ) { | 2411 | while ( incidence ) { |
2411 | Incidence *in = incidence->clone(); | 2412 | Incidence *in = incidence->clone(); |
2412 | if ( ! in->summary().isEmpty() ) { | 2413 | if ( ! in->summary().isEmpty() ) { |
2413 | in->setDescription(""); | 2414 | in->setDescription(""); |
2414 | } else { | 2415 | } else { |
2415 | in->setSummary( in->description().left(20)); | 2416 | in->setSummary( in->description().left(20)); |
2416 | in->setDescription(""); | 2417 | in->setDescription(""); |
2417 | } | 2418 | } |
2418 | if ( addText ) | 2419 | if ( addText ) |
2419 | description += in->summary() + "\n"; | 2420 | description += in->summary() + "\n"; |
2420 | cal->addIncidence( in ); | 2421 | cal->addIncidence( in ); |
2421 | incidence = delSel.next(); | 2422 | incidence = delSel.next(); |
2422 | } | 2423 | } |
2423 | if ( beamDialog->beamVcal() ) { | 2424 | if ( beamDialog->beamVcal() ) { |
2424 | fn += ".vcs"; | 2425 | fn += ".vcs"; |
2425 | FileStorage storage( cal, fn, new VCalFormat ); | 2426 | FileStorage storage( cal, fn, new VCalFormat ); |
2426 | storage.save(); | 2427 | storage.save(); |
2427 | } else { | 2428 | } else { |
2428 | fn += ".ics"; | 2429 | fn += ".ics"; |
2429 | FileStorage storage( cal, fn, new ICalFormat( ) ); | 2430 | FileStorage storage( cal, fn, new ICalFormat( ) ); |
2430 | storage.save(); | 2431 | storage.save(); |
2431 | } | 2432 | } |
2432 | delete cal; | 2433 | delete cal; |
2433 | mes = i18n("KO/Pi: Ready for beaming"); | 2434 | mes = i18n("KO/Pi: Ready for beaming"); |
2434 | topLevelWidget()->setCaption(mes); | 2435 | topLevelWidget()->setCaption(mes); |
2435 | KApplication::convert2latin1( fn ); | 2436 | KApplication::convert2latin1( fn ); |
2436 | #ifndef DESKTOP_VERSION | 2437 | #ifndef DESKTOP_VERSION |
2437 | Ir *ir = new Ir( this ); | 2438 | Ir *ir = new Ir( this ); |
2438 | connect( ir, SIGNAL( done( Ir * ) ), this, SLOT( beamDone( Ir * ) ) ); | 2439 | connect( ir, SIGNAL( done( Ir * ) ), this, SLOT( beamDone( Ir * ) ) ); |
2439 | ir->send( fn, description, "text/x-vCalendar" ); | 2440 | ir->send( fn, description, "text/x-vCalendar" ); |
2440 | #endif | 2441 | #endif |
2441 | } | 2442 | } |
2442 | } | 2443 | } |
2443 | void CalendarView::beamDone( Ir *ir ) | 2444 | void CalendarView::beamDone( Ir *ir ) |
2444 | { | 2445 | { |
2445 | #ifndef DESKTOP_VERSION | 2446 | #ifndef DESKTOP_VERSION |
2446 | delete ir; | 2447 | delete ir; |
2447 | #endif | 2448 | #endif |
2448 | topLevelWidget()->setCaption( i18n("KO/Pi: Beaming done.") ); | 2449 | topLevelWidget()->setCaption( i18n("KO/Pi: Beaming done.") ); |
2449 | topLevelWidget()->raise(); | 2450 | topLevelWidget()->raise(); |
2450 | } | 2451 | } |
2451 | 2452 | ||
2452 | void CalendarView::moveIncidence(Incidence * inc ) | 2453 | void CalendarView::moveIncidence(Incidence * inc ) |
2453 | { | 2454 | { |
2454 | if ( !inc ) return; | 2455 | if ( !inc ) return; |
2455 | // qDebug("showDatePickerForIncidence( ) "); | 2456 | // qDebug("showDatePickerForIncidence( ) "); |
2456 | if ( mDateFrame->isVisible() ) | 2457 | if ( mDateFrame->isVisible() ) |
2457 | mDateFrame->hide(); | 2458 | mDateFrame->hide(); |
2458 | else { | 2459 | else { |
2459 | int w =mDatePicker->sizeHint().width()+2*mDateFrame->lineWidth() ; | 2460 | int w =mDatePicker->sizeHint().width()+2*mDateFrame->lineWidth() ; |
2460 | int h = mDatePicker->sizeHint().height()+2*mDateFrame->lineWidth() ; | 2461 | int h = mDatePicker->sizeHint().height()+2*mDateFrame->lineWidth() ; |
2461 | int dw = QApplication::desktop()->width(); | 2462 | int dw = QApplication::desktop()->width(); |
2462 | int dh = QApplication::desktop()->height(); | 2463 | int dh = QApplication::desktop()->height(); |
2463 | mDateFrame->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); | 2464 | mDateFrame->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); |
2464 | mDateFrame->show(); | 2465 | mDateFrame->show(); |
2465 | } | 2466 | } |
2466 | mDatePickerMode = 2; | 2467 | mDatePickerMode = 2; |
2467 | mMoveIncidence = inc ; | 2468 | mMoveIncidence = inc ; |
2468 | QDate da; | 2469 | QDate da; |
2469 | if ( mMoveIncidence->type() == "Todo" ) { | 2470 | if ( mMoveIncidence->type() == "Todo" ) { |
2470 | Todo * to = (Todo *) mMoveIncidence; | 2471 | Todo * to = (Todo *) mMoveIncidence; |
2471 | if ( to->hasDueDate() ) | 2472 | if ( to->hasDueDate() ) |
2472 | da = to->dtDue().date(); | 2473 | da = to->dtDue().date(); |
2473 | else | 2474 | else |
2474 | da = QDate::currentDate(); | 2475 | da = QDate::currentDate(); |
2475 | } else { | 2476 | } else { |
2476 | da = mMoveIncidence->dtStart().date(); | 2477 | da = mMoveIncidence->dtStart().date(); |
2477 | } | 2478 | } |
2478 | //PENDING set date for recurring incidence to date of recurrence | 2479 | //PENDING set date for recurring incidence to date of recurrence |
2479 | //mMoveIncidenceOldDate; | 2480 | //mMoveIncidenceOldDate; |
2480 | mDatePicker->setDate( da ); | 2481 | mDatePicker->setDate( da ); |
2481 | } | 2482 | } |
2482 | void CalendarView::showDatePicker( ) | 2483 | void CalendarView::showDatePicker( ) |
2483 | { | 2484 | { |
2484 | //qDebug("CalendarView::showDatePicker( ) "); | 2485 | //qDebug("CalendarView::showDatePicker( ) "); |
2485 | if ( mDateFrame->isVisible() ) | 2486 | if ( mDateFrame->isVisible() ) |
2486 | mDateFrame->hide(); | 2487 | mDateFrame->hide(); |
2487 | else { | 2488 | else { |
2488 | int w =mDatePicker->sizeHint().width() ; | 2489 | int w =mDatePicker->sizeHint().width() ; |
2489 | int h = mDatePicker->sizeHint().height() ; | 2490 | int h = mDatePicker->sizeHint().height() ; |
2490 | int dw = QApplication::desktop()->width(); | 2491 | int dw = QApplication::desktop()->width(); |
2491 | int dh = QApplication::desktop()->height(); | 2492 | int dh = QApplication::desktop()->height(); |
2492 | mDateFrame->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); | 2493 | mDateFrame->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); |
2493 | mDateFrame->show(); | 2494 | mDateFrame->show(); |
2494 | } | 2495 | } |
2495 | mDatePickerMode = 1; | 2496 | mDatePickerMode = 1; |
2496 | mDatePicker->setDate( mNavigator->selectedDates().first() ); | 2497 | mDatePicker->setDate( mNavigator->selectedDates().first() ); |
2497 | } | 2498 | } |
2498 | 2499 | ||
2499 | void CalendarView::showEventEditor() | 2500 | void CalendarView::showEventEditor() |
2500 | { | 2501 | { |
2501 | #ifdef DESKTOP_VERSION | 2502 | #ifdef DESKTOP_VERSION |
2502 | mEventEditor->show(); | 2503 | mEventEditor->show(); |
2503 | #else | 2504 | #else |
2504 | if ( mEventEditor->width() < QApplication::desktop()->width() -60 || mEventEditor->width() > QApplication::desktop()->width() ) { | 2505 | if ( mEventEditor->width() < QApplication::desktop()->width() -60 || mEventEditor->width() > QApplication::desktop()->width() ) { |
2505 | topLevelWidget()->setCaption( i18n("Recreating edit dialog. Please wait...") ); | 2506 | topLevelWidget()->setCaption( i18n("Recreating edit dialog. Please wait...") ); |
2506 | qDebug("CalendarView: recreate mEventEditor %d %d", mEventEditor->width(), QApplication::desktop()->width() ); | 2507 | qDebug("CalendarView: recreate mEventEditor %d %d", mEventEditor->width(), QApplication::desktop()->width() ); |
2507 | delete mEventEditor; | 2508 | delete mEventEditor; |
2508 | mEventEditor = mDialogManager->getEventEditor(); | 2509 | mEventEditor = mDialogManager->getEventEditor(); |
2509 | } | 2510 | } |
2510 | mEventEditor->showMaximized(); | 2511 | mEventEditor->showMaximized(); |
2511 | topLevelWidget()->setCaption( i18n("") ); | 2512 | topLevelWidget()->setCaption( i18n("") ); |
2512 | #endif | 2513 | #endif |
2513 | } | 2514 | } |
2514 | void CalendarView::showTodoEditor() | 2515 | void CalendarView::showTodoEditor() |
2515 | { | 2516 | { |
2516 | #ifdef DESKTOP_VERSION | 2517 | #ifdef DESKTOP_VERSION |
2517 | mTodoEditor->show(); | 2518 | mTodoEditor->show(); |
2518 | #else | 2519 | #else |
2519 | if ( mTodoEditor->width() < QApplication::desktop()->width() -60|| mTodoEditor->width() > QApplication::desktop()->width() ) { | 2520 | if ( mTodoEditor->width() < QApplication::desktop()->width() -60|| mTodoEditor->width() > QApplication::desktop()->width() ) { |
2520 | topLevelWidget()->setCaption( i18n("Recreating edit dialog. Please wait...") ); | 2521 | topLevelWidget()->setCaption( i18n("Recreating edit dialog. Please wait...") ); |
2521 | qDebug("CalendarView: recreate mTodoEditor %d %d ", mTodoEditor->width() ,QApplication::desktop()->width() ); | 2522 | qDebug("CalendarView: recreate mTodoEditor %d %d ", mTodoEditor->width() ,QApplication::desktop()->width() ); |
2522 | delete mTodoEditor; | 2523 | delete mTodoEditor; |
2523 | mTodoEditor = mDialogManager->getTodoEditor(); | 2524 | mTodoEditor = mDialogManager->getTodoEditor(); |
2524 | } | 2525 | } |
2525 | mTodoEditor->showMaximized(); | 2526 | mTodoEditor->showMaximized(); |
2526 | topLevelWidget()->setCaption( i18n("") ); | 2527 | topLevelWidget()->setCaption( i18n("") ); |
2527 | #endif | 2528 | #endif |
2528 | } | 2529 | } |
2529 | 2530 | ||
2530 | void CalendarView::cloneIncidence() | 2531 | void CalendarView::cloneIncidence() |
2531 | { | 2532 | { |
2532 | Incidence *incidence = currentSelection(); | 2533 | Incidence *incidence = currentSelection(); |
2533 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); | 2534 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); |
2534 | if ( incidence ) { | 2535 | if ( incidence ) { |
2535 | cloneIncidence(incidence); | 2536 | cloneIncidence(incidence); |
2536 | } | 2537 | } |
2537 | } | 2538 | } |
2538 | void CalendarView::moveIncidence() | 2539 | void CalendarView::moveIncidence() |
2539 | { | 2540 | { |
2540 | Incidence *incidence = currentSelection(); | 2541 | Incidence *incidence = currentSelection(); |
2541 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); | 2542 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); |
2542 | if ( incidence ) { | 2543 | if ( incidence ) { |
2543 | moveIncidence(incidence); | 2544 | moveIncidence(incidence); |
2544 | } | 2545 | } |
2545 | } | 2546 | } |
2546 | void CalendarView::beamIncidence() | 2547 | void CalendarView::beamIncidence() |
2547 | { | 2548 | { |
2548 | Incidence *incidence = currentSelection(); | 2549 | Incidence *incidence = currentSelection(); |
2549 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); | 2550 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); |
2550 | if ( incidence ) { | 2551 | if ( incidence ) { |
2551 | beamIncidence(incidence); | 2552 | beamIncidence(incidence); |
2552 | } | 2553 | } |
2553 | } | 2554 | } |
2554 | void CalendarView::toggleCancelIncidence() | 2555 | void CalendarView::toggleCancelIncidence() |
2555 | { | 2556 | { |
2556 | Incidence *incidence = currentSelection(); | 2557 | Incidence *incidence = currentSelection(); |
2557 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); | 2558 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); |
2558 | if ( incidence ) { | 2559 | if ( incidence ) { |
2559 | cancelIncidence(incidence); | 2560 | cancelIncidence(incidence); |
2560 | } | 2561 | } |
2561 | } | 2562 | } |
2562 | 2563 | ||
2563 | 2564 | ||
2564 | void CalendarView::cancelIncidence(Incidence * inc ) | 2565 | void CalendarView::cancelIncidence(Incidence * inc ) |
2565 | { | 2566 | { |
2566 | inc->setCancelled( ! inc->cancelled() ); | 2567 | inc->setCancelled( ! inc->cancelled() ); |
2567 | changeIncidenceDisplay( inc,KOGlobals::EVENTEDITED ); | 2568 | changeIncidenceDisplay( inc,KOGlobals::EVENTEDITED ); |
2568 | updateView(); | 2569 | updateView(); |
2569 | } | 2570 | } |
2570 | void CalendarView::cloneIncidence(Incidence * orgInc ) | 2571 | void CalendarView::cloneIncidence(Incidence * orgInc ) |
2571 | { | 2572 | { |
2572 | Incidence * newInc = orgInc->clone(); | 2573 | Incidence * newInc = orgInc->clone(); |
2573 | newInc->recreate(); | 2574 | newInc->recreate(); |
2574 | 2575 | ||
2575 | if ( newInc->type() == "Todo" ) { | 2576 | if ( newInc->type() == "Todo" ) { |
2576 | Todo* t = (Todo*) newInc; | 2577 | Todo* t = (Todo*) newInc; |
2577 | showTodoEditor(); | 2578 | showTodoEditor(); |
2578 | mTodoEditor->editTodo( t ); | 2579 | mTodoEditor->editTodo( t ); |
2579 | if ( mTodoEditor->exec() ) { | 2580 | if ( mTodoEditor->exec() ) { |
2580 | mCalendar->addTodo( t ); | 2581 | mCalendar->addTodo( t ); |
2581 | updateView(); | 2582 | updateView(); |
2582 | } else { | 2583 | } else { |
2583 | delete t; | 2584 | delete t; |
2584 | } | 2585 | } |
2585 | } | 2586 | } |
2586 | else { | 2587 | else { |
2587 | Event* e = (Event*) newInc; | 2588 | Event* e = (Event*) newInc; |
2588 | showEventEditor(); | 2589 | showEventEditor(); |
2589 | mEventEditor->editEvent( e ); | 2590 | mEventEditor->editEvent( e ); |
2590 | if ( mEventEditor->exec() ) { | 2591 | if ( mEventEditor->exec() ) { |
2591 | mCalendar->addEvent( e ); | 2592 | mCalendar->addEvent( e ); |
2592 | updateView(); | 2593 | updateView(); |
2593 | } else { | 2594 | } else { |
2594 | delete e; | 2595 | delete e; |
2595 | } | 2596 | } |
2596 | } | 2597 | } |
2597 | } | 2598 | } |
2598 | 2599 | ||
2599 | void CalendarView::newEvent() | 2600 | void CalendarView::newEvent() |
2600 | { | 2601 | { |
2601 | // TODO: Replace this code by a common eventDurationHint of KOBaseView. | 2602 | // TODO: Replace this code by a common eventDurationHint of KOBaseView. |
2602 | KOAgendaView *aView = mViewManager->agendaView(); | 2603 | KOAgendaView *aView = mViewManager->agendaView(); |
2603 | if (aView) { | 2604 | if (aView) { |
2604 | if (aView->selectionStart().isValid()) { | 2605 | if (aView->selectionStart().isValid()) { |
2605 | if (aView->selectedIsAllDay()) { | 2606 | if (aView->selectedIsAllDay()) { |
2606 | newEvent(aView->selectionStart(),aView->selectionEnd(),true); | 2607 | newEvent(aView->selectionStart(),aView->selectionEnd(),true); |
2607 | } else { | 2608 | } else { |
2608 | newEvent(aView->selectionStart(),aView->selectionEnd()); | 2609 | newEvent(aView->selectionStart(),aView->selectionEnd()); |
2609 | } | 2610 | } |
2610 | return; | 2611 | return; |
2611 | } | 2612 | } |
2612 | } | 2613 | } |
2613 | 2614 | ||
2614 | QDate date = mNavigator->selectedDates().first(); | 2615 | QDate date = mNavigator->selectedDates().first(); |
2615 | QDateTime current = QDateTime::currentDateTime(); | 2616 | QDateTime current = QDateTime::currentDateTime(); |
2616 | if ( date <= current.date() ) { | 2617 | if ( date <= current.date() ) { |
2617 | int hour = current.time().hour() +1; | 2618 | int hour = current.time().hour() +1; |
2618 | newEvent( QDateTime( current.date(), QTime( hour, 0, 0 ) ), | 2619 | newEvent( QDateTime( current.date(), QTime( hour, 0, 0 ) ), |
2619 | QDateTime( current.date(), QTime( hour+ KOPrefs::instance()->mDefaultDuration, 0, 0 ) ) ); | 2620 | QDateTime( current.date(), QTime( hour+ KOPrefs::instance()->mDefaultDuration, 0, 0 ) ) ); |
2620 | } else | 2621 | } else |
2621 | newEvent( QDateTime( date, QTime( KOPrefs::instance()->mStartTime, 0, 0 ) ), | 2622 | newEvent( QDateTime( date, QTime( KOPrefs::instance()->mStartTime, 0, 0 ) ), |
2622 | QDateTime( date, QTime( KOPrefs::instance()->mStartTime + | 2623 | QDateTime( date, QTime( KOPrefs::instance()->mStartTime + |
2623 | KOPrefs::instance()->mDefaultDuration, 0, 0 ) ) ); | 2624 | KOPrefs::instance()->mDefaultDuration, 0, 0 ) ) ); |
2624 | } | 2625 | } |
2625 | 2626 | ||
2626 | void CalendarView::newEvent(QDateTime fh) | 2627 | void CalendarView::newEvent(QDateTime fh) |
2627 | { | 2628 | { |
2628 | newEvent(fh, | 2629 | newEvent(fh, |
2629 | QDateTime(fh.addSecs(3600*KOPrefs::instance()->mDefaultDuration))); | 2630 | QDateTime(fh.addSecs(3600*KOPrefs::instance()->mDefaultDuration))); |
2630 | } | 2631 | } |
2631 | 2632 | ||
2632 | void CalendarView::newEvent(QDate dt) | 2633 | void CalendarView::newEvent(QDate dt) |
2633 | { | 2634 | { |
2634 | newEvent(QDateTime(dt, QTime(0,0,0)), | 2635 | newEvent(QDateTime(dt, QTime(0,0,0)), |
2635 | QDateTime(dt, QTime(0,0,0)), true); | 2636 | QDateTime(dt, QTime(0,0,0)), true); |
2636 | } | 2637 | } |
2637 | 2638 | ||
2638 | void CalendarView::newEvent(QDateTime fromHint, QDateTime toHint, bool allDay) | 2639 | void CalendarView::newEvent(QDateTime fromHint, QDateTime toHint, bool allDay) |
2639 | { | 2640 | { |
2640 | 2641 | ||
2641 | showEventEditor(); | 2642 | showEventEditor(); |
2642 | mEventEditor->newEvent(fromHint,toHint,allDay); | 2643 | mEventEditor->newEvent(fromHint,toHint,allDay); |
2643 | if ( mFilterView->filtersEnabled() ) { | 2644 | if ( mFilterView->filtersEnabled() ) { |
2644 | CalFilter *filter = mFilterView->selectedFilter(); | 2645 | CalFilter *filter = mFilterView->selectedFilter(); |
2645 | if (filter && filter->showCategories()) { | 2646 | if (filter && filter->showCategories()) { |
2646 | mEventEditor->setCategories(filter->categoryList().join(",") ); | 2647 | mEventEditor->setCategories(filter->categoryList().join(",") ); |
2647 | } | 2648 | } |
2648 | if ( filter ) | 2649 | if ( filter ) |
2649 | mEventEditor->setSecrecy( filter->getSecrecy() ); | 2650 | mEventEditor->setSecrecy( filter->getSecrecy() ); |
2650 | } | 2651 | } |
2651 | } | 2652 | } |
2652 | void CalendarView::todoAdded(Todo * t) | 2653 | void CalendarView::todoAdded(Todo * t) |
2653 | { | 2654 | { |
2654 | 2655 | ||
2655 | changeTodoDisplay ( t ,KOGlobals::EVENTADDED); | 2656 | changeTodoDisplay ( t ,KOGlobals::EVENTADDED); |
2656 | updateTodoViews(); | 2657 | updateTodoViews(); |
2657 | } | 2658 | } |
2658 | void CalendarView::todoChanged(Todo * t) | 2659 | void CalendarView::todoChanged(Todo * t) |
2659 | { | 2660 | { |
2660 | emit todoModified( t, 4 ); | 2661 | emit todoModified( t, 4 ); |
2661 | // updateTodoViews(); | 2662 | // updateTodoViews(); |
2662 | } | 2663 | } |
2663 | void CalendarView::todoToBeDeleted(Todo *) | 2664 | void CalendarView::todoToBeDeleted(Todo *) |
2664 | { | 2665 | { |
2665 | //qDebug("todoToBeDeleted(Todo *) "); | 2666 | //qDebug("todoToBeDeleted(Todo *) "); |
2666 | updateTodoViews(); | 2667 | updateTodoViews(); |
2667 | } | 2668 | } |
2668 | void CalendarView::todoDeleted() | 2669 | void CalendarView::todoDeleted() |
2669 | { | 2670 | { |
2670 | //qDebug(" todoDeleted()"); | 2671 | //qDebug(" todoDeleted()"); |
2671 | updateTodoViews(); | 2672 | updateTodoViews(); |
2672 | } | 2673 | } |
2673 | 2674 | ||
2674 | 2675 | ||
2675 | 2676 | ||
2676 | void CalendarView::newTodo() | 2677 | void CalendarView::newTodo() |
2677 | { | 2678 | { |
2678 | 2679 | ||
2679 | showTodoEditor(); | 2680 | showTodoEditor(); |
2680 | mTodoEditor->newTodo(QDateTime::currentDateTime().addDays(7),0,true); | 2681 | mTodoEditor->newTodo(QDateTime::currentDateTime().addDays(7),0,true); |
2681 | if ( mFilterView->filtersEnabled() ) { | 2682 | if ( mFilterView->filtersEnabled() ) { |
2682 | CalFilter *filter = mFilterView->selectedFilter(); | 2683 | CalFilter *filter = mFilterView->selectedFilter(); |
2683 | if (filter && filter->showCategories()) { | 2684 | if (filter && filter->showCategories()) { |
2684 | mTodoEditor->setCategories(filter->categoryList().join(",") ); | 2685 | mTodoEditor->setCategories(filter->categoryList().join(",") ); |
2685 | } | 2686 | } |
2686 | if ( filter ) | 2687 | if ( filter ) |
@@ -3100,776 +3101,777 @@ void CalendarView::schedule_publish(Incidence *incidence) | |||
3100 | 3101 | ||
3101 | if (!event && !todo) { | 3102 | if (!event && !todo) { |
3102 | KMessageBox::sorry(this,i18n("No event selected.")); | 3103 | KMessageBox::sorry(this,i18n("No event selected.")); |
3103 | return; | 3104 | return; |
3104 | } | 3105 | } |
3105 | 3106 | ||
3106 | PublishDialog *publishdlg = new PublishDialog(); | 3107 | PublishDialog *publishdlg = new PublishDialog(); |
3107 | if (incidence->attendeeCount()>0) { | 3108 | if (incidence->attendeeCount()>0) { |
3108 | QPtrList<Attendee> attendees = incidence->attendees(); | 3109 | QPtrList<Attendee> attendees = incidence->attendees(); |
3109 | attendees.first(); | 3110 | attendees.first(); |
3110 | while ( attendees.current()!=0 ) { | 3111 | while ( attendees.current()!=0 ) { |
3111 | publishdlg->addAttendee(attendees.current()); | 3112 | publishdlg->addAttendee(attendees.current()); |
3112 | attendees.next(); | 3113 | attendees.next(); |
3113 | } | 3114 | } |
3114 | } | 3115 | } |
3115 | bool send = true; | 3116 | bool send = true; |
3116 | if ( KOPrefs::instance()->mMailClient == KOPrefs::MailClientSendmail ) { | 3117 | if ( KOPrefs::instance()->mMailClient == KOPrefs::MailClientSendmail ) { |
3117 | if ( publishdlg->exec() != QDialog::Accepted ) | 3118 | if ( publishdlg->exec() != QDialog::Accepted ) |
3118 | send = false; | 3119 | send = false; |
3119 | } | 3120 | } |
3120 | if ( send ) { | 3121 | if ( send ) { |
3121 | OutgoingDialog *dlg = mDialogManager->outgoingDialog(); | 3122 | OutgoingDialog *dlg = mDialogManager->outgoingDialog(); |
3122 | if ( event ) { | 3123 | if ( event ) { |
3123 | Event *ev = new Event(*event); | 3124 | Event *ev = new Event(*event); |
3124 | ev->registerObserver(0); | 3125 | ev->registerObserver(0); |
3125 | ev->clearAttendees(); | 3126 | ev->clearAttendees(); |
3126 | if (!dlg->addMessage(ev,Scheduler::Publish,publishdlg->addresses())) { | 3127 | if (!dlg->addMessage(ev,Scheduler::Publish,publishdlg->addresses())) { |
3127 | delete(ev); | 3128 | delete(ev); |
3128 | } | 3129 | } |
3129 | } else { | 3130 | } else { |
3130 | if ( todo ) { | 3131 | if ( todo ) { |
3131 | Todo *ev = new Todo(*todo); | 3132 | Todo *ev = new Todo(*todo); |
3132 | ev->registerObserver(0); | 3133 | ev->registerObserver(0); |
3133 | ev->clearAttendees(); | 3134 | ev->clearAttendees(); |
3134 | if (!dlg->addMessage(ev,Scheduler::Publish,publishdlg->addresses())) { | 3135 | if (!dlg->addMessage(ev,Scheduler::Publish,publishdlg->addresses())) { |
3135 | delete(ev); | 3136 | delete(ev); |
3136 | } | 3137 | } |
3137 | } | 3138 | } |
3138 | } | 3139 | } |
3139 | } | 3140 | } |
3140 | delete publishdlg; | 3141 | delete publishdlg; |
3141 | } | 3142 | } |
3142 | 3143 | ||
3143 | void CalendarView::schedule_request(Incidence *incidence) | 3144 | void CalendarView::schedule_request(Incidence *incidence) |
3144 | { | 3145 | { |
3145 | schedule(Scheduler::Request,incidence); | 3146 | schedule(Scheduler::Request,incidence); |
3146 | } | 3147 | } |
3147 | 3148 | ||
3148 | void CalendarView::schedule_refresh(Incidence *incidence) | 3149 | void CalendarView::schedule_refresh(Incidence *incidence) |
3149 | { | 3150 | { |
3150 | schedule(Scheduler::Refresh,incidence); | 3151 | schedule(Scheduler::Refresh,incidence); |
3151 | } | 3152 | } |
3152 | 3153 | ||
3153 | void CalendarView::schedule_cancel(Incidence *incidence) | 3154 | void CalendarView::schedule_cancel(Incidence *incidence) |
3154 | { | 3155 | { |
3155 | schedule(Scheduler::Cancel,incidence); | 3156 | schedule(Scheduler::Cancel,incidence); |
3156 | } | 3157 | } |
3157 | 3158 | ||
3158 | void CalendarView::schedule_add(Incidence *incidence) | 3159 | void CalendarView::schedule_add(Incidence *incidence) |
3159 | { | 3160 | { |
3160 | schedule(Scheduler::Add,incidence); | 3161 | schedule(Scheduler::Add,incidence); |
3161 | } | 3162 | } |
3162 | 3163 | ||
3163 | void CalendarView::schedule_reply(Incidence *incidence) | 3164 | void CalendarView::schedule_reply(Incidence *incidence) |
3164 | { | 3165 | { |
3165 | schedule(Scheduler::Reply,incidence); | 3166 | schedule(Scheduler::Reply,incidence); |
3166 | } | 3167 | } |
3167 | 3168 | ||
3168 | void CalendarView::schedule_counter(Incidence *incidence) | 3169 | void CalendarView::schedule_counter(Incidence *incidence) |
3169 | { | 3170 | { |
3170 | schedule(Scheduler::Counter,incidence); | 3171 | schedule(Scheduler::Counter,incidence); |
3171 | } | 3172 | } |
3172 | 3173 | ||
3173 | void CalendarView::schedule_declinecounter(Incidence *incidence) | 3174 | void CalendarView::schedule_declinecounter(Incidence *incidence) |
3174 | { | 3175 | { |
3175 | schedule(Scheduler::Declinecounter,incidence); | 3176 | schedule(Scheduler::Declinecounter,incidence); |
3176 | } | 3177 | } |
3177 | 3178 | ||
3178 | void CalendarView::schedule_publish_freebusy(int daysToPublish) | 3179 | void CalendarView::schedule_publish_freebusy(int daysToPublish) |
3179 | { | 3180 | { |
3180 | QDateTime start = QDateTime::currentDateTime(); | 3181 | QDateTime start = QDateTime::currentDateTime(); |
3181 | QDateTime end = start.addDays(daysToPublish); | 3182 | QDateTime end = start.addDays(daysToPublish); |
3182 | 3183 | ||
3183 | FreeBusy *freebusy = new FreeBusy(mCalendar, start, end); | 3184 | FreeBusy *freebusy = new FreeBusy(mCalendar, start, end); |
3184 | freebusy->setOrganizer(KOPrefs::instance()->email()); | 3185 | freebusy->setOrganizer(KOPrefs::instance()->email()); |
3185 | 3186 | ||
3186 | 3187 | ||
3187 | PublishDialog *publishdlg = new PublishDialog(); | 3188 | PublishDialog *publishdlg = new PublishDialog(); |
3188 | if ( publishdlg->exec() == QDialog::Accepted ) { | 3189 | if ( publishdlg->exec() == QDialog::Accepted ) { |
3189 | OutgoingDialog *dlg = mDialogManager->outgoingDialog(); | 3190 | OutgoingDialog *dlg = mDialogManager->outgoingDialog(); |
3190 | if (!dlg->addMessage(freebusy,Scheduler::Publish,publishdlg->addresses())) { | 3191 | if (!dlg->addMessage(freebusy,Scheduler::Publish,publishdlg->addresses())) { |
3191 | delete(freebusy); | 3192 | delete(freebusy); |
3192 | } | 3193 | } |
3193 | } | 3194 | } |
3194 | delete publishdlg; | 3195 | delete publishdlg; |
3195 | } | 3196 | } |
3196 | 3197 | ||
3197 | void CalendarView::schedule(Scheduler::Method method, Incidence *incidence) | 3198 | void CalendarView::schedule(Scheduler::Method method, Incidence *incidence) |
3198 | { | 3199 | { |
3199 | Event *event = 0; | 3200 | Event *event = 0; |
3200 | Todo *todo = 0; | 3201 | Todo *todo = 0; |
3201 | 3202 | ||
3202 | if (incidence == 0) { | 3203 | if (incidence == 0) { |
3203 | incidence = mViewManager->currentView()->selectedIncidences().first(); | 3204 | incidence = mViewManager->currentView()->selectedIncidences().first(); |
3204 | if (incidence == 0) { | 3205 | if (incidence == 0) { |
3205 | incidence = mTodoList->selectedIncidences().first(); | 3206 | incidence = mTodoList->selectedIncidences().first(); |
3206 | } | 3207 | } |
3207 | } | 3208 | } |
3208 | if ( incidence && incidence->type() == "Event" ) { | 3209 | if ( incidence && incidence->type() == "Event" ) { |
3209 | event = static_cast<Event *>(incidence); | 3210 | event = static_cast<Event *>(incidence); |
3210 | } | 3211 | } |
3211 | if ( incidence && incidence->type() == "Todo" ) { | 3212 | if ( incidence && incidence->type() == "Todo" ) { |
3212 | todo = static_cast<Todo *>(incidence); | 3213 | todo = static_cast<Todo *>(incidence); |
3213 | } | 3214 | } |
3214 | 3215 | ||
3215 | if (!event && !todo) { | 3216 | if (!event && !todo) { |
3216 | KMessageBox::sorry(this,i18n("No event selected.")); | 3217 | KMessageBox::sorry(this,i18n("No event selected.")); |
3217 | return; | 3218 | return; |
3218 | } | 3219 | } |
3219 | 3220 | ||
3220 | if( incidence->attendeeCount() == 0 && method != Scheduler::Publish ) { | 3221 | if( incidence->attendeeCount() == 0 && method != Scheduler::Publish ) { |
3221 | KMessageBox::sorry(this,i18n("The event has no attendees.")); | 3222 | KMessageBox::sorry(this,i18n("The event has no attendees.")); |
3222 | return; | 3223 | return; |
3223 | } | 3224 | } |
3224 | 3225 | ||
3225 | Event *ev = 0; | 3226 | Event *ev = 0; |
3226 | if (event) ev = new Event(*event); | 3227 | if (event) ev = new Event(*event); |
3227 | Todo *to = 0; | 3228 | Todo *to = 0; |
3228 | if (todo) to = new Todo(*todo); | 3229 | if (todo) to = new Todo(*todo); |
3229 | 3230 | ||
3230 | if (method == Scheduler::Reply || method == Scheduler::Refresh) { | 3231 | if (method == Scheduler::Reply || method == Scheduler::Refresh) { |
3231 | Attendee *me = incidence->attendeeByMails(KOPrefs::instance()->mAdditionalMails,KOPrefs::instance()->email()); | 3232 | Attendee *me = incidence->attendeeByMails(KOPrefs::instance()->mAdditionalMails,KOPrefs::instance()->email()); |
3232 | if (!me) { | 3233 | if (!me) { |
3233 | KMessageBox::sorry(this,i18n("Could not find your attendee entry.\nPlease check the emails.")); | 3234 | KMessageBox::sorry(this,i18n("Could not find your attendee entry.\nPlease check the emails.")); |
3234 | return; | 3235 | return; |
3235 | } | 3236 | } |
3236 | if (me->status()==Attendee::NeedsAction && me->RSVP() && method==Scheduler::Reply) { | 3237 | if (me->status()==Attendee::NeedsAction && me->RSVP() && method==Scheduler::Reply) { |
3237 | StatusDialog *statdlg = new StatusDialog(this); | 3238 | StatusDialog *statdlg = new StatusDialog(this); |
3238 | if (!statdlg->exec()==QDialog::Accepted) return; | 3239 | if (!statdlg->exec()==QDialog::Accepted) return; |
3239 | me->setStatus( statdlg->status() ); | 3240 | me->setStatus( statdlg->status() ); |
3240 | delete(statdlg); | 3241 | delete(statdlg); |
3241 | } | 3242 | } |
3242 | Attendee *menew = new Attendee(*me); | 3243 | Attendee *menew = new Attendee(*me); |
3243 | if (ev) { | 3244 | if (ev) { |
3244 | ev->clearAttendees(); | 3245 | ev->clearAttendees(); |
3245 | ev->addAttendee(menew,false); | 3246 | ev->addAttendee(menew,false); |
3246 | } else { | 3247 | } else { |
3247 | if (to) { | 3248 | if (to) { |
3248 | todo->clearAttendees(); | 3249 | todo->clearAttendees(); |
3249 | todo->addAttendee(menew,false); | 3250 | todo->addAttendee(menew,false); |
3250 | } | 3251 | } |
3251 | } | 3252 | } |
3252 | } | 3253 | } |
3253 | 3254 | ||
3254 | OutgoingDialog *dlg = mDialogManager->outgoingDialog(); | 3255 | OutgoingDialog *dlg = mDialogManager->outgoingDialog(); |
3255 | if (ev) { | 3256 | if (ev) { |
3256 | if ( !dlg->addMessage(ev,method) ) delete(ev); | 3257 | if ( !dlg->addMessage(ev,method) ) delete(ev); |
3257 | } else { | 3258 | } else { |
3258 | if (to) { | 3259 | if (to) { |
3259 | if ( !dlg->addMessage(to,method) ) delete(to); | 3260 | if ( !dlg->addMessage(to,method) ) delete(to); |
3260 | } | 3261 | } |
3261 | } | 3262 | } |
3262 | } | 3263 | } |
3263 | 3264 | ||
3264 | void CalendarView::openAddressbook() | 3265 | void CalendarView::openAddressbook() |
3265 | { | 3266 | { |
3266 | KRun::runCommand("kaddressbook"); | 3267 | KRun::runCommand("kaddressbook"); |
3267 | } | 3268 | } |
3268 | 3269 | ||
3269 | void CalendarView::setModified(bool modified) | 3270 | void CalendarView::setModified(bool modified) |
3270 | { | 3271 | { |
3271 | if ( modified ) | 3272 | if ( modified ) |
3272 | emit signalmodified(); | 3273 | emit signalmodified(); |
3273 | if (mModified != modified) { | 3274 | if (mModified != modified) { |
3274 | mModified = modified; | 3275 | mModified = modified; |
3275 | emit modifiedChanged(mModified); | 3276 | emit modifiedChanged(mModified); |
3276 | } | 3277 | } |
3277 | } | 3278 | } |
3278 | 3279 | ||
3279 | bool CalendarView::isReadOnly() | 3280 | bool CalendarView::isReadOnly() |
3280 | { | 3281 | { |
3281 | return mReadOnly; | 3282 | return mReadOnly; |
3282 | } | 3283 | } |
3283 | 3284 | ||
3284 | void CalendarView::setReadOnly(bool readOnly) | 3285 | void CalendarView::setReadOnly(bool readOnly) |
3285 | { | 3286 | { |
3286 | if (mReadOnly != readOnly) { | 3287 | if (mReadOnly != readOnly) { |
3287 | mReadOnly = readOnly; | 3288 | mReadOnly = readOnly; |
3288 | emit readOnlyChanged(mReadOnly); | 3289 | emit readOnlyChanged(mReadOnly); |
3289 | } | 3290 | } |
3290 | } | 3291 | } |
3291 | 3292 | ||
3292 | bool CalendarView::isModified() | 3293 | bool CalendarView::isModified() |
3293 | { | 3294 | { |
3294 | return mModified; | 3295 | return mModified; |
3295 | } | 3296 | } |
3296 | 3297 | ||
3297 | void CalendarView::printSetup() | 3298 | void CalendarView::printSetup() |
3298 | { | 3299 | { |
3299 | #ifndef KORG_NOPRINTER | 3300 | #ifndef KORG_NOPRINTER |
3300 | createPrinter(); | 3301 | createPrinter(); |
3301 | 3302 | ||
3302 | mCalPrinter->setupPrinter(); | 3303 | mCalPrinter->setupPrinter(); |
3303 | #endif | 3304 | #endif |
3304 | } | 3305 | } |
3305 | 3306 | ||
3306 | void CalendarView::print() | 3307 | void CalendarView::print() |
3307 | { | 3308 | { |
3308 | #ifndef KORG_NOPRINTER | 3309 | #ifndef KORG_NOPRINTER |
3309 | createPrinter(); | 3310 | createPrinter(); |
3310 | 3311 | ||
3311 | DateList tmpDateList = mNavigator->selectedDates(); | 3312 | DateList tmpDateList = mNavigator->selectedDates(); |
3312 | mCalPrinter->print(CalPrinter::Month, | 3313 | mCalPrinter->print(CalPrinter::Month, |
3313 | tmpDateList.first(), tmpDateList.last()); | 3314 | tmpDateList.first(), tmpDateList.last()); |
3314 | #endif | 3315 | #endif |
3315 | } | 3316 | } |
3316 | 3317 | ||
3317 | void CalendarView::printPreview() | 3318 | void CalendarView::printPreview() |
3318 | { | 3319 | { |
3319 | #ifndef KORG_NOPRINTER | 3320 | #ifndef KORG_NOPRINTER |
3320 | kdDebug() << "CalendarView::printPreview()" << endl; | 3321 | kdDebug() << "CalendarView::printPreview()" << endl; |
3321 | 3322 | ||
3322 | createPrinter(); | 3323 | createPrinter(); |
3323 | 3324 | ||
3324 | DateList tmpDateList = mNavigator->selectedDates(); | 3325 | DateList tmpDateList = mNavigator->selectedDates(); |
3325 | 3326 | ||
3326 | mViewManager->currentView()->printPreview(mCalPrinter,tmpDateList.first(), | 3327 | mViewManager->currentView()->printPreview(mCalPrinter,tmpDateList.first(), |
3327 | tmpDateList.last()); | 3328 | tmpDateList.last()); |
3328 | #endif | 3329 | #endif |
3329 | } | 3330 | } |
3330 | 3331 | ||
3331 | void CalendarView::exportICalendar() | 3332 | void CalendarView::exportICalendar() |
3332 | { | 3333 | { |
3333 | QString filename = KFileDialog::getSaveFileName("icalout.ics",i18n("*.ics|ICalendars"),this); | 3334 | QString filename = KFileDialog::getSaveFileName("icalout.ics",i18n("*.ics|ICalendars"),this); |
3334 | 3335 | ||
3335 | // Force correct extension | 3336 | // Force correct extension |
3336 | if (filename.right(4) != ".ics") filename += ".ics"; | 3337 | if (filename.right(4) != ".ics") filename += ".ics"; |
3337 | 3338 | ||
3338 | FileStorage storage( mCalendar, filename, new ICalFormat() ); | 3339 | FileStorage storage( mCalendar, filename, new ICalFormat() ); |
3339 | storage.save(); | 3340 | storage.save(); |
3340 | } | 3341 | } |
3341 | 3342 | ||
3342 | bool CalendarView::exportVCalendar( QString filename ) | 3343 | bool CalendarView::exportVCalendar( QString filename ) |
3343 | { | 3344 | { |
3344 | if (mCalendar->journals().count() > 0) { | 3345 | if (mCalendar->journals().count() > 0) { |
3345 | int result = KMessageBox::warningContinueCancel(this, | 3346 | int result = KMessageBox::warningContinueCancel(this, |
3346 | i18n("The journal entries can not be\nexported to a vCalendar file."), | 3347 | i18n("The journal entries can not be\nexported to a vCalendar file."), |
3347 | i18n("Data Loss Warning"),i18n("Proceed"),i18n("Cancel"), | 3348 | i18n("Data Loss Warning"),i18n("Proceed"),i18n("Cancel"), |
3348 | true); | 3349 | true); |
3349 | if (result != KMessageBox::Continue) return false; | 3350 | if (result != KMessageBox::Continue) return false; |
3350 | } | 3351 | } |
3351 | 3352 | ||
3352 | //QString filename = KFileDialog::getSaveFileName("vcalout.vcs",i18n("*.vcs|VCalendars"),this); | 3353 | //QString filename = KFileDialog::getSaveFileName("vcalout.vcs",i18n("*.vcs|VCalendars"),this); |
3353 | 3354 | ||
3354 | // Force correct extension | 3355 | // Force correct extension |
3355 | if (filename.right(4) != ".vcs") filename += ".vcs"; | 3356 | if (filename.right(4) != ".vcs") filename += ".vcs"; |
3356 | 3357 | ||
3357 | FileStorage storage( mCalendar, filename, new VCalFormat ); | 3358 | FileStorage storage( mCalendar, filename, new VCalFormat ); |
3358 | return storage.save(); | 3359 | return storage.save(); |
3359 | 3360 | ||
3360 | } | 3361 | } |
3361 | 3362 | ||
3362 | void CalendarView::eventUpdated(Incidence *) | 3363 | void CalendarView::eventUpdated(Incidence *) |
3363 | { | 3364 | { |
3364 | setModified(); | 3365 | setModified(); |
3365 | // Don't call updateView here. The code, which has caused the update of the | 3366 | // Don't call updateView here. The code, which has caused the update of the |
3366 | // event is responsible for updating the view. | 3367 | // event is responsible for updating the view. |
3367 | // updateView(); | 3368 | // updateView(); |
3368 | } | 3369 | } |
3369 | 3370 | ||
3370 | void CalendarView::adaptNavigationUnits() | 3371 | void CalendarView::adaptNavigationUnits() |
3371 | { | 3372 | { |
3372 | if (mViewManager->currentView()->isEventView()) { | 3373 | if (mViewManager->currentView()->isEventView()) { |
3373 | int days = mViewManager->currentView()->currentDateCount(); | 3374 | int days = mViewManager->currentView()->currentDateCount(); |
3374 | if (days == 1) { | 3375 | if (days == 1) { |
3375 | emit changeNavStringPrev(i18n("&Previous Day")); | 3376 | emit changeNavStringPrev(i18n("&Previous Day")); |
3376 | emit changeNavStringNext(i18n("&Next Day")); | 3377 | emit changeNavStringNext(i18n("&Next Day")); |
3377 | } else { | 3378 | } else { |
3378 | emit changeNavStringPrev(i18n("&Previous Week")); | 3379 | emit changeNavStringPrev(i18n("&Previous Week")); |
3379 | emit changeNavStringNext(i18n("&Next Week")); | 3380 | emit changeNavStringNext(i18n("&Next Week")); |
3380 | } | 3381 | } |
3381 | } | 3382 | } |
3382 | } | 3383 | } |
3383 | 3384 | ||
3384 | void CalendarView::processMainViewSelection( Incidence *incidence ) | 3385 | void CalendarView::processMainViewSelection( Incidence *incidence ) |
3385 | { | 3386 | { |
3386 | if ( incidence ) mTodoList->clearSelection(); | 3387 | if ( incidence ) mTodoList->clearSelection(); |
3387 | processIncidenceSelection( incidence ); | 3388 | processIncidenceSelection( incidence ); |
3388 | } | 3389 | } |
3389 | 3390 | ||
3390 | void CalendarView::processTodoListSelection( Incidence *incidence ) | 3391 | void CalendarView::processTodoListSelection( Incidence *incidence ) |
3391 | { | 3392 | { |
3392 | if ( incidence && mViewManager->currentView() ) { | 3393 | if ( incidence && mViewManager->currentView() ) { |
3393 | mViewManager->currentView()->clearSelection(); | 3394 | mViewManager->currentView()->clearSelection(); |
3394 | } | 3395 | } |
3395 | processIncidenceSelection( incidence ); | 3396 | processIncidenceSelection( incidence ); |
3396 | } | 3397 | } |
3397 | 3398 | ||
3398 | void CalendarView::processIncidenceSelection( Incidence *incidence ) | 3399 | void CalendarView::processIncidenceSelection( Incidence *incidence ) |
3399 | { | 3400 | { |
3400 | if ( incidence == mSelectedIncidence ) return; | 3401 | if ( incidence == mSelectedIncidence ) return; |
3401 | 3402 | ||
3402 | mSelectedIncidence = incidence; | 3403 | mSelectedIncidence = incidence; |
3403 | 3404 | ||
3404 | emit incidenceSelected( mSelectedIncidence ); | 3405 | emit incidenceSelected( mSelectedIncidence ); |
3405 | 3406 | ||
3406 | if ( incidence && incidence->type() == "Event" ) { | 3407 | if ( incidence && incidence->type() == "Event" ) { |
3407 | Event *event = static_cast<Event *>( incidence ); | 3408 | Event *event = static_cast<Event *>( incidence ); |
3408 | if ( event->organizer() == KOPrefs::instance()->email() ) { | 3409 | if ( event->organizer() == KOPrefs::instance()->email() ) { |
3409 | emit organizerEventsSelected( true ); | 3410 | emit organizerEventsSelected( true ); |
3410 | } else { | 3411 | } else { |
3411 | emit organizerEventsSelected(false); | 3412 | emit organizerEventsSelected(false); |
3412 | } | 3413 | } |
3413 | if (event->attendeeByMails( KOPrefs::instance()->mAdditionalMails, | 3414 | if (event->attendeeByMails( KOPrefs::instance()->mAdditionalMails, |
3414 | KOPrefs::instance()->email() ) ) { | 3415 | KOPrefs::instance()->email() ) ) { |
3415 | emit groupEventsSelected( true ); | 3416 | emit groupEventsSelected( true ); |
3416 | } else { | 3417 | } else { |
3417 | emit groupEventsSelected(false); | 3418 | emit groupEventsSelected(false); |
3418 | } | 3419 | } |
3419 | return; | 3420 | return; |
3420 | } else { | 3421 | } else { |
3421 | if ( incidence && incidence->type() == "Todo" ) { | 3422 | if ( incidence && incidence->type() == "Todo" ) { |
3422 | emit todoSelected( true ); | 3423 | emit todoSelected( true ); |
3423 | Todo *event = static_cast<Todo *>( incidence ); | 3424 | Todo *event = static_cast<Todo *>( incidence ); |
3424 | if ( event->organizer() == KOPrefs::instance()->email() ) { | 3425 | if ( event->organizer() == KOPrefs::instance()->email() ) { |
3425 | emit organizerEventsSelected( true ); | 3426 | emit organizerEventsSelected( true ); |
3426 | } else { | 3427 | } else { |
3427 | emit organizerEventsSelected(false); | 3428 | emit organizerEventsSelected(false); |
3428 | } | 3429 | } |
3429 | if (event->attendeeByMails( KOPrefs::instance()->mAdditionalMails, | 3430 | if (event->attendeeByMails( KOPrefs::instance()->mAdditionalMails, |
3430 | KOPrefs::instance()->email() ) ) { | 3431 | KOPrefs::instance()->email() ) ) { |
3431 | emit groupEventsSelected( true ); | 3432 | emit groupEventsSelected( true ); |
3432 | } else { | 3433 | } else { |
3433 | emit groupEventsSelected(false); | 3434 | emit groupEventsSelected(false); |
3434 | } | 3435 | } |
3435 | return; | 3436 | return; |
3436 | } else { | 3437 | } else { |
3437 | emit todoSelected( false ); | 3438 | emit todoSelected( false ); |
3438 | emit organizerEventsSelected(false); | 3439 | emit organizerEventsSelected(false); |
3439 | emit groupEventsSelected(false); | 3440 | emit groupEventsSelected(false); |
3440 | } | 3441 | } |
3441 | return; | 3442 | return; |
3442 | } | 3443 | } |
3443 | 3444 | ||
3444 | /* if ( incidence && incidence->type() == "Todo" ) { | 3445 | /* if ( incidence && incidence->type() == "Todo" ) { |
3445 | emit todoSelected( true ); | 3446 | emit todoSelected( true ); |
3446 | } else { | 3447 | } else { |
3447 | emit todoSelected( false ); | 3448 | emit todoSelected( false ); |
3448 | }*/ | 3449 | }*/ |
3449 | } | 3450 | } |
3450 | 3451 | ||
3451 | 3452 | ||
3452 | void CalendarView::checkClipboard() | 3453 | void CalendarView::checkClipboard() |
3453 | { | 3454 | { |
3454 | #ifndef KORG_NODND | 3455 | #ifndef KORG_NODND |
3455 | if (ICalDrag::canDecode(QApplication::clipboard()->data())) { | 3456 | if (ICalDrag::canDecode(QApplication::clipboard()->data())) { |
3456 | emit pasteEnabled(true); | 3457 | emit pasteEnabled(true); |
3457 | } else { | 3458 | } else { |
3458 | emit pasteEnabled(false); | 3459 | emit pasteEnabled(false); |
3459 | } | 3460 | } |
3460 | #endif | 3461 | #endif |
3461 | } | 3462 | } |
3462 | 3463 | ||
3463 | void CalendarView::showDates(const DateList &selectedDates) | 3464 | void CalendarView::showDates(const DateList &selectedDates) |
3464 | { | 3465 | { |
3465 | // kdDebug() << "CalendarView::selectDates()" << endl; | 3466 | // kdDebug() << "CalendarView::selectDates()" << endl; |
3466 | 3467 | ||
3467 | if ( mViewManager->currentView() ) { | 3468 | if ( mViewManager->currentView() ) { |
3468 | updateView( selectedDates.first(), selectedDates.last() ); | 3469 | updateView( selectedDates.first(), selectedDates.last() ); |
3469 | } else { | 3470 | } else { |
3470 | mViewManager->showAgendaView(); | 3471 | mViewManager->showAgendaView(); |
3471 | } | 3472 | } |
3472 | 3473 | ||
3473 | QString selDates; | 3474 | QString selDates; |
3474 | selDates = KGlobal::locale()->formatDate( selectedDates.first(), true); | 3475 | selDates = KGlobal::locale()->formatDate( selectedDates.first(), true); |
3475 | if (selectedDates.first() < selectedDates.last() ) | 3476 | if (selectedDates.first() < selectedDates.last() ) |
3476 | selDates += " - " + KGlobal::locale()->formatDate( selectedDates.last(),true); | 3477 | selDates += " - " + KGlobal::locale()->formatDate( selectedDates.last(),true); |
3477 | topLevelWidget()->setCaption( i18n("Dates: ") + selDates ); | 3478 | topLevelWidget()->setCaption( i18n("Dates: ") + selDates ); |
3478 | 3479 | ||
3479 | } | 3480 | } |
3480 | 3481 | ||
3481 | QPtrList<CalFilter> CalendarView::filters() | 3482 | QPtrList<CalFilter> CalendarView::filters() |
3482 | { | 3483 | { |
3483 | return mFilters; | 3484 | return mFilters; |
3484 | 3485 | ||
3485 | } | 3486 | } |
3486 | void CalendarView::editFilters() | 3487 | void CalendarView::editFilters() |
3487 | { | 3488 | { |
3488 | // kdDebug() << "CalendarView::editFilters()" << endl; | 3489 | // kdDebug() << "CalendarView::editFilters()" << endl; |
3489 | 3490 | ||
3490 | CalFilter *filter = mFilters.first(); | 3491 | CalFilter *filter = mFilters.first(); |
3491 | while(filter) { | 3492 | while(filter) { |
3492 | kdDebug() << " Filter: " << filter->name() << endl; | 3493 | kdDebug() << " Filter: " << filter->name() << endl; |
3493 | filter = mFilters.next(); | 3494 | filter = mFilters.next(); |
3494 | } | 3495 | } |
3495 | 3496 | ||
3496 | mDialogManager->showFilterEditDialog(&mFilters); | 3497 | mDialogManager->showFilterEditDialog(&mFilters); |
3497 | } | 3498 | } |
3498 | void CalendarView::toggleFilter() | 3499 | void CalendarView::toggleFilter() |
3499 | { | 3500 | { |
3500 | showFilter(! mFilterView->isVisible()); | 3501 | showFilter(! mFilterView->isVisible()); |
3501 | } | 3502 | } |
3502 | 3503 | ||
3503 | KOFilterView *CalendarView::filterView() | 3504 | KOFilterView *CalendarView::filterView() |
3504 | { | 3505 | { |
3505 | return mFilterView; | 3506 | return mFilterView; |
3506 | } | 3507 | } |
3507 | void CalendarView::selectFilter( int fil ) | 3508 | void CalendarView::selectFilter( int fil ) |
3508 | { | 3509 | { |
3509 | mFilterView->setSelectedFilter( fil ); | 3510 | mFilterView->setSelectedFilter( fil ); |
3510 | } | 3511 | } |
3511 | void CalendarView::showFilter(bool visible) | 3512 | void CalendarView::showFilter(bool visible) |
3512 | { | 3513 | { |
3513 | if (visible) mFilterView->show(); | 3514 | if (visible) mFilterView->show(); |
3514 | else mFilterView->hide(); | 3515 | else mFilterView->hide(); |
3515 | } | 3516 | } |
3516 | void CalendarView::toggleFilerEnabled( ) | 3517 | void CalendarView::toggleFilerEnabled( ) |
3517 | { | 3518 | { |
3518 | mFilterView->setFiltersEnabled ( !mFilterView->filtersEnabled() ); | 3519 | mFilterView->setFiltersEnabled ( !mFilterView->filtersEnabled() ); |
3519 | if ( !mFilterView->filtersEnabled() ) | 3520 | if ( !mFilterView->filtersEnabled() ) |
3520 | topLevelWidget()->setCaption( i18n("Filter disabled ") ); | 3521 | topLevelWidget()->setCaption( i18n("Filter disabled ") ); |
3521 | 3522 | ||
3522 | } | 3523 | } |
3523 | void CalendarView::updateFilter() | 3524 | void CalendarView::updateFilter() |
3524 | { | 3525 | { |
3525 | CalFilter *filter = mFilterView->selectedFilter(); | 3526 | CalFilter *filter = mFilterView->selectedFilter(); |
3526 | if (filter) { | 3527 | if (filter) { |
3527 | if (mFilterView->filtersEnabled()) { | 3528 | if (mFilterView->filtersEnabled()) { |
3528 | topLevelWidget()->setCaption( i18n("Filter selected: ")+filter->name() ); | 3529 | topLevelWidget()->setCaption( i18n("Filter selected: ")+filter->name() ); |
3529 | filter->setEnabled(true); | 3530 | filter->setEnabled(true); |
3530 | } | 3531 | } |
3531 | else filter->setEnabled(false); | 3532 | else filter->setEnabled(false); |
3532 | mCalendar->setFilter(filter); | 3533 | mCalendar->setFilter(filter); |
3533 | updateView(); | 3534 | updateView(); |
3534 | } | 3535 | } |
3535 | } | 3536 | } |
3536 | 3537 | ||
3537 | void CalendarView::filterEdited() | 3538 | void CalendarView::filterEdited() |
3538 | { | 3539 | { |
3539 | mFilterView->updateFilters(); | 3540 | mFilterView->updateFilters(); |
3540 | updateFilter(); | 3541 | updateFilter(); |
3541 | writeSettings(); | 3542 | writeSettings(); |
3542 | } | 3543 | } |
3543 | 3544 | ||
3544 | 3545 | ||
3545 | void CalendarView::takeOverEvent() | 3546 | void CalendarView::takeOverEvent() |
3546 | { | 3547 | { |
3547 | Incidence *incidence = currentSelection(); | 3548 | Incidence *incidence = currentSelection(); |
3548 | 3549 | ||
3549 | if (!incidence) return; | 3550 | if (!incidence) return; |
3550 | 3551 | ||
3551 | incidence->setOrganizer(KOPrefs::instance()->email()); | 3552 | incidence->setOrganizer(KOPrefs::instance()->email()); |
3552 | incidence->recreate(); | 3553 | incidence->recreate(); |
3553 | incidence->setReadOnly(false); | 3554 | incidence->setReadOnly(false); |
3554 | 3555 | ||
3555 | updateView(); | 3556 | updateView(); |
3556 | } | 3557 | } |
3557 | 3558 | ||
3558 | void CalendarView::takeOverCalendar() | 3559 | void CalendarView::takeOverCalendar() |
3559 | { | 3560 | { |
3560 | // TODO: Create Calendar::allIncidences() function and use it here | 3561 | // TODO: Create Calendar::allIncidences() function and use it here |
3561 | 3562 | ||
3562 | QPtrList<Event> events = mCalendar->events(); | 3563 | QPtrList<Event> events = mCalendar->events(); |
3563 | for(uint i=0; i<events.count(); ++i) { | 3564 | for(uint i=0; i<events.count(); ++i) { |
3564 | events.at(i)->setOrganizer(KOPrefs::instance()->email()); | 3565 | events.at(i)->setOrganizer(KOPrefs::instance()->email()); |
3565 | events.at(i)->recreate(); | 3566 | events.at(i)->recreate(); |
3566 | events.at(i)->setReadOnly(false); | 3567 | events.at(i)->setReadOnly(false); |
3567 | } | 3568 | } |
3568 | 3569 | ||
3569 | QPtrList<Todo> todos = mCalendar->todos(); | 3570 | QPtrList<Todo> todos = mCalendar->todos(); |
3570 | for(uint i=0; i<todos.count(); ++i) { | 3571 | for(uint i=0; i<todos.count(); ++i) { |
3571 | todos.at(i)->setOrganizer(KOPrefs::instance()->email()); | 3572 | todos.at(i)->setOrganizer(KOPrefs::instance()->email()); |
3572 | todos.at(i)->recreate(); | 3573 | todos.at(i)->recreate(); |
3573 | todos.at(i)->setReadOnly(false); | 3574 | todos.at(i)->setReadOnly(false); |
3574 | } | 3575 | } |
3575 | 3576 | ||
3576 | QPtrList<Journal> journals = mCalendar->journals(); | 3577 | QPtrList<Journal> journals = mCalendar->journals(); |
3577 | for(uint i=0; i<journals.count(); ++i) { | 3578 | for(uint i=0; i<journals.count(); ++i) { |
3578 | journals.at(i)->setOrganizer(KOPrefs::instance()->email()); | 3579 | journals.at(i)->setOrganizer(KOPrefs::instance()->email()); |
3579 | journals.at(i)->recreate(); | 3580 | journals.at(i)->recreate(); |
3580 | journals.at(i)->setReadOnly(false); | 3581 | journals.at(i)->setReadOnly(false); |
3581 | } | 3582 | } |
3582 | 3583 | ||
3583 | updateView(); | 3584 | updateView(); |
3584 | } | 3585 | } |
3585 | 3586 | ||
3586 | void CalendarView::showIntro() | 3587 | void CalendarView::showIntro() |
3587 | { | 3588 | { |
3588 | kdDebug() << "To be implemented." << endl; | 3589 | kdDebug() << "To be implemented." << endl; |
3589 | } | 3590 | } |
3590 | 3591 | ||
3591 | QWidgetStack *CalendarView::viewStack() | 3592 | QWidgetStack *CalendarView::viewStack() |
3592 | { | 3593 | { |
3593 | return mRightFrame; | 3594 | return mRightFrame; |
3594 | } | 3595 | } |
3595 | 3596 | ||
3596 | QWidget *CalendarView::leftFrame() | 3597 | QWidget *CalendarView::leftFrame() |
3597 | { | 3598 | { |
3598 | return mLeftFrame; | 3599 | return mLeftFrame; |
3599 | } | 3600 | } |
3600 | 3601 | ||
3601 | DateNavigator *CalendarView::dateNavigator() | 3602 | DateNavigator *CalendarView::dateNavigator() |
3602 | { | 3603 | { |
3603 | return mNavigator; | 3604 | return mNavigator; |
3604 | } | 3605 | } |
3605 | 3606 | ||
3606 | KDateNavigator* CalendarView::dateNavigatorWidget() | 3607 | KDateNavigator* CalendarView::dateNavigatorWidget() |
3607 | { | 3608 | { |
3608 | return mDateNavigator; | 3609 | return mDateNavigator; |
3609 | } | 3610 | } |
3610 | void CalendarView::toggleDateNavigatorWidget() | 3611 | void CalendarView::toggleDateNavigatorWidget() |
3611 | { | 3612 | { |
3612 | if (mDateNavigator->isVisible()) | 3613 | KOPrefs::instance()->mShowDateNavigator = !KOPrefs::instance()->mShowDateNavigator ; |
3614 | if (!KOPrefs::instance()->mShowDateNavigator ) | ||
3613 | mDateNavigator->hide(); | 3615 | mDateNavigator->hide(); |
3614 | else | 3616 | else |
3615 | mDateNavigator->show(); | 3617 | mDateNavigator->show(); |
3616 | } | 3618 | } |
3617 | void CalendarView::addView(KOrg::BaseView *view) | 3619 | void CalendarView::addView(KOrg::BaseView *view) |
3618 | { | 3620 | { |
3619 | mViewManager->addView(view); | 3621 | mViewManager->addView(view); |
3620 | } | 3622 | } |
3621 | 3623 | ||
3622 | void CalendarView::showView(KOrg::BaseView *view) | 3624 | void CalendarView::showView(KOrg::BaseView *view) |
3623 | { | 3625 | { |
3624 | mViewManager->showView(view, mLeftFrame->isVisible()); | 3626 | mViewManager->showView(view, mLeftFrame->isVisible()); |
3625 | } | 3627 | } |
3626 | 3628 | ||
3627 | Incidence *CalendarView::currentSelection() | 3629 | Incidence *CalendarView::currentSelection() |
3628 | { | 3630 | { |
3629 | return mViewManager->currentSelection(); | 3631 | return mViewManager->currentSelection(); |
3630 | } | 3632 | } |
3631 | void CalendarView::toggleAllDaySize() | 3633 | void CalendarView::toggleAllDaySize() |
3632 | { | 3634 | { |
3633 | /* | 3635 | /* |
3634 | if ( KOPrefs::instance()->mAllDaySize > 47 ) | 3636 | if ( KOPrefs::instance()->mAllDaySize > 47 ) |
3635 | KOPrefs::instance()->mAllDaySize = KOPrefs::instance()->mAllDaySize /2; | 3637 | KOPrefs::instance()->mAllDaySize = KOPrefs::instance()->mAllDaySize /2; |
3636 | else | 3638 | else |
3637 | KOPrefs::instance()->mAllDaySize = KOPrefs::instance()->mAllDaySize *2; | 3639 | KOPrefs::instance()->mAllDaySize = KOPrefs::instance()->mAllDaySize *2; |
3638 | */ | 3640 | */ |
3639 | viewManager()->agendaView()->toggleAllDay(); | 3641 | viewManager()->agendaView()->toggleAllDay(); |
3640 | } | 3642 | } |
3641 | void CalendarView::toggleExpand() | 3643 | void CalendarView::toggleExpand() |
3642 | { | 3644 | { |
3643 | // if ( mLeftFrame->isHidden() ) { | 3645 | // if ( mLeftFrame->isHidden() ) { |
3644 | // mLeftFrame->show(); | 3646 | // mLeftFrame->show(); |
3645 | // emit calendarViewExpanded( false ); | 3647 | // emit calendarViewExpanded( false ); |
3646 | // } else { | 3648 | // } else { |
3647 | // mLeftFrame->hide(); | 3649 | // mLeftFrame->hide(); |
3648 | // emit calendarViewExpanded( true ); | 3650 | // emit calendarViewExpanded( true ); |
3649 | // } | 3651 | // } |
3650 | 3652 | ||
3651 | globalFlagBlockAgenda = 1; | 3653 | globalFlagBlockAgenda = 1; |
3652 | emit calendarViewExpanded( !mLeftFrame->isHidden() ); | 3654 | emit calendarViewExpanded( !mLeftFrame->isHidden() ); |
3653 | globalFlagBlockAgenda = 5; | 3655 | globalFlagBlockAgenda = 5; |
3654 | mViewManager->raiseCurrentView( !mLeftFrame->isHidden() ); | 3656 | mViewManager->raiseCurrentView( !mLeftFrame->isHidden() ); |
3655 | //mViewManager->showView( 0, true ); | 3657 | //mViewManager->showView( 0, true ); |
3656 | } | 3658 | } |
3657 | 3659 | ||
3658 | void CalendarView::calendarModified( bool modified, Calendar * ) | 3660 | void CalendarView::calendarModified( bool modified, Calendar * ) |
3659 | { | 3661 | { |
3660 | setModified( modified ); | 3662 | setModified( modified ); |
3661 | } | 3663 | } |
3662 | 3664 | ||
3663 | Todo *CalendarView::selectedTodo() | 3665 | Todo *CalendarView::selectedTodo() |
3664 | { | 3666 | { |
3665 | Incidence *incidence = currentSelection(); | 3667 | Incidence *incidence = currentSelection(); |
3666 | if ( incidence && incidence->type() == "Todo" ) { | 3668 | if ( incidence && incidence->type() == "Todo" ) { |
3667 | return static_cast<Todo *>( incidence ); | 3669 | return static_cast<Todo *>( incidence ); |
3668 | } | 3670 | } |
3669 | 3671 | ||
3670 | incidence = mTodoList->selectedIncidences().first(); | 3672 | incidence = mTodoList->selectedIncidences().first(); |
3671 | if ( incidence && incidence->type() == "Todo" ) { | 3673 | if ( incidence && incidence->type() == "Todo" ) { |
3672 | return static_cast<Todo *>( incidence ); | 3674 | return static_cast<Todo *>( incidence ); |
3673 | } | 3675 | } |
3674 | 3676 | ||
3675 | return 0; | 3677 | return 0; |
3676 | } | 3678 | } |
3677 | 3679 | ||
3678 | void CalendarView::dialogClosing(Incidence *in) | 3680 | void CalendarView::dialogClosing(Incidence *in) |
3679 | { | 3681 | { |
3680 | // mDialogList.remove(in); | 3682 | // mDialogList.remove(in); |
3681 | } | 3683 | } |
3682 | 3684 | ||
3683 | void CalendarView::showIncidence() | 3685 | void CalendarView::showIncidence() |
3684 | { | 3686 | { |
3685 | Incidence *incidence = currentSelection(); | 3687 | Incidence *incidence = currentSelection(); |
3686 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); | 3688 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); |
3687 | if ( incidence ) { | 3689 | if ( incidence ) { |
3688 | ShowIncidenceVisitor v; | 3690 | ShowIncidenceVisitor v; |
3689 | v.act( incidence, this ); | 3691 | v.act( incidence, this ); |
3690 | } | 3692 | } |
3691 | } | 3693 | } |
3692 | void CalendarView::editIncidenceDescription() | 3694 | void CalendarView::editIncidenceDescription() |
3693 | { | 3695 | { |
3694 | mFlagEditDescription = true; | 3696 | mFlagEditDescription = true; |
3695 | editIncidence(); | 3697 | editIncidence(); |
3696 | mFlagEditDescription = false; | 3698 | mFlagEditDescription = false; |
3697 | } | 3699 | } |
3698 | void CalendarView::editIncidence() | 3700 | void CalendarView::editIncidence() |
3699 | { | 3701 | { |
3700 | // qDebug("editIncidence() "); | 3702 | // qDebug("editIncidence() "); |
3701 | Incidence *incidence = currentSelection(); | 3703 | Incidence *incidence = currentSelection(); |
3702 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); | 3704 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); |
3703 | if ( incidence ) { | 3705 | if ( incidence ) { |
3704 | EditIncidenceVisitor v; | 3706 | EditIncidenceVisitor v; |
3705 | v.act( incidence, this ); | 3707 | v.act( incidence, this ); |
3706 | } | 3708 | } |
3707 | } | 3709 | } |
3708 | 3710 | ||
3709 | void CalendarView::deleteIncidence() | 3711 | void CalendarView::deleteIncidence() |
3710 | { | 3712 | { |
3711 | Incidence *incidence = currentSelection(); | 3713 | Incidence *incidence = currentSelection(); |
3712 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); | 3714 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); |
3713 | if ( incidence ) { | 3715 | if ( incidence ) { |
3714 | deleteIncidence(incidence); | 3716 | deleteIncidence(incidence); |
3715 | } | 3717 | } |
3716 | } | 3718 | } |
3717 | 3719 | ||
3718 | void CalendarView::showIncidence(Incidence *incidence) | 3720 | void CalendarView::showIncidence(Incidence *incidence) |
3719 | { | 3721 | { |
3720 | if ( incidence ) { | 3722 | if ( incidence ) { |
3721 | ShowIncidenceVisitor v; | 3723 | ShowIncidenceVisitor v; |
3722 | v.act( incidence, this ); | 3724 | v.act( incidence, this ); |
3723 | } | 3725 | } |
3724 | } | 3726 | } |
3725 | 3727 | ||
3726 | void CalendarView::editIncidence(Incidence *incidence) | 3728 | void CalendarView::editIncidence(Incidence *incidence) |
3727 | { | 3729 | { |
3728 | if ( incidence ) { | 3730 | if ( incidence ) { |
3729 | 3731 | ||
3730 | EditIncidenceVisitor v; | 3732 | EditIncidenceVisitor v; |
3731 | v.act( incidence, this ); | 3733 | v.act( incidence, this ); |
3732 | 3734 | ||
3733 | } | 3735 | } |
3734 | } | 3736 | } |
3735 | 3737 | ||
3736 | void CalendarView::deleteIncidence(Incidence *incidence) | 3738 | void CalendarView::deleteIncidence(Incidence *incidence) |
3737 | { | 3739 | { |
3738 | //qDebug(" CalendarView::deleteIncidence "); | 3740 | //qDebug(" CalendarView::deleteIncidence "); |
3739 | if ( incidence ) { | 3741 | if ( incidence ) { |
3740 | DeleteIncidenceVisitor v; | 3742 | DeleteIncidenceVisitor v; |
3741 | v.act( incidence, this ); | 3743 | v.act( incidence, this ); |
3742 | } | 3744 | } |
3743 | } | 3745 | } |
3744 | 3746 | ||
3745 | 3747 | ||
3746 | void CalendarView::lookForOutgoingMessages() | 3748 | void CalendarView::lookForOutgoingMessages() |
3747 | { | 3749 | { |
3748 | OutgoingDialog *ogd = mDialogManager->outgoingDialog(); | 3750 | OutgoingDialog *ogd = mDialogManager->outgoingDialog(); |
3749 | ogd->loadMessages(); | 3751 | ogd->loadMessages(); |
3750 | } | 3752 | } |
3751 | 3753 | ||
3752 | void CalendarView::lookForIncomingMessages() | 3754 | void CalendarView::lookForIncomingMessages() |
3753 | { | 3755 | { |
3754 | IncomingDialog *icd = mDialogManager->incomingDialog(); | 3756 | IncomingDialog *icd = mDialogManager->incomingDialog(); |
3755 | icd->retrieve(); | 3757 | icd->retrieve(); |
3756 | } | 3758 | } |
3757 | 3759 | ||
3758 | bool CalendarView::removeCompletedSubTodos( Todo* t ) | 3760 | bool CalendarView::removeCompletedSubTodos( Todo* t ) |
3759 | { | 3761 | { |
3760 | bool deleteTodo = true; | 3762 | bool deleteTodo = true; |
3761 | QPtrList<Incidence> subTodos; | 3763 | QPtrList<Incidence> subTodos; |
3762 | Incidence *aTodo; | 3764 | Incidence *aTodo; |
3763 | subTodos = t->relations(); | 3765 | subTodos = t->relations(); |
3764 | for (aTodo = subTodos.first(); aTodo; aTodo = subTodos.next()) { | 3766 | for (aTodo = subTodos.first(); aTodo; aTodo = subTodos.next()) { |
3765 | if (! removeCompletedSubTodos( (Todo*) aTodo )) | 3767 | if (! removeCompletedSubTodos( (Todo*) aTodo )) |
3766 | deleteTodo = false; | 3768 | deleteTodo = false; |
3767 | } | 3769 | } |
3768 | if ( deleteTodo ) { | 3770 | if ( deleteTodo ) { |
3769 | if ( t->isCompleted() ) { | 3771 | if ( t->isCompleted() ) { |
3770 | checkExternalId( t ); | 3772 | checkExternalId( t ); |
3771 | mCalendar->deleteTodo( t ); | 3773 | mCalendar->deleteTodo( t ); |
3772 | changeTodoDisplay( t,KOGlobals::EVENTDELETED ); | 3774 | changeTodoDisplay( t,KOGlobals::EVENTDELETED ); |
3773 | } | 3775 | } |
3774 | else | 3776 | else |
3775 | deleteTodo = false; | 3777 | deleteTodo = false; |
3776 | } | 3778 | } |
3777 | return deleteTodo; | 3779 | return deleteTodo; |
3778 | 3780 | ||
3779 | } | 3781 | } |
3780 | void CalendarView::purgeCompleted() | 3782 | void CalendarView::purgeCompleted() |
3781 | { | 3783 | { |
3782 | int result = KMessageBox::warningContinueCancel(this, | 3784 | int result = KMessageBox::warningContinueCancel(this, |
3783 | i18n("Delete all\ncompleted To-Dos?"),i18n("Purge To-Dos"),i18n("Purge")); | 3785 | i18n("Delete all\ncompleted To-Dos?"),i18n("Purge To-Dos"),i18n("Purge")); |
3784 | 3786 | ||
3785 | if (result == KMessageBox::Continue) { | 3787 | if (result == KMessageBox::Continue) { |
3786 | 3788 | ||
3787 | QPtrList<Todo> todoCal; | 3789 | QPtrList<Todo> todoCal; |
3788 | QPtrList<Todo> rootTodos; | 3790 | QPtrList<Todo> rootTodos; |
3789 | //QPtrList<Incidence> rel; | 3791 | //QPtrList<Incidence> rel; |
3790 | Todo *aTodo;//, *rTodo; | 3792 | Todo *aTodo;//, *rTodo; |
3791 | Incidence *rIncidence; | 3793 | Incidence *rIncidence; |
3792 | bool childDelete = false; | 3794 | bool childDelete = false; |
3793 | bool deletedOne = true; | 3795 | bool deletedOne = true; |
3794 | todoCal = calendar()->todos(); | 3796 | todoCal = calendar()->todos(); |
3795 | for (aTodo = todoCal.first(); aTodo; aTodo = todoCal.next()) { | 3797 | for (aTodo = todoCal.first(); aTodo; aTodo = todoCal.next()) { |
3796 | if ( !aTodo->relatedTo() ) | 3798 | if ( !aTodo->relatedTo() ) |
3797 | rootTodos.append( aTodo ); | 3799 | rootTodos.append( aTodo ); |
3798 | } | 3800 | } |
3799 | for (aTodo = rootTodos.first(); aTodo; aTodo = rootTodos.next()) { | 3801 | for (aTodo = rootTodos.first(); aTodo; aTodo = rootTodos.next()) { |
3800 | removeCompletedSubTodos( aTodo ); | 3802 | removeCompletedSubTodos( aTodo ); |
3801 | } | 3803 | } |
3802 | 3804 | ||
3803 | updateView(); | 3805 | updateView(); |
3804 | } | 3806 | } |
3805 | } | 3807 | } |
3806 | 3808 | ||
3807 | void CalendarView::slotCalendarChanged() | 3809 | void CalendarView::slotCalendarChanged() |
3808 | { | 3810 | { |
3809 | ; | 3811 | ; |
3810 | } | 3812 | } |
3811 | 3813 | ||
3812 | NavigatorBar *CalendarView::navigatorBar() | 3814 | NavigatorBar *CalendarView::navigatorBar() |
3813 | { | 3815 | { |
3814 | return mNavigatorBar; | 3816 | return mNavigatorBar; |
3815 | } | 3817 | } |
3816 | 3818 | ||
3817 | 3819 | ||
3818 | 3820 | ||
3819 | void CalendarView::keyPressEvent ( QKeyEvent *e) | 3821 | void CalendarView::keyPressEvent ( QKeyEvent *e) |
3820 | { | 3822 | { |
3821 | //qDebug(" alendarView::keyPressEvent "); | 3823 | //qDebug(" alendarView::keyPressEvent "); |
3822 | e->ignore(); | 3824 | e->ignore(); |
3823 | } | 3825 | } |
3824 | 3826 | ||
3825 | 3827 | ||
3826 | bool CalendarView::sync(KSyncManager* manager, QString filename, int mode) | 3828 | bool CalendarView::sync(KSyncManager* manager, QString filename, int mode) |
3827 | { | 3829 | { |
3828 | // mSyncManager = manager; | 3830 | // mSyncManager = manager; |
3829 | if ( filename == QDir::homeDirPath ()+"/.kdecalendardump.ics" ) { | 3831 | if ( filename == QDir::homeDirPath ()+"/.kdecalendardump.ics" ) { |
3830 | qDebug("SyncKDE request detected!"); | 3832 | qDebug("SyncKDE request detected!"); |
3831 | } | 3833 | } |
3832 | mCurrentSyncDevice = mSyncManager->getCurrentSyncDevice(); | 3834 | mCurrentSyncDevice = mSyncManager->getCurrentSyncDevice(); |
3833 | mCurrentSyncName = mSyncManager->getCurrentSyncName(); | 3835 | mCurrentSyncName = mSyncManager->getCurrentSyncName(); |
3834 | return syncCalendar( filename, mode ); | 3836 | return syncCalendar( filename, mode ); |
3835 | } | 3837 | } |
3836 | bool CalendarView::syncExternal(KSyncManager* manager, QString resource) | 3838 | bool CalendarView::syncExternal(KSyncManager* manager, QString resource) |
3837 | { | 3839 | { |
3838 | //mSyncManager = manager; | 3840 | //mSyncManager = manager; |
3839 | mCurrentSyncDevice = mSyncManager->getCurrentSyncDevice(); | 3841 | mCurrentSyncDevice = mSyncManager->getCurrentSyncDevice(); |
3840 | mCurrentSyncName = mSyncManager->getCurrentSyncName(); | 3842 | mCurrentSyncName = mSyncManager->getCurrentSyncName(); |
3841 | if ( resource == "sharp" ) | 3843 | if ( resource == "sharp" ) |
3842 | syncExternal( 0 ); | 3844 | syncExternal( 0 ); |
3843 | if ( resource == "phone" ) | 3845 | if ( resource == "phone" ) |
3844 | syncExternal( 1 ); | 3846 | syncExternal( 1 ); |
3845 | // pending setmodified | 3847 | // pending setmodified |
3846 | return true; | 3848 | return true; |
3847 | } | 3849 | } |
3848 | void CalendarView::setSyncManager(KSyncManager* manager) | 3850 | void CalendarView::setSyncManager(KSyncManager* manager) |
3849 | { | 3851 | { |
3850 | mSyncManager = manager; | 3852 | mSyncManager = manager; |
3851 | } | 3853 | } |
3852 | 3854 | ||
3853 | void CalendarView::removeSyncInfo( QString syncProfile) | 3855 | void CalendarView::removeSyncInfo( QString syncProfile) |
3854 | { | 3856 | { |
3855 | qDebug("removeSyncInfo for profile %s ", syncProfile.latin1()); | 3857 | qDebug("removeSyncInfo for profile %s ", syncProfile.latin1()); |
3856 | mCalendar->removeSyncInfo( syncProfile ); | 3858 | mCalendar->removeSyncInfo( syncProfile ); |
3857 | 3859 | ||
3858 | } | 3860 | } |
3859 | 3861 | ||
3860 | void CalendarView::undo_delete() | 3862 | void CalendarView::undo_delete() |
3861 | { | 3863 | { |
3862 | //qDebug("undo_delete() "); | 3864 | //qDebug("undo_delete() "); |
3863 | Incidence* undo = mCalendar->undoIncidence(); | 3865 | Incidence* undo = mCalendar->undoIncidence(); |
3864 | if ( !undo ) { | 3866 | if ( !undo ) { |
3865 | KMessageBox::sorry(this,i18n("There is nothing to undo!"), | 3867 | KMessageBox::sorry(this,i18n("There is nothing to undo!"), |
3866 | i18n("KO/Pi")); | 3868 | i18n("KO/Pi")); |
3867 | return; | 3869 | return; |
3868 | } | 3870 | } |
3869 | if ( KMessageBox::Continue ==KMessageBox::warningContinueCancel(this,undo->summary().left(25) + | 3871 | if ( KMessageBox::Continue ==KMessageBox::warningContinueCancel(this,undo->summary().left(25) + |
3870 | i18n("\nAre you sure you want\nto restore this?"), | 3872 | i18n("\nAre you sure you want\nto restore this?"), |
3871 | i18n("KO/Pi Confirmation"),i18n("Restore"))) { | 3873 | i18n("KO/Pi Confirmation"),i18n("Restore"))) { |
3872 | mCalendar->undoDeleteIncidence(); | 3874 | mCalendar->undoDeleteIncidence(); |
3873 | updateView(); | 3875 | updateView(); |
3874 | } | 3876 | } |
3875 | } | 3877 | } |
diff --git a/korganizer/koprefs.cpp b/korganizer/koprefs.cpp index 0a767b6..4b26058 100644 --- a/korganizer/koprefs.cpp +++ b/korganizer/koprefs.cpp | |||
@@ -1,470 +1,471 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KOrganizer. | 2 | This file is part of KOrganizer. |
3 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> | 3 | Copyright (c) 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 <time.h> | 24 | #include <time.h> |
25 | #ifndef _WIN32_ | 25 | #ifndef _WIN32_ |
26 | #include <unistd.h> | 26 | #include <unistd.h> |
27 | #endif | 27 | #endif |
28 | #include <qdir.h> | 28 | #include <qdir.h> |
29 | #include <qtextstream.h> | 29 | #include <qtextstream.h> |
30 | #include <qtextcodec.h> | 30 | #include <qtextcodec.h> |
31 | #include <qstring.h> | 31 | #include <qstring.h> |
32 | #include <qregexp.h> | 32 | #include <qregexp.h> |
33 | #include <qfont.h> | 33 | #include <qfont.h> |
34 | #include <qcolor.h> | 34 | #include <qcolor.h> |
35 | #include <qstringlist.h> | 35 | #include <qstringlist.h> |
36 | #include <stdlib.h> | 36 | #include <stdlib.h> |
37 | 37 | ||
38 | #include <kglobal.h> | 38 | #include <kglobal.h> |
39 | #include <kconfig.h> | 39 | #include <kconfig.h> |
40 | #include <klocale.h> | 40 | #include <klocale.h> |
41 | #include <kdebug.h> | 41 | #include <kdebug.h> |
42 | #include <kemailsettings.h> | 42 | #include <kemailsettings.h> |
43 | #include <kstaticdeleter.h> | 43 | #include <kstaticdeleter.h> |
44 | #include <libkdepim/kpimglobalprefs.h> | 44 | #include <libkdepim/kpimglobalprefs.h> |
45 | 45 | ||
46 | #include "koprefs.h" | 46 | #include "koprefs.h" |
47 | #include "mainwindow.h" | 47 | #include "mainwindow.h" |
48 | 48 | ||
49 | KOPrefs *KOPrefs::mInstance = 0; | 49 | KOPrefs *KOPrefs::mInstance = 0; |
50 | static KStaticDeleter<KOPrefs> insd; | 50 | static KStaticDeleter<KOPrefs> insd; |
51 | 51 | ||
52 | KOPrefs::KOPrefs() : | 52 | KOPrefs::KOPrefs() : |
53 | KPimPrefs("korganizerrc") | 53 | KPimPrefs("korganizerrc") |
54 | { | 54 | { |
55 | mCategoryColors.setAutoDelete(true); | 55 | mCategoryColors.setAutoDelete(true); |
56 | fillMailDefaults(); | 56 | fillMailDefaults(); |
57 | mDefaultCategoryColor = QColor(175,210,255);//196,196,196); | 57 | mDefaultCategoryColor = QColor(175,210,255);//196,196,196); |
58 | QColor defaultHolidayColor = QColor(255,0,0); | 58 | QColor defaultHolidayColor = QColor(255,0,0); |
59 | QColor defaultHighlightColor = QColor(129,112,255);//64,64,255); | 59 | QColor defaultHighlightColor = QColor(129,112,255);//64,64,255); |
60 | QColor defaultAgendaBgColor = QColor(239,241,169);//128,128,128); | 60 | QColor defaultAgendaBgColor = QColor(239,241,169);//128,128,128); |
61 | QColor defaultWorkingHoursColor = QColor(170,223,150);//160,160,160); | 61 | QColor defaultWorkingHoursColor = QColor(170,223,150);//160,160,160); |
62 | QColor defaultTodoDueTodayColor = QColor(255,220,100); | 62 | QColor defaultTodoDueTodayColor = QColor(255,220,100); |
63 | QColor defaultTodoOverdueColor = QColor(255,153,125); | 63 | QColor defaultTodoOverdueColor = QColor(255,153,125); |
64 | 64 | ||
65 | mTimeBarFont = QFont("helvetica",10);//,QFont::Bold); | 65 | mTimeBarFont = QFont("helvetica",10);//,QFont::Bold); |
66 | mDefaultViewFont = QFont("helvetica",10); | 66 | mDefaultViewFont = QFont("helvetica",10); |
67 | mDefaultMonthViewFont = QFont("helvetica",8); | 67 | mDefaultMonthViewFont = QFont("helvetica",8); |
68 | mMarcusBainsFont= QFont("helvetica",10); | 68 | mMarcusBainsFont= QFont("helvetica",10); |
69 | mDateNavigatorFont= QFont("helvetica",10, QFont::Bold); | 69 | mDateNavigatorFont= QFont("helvetica",10, QFont::Bold); |
70 | mEditBoxFont = QFont("helvetica",12); | 70 | mEditBoxFont = QFont("helvetica",12); |
71 | mJornalViewFont = QFont("helvetica",12); | 71 | mJornalViewFont = QFont("helvetica",12); |
72 | 72 | ||
73 | KPrefs::setCurrentGroup("General"); | 73 | KPrefs::setCurrentGroup("General"); |
74 | 74 | ||
75 | 75 | ||
76 | addItemBool("Enable Group Scheduling",&mEnableGroupScheduling,false); | 76 | addItemBool("Enable Group Scheduling",&mEnableGroupScheduling,false); |
77 | 77 | ||
78 | addItemBool("ShowIconNewTodo",&mShowIconNewTodo,true); | 78 | addItemBool("ShowIconNewTodo",&mShowIconNewTodo,true); |
79 | addItemBool("ShowIconNewEvent",&mShowIconNewEvent,true); | 79 | addItemBool("ShowIconNewEvent",&mShowIconNewEvent,true); |
80 | addItemBool("ShowIconSearch",&mShowIconSearch,true); | 80 | addItemBool("ShowIconSearch",&mShowIconSearch,true); |
81 | addItemBool("ShowIconList",&mShowIconList,true); | 81 | addItemBool("ShowIconList",&mShowIconList,true); |
82 | addItemBool("ShowIconDay1",&mShowIconDay1,true); | 82 | addItemBool("ShowIconDay1",&mShowIconDay1,true); |
83 | addItemBool("ShowIconDay5",&mShowIconDay5,true); | 83 | addItemBool("ShowIconDay5",&mShowIconDay5,true); |
84 | addItemBool("ShowIconDay7",&mShowIconDay7,true); | 84 | addItemBool("ShowIconDay7",&mShowIconDay7,true); |
85 | addItemBool("ShowIconMonth",&mShowIconMonth,true); | 85 | addItemBool("ShowIconMonth",&mShowIconMonth,true); |
86 | addItemBool("ShowIconTodoview",&mShowIconTodoview,true); | 86 | addItemBool("ShowIconTodoview",&mShowIconTodoview,true); |
87 | addItemBool("ShowIconBackFast",&mShowIconBackFast,true); | 87 | addItemBool("ShowIconBackFast",&mShowIconBackFast,true); |
88 | addItemBool("ShowIconBack",&mShowIconBack,true); | 88 | addItemBool("ShowIconBack",&mShowIconBack,true); |
89 | addItemBool("ShowIconToday",&mShowIconToday,true); | 89 | addItemBool("ShowIconToday",&mShowIconToday,true); |
90 | addItemBool("ShowIconForward",&mShowIconForward,true); | 90 | addItemBool("ShowIconForward",&mShowIconForward,true); |
91 | addItemBool("ShowIconForwardFast",&mShowIconForwardFast,true); | 91 | addItemBool("ShowIconForwardFast",&mShowIconForwardFast,true); |
92 | addItemBool("ShowIconWhatsThis",&mShowIconWhatsThis,true); | 92 | addItemBool("ShowIconWhatsThis",&mShowIconWhatsThis,true); |
93 | addItemBool("ShowIconNextDays",&mShowIconNextDays,true); | 93 | addItemBool("ShowIconNextDays",&mShowIconNextDays,true); |
94 | addItemBool("ShowIconNext",&mShowIconNext,true); | 94 | addItemBool("ShowIconNext",&mShowIconNext,true); |
95 | addItemBool("ShowIconJournal",&mShowIconJournal,true); | 95 | addItemBool("ShowIconJournal",&mShowIconJournal,true); |
96 | addItemBool("ShowIconStretch",&mShowIconStretch,true); | 96 | addItemBool("ShowIconStretch",&mShowIconStretch,true); |
97 | addItemInt("LastLoadedLanguage",&mOldLanguage,0); | 97 | addItemInt("LastLoadedLanguage",&mOldLanguage,0); |
98 | 98 | ||
99 | addItemBool("AskForQuit",&mAskForQuit,false); | 99 | addItemBool("AskForQuit",&mAskForQuit,false); |
100 | 100 | ||
101 | #ifndef DESKTOP_VERSION | 101 | #ifndef DESKTOP_VERSION |
102 | addItemBool("ShowFullMenu",&mShowFullMenu,false); | 102 | addItemBool("ShowFullMenu",&mShowFullMenu,false); |
103 | #else | 103 | #else |
104 | addItemBool("ShowFullMenu",&mShowFullMenu,true); | 104 | addItemBool("ShowFullMenu",&mShowFullMenu,true); |
105 | #endif | 105 | #endif |
106 | addItemBool("ToolBarHor",&mToolBarHor, true ); | 106 | addItemBool("ToolBarHor",&mToolBarHor, true ); |
107 | addItemBool("ToolBarUp",&mToolBarUp, false ); | 107 | addItemBool("ToolBarUp",&mToolBarUp, false ); |
108 | addItemBool("ToolBarMiniIcons",&mToolBarMiniIcons, false ); | 108 | addItemBool("ToolBarMiniIcons",&mToolBarMiniIcons, false ); |
109 | addItemInt("Whats Next Days",&mWhatsNextDays,3); | 109 | addItemInt("Whats Next Days",&mWhatsNextDays,3); |
110 | addItemInt("Whats Next Prios",&mWhatsNextPrios,1); | 110 | addItemInt("Whats Next Prios",&mWhatsNextPrios,1); |
111 | 111 | ||
112 | addItemBool("ShowTodoInAgenda",&mShowTodoInAgenda,true); | 112 | addItemBool("ShowTodoInAgenda",&mShowTodoInAgenda,true); |
113 | addItemBool("ShowTimeInAgenda",&mShowTimeInAgenda,true); | 113 | addItemBool("ShowTimeInAgenda",&mShowTimeInAgenda,true); |
114 | addItemBool("HideNonStartedTodos",&mHideNonStartedTodos,false); | 114 | addItemBool("HideNonStartedTodos",&mHideNonStartedTodos,false); |
115 | addItemBool("ShowCompletedTodo",&mShowCompletedTodo,true); | 115 | addItemBool("ShowCompletedTodo",&mShowCompletedTodo,true); |
116 | addItemInt("AllDay Size",&mAllDaySize,28); | 116 | addItemInt("AllDay Size",&mAllDaySize,28); |
117 | QString defAlarm = KGlobal::iconLoader()->iconPath()+"koalarm.wav"; | 117 | QString defAlarm = KGlobal::iconLoader()->iconPath()+"koalarm.wav"; |
118 | addItemString("DefaultAlarmFile",&mDefaultAlarmFile,defAlarm ); | 118 | addItemString("DefaultAlarmFile",&mDefaultAlarmFile,defAlarm ); |
119 | 119 | ||
120 | addItemStringList("LocationDefaults",&mLocationDefaults ); | 120 | addItemStringList("LocationDefaults",&mLocationDefaults ); |
121 | addItemStringList("EventSummary User",&mEventSummaryUser); | 121 | addItemStringList("EventSummary User",&mEventSummaryUser); |
122 | addItemStringList("TodoSummary User",&mTodoSummaryUser); | 122 | addItemStringList("TodoSummary User",&mTodoSummaryUser); |
123 | 123 | ||
124 | addItemBool("Enable Group Scheduling",&mEnableGroupScheduling,false); | 124 | addItemBool("Enable Group Scheduling",&mEnableGroupScheduling,false); |
125 | addItemBool("Enable Project View",&mEnableProjectView,false); | 125 | addItemBool("Enable Project View",&mEnableProjectView,false); |
126 | addItemBool("Auto Save",&mAutoSave,false); | 126 | addItemBool("Auto Save",&mAutoSave,false); |
127 | addItemInt("Auto Save Interval",&mAutoSaveInterval,3); | 127 | addItemInt("Auto Save Interval",&mAutoSaveInterval,3); |
128 | addItemBool("Confirm Deletes",&mConfirm,true); | 128 | addItemBool("Confirm Deletes",&mConfirm,true); |
129 | addItemString("Archive File",&mArchiveFile); | 129 | addItemString("Archive File",&mArchiveFile); |
130 | addItemString("Html Export File",&mHtmlExportFile, | 130 | addItemString("Html Export File",&mHtmlExportFile, |
131 | QDir::homeDirPath() + "/" + i18n("Default export file", "calendar.html")); | 131 | QDir::homeDirPath() + "/" + i18n("Default export file", "calendar.html")); |
132 | addItemBool("Html With Save",&mHtmlWithSave,false); | 132 | addItemBool("Html With Save",&mHtmlWithSave,false); |
133 | 133 | ||
134 | KPrefs::setCurrentGroup("Personal Settings"); | 134 | KPrefs::setCurrentGroup("Personal Settings"); |
135 | 135 | ||
136 | addItemInt("Mail Client",&mMailClient,MailClientKMail); | 136 | addItemInt("Mail Client",&mMailClient,MailClientKMail); |
137 | addItemBool("Use Control Center Email",&mEmailControlCenter,false); | 137 | addItemBool("Use Control Center Email",&mEmailControlCenter,false); |
138 | addItemBool("Bcc",&mBcc,false); | 138 | addItemBool("Bcc",&mBcc,false); |
139 | 139 | ||
140 | KPrefs::setCurrentGroup("Time & Date"); | 140 | KPrefs::setCurrentGroup("Time & Date"); |
141 | 141 | ||
142 | 142 | ||
143 | addItemInt("Default Start Time",&mStartTime,10); | 143 | addItemInt("Default Start Time",&mStartTime,10); |
144 | addItemInt("Default Duration",&mDefaultDuration,2); | 144 | addItemInt("Default Duration",&mDefaultDuration,2); |
145 | addItemInt("Default Alarm Time",&mAlarmTime,3); | 145 | addItemInt("Default Alarm Time",&mAlarmTime,3); |
146 | KPrefs::setCurrentGroup("AlarmSettings"); | 146 | KPrefs::setCurrentGroup("AlarmSettings"); |
147 | addItemInt("AlarmPlayBeeps",&mAlarmPlayBeeps,20); | 147 | addItemInt("AlarmPlayBeeps",&mAlarmPlayBeeps,20); |
148 | addItemInt("AlarmSuspendTime",&mAlarmSuspendTime,7); | 148 | addItemInt("AlarmSuspendTime",&mAlarmSuspendTime,7); |
149 | addItemInt("AlarmSuspendCount",&mAlarmSuspendCount,5); | 149 | addItemInt("AlarmSuspendCount",&mAlarmSuspendCount,5); |
150 | addItemInt("AlarmBeepInterval",&mAlarmBeepInterval,3); | 150 | addItemInt("AlarmBeepInterval",&mAlarmBeepInterval,3); |
151 | 151 | ||
152 | 152 | ||
153 | KPrefs::setCurrentGroup("Calendar"); | 153 | KPrefs::setCurrentGroup("Calendar"); |
154 | 154 | ||
155 | addItemInt("Default Calendar Format",&mDefaultFormat,FormatICalendar); | 155 | addItemInt("Default Calendar Format",&mDefaultFormat,FormatICalendar); |
156 | 156 | ||
157 | KPrefs::setCurrentGroup("Fonts"); | 157 | KPrefs::setCurrentGroup("Fonts"); |
158 | // qDebug(" KPrefs::setCurrentGroup(Fonts); "); | 158 | // qDebug(" KPrefs::setCurrentGroup(Fonts); "); |
159 | addItemFont("TimeBar Font",&mTimeBarFont); | 159 | addItemFont("TimeBar Font",&mTimeBarFont); |
160 | addItemFont("MonthView Font",&mMonthViewFont); | 160 | addItemFont("MonthView Font",&mMonthViewFont); |
161 | addItemFont("AgendaView Font",&mAgendaViewFont); | 161 | addItemFont("AgendaView Font",&mAgendaViewFont); |
162 | addItemFont("MarcusBains Font",&mMarcusBainsFont); | 162 | addItemFont("MarcusBains Font",&mMarcusBainsFont); |
163 | addItemFont("TimeLabels Font",&mTimeLabelsFont); | 163 | addItemFont("TimeLabels Font",&mTimeLabelsFont); |
164 | addItemFont("TodoView Font",&mTodoViewFont); | 164 | addItemFont("TodoView Font",&mTodoViewFont); |
165 | addItemFont("ListView Font",&mListViewFont); | 165 | addItemFont("ListView Font",&mListViewFont); |
166 | addItemFont("DateNavigator Font",&mDateNavigatorFont); | 166 | addItemFont("DateNavigator Font",&mDateNavigatorFont); |
167 | addItemFont("EditBox Font",&mEditBoxFont); | 167 | addItemFont("EditBox Font",&mEditBoxFont); |
168 | addItemFont("JournalView Font",&mJornalViewFont); | 168 | addItemFont("JournalView Font",&mJornalViewFont); |
169 | addItemFont("WhatsNextView Font",&mWhatsNextFont); | 169 | addItemFont("WhatsNextView Font",&mWhatsNextFont); |
170 | addItemFont("EventView Font",&mEventViewFont); | 170 | addItemFont("EventView Font",&mEventViewFont); |
171 | 171 | ||
172 | KPrefs::setCurrentGroup("RemoteSyncing"); | 172 | KPrefs::setCurrentGroup("RemoteSyncing"); |
173 | addItemString("ActiveSyncPort",&mActiveSyncPort,"9197" ); | 173 | addItemString("ActiveSyncPort",&mActiveSyncPort,"9197" ); |
174 | addItemString("ActiveSyncIP",&mActiveSyncIP,"192.168.0.40" ); | 174 | addItemString("ActiveSyncIP",&mActiveSyncIP,"192.168.0.40" ); |
175 | addItemBool("ShowSyncEvents",&mShowSyncEvents,false); | 175 | addItemBool("ShowSyncEvents",&mShowSyncEvents,false); |
176 | addItemInt("LastSyncTime",&mLastSyncTime,0); | 176 | addItemInt("LastSyncTime",&mLastSyncTime,0); |
177 | 177 | ||
178 | #ifdef _WIN32_ | 178 | #ifdef _WIN32_ |
179 | QString hdp= locateLocal("data","korganizer")+"\\\\"; | 179 | QString hdp= locateLocal("data","korganizer")+"\\\\"; |
180 | #else | 180 | #else |
181 | QString hdp= locateLocal("data","korganizer")+"/"; | 181 | QString hdp= locateLocal("data","korganizer")+"/"; |
182 | #endif | 182 | #endif |
183 | 183 | ||
184 | KPrefs::setCurrentGroup("LoadSaveFileNames"); | 184 | KPrefs::setCurrentGroup("LoadSaveFileNames"); |
185 | 185 | ||
186 | addItemString("LastImportFile", &mLastImportFile ,hdp +"import.ics" ); | 186 | addItemString("LastImportFile", &mLastImportFile ,hdp +"import.ics" ); |
187 | addItemString("LastVcalFile", &mLastVcalFile ,hdp +"export.vcs" ); | 187 | addItemString("LastVcalFile", &mLastVcalFile ,hdp +"export.vcs" ); |
188 | addItemString("LastSaveFile", &mLastSaveFile ,hdp +"mybackup.ics" ); | 188 | addItemString("LastSaveFile", &mLastSaveFile ,hdp +"mybackup.ics" ); |
189 | addItemString("LastLoadFile", &mLastLoadFile ,hdp +"mybackup.ics" ); | 189 | addItemString("LastLoadFile", &mLastLoadFile ,hdp +"mybackup.ics" ); |
190 | 190 | ||
191 | 191 | ||
192 | KPrefs::setCurrentGroup("Locale"); | 192 | KPrefs::setCurrentGroup("Locale"); |
193 | addItemBool("ShortDateInViewer",&mShortDateInViewer,false); | 193 | addItemBool("ShortDateInViewer",&mShortDateInViewer,false); |
194 | 194 | ||
195 | 195 | ||
196 | KPrefs::setCurrentGroup("Colors"); | 196 | KPrefs::setCurrentGroup("Colors"); |
197 | addItemColor("Holiday Color",&mHolidayColor,defaultHolidayColor); | 197 | addItemColor("Holiday Color",&mHolidayColor,defaultHolidayColor); |
198 | addItemColor("Highlight Color",&mHighlightColor,defaultHighlightColor); | 198 | addItemColor("Highlight Color",&mHighlightColor,defaultHighlightColor); |
199 | addItemColor("Event Color",&mEventColor,mDefaultCategoryColor); | 199 | addItemColor("Event Color",&mEventColor,mDefaultCategoryColor); |
200 | addItemColor("Agenda Background Color",&mAgendaBgColor,defaultAgendaBgColor); | 200 | addItemColor("Agenda Background Color",&mAgendaBgColor,defaultAgendaBgColor); |
201 | addItemColor("WorkingHours Color",&mWorkingHoursColor,defaultWorkingHoursColor); | 201 | addItemColor("WorkingHours Color",&mWorkingHoursColor,defaultWorkingHoursColor); |
202 | addItemColor("Todo due today Color",&mTodoDueTodayColor,defaultTodoDueTodayColor); | 202 | addItemColor("Todo due today Color",&mTodoDueTodayColor,defaultTodoDueTodayColor); |
203 | addItemColor("Todo overdue Color",&mTodoOverdueColor,defaultTodoOverdueColor); | 203 | addItemColor("Todo overdue Color",&mTodoOverdueColor,defaultTodoOverdueColor); |
204 | addItemColor("MonthViewEvenColor",&mMonthViewEvenColor,QColor( 160,160,255 )); | 204 | addItemColor("MonthViewEvenColor",&mMonthViewEvenColor,QColor( 160,160,255 )); |
205 | addItemColor("MonthViewOddColor",&mMonthViewOddColor,QColor( 160,255,160 )); | 205 | addItemColor("MonthViewOddColor",&mMonthViewOddColor,QColor( 160,255,160 )); |
206 | addItemColor("MonthViewHolidayColor",&mMonthViewHolidayColor,QColor( 255,160,160 )); | 206 | addItemColor("MonthViewHolidayColor",&mMonthViewHolidayColor,QColor( 255,160,160 )); |
207 | addItemBool("MonthViewUsesDayColors",&mMonthViewUsesDayColors,true); | 207 | addItemBool("MonthViewUsesDayColors",&mMonthViewUsesDayColors,true); |
208 | addItemBool("MonthViewSatSunTog",&mMonthViewSatSunTog,true); | 208 | addItemBool("MonthViewSatSunTog",&mMonthViewSatSunTog,true); |
209 | addItemBool("HightlightDateTimeEdit",&mHightlightDateTimeEdit,false); | 209 | addItemBool("HightlightDateTimeEdit",&mHightlightDateTimeEdit,false); |
210 | addItemColor("AppColor1",&mAppColor1,QColor( 130,170,255 )); | 210 | addItemColor("AppColor1",&mAppColor1,QColor( 130,170,255 )); |
211 | addItemColor("AppColor2",&mAppColor2,QColor( 174,216,255 )); | 211 | addItemColor("AppColor2",&mAppColor2,QColor( 174,216,255 )); |
212 | addItemBool("UseAppColors",&mUseAppColors,false); | 212 | addItemBool("UseAppColors",&mUseAppColors,false); |
213 | 213 | ||
214 | 214 | ||
215 | 215 | ||
216 | KPrefs::setCurrentGroup("Views"); | 216 | KPrefs::setCurrentGroup("Views"); |
217 | addItemBool("Show Date Navigator",&mShowDateNavigator,true); | ||
217 | addItemInt("Hour Size",&mHourSize,8); | 218 | addItemInt("Hour Size",&mHourSize,8); |
218 | addItemBool("Show Daily Recurrences",&mDailyRecur,true); | 219 | addItemBool("Show Daily Recurrences",&mDailyRecur,true); |
219 | addItemBool("Show Weekly Recurrences",&mWeeklyRecur,true); | 220 | addItemBool("Show Weekly Recurrences",&mWeeklyRecur,true); |
220 | addItemBool("Show Month Daily Recurrences",&mMonthDailyRecur,true); | 221 | addItemBool("Show Month Daily Recurrences",&mMonthDailyRecur,true); |
221 | addItemBool("Show Month Weekly Recurrences",&mMonthWeeklyRecur,true); | 222 | addItemBool("Show Month Weekly Recurrences",&mMonthWeeklyRecur,true); |
222 | addItemBool("ShowShortMonthName",&mMonthShowShort,false); | 223 | addItemBool("ShowShortMonthName",&mMonthShowShort,false); |
223 | addItemBool("ShowIconsInMonthCell",&mMonthShowIcons,true); | 224 | addItemBool("ShowIconsInMonthCell",&mMonthShowIcons,true); |
224 | addItemBool("Enable ToolTips",&mEnableToolTips,false); | 225 | addItemBool("Enable ToolTips",&mEnableToolTips,false); |
225 | addItemBool("Enable MonthView ScrollBars",&mEnableMonthScroll,false); | 226 | addItemBool("Enable MonthView ScrollBars",&mEnableMonthScroll,false); |
226 | addItemBool("Marcus Bains shows seconds",&mMarcusBainsShowSeconds,false); | 227 | addItemBool("Marcus Bains shows seconds",&mMarcusBainsShowSeconds,false); |
227 | addItemBool("Show Marcus Bains",&mMarcusBainsEnabled,true); | 228 | addItemBool("Show Marcus Bains",&mMarcusBainsEnabled,true); |
228 | addItemBool("EditOnDoubleClick",&mEditOnDoubleClick,true); | 229 | addItemBool("EditOnDoubleClick",&mEditOnDoubleClick,true); |
229 | addItemBool("ViewChangeHoldFullscreen",&mViewChangeHoldFullscreen,false); | 230 | addItemBool("ViewChangeHoldFullscreen",&mViewChangeHoldFullscreen,false); |
230 | addItemBool("ViewChangeHoldNonFullscreen",&mViewChangeHoldNonFullscreen,false); | 231 | addItemBool("ViewChangeHoldNonFullscreen",&mViewChangeHoldNonFullscreen,false); |
231 | addItemBool("CenterOnCurrentTime",&mCenterOnCurrentTime,false); | 232 | addItemBool("CenterOnCurrentTime",&mCenterOnCurrentTime,false); |
232 | addItemBool("SetTimeToDayStartAt",&mSetTimeToDayStartAt,true); | 233 | addItemBool("SetTimeToDayStartAt",&mSetTimeToDayStartAt,true); |
233 | addItemBool("HighlightCurrentDay",&mHighlightCurrentDay,true); | 234 | addItemBool("HighlightCurrentDay",&mHighlightCurrentDay,true); |
234 | addItemBool("WNViewShowsParents",&mWNViewShowsParents,true);; | 235 | addItemBool("WNViewShowsParents",&mWNViewShowsParents,true);; |
235 | addItemBool("WNViewShowsPast",&mWNViewShowsPast,true); | 236 | addItemBool("WNViewShowsPast",&mWNViewShowsPast,true); |
236 | addItemBool("WNViewShowLocation",&mWNViewShowLocation,false); | 237 | addItemBool("WNViewShowLocation",&mWNViewShowLocation,false); |
237 | addItemBool("UseHighlightLightColor",&mUseHighlightLightColor,false); | 238 | addItemBool("UseHighlightLightColor",&mUseHighlightLightColor,false); |
238 | addItemBool("ListViewMonthTimespan",&mListViewMonthTimespan,true); | 239 | addItemBool("ListViewMonthTimespan",&mListViewMonthTimespan,true); |
239 | addItemBool("TodoViewUsesCatColors",&mTodoViewUsesCatColors,false); | 240 | addItemBool("TodoViewUsesCatColors",&mTodoViewUsesCatColors,false); |
240 | addItemBool("TodoViewShowsPercentage",&mTodoViewShowsPercentage,false); | 241 | addItemBool("TodoViewShowsPercentage",&mTodoViewShowsPercentage,false); |
241 | addItemBool("TodoViewUsesSmallFont",&mTodoViewUsesSmallFont,false); | 242 | addItemBool("TodoViewUsesSmallFont",&mTodoViewUsesSmallFont,false); |
242 | addItemBool("TodoViewUsesForegroundColor",&mTodoViewUsesForegroundColor,false); | 243 | addItemBool("TodoViewUsesForegroundColor",&mTodoViewUsesForegroundColor,false); |
243 | addItemBool("MonthViewUsesForegroundColor",&mMonthViewUsesForegroundColor,false); | 244 | addItemBool("MonthViewUsesForegroundColor",&mMonthViewUsesForegroundColor,false); |
244 | #ifdef DESKTOP_VERSION | 245 | #ifdef DESKTOP_VERSION |
245 | addItemBool("UseInternalAlarmNotification",&mUseInternalAlarmNotification,true); | 246 | addItemBool("UseInternalAlarmNotification",&mUseInternalAlarmNotification,true); |
246 | #else | 247 | #else |
247 | addItemBool("UseInternalAlarmNotification",&mUseInternalAlarmNotification,false); | 248 | addItemBool("UseInternalAlarmNotification",&mUseInternalAlarmNotification,false); |
248 | #endif | 249 | #endif |
249 | addItemInt("Day Begins",&mDayBegins,7); | 250 | addItemInt("Day Begins",&mDayBegins,7); |
250 | addItemInt("Working Hours Start",&mWorkingHoursStart,8); | 251 | addItemInt("Working Hours Start",&mWorkingHoursStart,8); |
251 | addItemInt("Working Hours End",&mWorkingHoursEnd,17); | 252 | addItemInt("Working Hours End",&mWorkingHoursEnd,17); |
252 | addItemBool("Exclude Holidays",&mExcludeHolidays,true); | 253 | addItemBool("Exclude Holidays",&mExcludeHolidays,true); |
253 | addItemBool("Exclude Saturdays",&mExcludeSaturdays,true); | 254 | addItemBool("Exclude Saturdays",&mExcludeSaturdays,true); |
254 | 255 | ||
255 | addItemBool("Month View Uses Category Color",&mMonthViewUsesCategoryColor,false); | 256 | addItemBool("Month View Uses Category Color",&mMonthViewUsesCategoryColor,false); |
256 | addItemBool("Full View Month",&mFullViewMonth,true); | 257 | addItemBool("Full View Month",&mFullViewMonth,true); |
257 | addItemBool("Full View Todo",&mFullViewTodo,true); | 258 | addItemBool("Full View Todo",&mFullViewTodo,true); |
258 | addItemBool("Quick Todo",&mEnableQuickTodo,false); | 259 | addItemBool("Quick Todo",&mEnableQuickTodo,false); |
259 | 260 | ||
260 | addItemInt("Next X Days",&mNextXDays,3); | 261 | addItemInt("Next X Days",&mNextXDays,3); |
261 | 262 | ||
262 | KPrefs::setCurrentGroup("Printer"); | 263 | KPrefs::setCurrentGroup("Printer"); |
263 | 264 | ||
264 | KPrefs::setCurrentGroup("Layout"); | 265 | KPrefs::setCurrentGroup("Layout"); |
265 | 266 | ||
266 | addItemBool("CompactDialogs",&mCompactDialogs,false); | 267 | addItemBool("CompactDialogs",&mCompactDialogs,false); |
267 | addItemBool("VerticalScreen",&mVerticalScreen,true); | 268 | addItemBool("VerticalScreen",&mVerticalScreen,true); |
268 | 269 | ||
269 | KPrefs::setCurrentGroup("KOrganizer Plugins"); | 270 | KPrefs::setCurrentGroup("KOrganizer Plugins"); |
270 | 271 | ||
271 | addItemStringList("SelectedPlugins",&mSelectedPlugins,"holidays"); | 272 | addItemStringList("SelectedPlugins",&mSelectedPlugins,"holidays"); |
272 | 273 | ||
273 | KPrefs::setCurrentGroup("Group Scheduling"); | 274 | KPrefs::setCurrentGroup("Group Scheduling"); |
274 | 275 | ||
275 | addItemInt("IMIPScheduler",&mIMIPScheduler,IMIPKMail); | 276 | addItemInt("IMIPScheduler",&mIMIPScheduler,IMIPKMail); |
276 | addItemInt("IMIPSend",&mIMIPSend,IMIPdirectsend); | 277 | addItemInt("IMIPSend",&mIMIPSend,IMIPdirectsend); |
277 | addItemStringList("AdditionalMails",&mAdditionalMails,""); | 278 | addItemStringList("AdditionalMails",&mAdditionalMails,""); |
278 | addItemInt("IMIP auto refresh",&mIMIPAutoRefresh,neverAuto); | 279 | addItemInt("IMIP auto refresh",&mIMIPAutoRefresh,neverAuto); |
279 | addItemInt("IMIP auto insert request",&mIMIPAutoInsertRequest,neverAuto); | 280 | addItemInt("IMIP auto insert request",&mIMIPAutoInsertRequest,neverAuto); |
280 | addItemInt("IMIP auto insert reply",&mIMIPAutoInsertReply,neverAuto); | 281 | addItemInt("IMIP auto insert reply",&mIMIPAutoInsertReply,neverAuto); |
281 | addItemInt("IMIP auto FreeBusy",&mIMIPAutoFreeBusy,neverAuto); | 282 | addItemInt("IMIP auto FreeBusy",&mIMIPAutoFreeBusy,neverAuto); |
282 | addItemInt("IMIP auto save FreeBusy",&mIMIPAutoFreeBusyReply,neverAuto); | 283 | addItemInt("IMIP auto save FreeBusy",&mIMIPAutoFreeBusyReply,neverAuto); |
283 | 284 | ||
284 | KPrefs::setCurrentGroup( "Editors" ); | 285 | KPrefs::setCurrentGroup( "Editors" ); |
285 | 286 | ||
286 | addItemStringList( "EventTemplates", &mEventTemplates ); | 287 | addItemStringList( "EventTemplates", &mEventTemplates ); |
287 | addItemStringList( "TodoTemplates", &mTodoTemplates ); | 288 | addItemStringList( "TodoTemplates", &mTodoTemplates ); |
288 | 289 | ||
289 | addItemInt("DestinationPolicy",&mDestination,standardDestination); | 290 | addItemInt("DestinationPolicy",&mDestination,standardDestination); |
290 | 291 | ||
291 | 292 | ||
292 | 293 | ||
293 | } | 294 | } |
294 | 295 | ||
295 | 296 | ||
296 | KOPrefs::~KOPrefs() | 297 | KOPrefs::~KOPrefs() |
297 | { | 298 | { |
298 | if (mInstance == this) | 299 | if (mInstance == this) |
299 | mInstance = insd.setObject(0); | 300 | mInstance = insd.setObject(0); |
300 | 301 | ||
301 | //qDebug("KOPrefs::~KOPrefs() "); | 302 | //qDebug("KOPrefs::~KOPrefs() "); |
302 | } | 303 | } |
303 | 304 | ||
304 | 305 | ||
305 | KOPrefs *KOPrefs::instance() | 306 | KOPrefs *KOPrefs::instance() |
306 | { | 307 | { |
307 | if (!mInstance) { | 308 | if (!mInstance) { |
308 | mInstance = insd.setObject(new KOPrefs()); | 309 | mInstance = insd.setObject(new KOPrefs()); |
309 | mInstance->readConfig(); | 310 | mInstance->readConfig(); |
310 | } | 311 | } |
311 | 312 | ||
312 | return mInstance; | 313 | return mInstance; |
313 | } | 314 | } |
314 | 315 | ||
315 | void KOPrefs::usrSetDefaults() | 316 | void KOPrefs::usrSetDefaults() |
316 | { | 317 | { |
317 | 318 | ||
318 | } | 319 | } |
319 | 320 | ||
320 | void KOPrefs::fillMailDefaults() | 321 | void KOPrefs::fillMailDefaults() |
321 | { | 322 | { |
322 | if (mName.isEmpty()) mName = i18n("Anonymous"); | 323 | if (mName.isEmpty()) mName = i18n("Anonymous"); |
323 | if (mEmail.isEmpty()) mEmail = i18n("nobody@nowhere"); | 324 | if (mEmail.isEmpty()) mEmail = i18n("nobody@nowhere"); |
324 | } | 325 | } |
325 | 326 | ||
326 | void KOPrefs::setTimeZoneIdDefault() | 327 | void KOPrefs::setTimeZoneIdDefault() |
327 | { | 328 | { |
328 | ; | 329 | ; |
329 | } | 330 | } |
330 | 331 | ||
331 | void KOPrefs::setCategoryDefaults() | 332 | void KOPrefs::setCategoryDefaults() |
332 | { | 333 | { |
333 | mCustomCategories.clear(); | 334 | mCustomCategories.clear(); |
334 | mCustomCategories = getDefaultList(); | 335 | mCustomCategories = getDefaultList(); |
335 | 336 | ||
336 | QStringList::Iterator it; | 337 | QStringList::Iterator it; |
337 | for (it = mCustomCategories.begin();it != mCustomCategories.end();++it ) { | 338 | for (it = mCustomCategories.begin();it != mCustomCategories.end();++it ) { |
338 | setCategoryColor(*it,mDefaultCategoryColor); | 339 | setCategoryColor(*it,mDefaultCategoryColor); |
339 | } | 340 | } |
340 | } | 341 | } |
341 | 342 | ||
342 | QStringList KOPrefs::getDefaultList() | 343 | QStringList KOPrefs::getDefaultList() |
343 | { | 344 | { |
344 | QStringList retval ; | 345 | QStringList retval ; |
345 | retval << i18n("Anniversary") << i18n("Appointment") << i18n("Birthday") << i18n("Business") << i18n("Business Travel") << i18n("Cinema") << i18n("Customer") | 346 | retval << i18n("Anniversary") << i18n("Appointment") << i18n("Birthday") << i18n("Business") << i18n("Business Travel") << i18n("Cinema") << i18n("Customer") |
346 | << i18n("Break")<< i18n("Breakfast")<< i18n("Competition")<< i18n("Dinner") | 347 | << i18n("Break")<< i18n("Breakfast")<< i18n("Competition")<< i18n("Dinner") |
347 | << i18n("Education")<< i18n("Family") << i18n("Favorites") << i18n("Festival")<< i18n("Fishing")<< i18n("Flight") << i18n("Gifts") | 348 | << i18n("Education")<< i18n("Family") << i18n("Favorites") << i18n("Festival")<< i18n("Fishing")<< i18n("Flight") << i18n("Gifts") |
348 | << i18n("Holiday") << i18n("Holiday Cards")<< i18n("Hot Contacts") << i18n("Hiking") << i18n("Hunting") << i18n("Key Customer") << i18n("Kids") | 349 | << i18n("Holiday") << i18n("Holiday Cards")<< i18n("Hot Contacts") << i18n("Hiking") << i18n("Hunting") << i18n("Key Customer") << i18n("Kids") |
349 | << i18n("Lunch") << i18n("Meeting") << i18n("Miscellaneous") << i18n("Partner")<< i18n("Party") << i18n("Personal") << i18n("Personal Travel") | 350 | << i18n("Lunch") << i18n("Meeting") << i18n("Miscellaneous") << i18n("Partner")<< i18n("Party") << i18n("Personal") << i18n("Personal Travel") |
350 | << i18n("PHB") << i18n("Phone Calls") << i18n("Projects") << i18n("Recurring") << i18n("School") << i18n("Shopping") | 351 | << i18n("PHB") << i18n("Phone Calls") << i18n("Projects") << i18n("Recurring") << i18n("School") << i18n("Shopping") |
351 | << i18n("Speach") << i18n("Special Occasion") << i18n("Sports") << i18n("Talk") << i18n("Travel") << i18n("TV")<< i18n("University") | 352 | << i18n("Speach") << i18n("Special Occasion") << i18n("Sports") << i18n("Talk") << i18n("Travel") << i18n("TV")<< i18n("University") |
352 | << i18n("Vacation") << i18n("VIP") << i18n("SyncEvent") ; | 353 | << i18n("Vacation") << i18n("VIP") << i18n("SyncEvent") ; |
353 | retval.sort(); | 354 | retval.sort(); |
354 | return retval; | 355 | return retval; |
355 | } | 356 | } |
356 | 357 | ||
357 | void KOPrefs::usrReadConfig() | 358 | void KOPrefs::usrReadConfig() |
358 | { | 359 | { |
359 | config()->setGroup("General"); | 360 | config()->setGroup("General"); |
360 | 361 | ||
361 | mCustomCategories = config()->readListEntry("Custom Categories"); | 362 | mCustomCategories = config()->readListEntry("Custom Categories"); |
362 | if ( KPimGlobalPrefs::instance()->mPreferredLanguage != mOldLanguage ) { | 363 | if ( KPimGlobalPrefs::instance()->mPreferredLanguage != mOldLanguage ) { |
363 | mLocationDefaults.clear(); | 364 | mLocationDefaults.clear(); |
364 | mEventSummaryUser.clear(); | 365 | mEventSummaryUser.clear(); |
365 | mTodoSummaryUser.clear(); | 366 | mTodoSummaryUser.clear(); |
366 | } | 367 | } |
367 | mOldLoadedLanguage = mOldLanguage ; | 368 | mOldLoadedLanguage = mOldLanguage ; |
368 | mOldLanguage = KPimGlobalPrefs::instance()->mPreferredLanguage; | 369 | mOldLanguage = KPimGlobalPrefs::instance()->mPreferredLanguage; |
369 | if (mLocationDefaults.isEmpty()) { | 370 | if (mLocationDefaults.isEmpty()) { |
370 | mLocationDefaults << i18n("Home") << i18n("Office") << i18n("Library") << i18n("School") << i18n("Doctor") << i18n("Beach") | 371 | mLocationDefaults << i18n("Home") << i18n("Office") << i18n("Library") << i18n("School") << i18n("Doctor") << i18n("Beach") |
371 | << i18n("University") << i18n("Restaurant") << i18n("Bar") << i18n("Conference room") << i18n("Cinema") << i18n("Lake") << i18n("Kindergarten") | 372 | << i18n("University") << i18n("Restaurant") << i18n("Bar") << i18n("Conference room") << i18n("Cinema") << i18n("Lake") << i18n("Kindergarten") |
372 | << i18n("Germany") << i18n("Sweden") << i18n("Forest") << i18n("Desert") << i18n("Kitchen") ; | 373 | << i18n("Germany") << i18n("Sweden") << i18n("Forest") << i18n("Desert") << i18n("Kitchen") ; |
373 | // << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") | 374 | // << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") |
374 | mLocationDefaults.sort(); | 375 | mLocationDefaults.sort(); |
375 | } | 376 | } |
376 | 377 | ||
377 | if (mEventSummaryUser.isEmpty()) { | 378 | if (mEventSummaryUser.isEmpty()) { |
378 | mEventSummaryUser = getDefaultList() ; | 379 | mEventSummaryUser = getDefaultList() ; |
379 | } | 380 | } |
380 | if (mTodoSummaryUser.isEmpty()) { | 381 | if (mTodoSummaryUser.isEmpty()) { |
381 | mTodoSummaryUser = getDefaultList() ; | 382 | mTodoSummaryUser = getDefaultList() ; |
382 | } | 383 | } |
383 | 384 | ||
384 | if (mCustomCategories.isEmpty()) setCategoryDefaults(); | 385 | if (mCustomCategories.isEmpty()) setCategoryDefaults(); |
385 | 386 | ||
386 | config()->setGroup("Personal Settings"); | 387 | config()->setGroup("Personal Settings"); |
387 | mName = config()->readEntry("user_name",""); | 388 | mName = config()->readEntry("user_name",""); |
388 | mEmail = config()->readEntry("user_email",""); | 389 | mEmail = config()->readEntry("user_email",""); |
389 | fillMailDefaults(); | 390 | fillMailDefaults(); |
390 | 391 | ||
391 | config()->setGroup("Category Colors"); | 392 | config()->setGroup("Category Colors"); |
392 | QStringList::Iterator it; | 393 | QStringList::Iterator it; |
393 | for (it = mCustomCategories.begin();it != mCustomCategories.end();++it ) { | 394 | for (it = mCustomCategories.begin();it != mCustomCategories.end();++it ) { |
394 | setCategoryColor(*it,config()->readColorEntry(*it,&mDefaultCategoryColor)); | 395 | setCategoryColor(*it,config()->readColorEntry(*it,&mDefaultCategoryColor)); |
395 | 396 | ||
396 | } | 397 | } |
397 | 398 | ||
398 | KPimPrefs::usrReadConfig(); | 399 | KPimPrefs::usrReadConfig(); |
399 | } | 400 | } |
400 | 401 | ||
401 | 402 | ||
402 | void KOPrefs::usrWriteConfig() | 403 | void KOPrefs::usrWriteConfig() |
403 | { | 404 | { |
404 | config()->setGroup("General"); | 405 | config()->setGroup("General"); |
405 | config()->writeEntry("Custom Categories",mCustomCategories); | 406 | config()->writeEntry("Custom Categories",mCustomCategories); |
406 | 407 | ||
407 | config()->setGroup("Personal Settings"); | 408 | config()->setGroup("Personal Settings"); |
408 | config()->writeEntry("user_name",mName); | 409 | config()->writeEntry("user_name",mName); |
409 | config()->writeEntry("user_email",mEmail); | 410 | config()->writeEntry("user_email",mEmail); |
410 | 411 | ||
411 | config()->setGroup("Category Colors"); | 412 | config()->setGroup("Category Colors"); |
412 | QDictIterator<QColor> it(mCategoryColors); | 413 | QDictIterator<QColor> it(mCategoryColors); |
413 | while (it.current()) { | 414 | while (it.current()) { |
414 | config()->writeEntry(it.currentKey(),*(it.current())); | 415 | config()->writeEntry(it.currentKey(),*(it.current())); |
415 | ++it; | 416 | ++it; |
416 | } | 417 | } |
417 | 418 | ||
418 | 419 | ||
419 | KPimPrefs::usrWriteConfig(); | 420 | KPimPrefs::usrWriteConfig(); |
420 | } | 421 | } |
421 | 422 | ||
422 | void KOPrefs::setCategoryColor(QString cat,const QColor & color) | 423 | void KOPrefs::setCategoryColor(QString cat,const QColor & color) |
423 | { | 424 | { |
424 | mCategoryColors.replace(cat,new QColor(color)); | 425 | mCategoryColors.replace(cat,new QColor(color)); |
425 | } | 426 | } |
426 | 427 | ||
427 | QColor *KOPrefs::categoryColor(QString cat) | 428 | QColor *KOPrefs::categoryColor(QString cat) |
428 | { | 429 | { |
429 | QColor *color = 0; | 430 | QColor *color = 0; |
430 | 431 | ||
431 | if (!cat.isEmpty()) color = mCategoryColors[cat]; | 432 | if (!cat.isEmpty()) color = mCategoryColors[cat]; |
432 | 433 | ||
433 | if (color) return color; | 434 | if (color) return color; |
434 | else return &mDefaultCategoryColor; | 435 | else return &mDefaultCategoryColor; |
435 | } | 436 | } |
436 | 437 | ||
437 | void KOPrefs::setFullName(const QString &name) | 438 | void KOPrefs::setFullName(const QString &name) |
438 | { | 439 | { |
439 | mName = name; | 440 | mName = name; |
440 | } | 441 | } |
441 | 442 | ||
442 | void KOPrefs::setEmail(const QString &email) | 443 | void KOPrefs::setEmail(const QString &email) |
443 | { | 444 | { |
444 | //qDebug(" KOPrefs::setEmai*********** %s",email.latin1() ); | 445 | //qDebug(" KOPrefs::setEmai*********** %s",email.latin1() ); |
445 | mEmail = email; | 446 | mEmail = email; |
446 | } | 447 | } |
447 | 448 | ||
448 | QString KOPrefs::fullName() | 449 | QString KOPrefs::fullName() |
449 | { | 450 | { |
450 | if (mEmailControlCenter) { | 451 | if (mEmailControlCenter) { |
451 | KEMailSettings settings; | 452 | KEMailSettings settings; |
452 | return settings.getSetting(KEMailSettings::RealName); | 453 | return settings.getSetting(KEMailSettings::RealName); |
453 | } else { | 454 | } else { |
454 | return mName; | 455 | return mName; |
455 | } | 456 | } |
456 | } | 457 | } |
457 | 458 | ||
458 | QString KOPrefs::email() | 459 | QString KOPrefs::email() |
459 | { | 460 | { |
460 | if (mEmailControlCenter) { | 461 | if (mEmailControlCenter) { |
461 | KEMailSettings settings; | 462 | KEMailSettings settings; |
462 | return settings.getSetting(KEMailSettings::EmailAddress); | 463 | return settings.getSetting(KEMailSettings::EmailAddress); |
463 | } else { | 464 | } else { |
464 | return mEmail; | 465 | return mEmail; |
465 | } | 466 | } |
466 | } | 467 | } |
467 | KConfig* KOPrefs::getConfig() | 468 | KConfig* KOPrefs::getConfig() |
468 | { | 469 | { |
469 | return config(); | 470 | return config(); |
470 | } | 471 | } |
diff --git a/korganizer/koprefs.h b/korganizer/koprefs.h index 69722a1..b3acda7 100644 --- a/korganizer/koprefs.h +++ b/korganizer/koprefs.h | |||
@@ -1,276 +1,278 @@ | |||
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 | #ifndef KOPREFS_H | 23 | #ifndef KOPREFS_H |
24 | #define KOPREFS_H | 24 | #define KOPREFS_H |
25 | 25 | ||
26 | 26 | ||
27 | #include <libkdepim/kpimprefs.h> | 27 | #include <libkdepim/kpimprefs.h> |
28 | #include <qdict.h> | 28 | #include <qdict.h> |
29 | 29 | ||
30 | class KConfig; | 30 | class KConfig; |
31 | class QFont; | 31 | class QFont; |
32 | class QColor; | 32 | class QColor; |
33 | class QStringList; | 33 | class QStringList; |
34 | 34 | ||
35 | class KOPrefs : public KPimPrefs | 35 | class KOPrefs : public KPimPrefs |
36 | { | 36 | { |
37 | public: | 37 | public: |
38 | enum { FormatVCalendar, FormatICalendar }; | 38 | enum { FormatVCalendar, FormatICalendar }; |
39 | enum { MailClientKMail, MailClientSendmail }; | 39 | enum { MailClientKMail, MailClientSendmail }; |
40 | enum { IMIPDummy, IMIPKMail }; | 40 | enum { IMIPDummy, IMIPKMail }; |
41 | enum { IMIPOutbox, IMIPdirectsend }; | 41 | enum { IMIPOutbox, IMIPdirectsend }; |
42 | enum { neverAuto, addressbookAuto, selectedAuto }; | 42 | enum { neverAuto, addressbookAuto, selectedAuto }; |
43 | enum { standardDestination, askDestination }; | 43 | enum { standardDestination, askDestination }; |
44 | 44 | ||
45 | virtual ~KOPrefs(); | 45 | virtual ~KOPrefs(); |
46 | 46 | ||
47 | /** Get instance of KOPrefs. It is made sure that there is only one | 47 | /** Get instance of KOPrefs. It is made sure that there is only one |
48 | instance. */ | 48 | instance. */ |
49 | static KOPrefs *instance(); | 49 | static KOPrefs *instance(); |
50 | 50 | ||
51 | /** Set preferences to default values */ | 51 | /** Set preferences to default values */ |
52 | void usrSetDefaults(); | 52 | void usrSetDefaults(); |
53 | 53 | ||
54 | /** Read preferences from config file */ | 54 | /** Read preferences from config file */ |
55 | void usrReadConfig(); | 55 | void usrReadConfig(); |
56 | 56 | ||
57 | /** Write preferences to config file */ | 57 | /** Write preferences to config file */ |
58 | void usrWriteConfig(); | 58 | void usrWriteConfig(); |
59 | void setCategoryDefaults(); | 59 | void setCategoryDefaults(); |
60 | 60 | ||
61 | protected: | 61 | protected: |
62 | void setTimeZoneIdDefault(); | 62 | void setTimeZoneIdDefault(); |
63 | 63 | ||
64 | /** Fill empty mail fields with default values. */ | 64 | /** Fill empty mail fields with default values. */ |
65 | void fillMailDefaults(); | 65 | void fillMailDefaults(); |
66 | 66 | ||
67 | private: | 67 | private: |
68 | /** Constructor disabled for public. Use instance() to create a KOPrefs | 68 | /** Constructor disabled for public. Use instance() to create a KOPrefs |
69 | object. */ | 69 | object. */ |
70 | KOPrefs(); | 70 | KOPrefs(); |
71 | 71 | ||
72 | static KOPrefs *mInstance; | 72 | static KOPrefs *mInstance; |
73 | QStringList getDefaultList(); | 73 | QStringList getDefaultList(); |
74 | public: | 74 | public: |
75 | // preferences data | 75 | // preferences data |
76 | KConfig* getConfig(); | 76 | KConfig* getConfig(); |
77 | void setFullName(const QString &); | 77 | void setFullName(const QString &); |
78 | QString fullName(); | 78 | QString fullName(); |
79 | void setEmail(const QString &); | 79 | void setEmail(const QString &); |
80 | QString email(); | 80 | QString email(); |
81 | 81 | ||
82 | QString mAdditional; | 82 | QString mAdditional; |
83 | 83 | ||
84 | bool mEmailControlCenter; | 84 | bool mEmailControlCenter; |
85 | 85 | ||
86 | bool mBcc; | 86 | bool mBcc; |
87 | bool mAutoSave; | 87 | bool mAutoSave; |
88 | int mAutoSaveInterval; | 88 | int mAutoSaveInterval; |
89 | bool mConfirm; | 89 | bool mConfirm; |
90 | 90 | ||
91 | bool mEnableGroupScheduling; | 91 | bool mEnableGroupScheduling; |
92 | bool mEnableProjectView; | 92 | bool mEnableProjectView; |
93 | 93 | ||
94 | int mDefaultFormat; | 94 | int mDefaultFormat; |
95 | int mMailClient; | 95 | int mMailClient; |
96 | 96 | ||
97 | int mStartTime; | 97 | int mStartTime; |
98 | int mDefaultDuration; | 98 | int mDefaultDuration; |
99 | int mAlarmTime; | 99 | int mAlarmTime; |
100 | 100 | ||
101 | int mWorkingHoursStart; | 101 | int mWorkingHoursStart; |
102 | int mWorkingHoursEnd; | 102 | int mWorkingHoursEnd; |
103 | bool mExcludeHolidays; | 103 | bool mExcludeHolidays; |
104 | bool mExcludeSaturdays; | 104 | bool mExcludeSaturdays; |
105 | bool mMarcusBainsShowSeconds; | 105 | bool mMarcusBainsShowSeconds; |
106 | 106 | ||
107 | QFont mTimeBarFont; | 107 | QFont mTimeBarFont; |
108 | QFont mMonthViewFont; | 108 | QFont mMonthViewFont; |
109 | QFont mAgendaViewFont; | 109 | QFont mAgendaViewFont; |
110 | QFont mMarcusBainsFont; | 110 | QFont mMarcusBainsFont; |
111 | QFont mTimeLabelsFont; | 111 | QFont mTimeLabelsFont; |
112 | QFont mTodoViewFont; | 112 | QFont mTodoViewFont; |
113 | QFont mListViewFont; | 113 | QFont mListViewFont; |
114 | QFont mDateNavigatorFont; | 114 | QFont mDateNavigatorFont; |
115 | QFont mEditBoxFont; | 115 | QFont mEditBoxFont; |
116 | QFont mJornalViewFont; | 116 | QFont mJornalViewFont; |
117 | QFont mWhatsNextFont; | 117 | QFont mWhatsNextFont; |
118 | QFont mEventViewFont; | 118 | QFont mEventViewFont; |
119 | 119 | ||
120 | 120 | ||
121 | 121 | ||
122 | 122 | ||
123 | QColor mHolidayColor; | 123 | QColor mHolidayColor; |
124 | QColor mHighlightColor; | 124 | QColor mHighlightColor; |
125 | QColor mEventColor; | 125 | QColor mEventColor; |
126 | QColor mAgendaBgColor; | 126 | QColor mAgendaBgColor; |
127 | QColor mWorkingHoursColor; | 127 | QColor mWorkingHoursColor; |
128 | QColor mTodoDueTodayColor; | 128 | QColor mTodoDueTodayColor; |
129 | QColor mTodoOverdueColor; | 129 | QColor mTodoOverdueColor; |
130 | QColor mMonthViewEvenColor; | 130 | QColor mMonthViewEvenColor; |
131 | QColor mMonthViewOddColor; | 131 | QColor mMonthViewOddColor; |
132 | QColor mMonthViewHolidayColor; | 132 | QColor mMonthViewHolidayColor; |
133 | bool mMonthViewUsesDayColors; | 133 | bool mMonthViewUsesDayColors; |
134 | bool mMonthViewSatSunTog; | 134 | bool mMonthViewSatSunTog; |
135 | QColor mAppColor1; | 135 | QColor mAppColor1; |
136 | QColor mAppColor2; | 136 | QColor mAppColor2; |
137 | bool mUseAppColors; | 137 | bool mUseAppColors; |
138 | 138 | ||
139 | int mDayBegins; | 139 | int mDayBegins; |
140 | int mHourSize; | 140 | int mHourSize; |
141 | int mAllDaySize; | 141 | int mAllDaySize; |
142 | bool mShowFullMenu; | 142 | bool mShowFullMenu; |
143 | bool mDailyRecur; | 143 | bool mDailyRecur; |
144 | bool mWeeklyRecur; | 144 | bool mWeeklyRecur; |
145 | bool mMonthDailyRecur; | 145 | bool mMonthDailyRecur; |
146 | bool mMonthWeeklyRecur; | 146 | bool mMonthWeeklyRecur; |
147 | bool mMonthShowIcons; | 147 | bool mMonthShowIcons; |
148 | bool mMonthShowShort; | 148 | bool mMonthShowShort; |
149 | bool mEnableToolTips; | 149 | bool mEnableToolTips; |
150 | bool mEnableMonthScroll; | 150 | bool mEnableMonthScroll; |
151 | bool mFullViewMonth; | 151 | bool mFullViewMonth; |
152 | bool mMonthViewUsesCategoryColor; | 152 | bool mMonthViewUsesCategoryColor; |
153 | bool mFullViewTodo; | 153 | bool mFullViewTodo; |
154 | bool mShowCompletedTodo; | 154 | bool mShowCompletedTodo; |
155 | bool mMarcusBainsEnabled; | 155 | bool mMarcusBainsEnabled; |
156 | int mNextXDays; | 156 | int mNextXDays; |
157 | int mWhatsNextDays; | 157 | int mWhatsNextDays; |
158 | int mWhatsNextPrios; | 158 | int mWhatsNextPrios; |
159 | bool mEnableQuickTodo; | 159 | bool mEnableQuickTodo; |
160 | 160 | ||
161 | bool mCompactDialogs; | 161 | bool mCompactDialogs; |
162 | bool mVerticalScreen; | 162 | bool mVerticalScreen; |
163 | 163 | ||
164 | bool mShowIconNewTodo; | 164 | bool mShowIconNewTodo; |
165 | bool mShowIconNewEvent; | 165 | bool mShowIconNewEvent; |
166 | bool mShowIconSearch; | 166 | bool mShowIconSearch; |
167 | bool mShowIconList; | 167 | bool mShowIconList; |
168 | bool mShowIconDay1; | 168 | bool mShowIconDay1; |
169 | bool mShowIconDay5; | 169 | bool mShowIconDay5; |
170 | bool mShowIconDay7; | 170 | bool mShowIconDay7; |
171 | bool mShowIconMonth; | 171 | bool mShowIconMonth; |
172 | bool mShowIconTodoview; | 172 | bool mShowIconTodoview; |
173 | bool mShowIconBackFast; | 173 | bool mShowIconBackFast; |
174 | bool mShowIconBack; | 174 | bool mShowIconBack; |
175 | bool mShowIconToday; | 175 | bool mShowIconToday; |
176 | bool mShowIconForward; | 176 | bool mShowIconForward; |
177 | bool mShowIconForwardFast; | 177 | bool mShowIconForwardFast; |
178 | bool mShowIconWhatsThis; | 178 | bool mShowIconWhatsThis; |
179 | bool mShowIconNextDays; | 179 | bool mShowIconNextDays; |
180 | bool mShowIconNext; | 180 | bool mShowIconNext; |
181 | bool mShowIconJournal; | 181 | bool mShowIconJournal; |
182 | 182 | ||
183 | bool mShowIconStretch; | 183 | bool mShowIconStretch; |
184 | 184 | ||
185 | bool mToolBarHor; | 185 | bool mToolBarHor; |
186 | bool mToolBarUp; | 186 | bool mToolBarUp; |
187 | bool mToolBarMiniIcons; | 187 | bool mToolBarMiniIcons; |
188 | 188 | ||
189 | bool mAskForQuit; | 189 | bool mAskForQuit; |
190 | bool mUsePassWd; | 190 | bool mUsePassWd; |
191 | bool mShowSyncEvents; | 191 | bool mShowSyncEvents; |
192 | bool mShowTodoInAgenda; | 192 | bool mShowTodoInAgenda; |
193 | bool mShowTimeInAgenda; | 193 | bool mShowTimeInAgenda; |
194 | bool mHideNonStartedTodos; | 194 | bool mHideNonStartedTodos; |
195 | 195 | ||
196 | int mLastSyncTime; | 196 | int mLastSyncTime; |
197 | void setCategoryColor(QString cat,const QColor & color); | 197 | void setCategoryColor(QString cat,const QColor & color); |
198 | QColor *categoryColor(QString cat); | 198 | QColor *categoryColor(QString cat); |
199 | 199 | ||
200 | QString mArchiveFile; | 200 | QString mArchiveFile; |
201 | QString mHtmlExportFile; | 201 | QString mHtmlExportFile; |
202 | bool mHtmlWithSave; | 202 | bool mHtmlWithSave; |
203 | 203 | ||
204 | QStringList mSelectedPlugins; | 204 | QStringList mSelectedPlugins; |
205 | 205 | ||
206 | QString mLastImportFile; | 206 | QString mLastImportFile; |
207 | QString mLastVcalFile; | 207 | QString mLastVcalFile; |
208 | QString mLastSaveFile; | 208 | QString mLastSaveFile; |
209 | QString mLastLoadFile; | 209 | QString mLastLoadFile; |
210 | 210 | ||
211 | 211 | ||
212 | QString mDefaultAlarmFile; | 212 | QString mDefaultAlarmFile; |
213 | int mIMIPScheduler; | 213 | int mIMIPScheduler; |
214 | int mIMIPSend; | 214 | int mIMIPSend; |
215 | QStringList mAdditionalMails; | 215 | QStringList mAdditionalMails; |
216 | int mIMIPAutoRefresh; | 216 | int mIMIPAutoRefresh; |
217 | int mIMIPAutoInsertReply; | 217 | int mIMIPAutoInsertReply; |
218 | int mIMIPAutoInsertRequest; | 218 | int mIMIPAutoInsertRequest; |
219 | int mIMIPAutoFreeBusy; | 219 | int mIMIPAutoFreeBusy; |
220 | int mIMIPAutoFreeBusyReply; | 220 | int mIMIPAutoFreeBusyReply; |
221 | 221 | ||
222 | QStringList mTodoTemplates; | 222 | QStringList mTodoTemplates; |
223 | QStringList mEventTemplates; | 223 | QStringList mEventTemplates; |
224 | 224 | ||
225 | int mDestination; | 225 | int mDestination; |
226 | 226 | ||
227 | 227 | ||
228 | bool mEditOnDoubleClick; | 228 | bool mEditOnDoubleClick; |
229 | bool mViewChangeHoldFullscreen; | 229 | bool mViewChangeHoldFullscreen; |
230 | bool mViewChangeHoldNonFullscreen; | 230 | bool mViewChangeHoldNonFullscreen; |
231 | bool mCenterOnCurrentTime; | 231 | bool mCenterOnCurrentTime; |
232 | bool mSetTimeToDayStartAt; | 232 | bool mSetTimeToDayStartAt; |
233 | bool mHighlightCurrentDay; | 233 | bool mHighlightCurrentDay; |
234 | bool mUseHighlightLightColor; | 234 | bool mUseHighlightLightColor; |
235 | bool mListViewMonthTimespan; | 235 | bool mListViewMonthTimespan; |
236 | bool mWNViewShowsParents; | 236 | bool mWNViewShowsParents; |
237 | bool mWNViewShowsPast; | 237 | bool mWNViewShowsPast; |
238 | bool mWNViewShowLocation; | 238 | bool mWNViewShowLocation; |
239 | bool mTodoViewShowsPercentage; | 239 | bool mTodoViewShowsPercentage; |
240 | bool mTodoViewUsesCatColors; | 240 | bool mTodoViewUsesCatColors; |
241 | bool mTodoViewUsesSmallFont; | 241 | bool mTodoViewUsesSmallFont; |
242 | bool mTodoViewUsesForegroundColor; | 242 | bool mTodoViewUsesForegroundColor; |
243 | bool mMonthViewUsesForegroundColor; | 243 | bool mMonthViewUsesForegroundColor; |
244 | 244 | ||
245 | bool mHightlightDateTimeEdit; | 245 | bool mHightlightDateTimeEdit; |
246 | bool mShortDateInViewer; | 246 | bool mShortDateInViewer; |
247 | 247 | ||
248 | bool mShowDateNavigator; | ||
249 | |||
248 | QStringList mLocationDefaults; | 250 | QStringList mLocationDefaults; |
249 | QStringList mEventSummaryUser; | 251 | QStringList mEventSummaryUser; |
250 | QStringList mTodoSummaryUser; | 252 | QStringList mTodoSummaryUser; |
251 | 253 | ||
252 | bool mUseInternalAlarmNotification; | 254 | bool mUseInternalAlarmNotification; |
253 | int mAlarmPlayBeeps; | 255 | int mAlarmPlayBeeps; |
254 | int mAlarmSuspendTime; | 256 | int mAlarmSuspendTime; |
255 | int mAlarmSuspendCount; | 257 | int mAlarmSuspendCount; |
256 | int mAlarmBeepInterval; | 258 | int mAlarmBeepInterval; |
257 | int mOldLanguage; | 259 | int mOldLanguage; |
258 | int mOldLoadedLanguage; | 260 | int mOldLoadedLanguage; |
259 | 261 | ||
260 | 262 | ||
261 | QString mActiveSyncPort; | 263 | QString mActiveSyncPort; |
262 | QString mActiveSyncIP; | 264 | QString mActiveSyncIP; |
263 | 265 | ||
264 | private: | 266 | private: |
265 | QDict<QColor> mCategoryColors; | 267 | QDict<QColor> mCategoryColors; |
266 | QColor mDefaultCategoryColor; | 268 | QColor mDefaultCategoryColor; |
267 | 269 | ||
268 | QFont mDefaultTimeBarFont; | 270 | QFont mDefaultTimeBarFont; |
269 | QFont mDefaultViewFont; | 271 | QFont mDefaultViewFont; |
270 | QFont mDefaultMonthViewFont; | 272 | QFont mDefaultMonthViewFont; |
271 | 273 | ||
272 | QString mName; | 274 | QString mName; |
273 | QString mEmail; | 275 | QString mEmail; |
274 | }; | 276 | }; |
275 | 277 | ||
276 | #endif | 278 | #endif |
diff --git a/korganizer/mainwindow.cpp b/korganizer/mainwindow.cpp index 5ec7ddd..151b55b 100644 --- a/korganizer/mainwindow.cpp +++ b/korganizer/mainwindow.cpp | |||
@@ -1129,770 +1129,774 @@ QString MainWindow::resourcePath() | |||
1129 | void MainWindow::displayText( QString text ,QString cap ) | 1129 | void MainWindow::displayText( QString text ,QString cap ) |
1130 | { | 1130 | { |
1131 | QDialog dia( this, "name", true ); ; | 1131 | QDialog dia( this, "name", true ); ; |
1132 | dia.setCaption( cap ); | 1132 | dia.setCaption( cap ); |
1133 | QVBoxLayout* lay = new QVBoxLayout( &dia ); | 1133 | QVBoxLayout* lay = new QVBoxLayout( &dia ); |
1134 | lay->setSpacing( 3 ); | 1134 | lay->setSpacing( 3 ); |
1135 | lay->setMargin( 3 ); | 1135 | lay->setMargin( 3 ); |
1136 | QTextBrowser tb ( &dia ); | 1136 | QTextBrowser tb ( &dia ); |
1137 | lay->addWidget( &tb ); | 1137 | lay->addWidget( &tb ); |
1138 | tb.setText( text ); | 1138 | tb.setText( text ); |
1139 | #ifdef DESKTOP_VERSION | 1139 | #ifdef DESKTOP_VERSION |
1140 | dia.resize( 640, 480); | 1140 | dia.resize( 640, 480); |
1141 | #else | 1141 | #else |
1142 | dia.showMaximized(); | 1142 | dia.showMaximized(); |
1143 | #endif | 1143 | #endif |
1144 | dia.exec(); | 1144 | dia.exec(); |
1145 | } | 1145 | } |
1146 | 1146 | ||
1147 | void MainWindow::features() | 1147 | void MainWindow::features() |
1148 | { | 1148 | { |
1149 | 1149 | ||
1150 | KApplication::showFile( i18n("KO/Pi Features and hints"), "kdepim/korganizer/featuresKOPI.txt" ); | 1150 | KApplication::showFile( i18n("KO/Pi Features and hints"), "kdepim/korganizer/featuresKOPI.txt" ); |
1151 | } | 1151 | } |
1152 | 1152 | ||
1153 | void MainWindow::usertrans() | 1153 | void MainWindow::usertrans() |
1154 | { | 1154 | { |
1155 | 1155 | ||
1156 | KApplication::showFile( i18n("KO/Pi User translation HowTo"), "kdepim/korganizer/usertranslationHOWTO.txt" ); | 1156 | KApplication::showFile( i18n("KO/Pi User translation HowTo"), "kdepim/korganizer/usertranslationHOWTO.txt" ); |
1157 | } | 1157 | } |
1158 | 1158 | ||
1159 | void MainWindow::kdesynchowto() | 1159 | void MainWindow::kdesynchowto() |
1160 | { | 1160 | { |
1161 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/Zaurus-KDE_syncHowTo.txt" ); | 1161 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/Zaurus-KDE_syncHowTo.txt" ); |
1162 | } | 1162 | } |
1163 | void MainWindow::multisynchowto() | 1163 | void MainWindow::multisynchowto() |
1164 | { | 1164 | { |
1165 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/MultiSyncHowTo.txt" ); | 1165 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/MultiSyncHowTo.txt" ); |
1166 | } | 1166 | } |
1167 | void MainWindow::synchowto() | 1167 | void MainWindow::synchowto() |
1168 | { | 1168 | { |
1169 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/SyncHowto.txt" ); | 1169 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/SyncHowto.txt" ); |
1170 | } | 1170 | } |
1171 | void MainWindow::faq() | 1171 | void MainWindow::faq() |
1172 | { | 1172 | { |
1173 | KApplication::showFile( i18n("KO/Pi FAQ"), "kdepim/korganizer/kopiFAQ.txt" ); | 1173 | KApplication::showFile( i18n("KO/Pi FAQ"), "kdepim/korganizer/kopiFAQ.txt" ); |
1174 | 1174 | ||
1175 | } | 1175 | } |
1176 | void MainWindow::whatsNew() | 1176 | void MainWindow::whatsNew() |
1177 | { | 1177 | { |
1178 | KApplication::showFile( "KDE-Pim/Pi Version Info", "kdepim/WhatsNew.txt" ); | 1178 | KApplication::showFile( "KDE-Pim/Pi Version Info", "kdepim/WhatsNew.txt" ); |
1179 | 1179 | ||
1180 | } | 1180 | } |
1181 | void MainWindow::licence() | 1181 | void MainWindow::licence() |
1182 | { | 1182 | { |
1183 | KApplication::showLicence(); | 1183 | KApplication::showLicence(); |
1184 | 1184 | ||
1185 | } | 1185 | } |
1186 | void MainWindow::about() | 1186 | void MainWindow::about() |
1187 | { | 1187 | { |
1188 | QString version; | 1188 | QString version; |
1189 | #include <../version> | 1189 | #include <../version> |
1190 | QMessageBox::about( this, i18n("About KOrganizer/Pi"), | 1190 | QMessageBox::about( this, i18n("About KOrganizer/Pi"), |
1191 | i18n("KOrganizer/Platform-independent\n") + | 1191 | i18n("KOrganizer/Platform-independent\n") + |
1192 | "(KO/Pi) " + version + " - " + | 1192 | "(KO/Pi) " + version + " - " + |
1193 | 1193 | ||
1194 | #ifdef DESKTOP_VERSION | 1194 | #ifdef DESKTOP_VERSION |
1195 | i18n("Desktop Edition\n") + | 1195 | i18n("Desktop Edition\n") + |
1196 | #else | 1196 | #else |
1197 | i18n("PDA-Edition\nfor: Zaurus 5x00 / 7x0 / 8x0\n") + | 1197 | i18n("PDA-Edition\nfor: Zaurus 5x00 / 7x0 / 8x0\n") + |
1198 | #endif | 1198 | #endif |
1199 | i18n("(c) 2004 Lutz Rogowski\nEmail:lutz@pi-sync.net\nKO/Pi is based on KOrganizer\n(c) 2002,2003 Cornelius Schumacher\nEmail: schumacher@kde.org\nKOrganizer/Pi is licensed\nunder the GPL.\nKO/Pi can be compiled for\nLinux, Zaurus-PDA and Windows\nwww.korganizer.org\nwww.pi-sync.net\n") ); | 1199 | i18n("(c) 2004 Lutz Rogowski\nEmail:lutz@pi-sync.net\nKO/Pi is based on KOrganizer\n(c) 2002,2003 Cornelius Schumacher\nEmail: schumacher@kde.org\nKOrganizer/Pi is licensed\nunder the GPL.\nKO/Pi can be compiled for\nLinux, Zaurus-PDA and Windows\nwww.korganizer.org\nwww.pi-sync.net\n") ); |
1200 | } | 1200 | } |
1201 | void MainWindow::keyBindings() | 1201 | void MainWindow::keyBindings() |
1202 | { | 1202 | { |
1203 | QString cap = i18n("KO/Pi Keys + Colors"); | 1203 | QString cap = i18n("KO/Pi Keys + Colors"); |
1204 | QString text = i18n("<p><h2>KO/Pi key shortcuts:</h2></p>\n") + | 1204 | QString text = i18n("<p><h2>KO/Pi key shortcuts:</h2></p>\n") + |
1205 | i18n("<p><b>H</b>: This help dialog | <b>S</b>: Search dialog</p>\n")+ | 1205 | i18n("<p><b>H</b>: This help dialog | <b>S</b>: Search dialog</p>\n")+ |
1206 | i18n("<p><b>I</b>: Show info for selected event/todo</p>\n") + | 1206 | i18n("<p><b>I</b>: Show info for selected event/todo</p>\n") + |
1207 | i18n("<p><b>Space</b>: Toggle fullscreen | <b>P</b>: Date picker</p>\n")+ | 1207 | i18n("<p><b>Space</b>: Toggle fullscreen | <b>P</b>: Date picker</p>\n")+ |
1208 | i18n("<p><b>F</b>: Toggle filterview |<b>F+ctrl</b>: Edit filter </p>\n")+ | 1208 | i18n("<p><b>F</b>: Toggle filterview |<b>F+ctrl</b>: Edit filter </p>\n")+ |
1209 | i18n("<p><b>O</b>: Filter On/Off | <b>J</b>: Journal view</p>\n")+ | 1209 | i18n("<p><b>O</b>: Filter On/Off | <b>J</b>: Journal view</p>\n")+ |
1210 | i18n("<p><b>1-0</b> (+<b>ctrl</b>): Select filter 1-10 (11-20)</p>\n")+ | 1210 | i18n("<p><b>1-0</b> (+<b>ctrl</b>): Select filter 1-10 (11-20)</p>\n")+ |
1211 | i18n("<p><b>N</b>: Next days view| <b>W</b>: What's next view\n ")+ | 1211 | i18n("<p><b>N</b>: Next days view| <b>W</b>: What's next view\n ")+ |
1212 | i18n("<p><b>V</b>: Todo view | <b>L</b>: Event list view</p>\n")+ | 1212 | i18n("<p><b>V</b>: Todo view | <b>L</b>: Event list view</p>\n")+ |
1213 | i18n("<p><b>Z,Y</b>: Work week view | <b>U</b>: Week view</p>\n")+ | 1213 | i18n("<p><b>Z,Y</b>: Work week view | <b>U</b>: Week view</p>\n")+ |
1214 | i18n("<p><b>D</b>: One day view | <b>M</b>: Month view</p>\n")+ | 1214 | i18n("<p><b>D</b>: One day view | <b>M</b>: Month view</p>\n")+ |
1215 | i18n("<p><b>E</b>: Edit selected item |<b> E+ctrl</b>: New Event</p>\n")+ | 1215 | i18n("<p><b>E</b>: Edit selected item |<b> E+ctrl</b>: New Event</p>\n")+ |
1216 | i18n("<p><b>T</b>: Goto today | <b>T+ctrl</b>: New Todo</p>\n")+ | 1216 | i18n("<p><b>T</b>: Goto today | <b>T+ctrl</b>: New Todo</p>\n")+ |
1217 | i18n("<p><b>S+ctrl</b>: Add sub-todo | <b>X</b>: Toggle datenavigator</p>\n")+ | 1217 | i18n("<p><b>S+ctrl</b>: Add sub-todo | <b>X</b>: Toggle datenavigator</p>\n")+ |
1218 | i18n("<p><b>+,-</b> : Zoom in/out agenda | <b>A</b>: Toggle allday agenda height</p>\n")+ | 1218 | i18n("<p><b>+,-</b> : Zoom in/out agenda | <b>A</b>: Toggle allday agenda height</p>\n")+ |
1219 | i18n("<p><b>C</b>: Show current time in agenda view</p>\n")+ | 1219 | i18n("<p><b>C</b>: Show current time in agenda view</p>\n")+ |
1220 | i18n("<p><b>B</b>: Edit description (details) of selected item</p>\n")+ | 1220 | i18n("<p><b>B</b>: Edit description (details) of selected item</p>\n")+ |
1221 | i18n("<p><b>right</b>: Next week | <b>right+ctrl</b>: Next month</p>\n")+ | 1221 | i18n("<p><b>right</b>: Next week | <b>right+ctrl</b>: Next month</p>\n")+ |
1222 | i18n("<p><b>left</b>: Prev. week | <b>left+ctrl</b>: Prev. month</p>\n")+ | 1222 | i18n("<p><b>left</b>: Prev. week | <b>left+ctrl</b>: Prev. month</p>\n")+ |
1223 | i18n("<p><b>del,backspace</b>: Delete selected item</p>\n")+ | 1223 | i18n("<p><b>del,backspace</b>: Delete selected item</p>\n")+ |
1224 | i18n("<p><h3>In agenda view:</h3></p>\n") + | 1224 | i18n("<p><h3>In agenda view:</h3></p>\n") + |
1225 | i18n("<p><b>up/down</b>: Scroll agenda view</p>\n")+ | 1225 | i18n("<p><b>up/down</b>: Scroll agenda view</p>\n")+ |
1226 | i18n("<p><b>ctrl+up/down</b>: Scroll small todo view</p>\n")+ | 1226 | i18n("<p><b>ctrl+up/down</b>: Scroll small todo view</p>\n")+ |
1227 | i18n("<p><h3>In todo view:</h3></p>\n") + | 1227 | i18n("<p><h3>In todo view:</h3></p>\n") + |
1228 | i18n("<p><b>shift+U</b>: <b>U</b>nparent todo (make root todo)</p>\n")+ | 1228 | i18n("<p><b>shift+U</b>: <b>U</b>nparent todo (make root todo)</p>\n")+ |
1229 | i18n("<p><b>shift+S</b>: Make <b>S</b>ubtodo (reparent todo)</p>\n")+ | 1229 | i18n("<p><b>shift+S</b>: Make <b>S</b>ubtodo (reparent todo)</p>\n")+ |
1230 | i18n("<p><b>shift+P</b>: Make new <b>P</b>arent for todo selected with shift+S</p>\n")+ | 1230 | i18n("<p><b>shift+P</b>: Make new <b>P</b>arent for todo selected with shift+S</p>\n")+ |
1231 | i18n("<p><b>Q</b>: Toggle quick todo line edit.</p>\n")+ | 1231 | i18n("<p><b>Q</b>: Toggle quick todo line edit.</p>\n")+ |
1232 | i18n("<p><b>I</b>: Show info of current item+one step down.</p>\n")+ | 1232 | i18n("<p><b>I</b>: Show info of current item+one step down.</p>\n")+ |
1233 | i18n("<p><b>return</b>: Mark item as completed+one step down.</p>\n")+ | 1233 | i18n("<p><b>return</b>: Mark item as completed+one step down.</p>\n")+ |
1234 | i18n("<p><b>return+shift</b>: Mark item as not completed+one step down</p>\n")+ | 1234 | i18n("<p><b>return+shift</b>: Mark item as not completed+one step down</p>\n")+ |
1235 | i18n("<p><h3>In list view:</h3></p>\n") + | 1235 | i18n("<p><h3>In list view:</h3></p>\n") + |
1236 | i18n("<p><b>I</b>: Show info of current item+one step down.</p>\n")+ | 1236 | i18n("<p><b>I</b>: Show info of current item+one step down.</p>\n")+ |
1237 | i18n("<p><b>return</b>: Select item+one step down</p>\n")+ | 1237 | i18n("<p><b>return</b>: Select item+one step down</p>\n")+ |
1238 | i18n("<p><b>return+shift</b>: Deselect item+one step down</p>\n")+ | 1238 | i18n("<p><b>return+shift</b>: Deselect item+one step down</p>\n")+ |
1239 | i18n("<p><b>up/down</b>: Next/prev item</p>\n")+ | 1239 | i18n("<p><b>up/down</b>: Next/prev item</p>\n")+ |
1240 | i18n("<p><b>ctrl+up/down</b>: Goto up/down by 20% of items</p>\n")+ | 1240 | i18n("<p><b>ctrl+up/down</b>: Goto up/down by 20% of items</p>\n")+ |
1241 | i18n("<p><b>shift+up/down</b>: Goto first/last item</p>\n")+ | 1241 | i18n("<p><b>shift+up/down</b>: Goto first/last item</p>\n")+ |
1242 | i18n("<p><h3>In event/todo viewer:</h3></p>\n") + | 1242 | i18n("<p><h3>In event/todo viewer:</h3></p>\n") + |
1243 | i18n("<p><b>I,C</b>: Close dialog.</p>\n")+ | 1243 | i18n("<p><b>I,C</b>: Close dialog.</p>\n")+ |
1244 | i18n("<p><b>A</b>: Show agenda view.</p>\n")+ | 1244 | i18n("<p><b>A</b>: Show agenda view.</p>\n")+ |
1245 | i18n("<p><b>E</b>: Edit item</p>\n") + | 1245 | i18n("<p><b>E</b>: Edit item</p>\n") + |
1246 | i18n("<p><h2>KO/Pi icon colors:</h2></p>\n") + | 1246 | i18n("<p><h2>KO/Pi icon colors:</h2></p>\n") + |
1247 | i18n("<p><b>(for square icons in agenda and month view)</b></p>\n") + | 1247 | i18n("<p><b>(for square icons in agenda and month view)</b></p>\n") + |
1248 | i18n("<p><b>Cross</b>: Item cancelled.([c] in Whats'Next view)</p>\n")+ | 1248 | i18n("<p><b>Cross</b>: Item cancelled.([c] in Whats'Next view)</p>\n")+ |
1249 | i18n("<p><b>Red</b>: Alarm set.([a] in Whats'Next view)</p>\n")+ | 1249 | i18n("<p><b>Red</b>: Alarm set.([a] in Whats'Next view)</p>\n")+ |
1250 | i18n("<p><b>Blue</b>: Recurrent event.([r] in Whats'Next view)</p>\n")+ | 1250 | i18n("<p><b>Blue</b>: Recurrent event.([r] in Whats'Next view)</p>\n")+ |
1251 | i18n("<p><b>Dark green</b>: Information(description) available.([i] in WN view)</p>\n")+ | 1251 | i18n("<p><b>Dark green</b>: Information(description) available.([i] in WN view)</p>\n")+ |
1252 | i18n("<p><b>Black</b>: Event/todo with attendees. You are the organizer!</p>\n")+ | 1252 | i18n("<p><b>Black</b>: Event/todo with attendees. You are the organizer!</p>\n")+ |
1253 | i18n("<p><b>Dark yellow</b>: Event/todo with attendees.</p>\n") + | 1253 | i18n("<p><b>Dark yellow</b>: Event/todo with attendees.</p>\n") + |
1254 | i18n("<p><b>White</b>: Item readonly</p>\n"); | 1254 | i18n("<p><b>White</b>: Item readonly</p>\n"); |
1255 | displayText( text, cap); | 1255 | displayText( text, cap); |
1256 | } | 1256 | } |
1257 | void MainWindow::aboutAutoSaving() | 1257 | void MainWindow::aboutAutoSaving() |
1258 | { | 1258 | { |
1259 | QString text = i18n("After changing something, the data is\nautomatically saved to the file\n~/kdepim/apps/korganizer/mycalendar.ics\nafter (configurable) three minutes.\nFor safety reasons there is one autosaving\nafter 10 minutes (of idle time) again. The \ndata is saved automatically when closing KO/Pi\nYou can create a backup file \nwith: File - Save Calendar Backup\n"); | 1259 | QString text = i18n("After changing something, the data is\nautomatically saved to the file\n~/kdepim/apps/korganizer/mycalendar.ics\nafter (configurable) three minutes.\nFor safety reasons there is one autosaving\nafter 10 minutes (of idle time) again. The \ndata is saved automatically when closing KO/Pi\nYou can create a backup file \nwith: File - Save Calendar Backup\n"); |
1260 | 1260 | ||
1261 | KApplication::showText( i18n("Auto Saving in KOrganizer/Pi"), text); | 1261 | KApplication::showText( i18n("Auto Saving in KOrganizer/Pi"), text); |
1262 | 1262 | ||
1263 | } | 1263 | } |
1264 | void MainWindow::aboutKnownBugs() | 1264 | void MainWindow::aboutKnownBugs() |
1265 | { | 1265 | { |
1266 | QMessageBox* msg; | 1266 | QMessageBox* msg; |
1267 | msg = new QMessageBox( i18n("Known Problems in KOrganizer/Pi"), | 1267 | msg = new QMessageBox( i18n("Known Problems in KOrganizer/Pi"), |
1268 | i18n("1) Importing *.vcs or *.ics files from\nother applications may not work properly,\nif there are events with properties\nKO/Pi does not support.\n")+ | 1268 | i18n("1) Importing *.vcs or *.ics files from\nother applications may not work properly,\nif there are events with properties\nKO/Pi does not support.\n")+ |
1269 | i18n("2) Audio alarm daemon\nfor Zaurus is available!\nas an additional small application\n")+ | 1269 | i18n("2) Audio alarm daemon\nfor Zaurus is available!\nas an additional small application\n")+ |
1270 | i18n("\nPlease report unexpected behaviour to\nlutz@pi-sync.net\n") + | 1270 | i18n("\nPlease report unexpected behaviour to\nlutz@pi-sync.net\n") + |
1271 | i18n("\nor report them in the bugtracker on\n") + | 1271 | i18n("\nor report them in the bugtracker on\n") + |
1272 | i18n("\nhttp://sourceforge.net/projects/kdepimpi\n"), | 1272 | i18n("\nhttp://sourceforge.net/projects/kdepimpi\n"), |
1273 | QMessageBox::NoIcon, | 1273 | QMessageBox::NoIcon, |
1274 | QMessageBox::Ok, | 1274 | QMessageBox::Ok, |
1275 | QMessageBox::NoButton, | 1275 | QMessageBox::NoButton, |
1276 | QMessageBox::NoButton); | 1276 | QMessageBox::NoButton); |
1277 | msg->exec(); | 1277 | msg->exec(); |
1278 | delete msg; | 1278 | delete msg; |
1279 | 1279 | ||
1280 | } | 1280 | } |
1281 | 1281 | ||
1282 | QString MainWindow::defaultFileName() | 1282 | QString MainWindow::defaultFileName() |
1283 | { | 1283 | { |
1284 | return locateLocal( "data", "korganizer/mycalendar.ics" ); | 1284 | return locateLocal( "data", "korganizer/mycalendar.ics" ); |
1285 | } | 1285 | } |
1286 | QString MainWindow::syncFileName() | 1286 | QString MainWindow::syncFileName() |
1287 | { | 1287 | { |
1288 | #ifdef DESKTOP_VERSION | 1288 | #ifdef DESKTOP_VERSION |
1289 | return locateLocal( "tmp", "synccalendar.ics" ); | 1289 | return locateLocal( "tmp", "synccalendar.ics" ); |
1290 | #else | 1290 | #else |
1291 | return QString( "/tmp/synccalendar.ics" ); | 1291 | return QString( "/tmp/synccalendar.ics" ); |
1292 | #endif | 1292 | #endif |
1293 | } | 1293 | } |
1294 | 1294 | ||
1295 | void MainWindow::processIncidenceSelection( Incidence *incidence ) | 1295 | void MainWindow::processIncidenceSelection( Incidence *incidence ) |
1296 | { | 1296 | { |
1297 | if ( !incidence ) { | 1297 | if ( !incidence ) { |
1298 | enableIncidenceActions( false ); | 1298 | enableIncidenceActions( false ); |
1299 | 1299 | ||
1300 | mNewSubTodoAction->setEnabled( false ); | 1300 | mNewSubTodoAction->setEnabled( false ); |
1301 | setCaptionToDates(); | 1301 | setCaptionToDates(); |
1302 | return; | 1302 | return; |
1303 | 1303 | ||
1304 | } | 1304 | } |
1305 | 1305 | ||
1306 | //KGlobal::locale()->formatDateTime(nextA, true); | 1306 | //KGlobal::locale()->formatDateTime(nextA, true); |
1307 | QString startString = ""; | 1307 | QString startString = ""; |
1308 | if ( incidence->type() != "Todo" ) { | 1308 | if ( incidence->type() != "Todo" ) { |
1309 | if ( incidence->dtStart().date() < incidence->dtEnd().date() ) { | 1309 | if ( incidence->dtStart().date() < incidence->dtEnd().date() ) { |
1310 | if ( incidence->doesFloat() ) { | 1310 | if ( incidence->doesFloat() ) { |
1311 | startString += ": "+incidence->dtStartDateStr( true ); | 1311 | startString += ": "+incidence->dtStartDateStr( true ); |
1312 | startString += " --- "+((Event*)incidence)->dtEndDateStr( true ); | 1312 | startString += " --- "+((Event*)incidence)->dtEndDateStr( true ); |
1313 | 1313 | ||
1314 | } else { | 1314 | } else { |
1315 | startString = ": "+incidence->dtStartStr(true); | 1315 | startString = ": "+incidence->dtStartStr(true); |
1316 | startString += " --- "+((Event*)incidence)->dtEndStr(true); | 1316 | startString += " --- "+((Event*)incidence)->dtEndStr(true); |
1317 | 1317 | ||
1318 | } | 1318 | } |
1319 | 1319 | ||
1320 | } else { | 1320 | } else { |
1321 | if ( incidence->dtStart().time() != incidence->dtEnd().time() ) | 1321 | if ( incidence->dtStart().time() != incidence->dtEnd().time() ) |
1322 | startString = ": "+KGlobal::locale()->formatTime(incidence->dtStart().time())+ | 1322 | startString = ": "+KGlobal::locale()->formatTime(incidence->dtStart().time())+ |
1323 | "-"+KGlobal::locale()->formatTime(incidence->dtEnd().time()); | 1323 | "-"+KGlobal::locale()->formatTime(incidence->dtEnd().time()); |
1324 | startString +=" "+KGlobal::locale()->formatDate( incidence->dtStart().date(), true); | 1324 | startString +=" "+KGlobal::locale()->formatDate( incidence->dtStart().date(), true); |
1325 | } | 1325 | } |
1326 | 1326 | ||
1327 | } | 1327 | } |
1328 | else | 1328 | else |
1329 | startString = i18n(": (Prio ") +QString::number( (( KCal::Todo*)incidence)->priority() ) +") "+QString::number( (( KCal::Todo*)incidence)->percentComplete() ) +i18n("\% completed"); | 1329 | startString = i18n(": (Prio ") +QString::number( (( KCal::Todo*)incidence)->priority() ) +") "+QString::number( (( KCal::Todo*)incidence)->percentComplete() ) +i18n("\% completed"); |
1330 | if ( !incidence->location().isEmpty() ) | 1330 | if ( !incidence->location().isEmpty() ) |
1331 | startString += " (" +incidence->location()+")"; | 1331 | startString += " (" +incidence->location()+")"; |
1332 | setCaption( incidence->summary()+startString); | 1332 | setCaption( incidence->summary()+startString); |
1333 | 1333 | ||
1334 | enableIncidenceActions( true ); | 1334 | enableIncidenceActions( true ); |
1335 | 1335 | ||
1336 | if ( incidence->type() == "Event" ) { | 1336 | if ( incidence->type() == "Event" ) { |
1337 | mShowAction->setText( i18n("Show Event...") ); | 1337 | mShowAction->setText( i18n("Show Event...") ); |
1338 | mEditAction->setText( i18n("Edit Event...") ); | 1338 | mEditAction->setText( i18n("Edit Event...") ); |
1339 | mDeleteAction->setText( i18n("Delete Event...") ); | 1339 | mDeleteAction->setText( i18n("Delete Event...") ); |
1340 | 1340 | ||
1341 | mNewSubTodoAction->setEnabled( false ); | 1341 | mNewSubTodoAction->setEnabled( false ); |
1342 | } else if ( incidence->type() == "Todo" ) { | 1342 | } else if ( incidence->type() == "Todo" ) { |
1343 | mShowAction->setText( i18n("Show Todo...") ); | 1343 | mShowAction->setText( i18n("Show Todo...") ); |
1344 | mEditAction->setText( i18n("Edit Todo...") ); | 1344 | mEditAction->setText( i18n("Edit Todo...") ); |
1345 | mDeleteAction->setText( i18n("Delete Todo...") ); | 1345 | mDeleteAction->setText( i18n("Delete Todo...") ); |
1346 | 1346 | ||
1347 | mNewSubTodoAction->setEnabled( true ); | 1347 | mNewSubTodoAction->setEnabled( true ); |
1348 | } else { | 1348 | } else { |
1349 | mShowAction->setText( i18n("Show...") ); | 1349 | mShowAction->setText( i18n("Show...") ); |
1350 | mShowAction->setText( i18n("Edit...") ); | 1350 | mShowAction->setText( i18n("Edit...") ); |
1351 | mShowAction->setText( i18n("Delete...") ); | 1351 | mShowAction->setText( i18n("Delete...") ); |
1352 | 1352 | ||
1353 | mNewSubTodoAction->setEnabled( false ); | 1353 | mNewSubTodoAction->setEnabled( false ); |
1354 | } | 1354 | } |
1355 | } | 1355 | } |
1356 | 1356 | ||
1357 | void MainWindow::enableIncidenceActions( bool enabled ) | 1357 | void MainWindow::enableIncidenceActions( bool enabled ) |
1358 | { | 1358 | { |
1359 | mShowAction->setEnabled( enabled ); | 1359 | mShowAction->setEnabled( enabled ); |
1360 | mEditAction->setEnabled( enabled ); | 1360 | mEditAction->setEnabled( enabled ); |
1361 | mDeleteAction->setEnabled( enabled ); | 1361 | mDeleteAction->setEnabled( enabled ); |
1362 | 1362 | ||
1363 | mCloneAction->setEnabled( enabled ); | 1363 | mCloneAction->setEnabled( enabled ); |
1364 | mMoveAction->setEnabled( enabled ); | 1364 | mMoveAction->setEnabled( enabled ); |
1365 | mBeamAction->setEnabled( enabled ); | 1365 | mBeamAction->setEnabled( enabled ); |
1366 | mCancelAction->setEnabled( enabled ); | 1366 | mCancelAction->setEnabled( enabled ); |
1367 | } | 1367 | } |
1368 | 1368 | ||
1369 | void MainWindow::importOL() | 1369 | void MainWindow::importOL() |
1370 | { | 1370 | { |
1371 | #ifdef _WIN32_ | 1371 | #ifdef _WIN32_ |
1372 | KOImportOLdialog *id = new KOImportOLdialog("Import from OL - select folder!" , mView->calendar(),this ); | 1372 | KOImportOLdialog *id = new KOImportOLdialog("Import from OL - select folder!" , mView->calendar(),this ); |
1373 | id->exec(); | 1373 | id->exec(); |
1374 | delete id; | 1374 | delete id; |
1375 | mView->updateView(); | 1375 | mView->updateView(); |
1376 | #endif | 1376 | #endif |
1377 | } | 1377 | } |
1378 | void MainWindow::importBday() | 1378 | void MainWindow::importBday() |
1379 | { | 1379 | { |
1380 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), | 1380 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), |
1381 | i18n("When importing birthdays twice\nduplicated events will be ignored,\nif the event has not been\nchanged in KO/Pi!\n"), | 1381 | i18n("When importing birthdays twice\nduplicated events will be ignored,\nif the event has not been\nchanged in KO/Pi!\n"), |
1382 | i18n("Import!"), i18n("Cancel"), 0, | 1382 | i18n("Import!"), i18n("Cancel"), 0, |
1383 | 0, 1 ); | 1383 | 0, 1 ); |
1384 | if ( result == 0 ) { | 1384 | if ( result == 0 ) { |
1385 | mView->importBday(); | 1385 | mView->importBday(); |
1386 | 1386 | ||
1387 | } | 1387 | } |
1388 | 1388 | ||
1389 | 1389 | ||
1390 | } | 1390 | } |
1391 | void MainWindow::importQtopia() | 1391 | void MainWindow::importQtopia() |
1392 | { | 1392 | { |
1393 | #ifndef DESKTOP_VERSION | 1393 | #ifndef DESKTOP_VERSION |
1394 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), | 1394 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), |
1395 | i18n("When importing a calendar twice\nduplicated events will be ignored!\nYou can create a backup file with\nFile - Save Calendar Backup\nto revert importing"), | 1395 | i18n("When importing a calendar twice\nduplicated events will be ignored!\nYou can create a backup file with\nFile - Save Calendar Backup\nto revert importing"), |
1396 | i18n("Import!"), i18n("Cancel"), 0, | 1396 | i18n("Import!"), i18n("Cancel"), 0, |
1397 | 0, 1 ); | 1397 | 0, 1 ); |
1398 | if ( result == 0 ) { | 1398 | if ( result == 0 ) { |
1399 | QString datebook = Global::applicationFileName( "datebook", "datebook.xml"); | 1399 | QString datebook = Global::applicationFileName( "datebook", "datebook.xml"); |
1400 | QString todolist = Global::applicationFileName( "todolist", "todolist.xml"); | 1400 | QString todolist = Global::applicationFileName( "todolist", "todolist.xml"); |
1401 | QString categories = QString( getenv( "HOME" ) ) + "/Settings/Categories.xml"; | 1401 | QString categories = QString( getenv( "HOME" ) ) + "/Settings/Categories.xml"; |
1402 | mView->importQtopia( categories, datebook, todolist ); | 1402 | mView->importQtopia( categories, datebook, todolist ); |
1403 | } | 1403 | } |
1404 | #else | 1404 | #else |
1405 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), | 1405 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), |
1406 | i18n("Not supported \non desktop!\n"), | 1406 | i18n("Not supported \non desktop!\n"), |
1407 | i18n("Ok"), i18n("Cancel"), 0, | 1407 | i18n("Ok"), i18n("Cancel"), 0, |
1408 | 0, 1 ); | 1408 | 0, 1 ); |
1409 | 1409 | ||
1410 | #endif | 1410 | #endif |
1411 | } | 1411 | } |
1412 | 1412 | ||
1413 | void MainWindow::saveOnClose() | 1413 | void MainWindow::saveOnClose() |
1414 | { | 1414 | { |
1415 | KOPrefs *p = KOPrefs::instance(); | 1415 | KOPrefs *p = KOPrefs::instance(); |
1416 | p->mToolBarHor = ( iconToolBar->orientation () == Qt:: Horizontal ); | 1416 | p->mToolBarHor = ( iconToolBar->orientation () == Qt:: Horizontal ); |
1417 | p->mToolBarUp = iconToolBar->x() > width()/2 || | 1417 | p->mToolBarUp = iconToolBar->x() > width()/2 || |
1418 | iconToolBar->y() > height()/2; | 1418 | iconToolBar->y() > height()/2; |
1419 | mView->writeSettings(); | 1419 | mView->writeSettings(); |
1420 | if ( mCalendarModifiedFlag || mView->checkFileChanged( defaultFileName())) | 1420 | if ( mCalendarModifiedFlag || mView->checkFileChanged( defaultFileName())) |
1421 | save(); | 1421 | save(); |
1422 | } | 1422 | } |
1423 | void MainWindow::slotModifiedChanged( bool changed ) | 1423 | void MainWindow::slotModifiedChanged( bool changed ) |
1424 | { | 1424 | { |
1425 | if ( mBlockAtStartup ) | 1425 | if ( mBlockAtStartup ) |
1426 | return; | 1426 | return; |
1427 | int msec; | 1427 | int msec; |
1428 | // we store the changes after 1 minute, | 1428 | // we store the changes after 1 minute, |
1429 | // and for safety reasons after 10 minutes again | 1429 | // and for safety reasons after 10 minutes again |
1430 | if ( !mSyncManager->blockSave() ) | 1430 | if ( !mSyncManager->blockSave() ) |
1431 | msec = (1000 * 60*KOPrefs::instance()->mAutoSaveInterval) +1000; | 1431 | msec = (1000 * 60*KOPrefs::instance()->mAutoSaveInterval) +1000; |
1432 | else | 1432 | else |
1433 | msec = 1000 * 600; | 1433 | msec = 1000 * 600; |
1434 | mSaveTimer.start( msec, true ); // 1 minute | 1434 | mSaveTimer.start( msec, true ); // 1 minute |
1435 | qDebug("KO: Saving File in %d secs!", msec/1000); | 1435 | qDebug("KO: Saving File in %d secs!", msec/1000); |
1436 | mCalendarModifiedFlag = true; | 1436 | mCalendarModifiedFlag = true; |
1437 | } | 1437 | } |
1438 | void MainWindow::save() | 1438 | void MainWindow::save() |
1439 | { | 1439 | { |
1440 | if ( mSyncManager->blockSave() ) | 1440 | if ( mSyncManager->blockSave() ) |
1441 | return; | 1441 | return; |
1442 | mSyncManager->setBlockSave(true); | 1442 | mSyncManager->setBlockSave(true); |
1443 | if ( mView->checkFileVersion( defaultFileName()) ) { | 1443 | if ( mView->checkFileVersion( defaultFileName()) ) { |
1444 | 1444 | ||
1445 | QTime neededSaveTime = QDateTime::currentDateTime().time(); | 1445 | QTime neededSaveTime = QDateTime::currentDateTime().time(); |
1446 | setCaption(i18n("KO/Pi:Saving Data to File ..." )); | 1446 | setCaption(i18n("KO/Pi:Saving Data to File ..." )); |
1447 | qDebug("KO: Start saving data to file!"); | 1447 | qDebug("KO: Start saving data to file!"); |
1448 | mView->saveCalendar( defaultFileName() ); | 1448 | mView->saveCalendar( defaultFileName() ); |
1449 | 1449 | ||
1450 | int msNeeded = neededSaveTime.msecsTo( QDateTime::currentDateTime().time() ); | 1450 | int msNeeded = neededSaveTime.msecsTo( QDateTime::currentDateTime().time() ); |
1451 | qDebug("KO: Needed %d ms for saving.",msNeeded ); | 1451 | qDebug("KO: Needed %d ms for saving.",msNeeded ); |
1452 | QString savemes; | 1452 | QString savemes; |
1453 | savemes.sprintf(i18n("KO/Pi:File Saved. Needed %d sec, %d ms"),(msNeeded/1000)%100,msNeeded%1000 ); | 1453 | savemes.sprintf(i18n("KO/Pi:File Saved. Needed %d sec, %d ms"),(msNeeded/1000)%100,msNeeded%1000 ); |
1454 | setCaption(savemes); | 1454 | setCaption(savemes); |
1455 | } else | 1455 | } else |
1456 | setCaption(i18n("Saving cancelled!")); | 1456 | setCaption(i18n("Saving cancelled!")); |
1457 | mCalendarModifiedFlag = false; | 1457 | mCalendarModifiedFlag = false; |
1458 | mSyncManager->setBlockSave( false ); | 1458 | mSyncManager->setBlockSave( false ); |
1459 | } | 1459 | } |
1460 | 1460 | ||
1461 | void MainWindow::keyReleaseEvent ( QKeyEvent * e) | 1461 | void MainWindow::keyReleaseEvent ( QKeyEvent * e) |
1462 | { | 1462 | { |
1463 | if ( !e->isAutoRepeat() ) { | 1463 | if ( !e->isAutoRepeat() ) { |
1464 | mFlagKeyPressed = false; | 1464 | mFlagKeyPressed = false; |
1465 | } | 1465 | } |
1466 | } | 1466 | } |
1467 | void MainWindow::keyPressEvent ( QKeyEvent * e ) | 1467 | void MainWindow::keyPressEvent ( QKeyEvent * e ) |
1468 | { | 1468 | { |
1469 | qApp->processEvents(); | 1469 | qApp->processEvents(); |
1470 | if ( e->isAutoRepeat() && !mFlagKeyPressed ) { | 1470 | if ( e->isAutoRepeat() && !mFlagKeyPressed ) { |
1471 | e->ignore(); | 1471 | e->ignore(); |
1472 | // qDebug(" ignore %d",e->isAutoRepeat() ); | 1472 | // qDebug(" ignore %d",e->isAutoRepeat() ); |
1473 | return; | 1473 | return; |
1474 | } | 1474 | } |
1475 | if (! e->isAutoRepeat() ) | 1475 | if (! e->isAutoRepeat() ) |
1476 | mFlagKeyPressed = true; | 1476 | mFlagKeyPressed = true; |
1477 | KOPrefs *p = KOPrefs::instance(); | 1477 | KOPrefs *p = KOPrefs::instance(); |
1478 | bool showSelectedDates = false; | 1478 | bool showSelectedDates = false; |
1479 | int size; | 1479 | int size; |
1480 | int pro = 0; | 1480 | int pro = 0; |
1481 | //qDebug("MainWindow::keyPressEvent "); | 1481 | //qDebug("MainWindow::keyPressEvent "); |
1482 | switch ( e->key() ) { | 1482 | switch ( e->key() ) { |
1483 | case Qt::Key_Right: | 1483 | case Qt::Key_Right: |
1484 | if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton) | 1484 | if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton) |
1485 | mView->goNextMonth(); | 1485 | mView->goNextMonth(); |
1486 | else | 1486 | else |
1487 | mView->goNext(); | 1487 | mView->goNext(); |
1488 | showSelectedDates = true; | 1488 | showSelectedDates = true; |
1489 | break; | 1489 | break; |
1490 | case Qt::Key_Left: | 1490 | case Qt::Key_Left: |
1491 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) | 1491 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) |
1492 | mView->goPreviousMonth(); | 1492 | mView->goPreviousMonth(); |
1493 | else | 1493 | else |
1494 | mView->goPrevious(); | 1494 | mView->goPrevious(); |
1495 | showSelectedDates = true; | 1495 | showSelectedDates = true; |
1496 | break; | 1496 | break; |
1497 | case Qt::Key_Down: | 1497 | case Qt::Key_Down: |
1498 | mView->viewManager()->agendaView()->scrollOneHourDown(); | 1498 | mView->viewManager()->agendaView()->scrollOneHourDown(); |
1499 | break; | 1499 | break; |
1500 | case Qt::Key_Up: | 1500 | case Qt::Key_Up: |
1501 | mView->viewManager()->agendaView()->scrollOneHourUp(); | 1501 | mView->viewManager()->agendaView()->scrollOneHourUp(); |
1502 | break; | 1502 | break; |
1503 | case Qt::Key_I: | 1503 | case Qt::Key_I: |
1504 | mView->showIncidence(); | 1504 | mView->showIncidence(); |
1505 | break; | 1505 | break; |
1506 | case Qt::Key_Delete: | 1506 | case Qt::Key_Delete: |
1507 | case Qt::Key_Backspace: | 1507 | case Qt::Key_Backspace: |
1508 | mView->deleteIncidence(); | 1508 | mView->deleteIncidence(); |
1509 | break; | 1509 | break; |
1510 | case Qt::Key_D: | 1510 | case Qt::Key_D: |
1511 | mView->viewManager()->showDayView(); | 1511 | mView->viewManager()->showDayView(); |
1512 | showSelectedDates = true; | 1512 | showSelectedDates = true; |
1513 | break; | 1513 | break; |
1514 | case Qt::Key_O: | 1514 | case Qt::Key_O: |
1515 | mView->toggleFilerEnabled( ); | 1515 | mView->toggleFilerEnabled( ); |
1516 | break; | 1516 | break; |
1517 | case Qt::Key_0: | 1517 | case Qt::Key_0: |
1518 | case Qt::Key_1: | 1518 | case Qt::Key_1: |
1519 | case Qt::Key_2: | 1519 | case Qt::Key_2: |
1520 | case Qt::Key_3: | 1520 | case Qt::Key_3: |
1521 | case Qt::Key_4: | 1521 | case Qt::Key_4: |
1522 | case Qt::Key_5: | 1522 | case Qt::Key_5: |
1523 | case Qt::Key_6: | 1523 | case Qt::Key_6: |
1524 | case Qt::Key_7: | 1524 | case Qt::Key_7: |
1525 | case Qt::Key_8: | 1525 | case Qt::Key_8: |
1526 | case Qt::Key_9: | 1526 | case Qt::Key_9: |
1527 | pro = e->key()-48; | 1527 | pro = e->key()-48; |
1528 | if ( pro == 0 ) | 1528 | if ( pro == 0 ) |
1529 | pro = 10; | 1529 | pro = 10; |
1530 | if ( e->state() == Qt::ControlButton) | 1530 | if ( e->state() == Qt::ControlButton) |
1531 | pro += 10; | 1531 | pro += 10; |
1532 | break; | 1532 | break; |
1533 | case Qt::Key_M: | 1533 | case Qt::Key_M: |
1534 | mView->viewManager()->showMonthView(); | 1534 | mView->viewManager()->showMonthView(); |
1535 | showSelectedDates = true; | 1535 | showSelectedDates = true; |
1536 | break; | 1536 | break; |
1537 | case Qt::Key_Insert: | 1537 | case Qt::Key_Insert: |
1538 | mView->newEvent(); | 1538 | mView->newEvent(); |
1539 | break; | 1539 | break; |
1540 | case Qt::Key_S : | 1540 | case Qt::Key_S : |
1541 | if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton) | 1541 | if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton) |
1542 | mView->newSubTodo(); | 1542 | mView->newSubTodo(); |
1543 | else | 1543 | else |
1544 | mView->dialogManager()->showSearchDialog(); | 1544 | mView->dialogManager()->showSearchDialog(); |
1545 | break; | 1545 | break; |
1546 | case Qt::Key_Y : | 1546 | case Qt::Key_Y : |
1547 | case Qt::Key_Z : | 1547 | case Qt::Key_Z : |
1548 | mView->viewManager()->showWorkWeekView(); | 1548 | mView->viewManager()->showWorkWeekView(); |
1549 | showSelectedDates = true; | 1549 | showSelectedDates = true; |
1550 | break; | 1550 | break; |
1551 | case Qt::Key_U : | 1551 | case Qt::Key_U : |
1552 | mView->viewManager()->showWeekView(); | 1552 | mView->viewManager()->showWeekView(); |
1553 | showSelectedDates = true; | 1553 | showSelectedDates = true; |
1554 | break; | 1554 | break; |
1555 | case Qt::Key_H : | 1555 | case Qt::Key_H : |
1556 | keyBindings(); | 1556 | keyBindings(); |
1557 | break; | 1557 | break; |
1558 | case Qt::Key_W: | 1558 | case Qt::Key_W: |
1559 | mView->viewManager()->showWhatsNextView(); | 1559 | mView->viewManager()->showWhatsNextView(); |
1560 | break; | 1560 | break; |
1561 | case Qt::Key_L: | 1561 | case Qt::Key_L: |
1562 | mView->viewManager()->showListView(); | 1562 | mView->viewManager()->showListView(); |
1563 | break; | 1563 | break; |
1564 | case Qt::Key_N: | 1564 | case Qt::Key_N: |
1565 | mView->viewManager()->showNextXView(); | 1565 | mView->viewManager()->showNextXView(); |
1566 | showSelectedDates = true; | 1566 | showSelectedDates = true; |
1567 | break; | 1567 | break; |
1568 | case Qt::Key_V: | 1568 | case Qt::Key_V: |
1569 | mView->viewManager()->showTodoView(); | 1569 | mView->viewManager()->showTodoView(); |
1570 | break; | 1570 | break; |
1571 | case Qt::Key_C: | 1571 | case Qt::Key_C: |
1572 | mView->viewManager()->agendaView()->setStartHour( QTime::currentTime ().hour() ); | 1572 | mView->viewManager()->agendaView()->setStartHour( QTime::currentTime ().hour() ); |
1573 | break; | 1573 | break; |
1574 | case Qt::Key_P: | 1574 | case Qt::Key_P: |
1575 | mView->showDatePicker( ); | 1575 | mView->showDatePicker( ); |
1576 | break; | 1576 | break; |
1577 | case Qt::Key_F: | 1577 | case Qt::Key_F: |
1578 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) | 1578 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) |
1579 | mView->editFilters(); | 1579 | mView->editFilters(); |
1580 | else | 1580 | else |
1581 | mView->toggleFilter(); | 1581 | mView->toggleFilter(); |
1582 | break; | 1582 | break; |
1583 | case Qt::Key_X: | 1583 | case Qt::Key_X: |
1584 | mView->toggleDateNavigatorWidget(); | 1584 | mView->toggleDateNavigatorWidget(); |
1585 | break; | 1585 | break; |
1586 | case Qt::Key_Space: | 1586 | case Qt::Key_Space: |
1587 | mView->toggleExpand(); | 1587 | mView->toggleExpand(); |
1588 | break; | 1588 | break; |
1589 | case Qt::Key_A: | 1589 | case Qt::Key_A: |
1590 | mView->toggleAllDaySize(); | 1590 | mView->toggleAllDaySize(); |
1591 | break; | 1591 | break; |
1592 | case Qt::Key_T: | 1592 | case Qt::Key_T: |
1593 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) | 1593 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) |
1594 | mView->newTodo(); | 1594 | mView->newTodo(); |
1595 | else { | 1595 | else { |
1596 | mView->goToday(); | 1596 | mView->goToday(); |
1597 | showSelectedDates = true; | 1597 | showSelectedDates = true; |
1598 | } | 1598 | } |
1599 | break; | 1599 | break; |
1600 | case Qt::Key_J: | 1600 | case Qt::Key_J: |
1601 | mView->viewManager()->showJournalView(); | 1601 | mView->viewManager()->showJournalView(); |
1602 | break; | 1602 | break; |
1603 | case Qt::Key_B: | 1603 | case Qt::Key_B: |
1604 | mView->editIncidenceDescription();; | 1604 | mView->editIncidenceDescription();; |
1605 | break; | 1605 | break; |
1606 | // case Qt::Key_Return: | 1606 | // case Qt::Key_Return: |
1607 | case Qt::Key_E: | 1607 | case Qt::Key_E: |
1608 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) | 1608 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) |
1609 | mView->newEvent(); | 1609 | mView->newEvent(); |
1610 | else | 1610 | else |
1611 | mView->editIncidence(); | 1611 | mView->editIncidence(); |
1612 | break; | 1612 | break; |
1613 | case Qt::Key_Plus: | 1613 | case Qt::Key_Plus: |
1614 | size = p->mHourSize +2; | 1614 | size = p->mHourSize +2; |
1615 | if ( size <= 18 ) | 1615 | if ( size <= 18 ) |
1616 | configureAgenda( size ); | 1616 | configureAgenda( size ); |
1617 | break; | 1617 | break; |
1618 | case Qt::Key_Minus: | 1618 | case Qt::Key_Minus: |
1619 | size = p->mHourSize - 2; | 1619 | size = p->mHourSize - 2; |
1620 | if ( size >= 4 ) | 1620 | if ( size >= 4 ) |
1621 | configureAgenda( size ); | 1621 | configureAgenda( size ); |
1622 | break; | 1622 | break; |
1623 | 1623 | ||
1624 | 1624 | ||
1625 | default: | 1625 | default: |
1626 | e->ignore(); | 1626 | e->ignore(); |
1627 | } | 1627 | } |
1628 | if ( pro > 0 ) { | 1628 | if ( pro > 0 ) { |
1629 | mView->selectFilter( pro-1 ); | 1629 | mView->selectFilter( pro-1 ); |
1630 | } | 1630 | } |
1631 | if ( showSelectedDates ) { | 1631 | if ( showSelectedDates ) { |
1632 | ;// setCaptionToDates(); | 1632 | ;// setCaptionToDates(); |
1633 | } | 1633 | } |
1634 | 1634 | ||
1635 | } | 1635 | } |
1636 | 1636 | ||
1637 | void MainWindow::fillFilterMenu() | 1637 | void MainWindow::fillFilterMenu() |
1638 | { | 1638 | { |
1639 | selectFilterMenu->clear(); | 1639 | selectFilterMenu->clear(); |
1640 | bool disable = false; | 1640 | bool disable = false; |
1641 | selectFilterMenu->insertItem(i18n ( "Edit Filters" ), 0 ); | ||
1642 | selectFilterMenu->insertSeparator(); | ||
1641 | if ( mView->filterView()->filtersEnabled() ) { | 1643 | if ( mView->filterView()->filtersEnabled() ) { |
1642 | selectFilterMenu->insertItem(i18n ( "Turn filter off" ), 0 ); | 1644 | selectFilterMenu->insertItem(i18n ( "Turn filter off" ), 1 ); |
1643 | } | 1645 | } |
1644 | else { | 1646 | else { |
1645 | selectFilterMenu->insertItem(i18n ( "Turn filter on" ), 0 ); | 1647 | selectFilterMenu->insertItem(i18n ( "Turn filter on" ), 1 ); |
1646 | disable = true; | 1648 | disable = true; |
1647 | } | 1649 | } |
1648 | selectFilterMenu->insertSeparator(); | 1650 | selectFilterMenu->insertSeparator(); |
1649 | QPtrList<CalFilter> fili = mView->filters(); | 1651 | QPtrList<CalFilter> fili = mView->filters(); |
1650 | CalFilter *curfilter = mView->filterView()->selectedFilter(); | 1652 | CalFilter *curfilter = mView->filterView()->selectedFilter(); |
1651 | CalFilter *filter = fili.first(); | 1653 | CalFilter *filter = fili.first(); |
1652 | int iii = 1; | 1654 | int iii = 2; |
1653 | while(filter) { | 1655 | while(filter) { |
1654 | selectFilterMenu->insertItem( filter->name(), iii ); | 1656 | selectFilterMenu->insertItem( filter->name(), iii ); |
1655 | if ( filter == curfilter) | 1657 | if ( filter == curfilter) |
1656 | selectFilterMenu->setItemChecked( iii, true ); | 1658 | selectFilterMenu->setItemChecked( iii, true ); |
1657 | if ( disable ) | 1659 | if ( disable ) |
1658 | selectFilterMenu->setItemEnabled( iii, false ); | 1660 | selectFilterMenu->setItemEnabled( iii, false ); |
1659 | filter = fili.next(); | 1661 | filter = fili.next(); |
1660 | ++iii; | 1662 | ++iii; |
1661 | } | 1663 | } |
1662 | } | 1664 | } |
1663 | void MainWindow::selectFilter( int fil ) | 1665 | void MainWindow::selectFilter( int fil ) |
1664 | { | 1666 | { |
1665 | if ( fil == 0 ) { | 1667 | if ( fil == 0 ) { |
1668 | mView->editFilters( ); | ||
1669 | } else if ( fil == 1 ){ | ||
1666 | mView->toggleFilerEnabled( ); | 1670 | mView->toggleFilerEnabled( ); |
1667 | } else { | 1671 | } else { |
1668 | mView->selectFilter( fil-1 ); | 1672 | mView->selectFilter( fil-2 ); |
1669 | } | 1673 | } |
1670 | } | 1674 | } |
1671 | void MainWindow::configureToolBar( int item ) | 1675 | void MainWindow::configureToolBar( int item ) |
1672 | { | 1676 | { |
1673 | 1677 | ||
1674 | configureToolBarMenu->setItemChecked( item, !configureToolBarMenu-> isItemChecked ( item ) ); | 1678 | configureToolBarMenu->setItemChecked( item, !configureToolBarMenu-> isItemChecked ( item ) ); |
1675 | KOPrefs *p = KOPrefs::instance(); | 1679 | KOPrefs *p = KOPrefs::instance(); |
1676 | p-> mShowIconStretch= configureToolBarMenu->isItemChecked( 5 ); | 1680 | p-> mShowIconStretch= configureToolBarMenu->isItemChecked( 5 ); |
1677 | p-> mShowIconNewEvent= configureToolBarMenu->isItemChecked( 10 ); | 1681 | p-> mShowIconNewEvent= configureToolBarMenu->isItemChecked( 10 ); |
1678 | p->mShowIconNewTodo = configureToolBarMenu->isItemChecked( 20 ); | 1682 | p->mShowIconNewTodo = configureToolBarMenu->isItemChecked( 20 ); |
1679 | p-> mShowIconSearch= configureToolBarMenu->isItemChecked( 120 ); | 1683 | p-> mShowIconSearch= configureToolBarMenu->isItemChecked( 120 ); |
1680 | p-> mShowIconList= configureToolBarMenu->isItemChecked( 30 ); | 1684 | p-> mShowIconList= configureToolBarMenu->isItemChecked( 30 ); |
1681 | p-> mShowIconDay1= configureToolBarMenu->isItemChecked( 40 ); | 1685 | p-> mShowIconDay1= configureToolBarMenu->isItemChecked( 40 ); |
1682 | p-> mShowIconDay5= configureToolBarMenu->isItemChecked( 50 ); | 1686 | p-> mShowIconDay5= configureToolBarMenu->isItemChecked( 50 ); |
1683 | p-> mShowIconDay7= configureToolBarMenu->isItemChecked( 60 ); | 1687 | p-> mShowIconDay7= configureToolBarMenu->isItemChecked( 60 ); |
1684 | p-> mShowIconMonth= configureToolBarMenu->isItemChecked( 70 ); | 1688 | p-> mShowIconMonth= configureToolBarMenu->isItemChecked( 70 ); |
1685 | p-> mShowIconTodoview= configureToolBarMenu->isItemChecked( 80 ); | 1689 | p-> mShowIconTodoview= configureToolBarMenu->isItemChecked( 80 ); |
1686 | p-> mShowIconBackFast= configureToolBarMenu->isItemChecked( 200 ); | 1690 | p-> mShowIconBackFast= configureToolBarMenu->isItemChecked( 200 ); |
1687 | p-> mShowIconBack = configureToolBarMenu->isItemChecked( 210 ); | 1691 | p-> mShowIconBack = configureToolBarMenu->isItemChecked( 210 ); |
1688 | p-> mShowIconToday= configureToolBarMenu->isItemChecked( 130 ); | 1692 | p-> mShowIconToday= configureToolBarMenu->isItemChecked( 130 ); |
1689 | p-> mShowIconForward= configureToolBarMenu->isItemChecked( 220 ); | 1693 | p-> mShowIconForward= configureToolBarMenu->isItemChecked( 220 ); |
1690 | p-> mShowIconForwardFast= configureToolBarMenu->isItemChecked( 230 ); | 1694 | p-> mShowIconForwardFast= configureToolBarMenu->isItemChecked( 230 ); |
1691 | p-> mShowIconNextDays= configureToolBarMenu->isItemChecked( 100 ); | 1695 | p-> mShowIconNextDays= configureToolBarMenu->isItemChecked( 100 ); |
1692 | p-> mShowIconNext= configureToolBarMenu->isItemChecked( 110 ); | 1696 | p-> mShowIconNext= configureToolBarMenu->isItemChecked( 110 ); |
1693 | p-> mShowIconJournal= configureToolBarMenu->isItemChecked( 90 ); | 1697 | p-> mShowIconJournal= configureToolBarMenu->isItemChecked( 90 ); |
1694 | p-> mShowIconWhatsThis= configureToolBarMenu->isItemChecked( 300 ); | 1698 | p-> mShowIconWhatsThis= configureToolBarMenu->isItemChecked( 300 ); |
1695 | // initActions(); | 1699 | // initActions(); |
1696 | } | 1700 | } |
1697 | 1701 | ||
1698 | void MainWindow::setCaptionToDates() | 1702 | void MainWindow::setCaptionToDates() |
1699 | { | 1703 | { |
1700 | QString selDates; | 1704 | QString selDates; |
1701 | selDates = KGlobal::locale()->formatDate(mView->startDate(), true); | 1705 | selDates = KGlobal::locale()->formatDate(mView->startDate(), true); |
1702 | if (mView->startDate() < mView->endDate() ) | 1706 | if (mView->startDate() < mView->endDate() ) |
1703 | selDates += " - " + KGlobal::locale()->formatDate(mView->endDate(), true); | 1707 | selDates += " - " + KGlobal::locale()->formatDate(mView->endDate(), true); |
1704 | setCaption( i18n("Dates: ") + selDates ); | 1708 | setCaption( i18n("Dates: ") + selDates ); |
1705 | 1709 | ||
1706 | } | 1710 | } |
1707 | // parameter item == 0: reinit | 1711 | // parameter item == 0: reinit |
1708 | void MainWindow::configureAgenda( int item ) | 1712 | void MainWindow::configureAgenda( int item ) |
1709 | { | 1713 | { |
1710 | 1714 | ||
1711 | KOPrefs *p = KOPrefs::instance(); | 1715 | KOPrefs *p = KOPrefs::instance(); |
1712 | 1716 | ||
1713 | int i; | 1717 | int i; |
1714 | // do not allow 4 for widgets higher than 480 | 1718 | // do not allow 4 for widgets higher than 480 |
1715 | // if ( QApplication::desktop()->height() > 480 ) { | 1719 | // if ( QApplication::desktop()->height() > 480 ) { |
1716 | // if ( item == 4 ) | 1720 | // if ( item == 4 ) |
1717 | // item = 6; | 1721 | // item = 6; |
1718 | // } | 1722 | // } |
1719 | for ( i = 4; i <= 18; i= i+2 ) | 1723 | for ( i = 4; i <= 18; i= i+2 ) |
1720 | configureAgendaMenu->setItemChecked( i, false ); | 1724 | configureAgendaMenu->setItemChecked( i, false ); |
1721 | configureAgendaMenu->setItemChecked( item, true ); | 1725 | configureAgendaMenu->setItemChecked( item, true ); |
1722 | if ( p->mHourSize == item ) | 1726 | if ( p->mHourSize == item ) |
1723 | return; | 1727 | return; |
1724 | p->mHourSize=item; | 1728 | p->mHourSize=item; |
1725 | mView->viewManager()->agendaView()->updateConfig(); | 1729 | mView->viewManager()->agendaView()->updateConfig(); |
1726 | } | 1730 | } |
1727 | 1731 | ||
1728 | void MainWindow::saveCalendar() | 1732 | void MainWindow::saveCalendar() |
1729 | { | 1733 | { |
1730 | QString fn = KOPrefs::instance()->mLastSaveFile; | 1734 | QString fn = KOPrefs::instance()->mLastSaveFile; |
1731 | fn = KFileDialog::getSaveFileName( fn, i18n("Save backup filename"), this ); | 1735 | fn = KFileDialog::getSaveFileName( fn, i18n("Save backup filename"), this ); |
1732 | 1736 | ||
1733 | if ( fn == "" ) | 1737 | if ( fn == "" ) |
1734 | return; | 1738 | return; |
1735 | QFileInfo info; | 1739 | QFileInfo info; |
1736 | info.setFile( fn ); | 1740 | info.setFile( fn ); |
1737 | QString mes; | 1741 | QString mes; |
1738 | bool createbup = true; | 1742 | bool createbup = true; |
1739 | if ( info. exists() ) { | 1743 | if ( info. exists() ) { |
1740 | mes = i18n("Backup file\nalready exists!\nOld backup file from:\n%1\nOverwrite?\n").arg(KGlobal::locale()->formatDateTime(info.lastModified (), true, false )) ; | 1744 | mes = i18n("Backup file\nalready exists!\nOld backup file from:\n%1\nOverwrite?\n").arg(KGlobal::locale()->formatDateTime(info.lastModified (), true, false )) ; |
1741 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"),mes, | 1745 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"),mes, |
1742 | i18n("Overwrite!"), i18n("Cancel"), 0, | 1746 | i18n("Overwrite!"), i18n("Cancel"), 0, |
1743 | 0, 1 ); | 1747 | 0, 1 ); |
1744 | if ( result != 0 ) { | 1748 | if ( result != 0 ) { |
1745 | createbup = false; | 1749 | createbup = false; |
1746 | } | 1750 | } |
1747 | } | 1751 | } |
1748 | if ( createbup ) { | 1752 | if ( createbup ) { |
1749 | mView->saveCalendar( fn ); | 1753 | mView->saveCalendar( fn ); |
1750 | mes = i18n("KO/Pi:Saved %1").arg(fn); | 1754 | mes = i18n("KO/Pi:Saved %1").arg(fn); |
1751 | KOPrefs::instance()->mLastSaveFile = fn; | 1755 | KOPrefs::instance()->mLastSaveFile = fn; |
1752 | setCaption(mes); | 1756 | setCaption(mes); |
1753 | } | 1757 | } |
1754 | } | 1758 | } |
1755 | void MainWindow::loadCalendar() | 1759 | void MainWindow::loadCalendar() |
1756 | { | 1760 | { |
1757 | 1761 | ||
1758 | QString fn = KOPrefs::instance()->mLastLoadFile; | 1762 | QString fn = KOPrefs::instance()->mLastLoadFile; |
1759 | fn = KFileDialog::getOpenFileName( fn, i18n("Load backup filename"), this ); | 1763 | fn = KFileDialog::getOpenFileName( fn, i18n("Load backup filename"), this ); |
1760 | 1764 | ||
1761 | if ( fn == "" ) | 1765 | if ( fn == "" ) |
1762 | return; | 1766 | return; |
1763 | QFileInfo info; | 1767 | QFileInfo info; |
1764 | info.setFile( fn ); | 1768 | info.setFile( fn ); |
1765 | QString mess; | 1769 | QString mess; |
1766 | bool loadbup = true; | 1770 | bool loadbup = true; |
1767 | if ( info. exists() ) { | 1771 | if ( info. exists() ) { |
1768 | mess = i18n("Backup file from:\n%1\nLoading backup\nfile will delete\nyour current Data!\n").arg(KGlobal::locale()->formatDateTime(info.lastModified (), true, false )); | 1772 | mess = i18n("Backup file from:\n%1\nLoading backup\nfile will delete\nyour current Data!\n").arg(KGlobal::locale()->formatDateTime(info.lastModified (), true, false )); |
1769 | int result = QMessageBox::warning( this, "KO/Pi: Warning!", | 1773 | int result = QMessageBox::warning( this, "KO/Pi: Warning!", |
1770 | mess, | 1774 | mess, |
1771 | i18n("Load!"), i18n("Cancel"), 0, | 1775 | i18n("Load!"), i18n("Cancel"), 0, |
1772 | 0, 1 ); | 1776 | 0, 1 ); |
1773 | if ( result != 0 ) { | 1777 | if ( result != 0 ) { |
1774 | loadbup = false; | 1778 | loadbup = false; |
1775 | } | 1779 | } |
1776 | } else { | 1780 | } else { |
1777 | QMessageBox::warning( this, i18n("KO/Pi: Warning!"), | 1781 | QMessageBox::warning( this, i18n("KO/Pi: Warning!"), |
1778 | i18n("Backup file\ndoes not exist!\nNothing loaded!"), 0, 0, | 1782 | i18n("Backup file\ndoes not exist!\nNothing loaded!"), 0, 0, |
1779 | 0, 1 ); | 1783 | 0, 1 ); |
1780 | 1784 | ||
1781 | return; | 1785 | return; |
1782 | } | 1786 | } |
1783 | if ( loadbup ) { | 1787 | if ( loadbup ) { |
1784 | mView->openCalendar( fn ); | 1788 | mView->openCalendar( fn ); |
1785 | KOPrefs::instance()->mLastLoadFile = fn; | 1789 | KOPrefs::instance()->mLastLoadFile = fn; |
1786 | mess = i18n("KO/Pi:Loaded %1").arg(fn) ; | 1790 | mess = i18n("KO/Pi:Loaded %1").arg(fn) ; |
1787 | setCaption(mess); | 1791 | setCaption(mess); |
1788 | } | 1792 | } |
1789 | 1793 | ||
1790 | } | 1794 | } |
1791 | void MainWindow::quickImportIcal() | 1795 | void MainWindow::quickImportIcal() |
1792 | { | 1796 | { |
1793 | importFile( KOPrefs::instance()->mLastImportFile, false ); | 1797 | importFile( KOPrefs::instance()->mLastImportFile, false ); |
1794 | } | 1798 | } |
1795 | void MainWindow::importFile( QString fn, bool quick ) | 1799 | void MainWindow::importFile( QString fn, bool quick ) |
1796 | { | 1800 | { |
1797 | QFileInfo info; | 1801 | QFileInfo info; |
1798 | info.setFile( fn ); | 1802 | info.setFile( fn ); |
1799 | QString mess; | 1803 | QString mess; |
1800 | bool loadbup = true; | 1804 | bool loadbup = true; |
1801 | if ( !info. exists() ) { | 1805 | if ( !info. exists() ) { |
1802 | mess = i18n("Import file \n...%1\ndoes not exist!\nNothing imported!\n").arg(fn.right( 30)); | 1806 | mess = i18n("Import file \n...%1\ndoes not exist!\nNothing imported!\n").arg(fn.right( 30)); |
1803 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), | 1807 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), |
1804 | mess ); | 1808 | mess ); |
1805 | return; | 1809 | return; |
1806 | } | 1810 | } |
1807 | int result = 0; | 1811 | int result = 0; |
1808 | if ( !quick ) { | 1812 | if ( !quick ) { |
1809 | mess = i18n( "Import file \n...%1\nfrom:\n%2\nDuplicated entries\nwill not be imported!\n").arg(fn.right( 25)).arg(KGlobal::locale()->formatDateTime(info.lastModified (), true, false )); | 1813 | mess = i18n( "Import file \n...%1\nfrom:\n%2\nDuplicated entries\nwill not be imported!\n").arg(fn.right( 25)).arg(KGlobal::locale()->formatDateTime(info.lastModified (), true, false )); |
1810 | result = QMessageBox::warning( this, "KO/Pi: Warning!", | 1814 | result = QMessageBox::warning( this, "KO/Pi: Warning!", |
1811 | mess, | 1815 | mess, |
1812 | "Import", "Cancel", 0, | 1816 | "Import", "Cancel", 0, |
1813 | 0, 1 ); | 1817 | 0, 1 ); |
1814 | } | 1818 | } |
1815 | if ( result == 0 ) { | 1819 | if ( result == 0 ) { |
1816 | if ( mView->openCalendar( fn, true )) { | 1820 | if ( mView->openCalendar( fn, true )) { |
1817 | KOPrefs::instance()->mLastImportFile = fn; | 1821 | KOPrefs::instance()->mLastImportFile = fn; |
1818 | setCaption(i18n("Imported file successfully")); | 1822 | setCaption(i18n("Imported file successfully")); |
1819 | } else { | 1823 | } else { |
1820 | setCaption(i18n("Error importing file")); | 1824 | setCaption(i18n("Error importing file")); |
1821 | } | 1825 | } |
1822 | } | 1826 | } |
1823 | } | 1827 | } |
1824 | 1828 | ||
1825 | void MainWindow::importIcal() | 1829 | void MainWindow::importIcal() |
1826 | { | 1830 | { |
1827 | 1831 | ||
1828 | QString fn =KOPrefs::instance()->mLastImportFile; | 1832 | QString fn =KOPrefs::instance()->mLastImportFile; |
1829 | 1833 | ||
1830 | fn =KFileDialog:: getOpenFileName( fn, i18n("Import filename(*.ics/*.vcs)"), this ); | 1834 | fn =KFileDialog:: getOpenFileName( fn, i18n("Import filename(*.ics/*.vcs)"), this ); |
1831 | if ( fn == "" ) | 1835 | if ( fn == "" ) |
1832 | return; | 1836 | return; |
1833 | importFile( fn, true ); | 1837 | importFile( fn, true ); |
1834 | 1838 | ||
1835 | } | 1839 | } |
1836 | 1840 | ||
1837 | void MainWindow::exportVCalendar() | 1841 | void MainWindow::exportVCalendar() |
1838 | { | 1842 | { |
1839 | QString fn = KOPrefs::instance()->mLastVcalFile; | 1843 | QString fn = KOPrefs::instance()->mLastVcalFile; |
1840 | fn = KFileDialog::getSaveFileName( fn, i18n("Export vcal filename(*.vcs)"), this ); | 1844 | fn = KFileDialog::getSaveFileName( fn, i18n("Export vcal filename(*.vcs)"), this ); |
1841 | if ( fn == "" ) | 1845 | if ( fn == "" ) |
1842 | return; | 1846 | return; |
1843 | QFileInfo info; | 1847 | QFileInfo info; |
1844 | info.setFile( fn ); | 1848 | info.setFile( fn ); |
1845 | QString mes; | 1849 | QString mes; |
1846 | bool createbup = true; | 1850 | bool createbup = true; |
1847 | if ( info. exists() ) { | 1851 | if ( info. exists() ) { |
1848 | mes = i18n("Save file\nalready exists!\nOld save file from:\n%1\nOverwrite?\n").arg (KGlobal::locale()->formatDateTime(info.lastModified (), true, false ) ); | 1852 | mes = i18n("Save file\nalready exists!\nOld save file from:\n%1\nOverwrite?\n").arg (KGlobal::locale()->formatDateTime(info.lastModified (), true, false ) ); |
1849 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"),mes, | 1853 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"),mes, |
1850 | i18n("Overwrite!"), i18n("Cancel"), 0, | 1854 | i18n("Overwrite!"), i18n("Cancel"), 0, |
1851 | 0, 1 ); | 1855 | 0, 1 ); |
1852 | if ( result != 0 ) { | 1856 | if ( result != 0 ) { |
1853 | createbup = false; | 1857 | createbup = false; |
1854 | } | 1858 | } |
1855 | } | 1859 | } |
1856 | if ( createbup ) { | 1860 | if ( createbup ) { |
1857 | if ( mView->exportVCalendar( fn ) ) { | 1861 | if ( mView->exportVCalendar( fn ) ) { |
1858 | KOPrefs::instance()->mLastVcalFile = fn; | 1862 | KOPrefs::instance()->mLastVcalFile = fn; |
1859 | if ( fn.length() > 20 ) | 1863 | if ( fn.length() > 20 ) |
1860 | mes = i18n("KO/Pi:Exported to ...%1").arg(fn.right(20)) ; | 1864 | mes = i18n("KO/Pi:Exported to ...%1").arg(fn.right(20)) ; |
1861 | else | 1865 | else |
1862 | mes = i18n("KO/Pi:Exported to %1").arg(fn ); | 1866 | mes = i18n("KO/Pi:Exported to %1").arg(fn ); |
1863 | setCaption(mes); | 1867 | setCaption(mes); |
1864 | } | 1868 | } |
1865 | } | 1869 | } |
1866 | 1870 | ||
1867 | } | 1871 | } |
1868 | 1872 | ||
1869 | void MainWindow::syncFileRequest() | 1873 | void MainWindow::syncFileRequest() |
1870 | { | 1874 | { |
1871 | if ( KOPrefs::instance()->mPassiveSyncWithDesktop ) { | 1875 | if ( KOPrefs::instance()->mPassiveSyncWithDesktop ) { |
1872 | mSyncManager->slotSyncMenu( 999 ); | 1876 | mSyncManager->slotSyncMenu( 999 ); |
1873 | } | 1877 | } |
1874 | save(); | 1878 | save(); |
1875 | } | 1879 | } |
1876 | void MainWindow::getFile( bool success ) | 1880 | void MainWindow::getFile( bool success ) |
1877 | { | 1881 | { |
1878 | if ( ! success ) { | 1882 | if ( ! success ) { |
1879 | setCaption( i18n("Error receiving file. Nothing changed!") ); | 1883 | setCaption( i18n("Error receiving file. Nothing changed!") ); |
1880 | return; | 1884 | return; |
1881 | } | 1885 | } |
1882 | mView->openCalendar( defaultFileName() ); | 1886 | mView->openCalendar( defaultFileName() ); |
1883 | if ( KOPrefs::instance()->mPassiveSyncWithDesktop ) { | 1887 | if ( KOPrefs::instance()->mPassiveSyncWithDesktop ) { |
1884 | mSyncManager->slotSyncMenu( 999 ); | 1888 | mSyncManager->slotSyncMenu( 999 ); |
1885 | } | 1889 | } |
1886 | setCaption( i18n("Pi-Sync successful!") ); | 1890 | setCaption( i18n("Pi-Sync successful!") ); |
1887 | } | 1891 | } |
1888 | 1892 | ||
1889 | void MainWindow::printSel( ) | 1893 | void MainWindow::printSel( ) |
1890 | { | 1894 | { |
1891 | mView->viewManager()->agendaView()->agenda()->printSelection(); | 1895 | mView->viewManager()->agendaView()->agenda()->printSelection(); |
1892 | } | 1896 | } |
1893 | 1897 | ||
1894 | void MainWindow::printCal() | 1898 | void MainWindow::printCal() |
1895 | { | 1899 | { |
1896 | mView->print();//mCp->showDialog(); | 1900 | mView->print();//mCp->showDialog(); |
1897 | } | 1901 | } |
1898 | 1902 | ||