author | zautrix <zautrix> | 2005-07-02 22:11:57 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-07-02 22:11:57 (UTC) |
commit | 3e2908a91251482d91404464aaf98ce902a319ce (patch) (unidiff) | |
tree | 8e42916874c48ddaefb9c060b67b38376e63dd62 /korganizer | |
parent | 5cf73f798229641d23025af064e87fa88ab3de91 (diff) | |
download | kdepimpi-3e2908a91251482d91404464aaf98ce902a319ce.zip kdepimpi-3e2908a91251482d91404464aaf98ce902a319ce.tar.gz kdepimpi-3e2908a91251482d91404464aaf98ce902a319ce.tar.bz2 |
added lm
-rw-r--r-- | korganizer/kolistview.cpp | 37 |
1 files changed, 26 insertions, 11 deletions
diff --git a/korganizer/kolistview.cpp b/korganizer/kolistview.cpp index ea037a9..cec0476 100644 --- a/korganizer/kolistview.cpp +++ b/korganizer/kolistview.cpp | |||
@@ -1,478 +1,493 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KOrganizer. | 2 | This file is part of KOrganizer. |
3 | Copyright (c) 1999 Preston Brown | 3 | Copyright (c) 1999 Preston Brown |
4 | Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org> | 4 | Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org> |
5 | 5 | ||
6 | This program is free software; you can redistribute it and/or modify | 6 | This program is free software; you can redistribute it and/or modify |
7 | it under the terms of the GNU General Public License as published by | 7 | it under the terms of the GNU General Public License as published by |
8 | the Free Software Foundation; either version 2 of the License, or | 8 | the Free Software Foundation; either version 2 of the License, or |
9 | (at your option) any later version. | 9 | (at your option) any later version. |
10 | 10 | ||
11 | This program is distributed in the hope that it will be useful, | 11 | This program is distributed in the hope that it will be useful, |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 | GNU General Public License for more details. | 14 | GNU General Public License for more details. |
15 | 15 | ||
16 | You should have received a copy of the GNU General Public License | 16 | You should have received a copy of the GNU General Public License |
17 | along with this program; if not, write to the Free Software | 17 | along with this program; if not, write to the Free Software |
18 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 18 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
19 | 19 | ||
20 | As a special exception, permission is given to link this program | 20 | As a special exception, permission is given to link this program |
21 | with any edition of Qt, and distribute the resulting executable, | 21 | with any edition of Qt, and distribute the resulting executable, |
22 | without including the source code for Qt in the source distribution. | 22 | without including the source code for Qt in the source distribution. |
23 | */ | 23 | */ |
24 | 24 | ||
25 | #include <qlistview.h> | 25 | #include <qlistview.h> |
26 | #include <qlayout.h> | 26 | #include <qlayout.h> |
27 | #include <qlabel.h> | 27 | #include <qlabel.h> |
28 | #include <qpopupmenu.h> | 28 | #include <qpopupmenu.h> |
29 | #include <qprogressbar.h> | 29 | #include <qprogressbar.h> |
30 | #include <qfileinfo.h> | 30 | #include <qfileinfo.h> |
31 | #include <qmessagebox.h> | 31 | #include <qmessagebox.h> |
32 | #include <qdialog.h> | 32 | #include <qdialog.h> |
33 | #include <qtextstream.h> | 33 | #include <qtextstream.h> |
34 | #include <qdir.h> | 34 | #include <qdir.h> |
35 | #include <qwhatsthis.h> | 35 | #include <qwhatsthis.h> |
36 | #include <qregexp.h> | 36 | #include <qregexp.h> |
37 | #include <qpainter.h> | 37 | #include <qpainter.h> |
38 | #include <qpaintdevicemetrics.h> | 38 | #include <qpaintdevicemetrics.h> |
39 | 39 | ||
40 | #include <klocale.h> | 40 | #include <klocale.h> |
41 | #include <kdebug.h> | 41 | #include <kdebug.h> |
42 | #include <kiconloader.h> | 42 | #include <kiconloader.h> |
43 | #include <kglobal.h> | 43 | #include <kglobal.h> |
44 | 44 | ||
45 | #include <libkdepim/kpimglobalprefs.h> | 45 | #include <libkdepim/kpimglobalprefs.h> |
46 | #include <libkcal/calendar.h> | 46 | #include <libkcal/calendar.h> |
47 | #include <libkcal/calendarlocal.h> | 47 | #include <libkcal/calendarlocal.h> |
48 | #include <libkcal/icalformat.h> | 48 | #include <libkcal/icalformat.h> |
49 | #include <libkcal/vcalformat.h> | 49 | #include <libkcal/vcalformat.h> |
50 | #include <libkcal/recurrence.h> | 50 | #include <libkcal/recurrence.h> |
51 | #include <libkcal/filestorage.h> | 51 | #include <libkcal/filestorage.h> |
52 | #include <libkdepim/categoryselectdialog.h> | 52 | #include <libkdepim/categoryselectdialog.h> |
53 | #include <libkcal/kincidenceformatter.h> | 53 | #include <libkcal/kincidenceformatter.h> |
54 | #ifndef DESKTOP_VERSION | 54 | #ifndef DESKTOP_VERSION |
55 | #include <qpe/qpeapplication.h> | 55 | #include <qpe/qpeapplication.h> |
56 | #else | 56 | #else |
57 | #include <qapplication.h> | 57 | #include <qapplication.h> |
58 | #endif | 58 | #endif |
59 | 59 | ||
60 | #ifndef KORG_NOPRINTER | 60 | #ifndef KORG_NOPRINTER |
61 | #include "calprinter.h" | 61 | #include "calprinter.h" |
62 | #endif | 62 | #endif |
63 | #include "koglobals.h" | 63 | #include "koglobals.h" |
64 | #include "koprefs.h" | 64 | #include "koprefs.h" |
65 | #include "kfiledialog.h" | 65 | #include "kfiledialog.h" |
66 | 66 | ||
67 | #include "kolistview.h" | 67 | #include "kolistview.h" |
68 | #include "koeventviewer.h" | 68 | #include "koeventviewer.h" |
69 | 69 | ||
70 | extern QPixmap* sgListViewCompletedPix[6]; | 70 | extern QPixmap* sgListViewCompletedPix[6]; |
71 | 71 | ||
72 | class KOListViewWhatsThis :public QWhatsThis | 72 | class KOListViewWhatsThis :public QWhatsThis |
73 | { | 73 | { |
74 | public: | 74 | public: |
75 | KOListViewWhatsThis( QWidget *wid, KOListView* view ) : QWhatsThis( wid ), _wid(wid),_view (view) { }; | 75 | KOListViewWhatsThis( QWidget *wid, KOListView* view ) : QWhatsThis( wid ), _wid(wid),_view (view) { }; |
76 | 76 | ||
77 | protected: | 77 | protected: |
78 | virtual QString text( const QPoint& p) | 78 | virtual QString text( const QPoint& p) |
79 | { | 79 | { |
80 | return _view->getWhatsThisText(p) ; | 80 | return _view->getWhatsThisText(p) ; |
81 | } | 81 | } |
82 | private: | 82 | private: |
83 | QWidget* _wid; | 83 | QWidget* _wid; |
84 | KOListView * _view; | 84 | KOListView * _view; |
85 | }; | 85 | }; |
86 | 86 | ||
87 | 87 | ||
88 | ListItemVisitor::ListItemVisitor(KOListViewItem *item, QDate date ) | 88 | ListItemVisitor::ListItemVisitor(KOListViewItem *item, QDate date ) |
89 | { | 89 | { |
90 | mItem = item; | 90 | mItem = item; |
91 | mDate = date; | 91 | mDate = date; |
92 | } | 92 | } |
93 | 93 | ||
94 | ListItemVisitor::~ListItemVisitor() | 94 | ListItemVisitor::~ListItemVisitor() |
95 | { | 95 | { |
96 | } | 96 | } |
97 | 97 | ||
98 | bool ListItemVisitor::visit(Event *e) | 98 | bool ListItemVisitor::visit(Event *e) |
99 | { | 99 | { |
100 | bool ok = false; | 100 | bool ok = false; |
101 | QString start, end; | 101 | QString start, end; |
102 | QDate ds, de; | 102 | QDate ds, de; |
103 | if ( e->doesRecur() ) { | 103 | if ( e->doesRecur() ) { |
104 | ds = e->getNextOccurence( QDateTime( mDate, QTime(0,0,0)), &ok ).date(); | 104 | ds = e->getNextOccurence( QDateTime( mDate, QTime(0,0,0)), &ok ).date(); |
105 | if ( ok ) { | 105 | if ( ok ) { |
106 | int days = e->dtStart().date().daysTo(e->dtEnd().date() ); | 106 | int days = e->dtStart().date().daysTo(e->dtEnd().date() ); |
107 | start = KGlobal::locale()->formatDate(ds,true); | 107 | start = KGlobal::locale()->formatDate(ds,true); |
108 | de = ds.addDays( days); | 108 | de = ds.addDays( days); |
109 | end = KGlobal::locale()->formatDate(de,true); | 109 | end = KGlobal::locale()->formatDate(de,true); |
110 | } | 110 | } |
111 | 111 | ||
112 | } | 112 | } |
113 | if ( ! ok ) { | 113 | if ( ! ok ) { |
114 | start =e->dtStartDateStr(); | 114 | start =e->dtStartDateStr(); |
115 | end = e->dtEndDateStr(); | 115 | end = e->dtEndDateStr(); |
116 | ds = e->dtStart().date(); | 116 | ds = e->dtStart().date(); |
117 | de = e->dtEnd().date(); | 117 | de = e->dtEnd().date(); |
118 | } | 118 | } |
119 | mItem->setText(0,e->summary()); | 119 | mItem->setText(0,e->summary()); |
120 | mItem->setText(1,start); | 120 | mItem->setText(1,start); |
121 | if ( e->doesFloat() ) | 121 | if ( e->doesFloat() ) |
122 | mItem->setText(2,"---"); | 122 | mItem->setText(2,"---"); |
123 | else | 123 | else |
124 | mItem->setText(2,e->dtStartTimeStr()); | 124 | mItem->setText(2,e->dtStartTimeStr()); |
125 | mItem->setText(3,end); | 125 | mItem->setText(3,end); |
126 | if ( e->doesFloat() ) | 126 | if ( e->doesFloat() ) |
127 | mItem->setText(4,"---"); | 127 | mItem->setText(4,"---"); |
128 | else | 128 | else |
129 | mItem->setText(4,e->dtEndTimeStr()); | 129 | mItem->setText(4,e->dtEndTimeStr()); |
130 | if ( e->isAlarmEnabled() ) { | 130 | if ( e->isAlarmEnabled() ) { |
131 | mItem->setText(5,e->alarms().first()->offsetText() ); | 131 | mItem->setText(5,e->alarms().first()->offsetText() ); |
132 | } else { | 132 | } else { |
133 | mItem->setText(5, i18n("No")); | 133 | mItem->setText(5, i18n("No")); |
134 | } | 134 | } |
135 | mItem->setText(6, e->recurrence()->recurrenceText()); | 135 | mItem->setText(6, e->recurrence()->recurrenceText()); |
136 | if( ! e->doesRecur() ) | 136 | if( ! e->doesRecur() ) |
137 | mItem->setSortKey( 6, "-" ); | 137 | mItem->setSortKey( 6, "-" ); |
138 | mItem->setText(7,"---"); | 138 | mItem->setText(7,"---"); |
139 | mItem->setText(8,"---"); | 139 | mItem->setText(8,"---"); |
140 | mItem->setText(9, e->cancelled() ? i18n("Yes") : i18n("No")); | 140 | mItem->setText(9, e->cancelled() ? i18n("Yes") : i18n("No")); |
141 | mItem->setText(10,e->categoriesStr()); | 141 | mItem->setText(10,e->categoriesStr()); |
142 | mItem->setText(11, KOPrefs::instance()->calName( e->calID() )); | 142 | mItem->setText(11, KOPrefs::instance()->calName( e->calID() )); |
143 | 143 | mItem->setText(12, KGlobal::locale()->formatDateTime( e->lastModified(), true, true )); | |
144 | QString key; | 144 | |
145 | QTime t = e->doesFloat() ? QTime(0,0) : e->dtStart().time(); | 145 | QString key; |
146 | QDate d = e->lastModified().date(); | ||
147 | QTime t = e->lastModified().time(); | ||
148 | key.sprintf("%04d%02d%02d%02d%02d%02d",d.year(),d.month(),d.day(),t.hour(),t.minute(),t.second() ); | ||
149 | mItem->setSortKey(12,key); | ||
150 | t = e->doesFloat() ? QTime(0,0) : e->dtStart().time(); | ||
146 | key.sprintf("%04d%02d%02d%02d%02d",ds.year(),ds.month(),ds.day(),t.hour(),t.minute()); | 151 | key.sprintf("%04d%02d%02d%02d%02d",ds.year(),ds.month(),ds.day(),t.hour(),t.minute()); |
147 | mItem->setSortKey(1,key); | 152 | mItem->setSortKey(1,key); |
148 | 153 | ||
149 | t = e->doesFloat() ? QTime(0,0) : e->dtEnd().time(); | 154 | t = e->doesFloat() ? QTime(0,0) : e->dtEnd().time(); |
150 | key.sprintf("%04d%02d%02d%02d%02d",de.year(),de.month(),de.day(),t.hour(),t.minute()); | 155 | key.sprintf("%04d%02d%02d%02d%02d",de.year(),de.month(),de.day(),t.hour(),t.minute()); |
151 | mItem->setSortKey(3,key); | 156 | mItem->setSortKey(3,key); |
152 | return true; | 157 | return true; |
153 | } | 158 | } |
154 | 159 | ||
155 | bool ListItemVisitor::visit(Todo *t) | 160 | bool ListItemVisitor::visit(Todo *t) |
156 | { | 161 | { |
157 | mItem->setText(0,t->summary()); | 162 | mItem->setText(0,t->summary()); |
158 | if ( t->isCompleted() ) { | 163 | if ( t->isCompleted() ) { |
159 | mItem->setSortKey(0,"99"+ t->summary().left(10)); | 164 | mItem->setSortKey(0,"99"+ t->summary().left(10)); |
160 | } else | 165 | } else |
161 | mItem->setSortKey(0,QString::number( t->percentComplete() )+ t->summary().left(10)); | 166 | mItem->setSortKey(0,QString::number( t->percentComplete() )+ t->summary().left(10)); |
162 | mItem->setPixmap( 0, *(sgListViewCompletedPix[t->percentComplete()/20])); | 167 | mItem->setPixmap( 0, *(sgListViewCompletedPix[t->percentComplete()/20])); |
163 | if (t->hasStartDate()) { | 168 | if (t->hasStartDate()) { |
164 | mItem->setText(1,t->dtStartDateStr()); | 169 | mItem->setText(1,t->dtStartDateStr()); |
165 | if (t->doesFloat()) { | 170 | if (t->doesFloat()) { |
166 | mItem->setText(2,"---"); | 171 | mItem->setText(2,"---"); |
167 | } else { | 172 | } else { |
168 | mItem->setText(2,t->dtStartTimeStr()); | 173 | mItem->setText(2,t->dtStartTimeStr()); |
169 | } | 174 | } |
170 | } else { | 175 | } else { |
171 | mItem->setText(1,"---"); | 176 | mItem->setText(1,"---"); |
172 | mItem->setText(2,"---"); | 177 | mItem->setText(2,"---"); |
173 | } | 178 | } |
174 | mItem->setText(3,"---"); | 179 | mItem->setText(3,"---"); |
175 | mItem->setText(4,"---"); | 180 | mItem->setText(4,"---"); |
176 | if ( t->isAlarmEnabled() ) { | 181 | if ( t->isAlarmEnabled() ) { |
177 | mItem->setText(5,t->alarms().first()->offsetText() ); | 182 | mItem->setText(5,t->alarms().first()->offsetText() ); |
178 | } else { | 183 | } else { |
179 | mItem->setText(5, i18n("No")); | 184 | mItem->setText(5, i18n("No")); |
180 | } | 185 | } |
181 | mItem->setText(6, t->recurrence()->recurrenceText()); | 186 | mItem->setText(6, t->recurrence()->recurrenceText()); |
182 | if( ! t->doesRecur() ) | 187 | if( ! t->doesRecur() ) |
183 | mItem->setSortKey( 6, "-" ); | 188 | mItem->setSortKey( 6, "-" ); |
184 | if (t->hasDueDate()) { | 189 | if (t->hasDueDate()) { |
185 | mItem->setText(7,t->dtDueDateStr()); | 190 | mItem->setText(7,t->dtDueDateStr()); |
186 | if (t->doesFloat()) { | 191 | if (t->doesFloat()) { |
187 | mItem->setText(8,"---"); | 192 | mItem->setText(8,"---"); |
188 | } else { | 193 | } else { |
189 | mItem->setText(8,t->dtDueTimeStr()); | 194 | mItem->setText(8,t->dtDueTimeStr()); |
190 | } | 195 | } |
191 | } else { | 196 | } else { |
192 | mItem->setText(7,"---"); | 197 | mItem->setText(7,"---"); |
193 | mItem->setText(8,"---"); | 198 | mItem->setText(8,"---"); |
194 | } | 199 | } |
195 | mItem->setText(9, t->cancelled() ? i18n("Yes") : i18n("No")); | 200 | mItem->setText(9, t->cancelled() ? i18n("Yes") : i18n("No")); |
196 | mItem->setText(10,t->categoriesStr()); | 201 | mItem->setText(10,t->categoriesStr()); |
197 | mItem->setText(11, KOPrefs::instance()->calName( t->calID() )); | 202 | mItem->setText(11, KOPrefs::instance()->calName( t->calID() )); |
198 | 203 | mItem->setText(12, KGlobal::locale()->formatDateTime( t->lastModified(), true, true )); | |
199 | QString key; | 204 | QString key; |
200 | QDate d; | 205 | QDate d = t->lastModified().date(); |
206 | QTime tm = t->lastModified().time(); | ||
207 | key.sprintf("%04d%02d%02d%02d%02d%02d",d.year(),d.month(),d.day(),tm.hour(),tm.minute(),tm.second() ); | ||
208 | mItem->setSortKey(12,key); | ||
201 | if (t->hasDueDate()) { | 209 | if (t->hasDueDate()) { |
202 | d = t->dtDue().date(); | 210 | d = t->dtDue().date(); |
203 | QTime tm = t->doesFloat() ? QTime(0,0) : t->dtDue().time(); | 211 | tm = t->doesFloat() ? QTime(0,0) : t->dtDue().time(); |
204 | key.sprintf("%04d%02d%02d%02d%02d",d.year(),d.month(),d.day(),tm.hour(),tm.minute()); | 212 | key.sprintf("%04d%02d%02d%02d%02d",d.year(),d.month(),d.day(),tm.hour(),tm.minute()); |
205 | mItem->setSortKey(7,key); | 213 | mItem->setSortKey(7,key); |
206 | } | 214 | } |
207 | if ( t->hasStartDate() ) { | 215 | if ( t->hasStartDate() ) { |
208 | d = t->dtStart().date(); | 216 | d = t->dtStart().date(); |
209 | QTime tm = t->doesFloat() ? QTime(0,0) : t->dtStart().time(); | 217 | tm = t->doesFloat() ? QTime(0,0) : t->dtStart().time(); |
210 | key.sprintf("%04d%02d%02d%02d%02d",d.year(),d.month(),d.day(),tm.hour(),tm.minute()); | 218 | key.sprintf("%04d%02d%02d%02d%02d",d.year(),d.month(),d.day(),tm.hour(),tm.minute()); |
211 | mItem->setSortKey(1,key); | 219 | mItem->setSortKey(1,key); |
212 | } | 220 | } |
213 | return true; | 221 | return true; |
214 | } | 222 | } |
215 | 223 | ||
216 | bool ListItemVisitor::visit(Journal * j) | 224 | bool ListItemVisitor::visit(Journal * j) |
217 | { | 225 | { |
218 | 226 | ||
219 | QString des; | 227 | QString des; |
220 | if ( !j->summary().isEmpty() ) { | 228 | if ( !j->summary().isEmpty() ) { |
221 | des = j->summary(); | 229 | des = j->summary(); |
222 | } else { | 230 | } else { |
223 | des = j->description().left(30); | 231 | des = j->description().left(30); |
224 | des = des.simplifyWhiteSpace (); | 232 | des = des.simplifyWhiteSpace (); |
225 | des.replace (QRegExp ("\\n"),"" ); | 233 | des.replace (QRegExp ("\\n"),"" ); |
226 | des.replace (QRegExp ("\\r"),"" ); | 234 | des.replace (QRegExp ("\\r"),"" ); |
227 | } | 235 | } |
228 | mItem->setText(0,i18n("Journal: ")+des.left(25)); | 236 | mItem->setText(0,i18n("Journal: ")+des.left(25)); |
229 | mItem->setText(1,j->dtStartDateStr()); | 237 | mItem->setText(1,j->dtStartDateStr()); |
230 | mItem->setText(2,"---"); | 238 | mItem->setText(2,"---"); |
231 | mItem->setText(3,"---"); | 239 | mItem->setText(3,"---"); |
232 | mItem->setText(4,"---"); | 240 | mItem->setText(4,"---"); |
233 | mItem->setText(5,"---"); | 241 | mItem->setText(5,"---"); |
234 | mItem->setText(6,"---"); | 242 | mItem->setText(6,"---"); |
235 | mItem->setText(7,j->dtStartDateStr()); | 243 | mItem->setText(7,j->dtStartDateStr()); |
236 | mItem->setText(8,"---"); | 244 | mItem->setText(8,"---"); |
237 | mItem->setText(9,"---"); | 245 | mItem->setText(9,"---"); |
238 | mItem->setText(10,j->categoriesStr()); | 246 | mItem->setText(10,j->categoriesStr()); |
239 | mItem->setText(11, KOPrefs::instance()->calName( j->calID() )); | 247 | mItem->setText(11, KOPrefs::instance()->calName( j->calID() )); |
240 | 248 | mItem->setText(12, KGlobal::locale()->formatDateTime( j->lastModified(), true, true )); | |
241 | QString key; | 249 | |
242 | QDate d = j->dtStart().date(); | 250 | QString key; |
251 | QDate d = j->lastModified().date(); | ||
252 | QTime tm = j->lastModified().time(); | ||
253 | key.sprintf("%04d%02d%02d%02d%02d%02d",d.year(),d.month(),d.day(),tm.hour(),tm.minute(),tm.second() ); | ||
254 | mItem->setSortKey(12,key); | ||
255 | d = j->dtStart().date(); | ||
243 | key.sprintf("%04d%02d%02d",d.year(),d.month(),d.day()); | 256 | key.sprintf("%04d%02d%02d",d.year(),d.month(),d.day()); |
244 | mItem->setSortKey(1,key); | 257 | mItem->setSortKey(1,key); |
245 | mItem->setSortKey(7,key); | 258 | mItem->setSortKey(7,key); |
246 | 259 | ||
247 | return true; | 260 | return true; |
248 | } | 261 | } |
249 | 262 | ||
250 | KOListView::KOListView(Calendar *calendar, QWidget *parent, | 263 | KOListView::KOListView(Calendar *calendar, QWidget *parent, |
251 | const char *name) | 264 | const char *name) |
252 | : KOEventView(calendar, parent, name) | 265 | : KOEventView(calendar, parent, name) |
253 | { | 266 | { |
254 | 267 | ||
255 | mActiveItem = 0; | 268 | mActiveItem = 0; |
256 | mForceShowCompletedTodos = false; | 269 | mForceShowCompletedTodos = false; |
257 | mListView = new KOListViewListView(this); | 270 | mListView = new KOListViewListView(this); |
258 | mListView->addColumn(i18n("Summary")); | 271 | mListView->addColumn(i18n("Summary")); |
259 | mListView->addColumn(i18n("Start Date")); | 272 | mListView->addColumn(i18n("Start Date")); |
260 | mListView->addColumn(i18n("Start Time")); | 273 | mListView->addColumn(i18n("Start Time")); |
261 | mListView->addColumn(i18n("End Date")); | 274 | mListView->addColumn(i18n("End Date")); |
262 | mListView->addColumn(i18n("End Time")); | 275 | mListView->addColumn(i18n("End Time")); |
263 | mListView->addColumn(i18n("Alarm")); // alarm set? | 276 | mListView->addColumn(i18n("Alarm")); // alarm set? |
264 | mListView->addColumn(i18n("Recurs")); // recurs? | 277 | mListView->addColumn(i18n("Recurs")); // recurs? |
265 | mListView->addColumn(i18n("Due Date")); | 278 | mListView->addColumn(i18n("Due Date")); |
266 | mListView->addColumn(i18n("Due Time")); | 279 | mListView->addColumn(i18n("Due Time")); |
267 | mListView->addColumn(i18n("Cancelled")); | 280 | mListView->addColumn(i18n("Cancelled")); |
268 | mListView->addColumn(i18n("Categories")); | 281 | mListView->addColumn(i18n("Categories")); |
269 | mListView->addColumn(i18n("Calendar")); | 282 | mListView->addColumn(i18n("Calendar")); |
283 | mListView->addColumn(i18n("Last Modified")); | ||
270 | 284 | ||
271 | mListView->setColumnAlignment(0,AlignLeft); | 285 | mListView->setColumnAlignment(0,AlignLeft); |
272 | mListView->setColumnAlignment(1,AlignLeft); | 286 | mListView->setColumnAlignment(1,AlignLeft); |
273 | mListView->setColumnAlignment(2,AlignHCenter); | 287 | mListView->setColumnAlignment(2,AlignHCenter); |
274 | mListView->setColumnAlignment(3,AlignLeft); | 288 | mListView->setColumnAlignment(3,AlignLeft); |
275 | mListView->setColumnAlignment(4,AlignHCenter); | 289 | mListView->setColumnAlignment(4,AlignHCenter); |
276 | mListView->setColumnAlignment(5,AlignLeft); | 290 | mListView->setColumnAlignment(5,AlignLeft); |
277 | mListView->setColumnAlignment(6,AlignLeft); | 291 | mListView->setColumnAlignment(6,AlignLeft); |
278 | mListView->setColumnAlignment(7,AlignLeft); | 292 | mListView->setColumnAlignment(7,AlignLeft); |
279 | mListView->setColumnAlignment(8,AlignLeft); | 293 | mListView->setColumnAlignment(8,AlignLeft); |
280 | mListView->setColumnAlignment(9,AlignLeft); | 294 | mListView->setColumnAlignment(9,AlignLeft); |
281 | mListView->setColumnAlignment(10,AlignLeft); | 295 | mListView->setColumnAlignment(10,AlignLeft); |
282 | mListView->setColumnAlignment(11,AlignLeft); | 296 | mListView->setColumnAlignment(11,AlignLeft); |
297 | mListView->setColumnAlignment(12,AlignLeft); | ||
283 | mKOListViewWhatsThis = new KOListViewWhatsThis(mListView->viewport(),this); | 298 | mKOListViewWhatsThis = new KOListViewWhatsThis(mListView->viewport(),this); |
284 | 299 | ||
285 | int iii = 0; | 300 | int iii = 0; |
286 | for ( iii = 0; iii< 12 ; ++iii ) | 301 | for ( iii = 0; iii< 13 ; ++iii ) |
287 | mListView->setColumnWidthMode( iii, QListView::Manual ); | 302 | mListView->setColumnWidthMode( iii, QListView::Manual ); |
288 | 303 | ||
289 | QBoxLayout *layoutTop = new QVBoxLayout(this); | 304 | QBoxLayout *layoutTop = new QVBoxLayout(this); |
290 | layoutTop->addWidget(mListView); | 305 | layoutTop->addWidget(mListView); |
291 | mListView->setFont ( KOPrefs::instance()->mListViewFont ); | 306 | mListView->setFont ( KOPrefs::instance()->mListViewFont ); |
292 | mPopupMenu = eventPopup(); | 307 | mPopupMenu = eventPopup(); |
293 | QPopupMenu* selPopup = new QPopupMenu ( this ); | 308 | QPopupMenu* selPopup = new QPopupMenu ( this ); |
294 | mPopupMenu->insertSeparator(); | 309 | mPopupMenu->insertSeparator(); |
295 | 310 | ||
296 | selPopup->insertItem(i18n("All"),this, | 311 | selPopup->insertItem(i18n("All"),this, |
297 | SLOT(allSelection())); | 312 | SLOT(allSelection())); |
298 | selPopup->insertItem(i18n("None"),this, | 313 | selPopup->insertItem(i18n("None"),this, |
299 | SLOT(clearSelection())); | 314 | SLOT(clearSelection())); |
300 | selPopup->insertItem(i18n("Delete selected..."),this, | 315 | selPopup->insertItem(i18n("Delete selected..."),this, |
301 | SLOT(deleteAll())); | 316 | SLOT(deleteAll())); |
302 | mPopupMenu->insertItem(i18n("Selection"), selPopup ); | 317 | mPopupMenu->insertItem(i18n("Selection"), selPopup ); |
303 | mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), | 318 | mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), |
304 | i18n("Hide all selected"),this, | 319 | i18n("Hide all selected"),this, |
305 | SLOT(hideAll()),true); | 320 | SLOT(hideAll()),true); |
306 | 321 | ||
307 | selPopup->insertSeparator(); | 322 | selPopup->insertSeparator(); |
308 | #ifdef DESKTOP_VERSION | 323 | #ifdef DESKTOP_VERSION |
309 | mPopupMenu->insertSeparator(); | 324 | mPopupMenu->insertSeparator(); |
310 | mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), | 325 | mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), |
311 | i18n("Print complete list"),this, | 326 | i18n("Print complete list"),this, |
312 | SLOT(printList()),true); | 327 | SLOT(printList()),true); |
313 | #endif | 328 | #endif |
314 | mCalPopup = new QPopupMenu ( this ); | 329 | mCalPopup = new QPopupMenu ( this ); |
315 | selPopup->insertItem( i18n("Set Calendar"), mCalPopup ); | 330 | selPopup->insertItem( i18n("Set Calendar"), mCalPopup ); |
316 | 331 | ||
317 | selPopup->insertItem(i18n("Set categories")+"...",this, | 332 | selPopup->insertItem(i18n("Set categories")+"...",this, |
318 | SLOT(setCat()) ); | 333 | SLOT(setCat()) ); |
319 | selPopup->insertItem( i18n("Set alarm..."),this, | 334 | selPopup->insertItem( i18n("Set alarm..."),this, |
320 | SLOT(setAlarm())); | 335 | SLOT(setAlarm())); |
321 | #if 0 | 336 | #if 0 |
322 | mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), | 337 | mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), |
323 | i18n("Set categories")+"...",this, | 338 | i18n("Set categories")+"...",this, |
324 | SLOT(setCat()),true); | 339 | SLOT(setCat()),true); |
325 | mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), | 340 | mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), |
326 | i18n("Set alarm..."),this, | 341 | i18n("Set alarm..."),this, |
327 | SLOT(setAlarm()),true); | 342 | SLOT(setAlarm()),true); |
328 | #endif | 343 | #endif |
329 | QObject::connect(mCalPopup,SIGNAL(aboutToShow()),this, | 344 | QObject::connect(mCalPopup,SIGNAL(aboutToShow()),this, |
330 | SLOT( populateCalPopup() )); | 345 | SLOT( populateCalPopup() )); |
331 | QObject::connect(mCalPopup,SIGNAL(activated( int )),this, | 346 | QObject::connect(mCalPopup,SIGNAL(activated( int )),this, |
332 | SLOT( setCalendar( int ) )); | 347 | SLOT( setCalendar( int ) )); |
333 | QObject::connect(mPopupMenu,SIGNAL(categoryChanged( Incidence * )),this, | 348 | QObject::connect(mPopupMenu,SIGNAL(categoryChanged( Incidence * )),this, |
334 | SLOT( catChanged( Incidence * ) )); | 349 | SLOT( catChanged( Incidence * ) )); |
335 | QPopupMenu * exportPO = new QPopupMenu ( this ); | 350 | QPopupMenu * exportPO = new QPopupMenu ( this ); |
336 | selPopup->insertItem( i18n("Export"), exportPO ); | 351 | selPopup->insertItem( i18n("Export"), exportPO ); |
337 | exportPO->insertItem( i18n("As iCal (ics) file..."),this, | 352 | exportPO->insertItem( i18n("As iCal (ics) file..."),this, |
338 | SLOT(saveToFile())); | 353 | SLOT(saveToFile())); |
339 | exportPO->insertItem( i18n("As vCal (vcs) file..."),this, | 354 | exportPO->insertItem( i18n("As vCal (vcs) file..."),this, |
340 | SLOT(saveToFileVCS())); | 355 | SLOT(saveToFileVCS())); |
341 | exportPO->insertItem( i18n("Journal/Details..."),this, | 356 | exportPO->insertItem( i18n("Journal/Details..."),this, |
342 | SLOT(saveDescriptionToFile())); | 357 | SLOT(saveDescriptionToFile())); |
343 | // mPopupMenu->insertSeparator(); | 358 | // mPopupMenu->insertSeparator(); |
344 | // mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), | 359 | // mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), |
345 | // i18n("Add Categ. to selected..."),this, | 360 | // i18n("Add Categ. to selected..."),this, |
346 | // SLOT(addCat()),true); | 361 | // SLOT(addCat()),true); |
347 | //mPopupMenu->insertSeparator(); | 362 | //mPopupMenu->insertSeparator(); |
348 | #ifndef DESKTOP_VERSION | 363 | #ifndef DESKTOP_VERSION |
349 | selPopup->insertSeparator(); | 364 | selPopup->insertSeparator(); |
350 | selPopup->insertItem( i18n("Beam via IR..."),this, | 365 | selPopup->insertItem( i18n("Beam via IR..."),this, |
351 | SLOT(beamSelected())); | 366 | SLOT(beamSelected())); |
352 | #if 0 | 367 | #if 0 |
353 | mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), | 368 | mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), |
354 | i18n("Beam via IR"),this, | 369 | i18n("Beam via IR"),this, |
355 | SLOT(beamSelected()),true); | 370 | SLOT(beamSelected()),true); |
356 | #endif | 371 | #endif |
357 | #endif | 372 | #endif |
358 | /* | 373 | /* |
359 | mPopupMenu = new QPopupMenu; | 374 | mPopupMenu = new QPopupMenu; |
360 | mPopupMenu->insertItem(i18n("Edit Event"), this, | 375 | mPopupMenu->insertItem(i18n("Edit Event"), this, |
361 | SLOT (editEvent())); | 376 | SLOT (editEvent())); |
362 | mPopupMenu->insertItem(SmallIcon("delete"), i18n("Delete Event"), this, | 377 | mPopupMenu->insertItem(SmallIcon("delete"), i18n("Delete Event"), this, |
363 | SLOT (deleteEvent())); | 378 | SLOT (deleteEvent())); |
364 | mPopupMenu->insertSeparator(); | 379 | mPopupMenu->insertSeparator(); |
365 | mPopupMenu->insertItem(i18n("Show Dates"), this, | 380 | mPopupMenu->insertItem(i18n("Show Dates"), this, |
366 | SLOT(showDates())); | 381 | SLOT(showDates())); |
367 | mPopupMenu->insertItem(i18n("Hide Dates"), this, | 382 | mPopupMenu->insertItem(i18n("Hide Dates"), this, |
368 | SLOT(hideDates())); | 383 | SLOT(hideDates())); |
369 | */ | 384 | */ |
370 | QObject::connect(mListView,SIGNAL( newEvent()), | 385 | QObject::connect(mListView,SIGNAL( newEvent()), |
371 | this,SIGNAL(signalNewEvent())); | 386 | this,SIGNAL(signalNewEvent())); |
372 | QObject::connect(mListView,SIGNAL(doubleClicked(QListViewItem *)), | 387 | QObject::connect(mListView,SIGNAL(doubleClicked(QListViewItem *)), |
373 | this,SLOT(defaultItemAction(QListViewItem *))); | 388 | this,SLOT(defaultItemAction(QListViewItem *))); |
374 | QObject::connect(mListView,SIGNAL(rightButtonPressed( QListViewItem *, | 389 | QObject::connect(mListView,SIGNAL(rightButtonPressed( QListViewItem *, |
375 | const QPoint &, int )), | 390 | const QPoint &, int )), |
376 | this,SLOT(popupMenu(QListViewItem *,const QPoint &,int))); | 391 | this,SLOT(popupMenu(QListViewItem *,const QPoint &,int))); |
377 | QObject::connect(mListView,SIGNAL(currentChanged(QListViewItem *)), | 392 | QObject::connect(mListView,SIGNAL(currentChanged(QListViewItem *)), |
378 | SLOT(processSelectionChange(QListViewItem *))); | 393 | SLOT(processSelectionChange(QListViewItem *))); |
379 | QObject::connect(mListView,SIGNAL(showIncidence(Incidence *)), | 394 | QObject::connect(mListView,SIGNAL(showIncidence(Incidence *)), |
380 | SIGNAL(showIncidenceSignal(Incidence *)) ); | 395 | SIGNAL(showIncidenceSignal(Incidence *)) ); |
381 | 396 | ||
382 | readSettings(KOGlobals::config(),"KOListView Layout"); | 397 | readSettings(KOGlobals::config(),"KOListView Layout"); |
383 | } | 398 | } |
384 | 399 | ||
385 | KOListView::~KOListView() | 400 | KOListView::~KOListView() |
386 | { | 401 | { |
387 | delete mPopupMenu; | 402 | delete mPopupMenu; |
388 | #if QT_VERSION >= 0x030000 | 403 | #if QT_VERSION >= 0x030000 |
389 | 404 | ||
390 | #else | 405 | #else |
391 | delete mKOListViewWhatsThis; | 406 | delete mKOListViewWhatsThis; |
392 | #endif | 407 | #endif |
393 | } | 408 | } |
394 | 409 | ||
395 | void KOListView::catChanged( Incidence* inc) | 410 | void KOListView::catChanged( Incidence* inc) |
396 | { | 411 | { |
397 | KOListViewItem* item = getItemForEvent(inc); | 412 | KOListViewItem* item = getItemForEvent(inc); |
398 | if (item) { | 413 | if (item) { |
399 | ListItemVisitor v(item, mStartDate ); | 414 | ListItemVisitor v(item, mStartDate ); |
400 | inc->accept(v); | 415 | inc->accept(v); |
401 | } | 416 | } |
402 | } | 417 | } |
403 | QString KOListView::getWhatsThisText(QPoint p) | 418 | QString KOListView::getWhatsThisText(QPoint p) |
404 | { | 419 | { |
405 | KOListViewItem* item = ( KOListViewItem* ) mListView->itemAt( p ); | 420 | KOListViewItem* item = ( KOListViewItem* ) mListView->itemAt( p ); |
406 | if ( item ) | 421 | if ( item ) |
407 | return KIncidenceFormatter::instance()->getFormattedText( item->data(), | 422 | return KIncidenceFormatter::instance()->getFormattedText( item->data(), |
408 | KOPrefs::instance()->mWTshowDetails, | 423 | KOPrefs::instance()->mWTshowDetails, |
409 | KOPrefs::instance()->mWTshowCreated, | 424 | KOPrefs::instance()->mWTshowCreated, |
410 | KOPrefs::instance()->mWTshowChanged); | 425 | KOPrefs::instance()->mWTshowChanged); |
411 | return i18n("That is the list view" ); | 426 | return i18n("That is the list view" ); |
412 | 427 | ||
413 | } | 428 | } |
414 | 429 | ||
415 | void KOListView::setCalendar( int c ) | 430 | void KOListView::setCalendar( int c ) |
416 | { | 431 | { |
417 | int result = QMessageBox::warning( this, i18n("KO/Pi: Information!"), | 432 | int result = QMessageBox::warning( this, i18n("KO/Pi: Information!"), |
418 | i18n("This adds the selected\nitems to the calendar\n%1\nand removes them from\ntheir current calendar!").arg( KOPrefs::instance()->calName( c ) ), | 433 | i18n("This adds the selected\nitems to the calendar\n%1\nand removes them from\ntheir current calendar!").arg( KOPrefs::instance()->calName( c ) ), |
419 | i18n("Continue"), i18n("Cancel"), 0, | 434 | i18n("Continue"), i18n("Cancel"), 0, |
420 | 0, 1 ); | 435 | 0, 1 ); |
421 | if ( result != 0 ) { | 436 | if ( result != 0 ) { |
422 | return; | 437 | return; |
423 | } | 438 | } |
424 | 439 | ||
425 | QPtrList<Incidence> delSel = getSelectedIncidences() ; | 440 | QPtrList<Incidence> delSel = getSelectedIncidences() ; |
426 | int icount = delSel.count(); | 441 | int icount = delSel.count(); |
427 | if ( icount ) { | 442 | if ( icount ) { |
428 | Incidence *incidence = delSel.first(); | 443 | Incidence *incidence = delSel.first(); |
429 | while ( incidence ) { | 444 | while ( incidence ) { |
430 | incidence->setCalID( c ); | 445 | incidence->setCalID( c ); |
431 | KOListViewItem * item = getItemForEvent( incidence ); | 446 | KOListViewItem * item = getItemForEvent( incidence ); |
432 | if ( item ) { | 447 | if ( item ) { |
433 | ListItemVisitor v(item, mStartDate ); | 448 | ListItemVisitor v(item, mStartDate ); |
434 | incidence->accept(v); | 449 | incidence->accept(v); |
435 | } | 450 | } |
436 | incidence = delSel.next(); | 451 | incidence = delSel.next(); |
437 | } | 452 | } |
438 | } | 453 | } |
439 | QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars; | 454 | QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars; |
440 | KopiCalendarFile * cal = calendars.first(); | 455 | KopiCalendarFile * cal = calendars.first(); |
441 | while ( cal ) { | 456 | while ( cal ) { |
442 | mCalendar->setCalendarEnabled( cal->mCalNumber,cal->isEnabled ); | 457 | mCalendar->setCalendarEnabled( cal->mCalNumber,cal->isEnabled ); |
443 | mCalendar->setAlarmEnabled( cal->mCalNumber, cal->isAlarmEnabled ); | 458 | mCalendar->setAlarmEnabled( cal->mCalNumber, cal->isAlarmEnabled ); |
444 | mCalendar->setReadOnly( cal->mCalNumber, cal->isReadOnly ); | 459 | mCalendar->setReadOnly( cal->mCalNumber, cal->isReadOnly ); |
445 | if ( cal->isStandard ) | 460 | if ( cal->isStandard ) |
446 | mCalendar->setDefaultCalendar( cal->mCalNumber ); | 461 | mCalendar->setDefaultCalendar( cal->mCalNumber ); |
447 | cal = calendars.next(); | 462 | cal = calendars.next(); |
448 | } | 463 | } |
449 | mCalendar->setSyncEventsReadOnly(); | 464 | mCalendar->setSyncEventsReadOnly(); |
450 | mCalendar->reInitAlarmSettings(); | 465 | mCalendar->reInitAlarmSettings(); |
451 | 466 | ||
452 | } | 467 | } |
453 | void KOListView::populateCalPopup() | 468 | void KOListView::populateCalPopup() |
454 | { | 469 | { |
455 | mCalPopup->clear(); | 470 | mCalPopup->clear(); |
456 | KopiCalendarFile * kkf = KOPrefs::instance()->mCalendars.first(); | 471 | KopiCalendarFile * kkf = KOPrefs::instance()->mCalendars.first(); |
457 | while ( kkf ) { | 472 | while ( kkf ) { |
458 | int index = mCalPopup->insertItem( kkf->mName+"...", kkf->mCalNumber); | 473 | int index = mCalPopup->insertItem( kkf->mName+"...", kkf->mCalNumber); |
459 | if ( kkf->mErrorOnLoad || kkf->isReadOnly ) | 474 | if ( kkf->mErrorOnLoad || kkf->isReadOnly ) |
460 | mCalPopup->setItemEnabled( index, false ); | 475 | mCalPopup->setItemEnabled( index, false ); |
461 | kkf = KOPrefs::instance()->mCalendars.next(); | 476 | kkf = KOPrefs::instance()->mCalendars.next(); |
462 | } | 477 | } |
463 | } | 478 | } |
464 | void KOListView::updateList() | 479 | void KOListView::updateList() |
465 | { | 480 | { |
466 | // qDebug(" KOListView::updateList() "); | 481 | // qDebug(" KOListView::updateList() "); |
467 | 482 | ||
468 | } | 483 | } |
469 | 484 | ||
470 | void KOListView::clearList() | 485 | void KOListView::clearList() |
471 | { | 486 | { |
472 | clear (); | 487 | clear (); |
473 | } | 488 | } |
474 | 489 | ||
475 | void KOListView::setCat() | 490 | void KOListView::setCat() |
476 | { | 491 | { |
477 | 492 | ||
478 | bool set = true; | 493 | bool set = true; |