-rw-r--r-- | libopie2/opiepim/oevent.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libopie2/opiepim/oevent.cpp b/libopie2/opiepim/oevent.cpp index 2b138c0..83b191f 100644 --- a/libopie2/opiepim/oevent.cpp +++ b/libopie2/opiepim/oevent.cpp | |||
@@ -168,113 +168,113 @@ QDateTime OEvent::startDateTimeInZone()const { | |||
168 | OTimeZone zone(data->timezone ); | 168 | OTimeZone zone(data->timezone ); |
169 | return zone.toDateTime( data->start, OTimeZone::current() ); | 169 | return zone.toDateTime( data->start, OTimeZone::current() ); |
170 | } | 170 | } |
171 | void OEvent::setStartDateTime( const QDateTime& dt ) { | 171 | void OEvent::setStartDateTime( const QDateTime& dt ) { |
172 | changeOrModify(); | 172 | changeOrModify(); |
173 | data->start = dt; | 173 | data->start = dt; |
174 | } | 174 | } |
175 | QDateTime OEvent::endDateTime()const { | 175 | QDateTime OEvent::endDateTime()const { |
176 | /* | 176 | /* |
177 | * if all Day event the end time needs | 177 | * if all Day event the end time needs |
178 | * to be on the same day as the start | 178 | * to be on the same day as the start |
179 | */ | 179 | */ |
180 | if ( data->isAllDay ) | 180 | if ( data->isAllDay ) |
181 | return QDateTime( data->start.date(), QTime(23, 59, 59 ) ); | 181 | return QDateTime( data->start.date(), QTime(23, 59, 59 ) ); |
182 | return data->end; | 182 | return data->end; |
183 | } | 183 | } |
184 | QDateTime OEvent::endDateTimeInZone()const { | 184 | QDateTime OEvent::endDateTimeInZone()const { |
185 | /* if no timezone, or all day event or if the current and this timeZone match... */ | 185 | /* if no timezone, or all day event or if the current and this timeZone match... */ |
186 | if (data->timezone.isEmpty() || data->isAllDay || data->timezone == OTimeZone::current().timeZone() ) return endDateTime(); | 186 | if (data->timezone.isEmpty() || data->isAllDay || data->timezone == OTimeZone::current().timeZone() ) return endDateTime(); |
187 | 187 | ||
188 | OTimeZone zone(data->timezone ); | 188 | OTimeZone zone(data->timezone ); |
189 | return zone.toDateTime( data->end, OTimeZone::current() ); | 189 | return zone.toDateTime( data->end, OTimeZone::current() ); |
190 | } | 190 | } |
191 | void OEvent::setEndDateTime( const QDateTime& dt ) { | 191 | void OEvent::setEndDateTime( const QDateTime& dt ) { |
192 | changeOrModify(); | 192 | changeOrModify(); |
193 | data->end = dt; | 193 | data->end = dt; |
194 | } | 194 | } |
195 | bool OEvent::isMultipleDay()const { | 195 | bool OEvent::isMultipleDay()const { |
196 | return data->end.date().day() - data->start.date().day(); | 196 | return data->end.date().day() - data->start.date().day(); |
197 | } | 197 | } |
198 | bool OEvent::isAllDay()const { | 198 | bool OEvent::isAllDay()const { |
199 | return data->isAllDay; | 199 | return data->isAllDay; |
200 | } | 200 | } |
201 | void OEvent::setAllDay( bool allDay ) { | 201 | void OEvent::setAllDay( bool allDay ) { |
202 | changeOrModify(); | 202 | changeOrModify(); |
203 | data->isAllDay = allDay; | 203 | data->isAllDay = allDay; |
204 | if (allDay ) data->timezone = "UTC"; | 204 | if (allDay ) data->timezone = "UTC"; |
205 | } | 205 | } |
206 | void OEvent::setTimeZone( const QString& tz ) { | 206 | void OEvent::setTimeZone( const QString& tz ) { |
207 | changeOrModify(); | 207 | changeOrModify(); |
208 | data->timezone = tz; | 208 | data->timezone = tz; |
209 | } | 209 | } |
210 | QString OEvent::timeZone()const { | 210 | QString OEvent::timeZone()const { |
211 | if (data->isAllDay ) return QString::fromLatin1("UTC"); | 211 | if (data->isAllDay ) return QString::fromLatin1("UTC"); |
212 | return data->timezone; | 212 | return data->timezone; |
213 | } | 213 | } |
214 | bool OEvent::match( const QRegExp& re )const { | 214 | bool OEvent::match( const QRegExp& re )const { |
215 | if ( re.match( data->description ) != -1 ){ | 215 | if ( re.match( data->description ) != -1 ){ |
216 | setLastHitField( DatebookDescription ); | 216 | setLastHitField( Qtopia::DatebookDescription ); |
217 | return true; | 217 | return true; |
218 | } | 218 | } |
219 | if ( re.match( data->note ) != -1 ){ | 219 | if ( re.match( data->note ) != -1 ){ |
220 | setLastHitField( Note ); | 220 | setLastHitField( Qtopia::Note ); |
221 | return true; | 221 | return true; |
222 | } | 222 | } |
223 | if ( re.match( data->location ) != -1 ){ | 223 | if ( re.match( data->location ) != -1 ){ |
224 | setLastHitField( Location ); | 224 | setLastHitField( Qtopia::Location ); |
225 | return true; | 225 | return true; |
226 | } | 226 | } |
227 | if ( re.match( data->start.toString() ) != -1 ){ | 227 | if ( re.match( data->start.toString() ) != -1 ){ |
228 | setLastHitField( StartDateTime ); | 228 | setLastHitField( Qtopia::StartDateTime ); |
229 | return true; | 229 | return true; |
230 | } | 230 | } |
231 | if ( re.match( data->end.toString() ) != -1 ){ | 231 | if ( re.match( data->end.toString() ) != -1 ){ |
232 | setLastHitField( EndDateTime ); | 232 | setLastHitField( Qtopia::EndDateTime ); |
233 | return true; | 233 | return true; |
234 | } | 234 | } |
235 | return false; | 235 | return false; |
236 | } | 236 | } |
237 | QString OEvent::toRichText()const { | 237 | QString OEvent::toRichText()const { |
238 | QString text; | 238 | QString text; |
239 | if ( !description().isEmpty() ) { | 239 | if ( !description().isEmpty() ) { |
240 | text += "<b>" + QObject::tr( "Description:") + "</b><br>"; | 240 | text += "<b>" + QObject::tr( "Description:") + "</b><br>"; |
241 | text += Qtopia::escapeString(description() ). | 241 | text += Qtopia::escapeString(description() ). |
242 | replace(QRegExp( "[\n]"), "<br>" ) + "<br>"; | 242 | replace(QRegExp( "[\n]"), "<br>" ) + "<br>"; |
243 | } | 243 | } |
244 | if ( startDateTime().isValid() ) { | 244 | if ( startDateTime().isValid() ) { |
245 | text += "<b>" + QObject::tr( "Start:") + "</b> "; | 245 | text += "<b>" + QObject::tr( "Start:") + "</b> "; |
246 | text += Qtopia::escapeString(startDateTime().toString() ). | 246 | text += Qtopia::escapeString(startDateTime().toString() ). |
247 | replace(QRegExp( "[\n]"), "<br>" ) + "<br>"; | 247 | replace(QRegExp( "[\n]"), "<br>" ) + "<br>"; |
248 | } | 248 | } |
249 | if ( endDateTime().isValid() ) { | 249 | if ( endDateTime().isValid() ) { |
250 | text += "<b>" + QObject::tr( "End:") + "</b> "; | 250 | text += "<b>" + QObject::tr( "End:") + "</b> "; |
251 | text += Qtopia::escapeString(endDateTime().toString() ). | 251 | text += Qtopia::escapeString(endDateTime().toString() ). |
252 | replace(QRegExp( "[\n]"), "<br>" ) + "<br>"; | 252 | replace(QRegExp( "[\n]"), "<br>" ) + "<br>"; |
253 | } | 253 | } |
254 | if ( !note().isEmpty() ) { | 254 | if ( !note().isEmpty() ) { |
255 | text += "<b>" + QObject::tr( "Note:") + "</b><br>"; | 255 | text += "<b>" + QObject::tr( "Note:") + "</b><br>"; |
256 | text += note(); | 256 | text += note(); |
257 | // text += Qtopia::escapeString(note() ). | 257 | // text += Qtopia::escapeString(note() ). |
258 | // replace(QRegExp( "[\n]"), "<br>" ) + "<br>"; | 258 | // replace(QRegExp( "[\n]"), "<br>" ) + "<br>"; |
259 | } | 259 | } |
260 | return text; | 260 | return text; |
261 | } | 261 | } |
262 | QString OEvent::toShortText()const { | 262 | QString OEvent::toShortText()const { |
263 | QString text; | 263 | QString text; |
264 | text += QString::number( startDateTime().date().day() ); | 264 | text += QString::number( startDateTime().date().day() ); |
265 | text += "."; | 265 | text += "."; |
266 | text += QString::number( startDateTime().date().month() ); | 266 | text += QString::number( startDateTime().date().month() ); |
267 | text += "."; | 267 | text += "."; |
268 | text += QString::number( startDateTime().date().year() ); | 268 | text += QString::number( startDateTime().date().year() ); |
269 | text += " "; | 269 | text += " "; |
270 | text += QString::number( startDateTime().time().hour() ); | 270 | text += QString::number( startDateTime().time().hour() ); |
271 | text += ":"; | 271 | text += ":"; |
272 | text += QString::number( startDateTime().time().minute() ); | 272 | text += QString::number( startDateTime().time().minute() ); |
273 | text += " - "; | 273 | text += " - "; |
274 | text += description(); | 274 | text += description(); |
275 | return text; | 275 | return text; |
276 | } | 276 | } |
277 | QString OEvent::type()const { | 277 | QString OEvent::type()const { |
278 | return QString::fromLatin1("OEvent"); | 278 | return QString::fromLatin1("OEvent"); |
279 | } | 279 | } |
280 | QString OEvent::recordField( int /*id */ )const { | 280 | QString OEvent::recordField( int /*id */ )const { |