author | zautrix <zautrix> | 2005-07-03 15:58:48 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-07-03 15:58:48 (UTC) |
commit | 9be5bd1c7e9ee829dd73f5b4a36a2f4331edf68e (patch) (unidiff) | |
tree | 4e5e6a4e6eac36df79891d61ed1d1cd76ed6105d /korganizer | |
parent | 0c632bafd2d058504118dc8957fc4808a784f548 (diff) | |
download | kdepimpi-9be5bd1c7e9ee829dd73f5b4a36a2f4331edf68e.zip kdepimpi-9be5bd1c7e9ee829dd73f5b4a36a2f4331edf68e.tar.gz kdepimpi-9be5bd1c7e9ee829dd73f5b4a36a2f4331edf68e.tar.bz2 |
fixes
-rw-r--r-- | korganizer/calendarview.cpp | 1 | ||||
-rw-r--r-- | korganizer/koeventviewer.cpp | 26 | ||||
-rw-r--r-- | korganizer/koeventviewer.h | 1 | ||||
-rw-r--r-- | korganizer/koeventviewerdialog.cpp | 1 | ||||
-rw-r--r-- | korganizer/koeventviewerdialog.h | 1 | ||||
-rw-r--r-- | korganizer/kotodoview.cpp | 53 | ||||
-rw-r--r-- | korganizer/kotodoview.h | 6 |
7 files changed, 73 insertions, 16 deletions
diff --git a/korganizer/calendarview.cpp b/korganizer/calendarview.cpp index 72221fd..1785b8a 100644 --- a/korganizer/calendarview.cpp +++ b/korganizer/calendarview.cpp | |||
@@ -3160,384 +3160,385 @@ void CalendarView::cloneIncidence(Incidence * orgInc ) | |||
3160 | } | 3160 | } |
3161 | else { | 3161 | else { |
3162 | Event* e = (Event*) newInc; | 3162 | Event* e = (Event*) newInc; |
3163 | showEventEditor(); | 3163 | showEventEditor(); |
3164 | mEventEditor->editEvent( e ); | 3164 | mEventEditor->editEvent( e ); |
3165 | if ( mEventEditor->exec() ) { | 3165 | if ( mEventEditor->exec() ) { |
3166 | mCalendar->addEvent( e ); | 3166 | mCalendar->addEvent( e ); |
3167 | updateView(); | 3167 | updateView(); |
3168 | } else { | 3168 | } else { |
3169 | delete e; | 3169 | delete e; |
3170 | } | 3170 | } |
3171 | } | 3171 | } |
3172 | setActiveWindow(); | 3172 | setActiveWindow(); |
3173 | } | 3173 | } |
3174 | 3174 | ||
3175 | void CalendarView::newEvent() | 3175 | void CalendarView::newEvent() |
3176 | { | 3176 | { |
3177 | // TODO: Replace this code by a common eventDurationHint of KOBaseView. | 3177 | // TODO: Replace this code by a common eventDurationHint of KOBaseView. |
3178 | KOAgendaView *aView = mViewManager->agendaView(); | 3178 | KOAgendaView *aView = mViewManager->agendaView(); |
3179 | if (aView) { | 3179 | if (aView) { |
3180 | if (aView->selectionStart().isValid()) { | 3180 | if (aView->selectionStart().isValid()) { |
3181 | if (aView->selectedIsAllDay()) { | 3181 | if (aView->selectedIsAllDay()) { |
3182 | newEvent(aView->selectionStart(),aView->selectionEnd(),true); | 3182 | newEvent(aView->selectionStart(),aView->selectionEnd(),true); |
3183 | } else { | 3183 | } else { |
3184 | newEvent(aView->selectionStart(),aView->selectionEnd()); | 3184 | newEvent(aView->selectionStart(),aView->selectionEnd()); |
3185 | } | 3185 | } |
3186 | return; | 3186 | return; |
3187 | } | 3187 | } |
3188 | } | 3188 | } |
3189 | 3189 | ||
3190 | QDate date = mNavigator->selectedDates().first(); | 3190 | QDate date = mNavigator->selectedDates().first(); |
3191 | QDateTime current = QDateTime::currentDateTime(); | 3191 | QDateTime current = QDateTime::currentDateTime(); |
3192 | if ( date <= current.date() ) { | 3192 | if ( date <= current.date() ) { |
3193 | int hour = current.time().hour() +1; | 3193 | int hour = current.time().hour() +1; |
3194 | newEvent( QDateTime( current.date(), QTime( hour, 0, 0 ) ), | 3194 | newEvent( QDateTime( current.date(), QTime( hour, 0, 0 ) ), |
3195 | QDateTime( current.date(), QTime( hour+ KOPrefs::instance()->mDefaultDuration, 0, 0 ) ) ); | 3195 | QDateTime( current.date(), QTime( hour+ KOPrefs::instance()->mDefaultDuration, 0, 0 ) ) ); |
3196 | } else | 3196 | } else |
3197 | newEvent( QDateTime( date, QTime( KOPrefs::instance()->mStartTime, 0, 0 ) ), | 3197 | newEvent( QDateTime( date, QTime( KOPrefs::instance()->mStartTime, 0, 0 ) ), |
3198 | QDateTime( date, QTime( KOPrefs::instance()->mStartTime + | 3198 | QDateTime( date, QTime( KOPrefs::instance()->mStartTime + |
3199 | KOPrefs::instance()->mDefaultDuration, 0, 0 ) ) ); | 3199 | KOPrefs::instance()->mDefaultDuration, 0, 0 ) ) ); |
3200 | } | 3200 | } |
3201 | 3201 | ||
3202 | void CalendarView::newEvent(QDateTime fh) | 3202 | void CalendarView::newEvent(QDateTime fh) |
3203 | { | 3203 | { |
3204 | newEvent(fh, | 3204 | newEvent(fh, |
3205 | QDateTime(fh.addSecs(3600*KOPrefs::instance()->mDefaultDuration))); | 3205 | QDateTime(fh.addSecs(3600*KOPrefs::instance()->mDefaultDuration))); |
3206 | } | 3206 | } |
3207 | 3207 | ||
3208 | void CalendarView::newEvent(QDate dt) | 3208 | void CalendarView::newEvent(QDate dt) |
3209 | { | 3209 | { |
3210 | newEvent(QDateTime(dt, QTime(0,0,0)), | 3210 | newEvent(QDateTime(dt, QTime(0,0,0)), |
3211 | QDateTime(dt, QTime(0,0,0)), true); | 3211 | QDateTime(dt, QTime(0,0,0)), true); |
3212 | } | 3212 | } |
3213 | void CalendarView::newEvent(QDateTime fromHint, QDateTime toHint) | 3213 | void CalendarView::newEvent(QDateTime fromHint, QDateTime toHint) |
3214 | { | 3214 | { |
3215 | newEvent(fromHint, toHint, false); | 3215 | newEvent(fromHint, toHint, false); |
3216 | } | 3216 | } |
3217 | void CalendarView::newEvent(QDateTime fromHint, QDateTime toHint, bool allDay) | 3217 | void CalendarView::newEvent(QDateTime fromHint, QDateTime toHint, bool allDay) |
3218 | { | 3218 | { |
3219 | 3219 | ||
3220 | showEventEditor(); | 3220 | showEventEditor(); |
3221 | mEventEditor->newEvent(fromHint,toHint,allDay); | 3221 | mEventEditor->newEvent(fromHint,toHint,allDay); |
3222 | if ( mFilterView->filtersEnabled() ) { | 3222 | if ( mFilterView->filtersEnabled() ) { |
3223 | CalFilter *filter = mFilterView->selectedFilter(); | 3223 | CalFilter *filter = mFilterView->selectedFilter(); |
3224 | if (filter && filter->showCategories()) { | 3224 | if (filter && filter->showCategories()) { |
3225 | mEventEditor->setCategories(filter->categoryList().join(",") ); | 3225 | mEventEditor->setCategories(filter->categoryList().join(",") ); |
3226 | } | 3226 | } |
3227 | if ( filter ) | 3227 | if ( filter ) |
3228 | mEventEditor->setSecrecy( filter->getSecrecy() ); | 3228 | mEventEditor->setSecrecy( filter->getSecrecy() ); |
3229 | } | 3229 | } |
3230 | mEventEditor->exec(); | 3230 | mEventEditor->exec(); |
3231 | setActiveWindow(); | 3231 | setActiveWindow(); |
3232 | } | 3232 | } |
3233 | void CalendarView::todoAdded(Todo * t) | 3233 | void CalendarView::todoAdded(Todo * t) |
3234 | { | 3234 | { |
3235 | 3235 | ||
3236 | changeTodoDisplay ( t ,KOGlobals::EVENTADDED); | 3236 | changeTodoDisplay ( t ,KOGlobals::EVENTADDED); |
3237 | updateTodoViews(); | 3237 | updateTodoViews(); |
3238 | } | 3238 | } |
3239 | void CalendarView::todoChanged(Todo * t) | 3239 | void CalendarView::todoChanged(Todo * t) |
3240 | { | 3240 | { |
3241 | emit todoModified( t, 4 ); | 3241 | emit todoModified( t, 4 ); |
3242 | // updateTodoViews(); | 3242 | // updateTodoViews(); |
3243 | } | 3243 | } |
3244 | void CalendarView::todoToBeDeleted(Todo *) | 3244 | void CalendarView::todoToBeDeleted(Todo *) |
3245 | { | 3245 | { |
3246 | //qDebug("todoToBeDeleted(Todo *) "); | 3246 | //qDebug("todoToBeDeleted(Todo *) "); |
3247 | updateTodoViews(); | 3247 | updateTodoViews(); |
3248 | } | 3248 | } |
3249 | void CalendarView::todoDeleted() | 3249 | void CalendarView::todoDeleted() |
3250 | { | 3250 | { |
3251 | //qDebug(" todoDeleted()"); | 3251 | //qDebug(" todoDeleted()"); |
3252 | updateTodoViews(); | 3252 | updateTodoViews(); |
3253 | } | 3253 | } |
3254 | 3254 | ||
3255 | 3255 | ||
3256 | void CalendarView::newTodoDateTime( QDateTime dt, bool allday ) | 3256 | void CalendarView::newTodoDateTime( QDateTime dt, bool allday ) |
3257 | { | 3257 | { |
3258 | showTodoEditor(); | 3258 | showTodoEditor(); |
3259 | mTodoEditor->newTodo(dt,0,allday); | 3259 | mTodoEditor->newTodo(dt,0,allday); |
3260 | if ( mFilterView->filtersEnabled() ) { | 3260 | if ( mFilterView->filtersEnabled() ) { |
3261 | CalFilter *filter = mFilterView->selectedFilter(); | 3261 | CalFilter *filter = mFilterView->selectedFilter(); |
3262 | if (filter && filter->showCategories()) { | 3262 | if (filter && filter->showCategories()) { |
3263 | mTodoEditor->setCategories(filter->categoryList().join(",") ); | 3263 | mTodoEditor->setCategories(filter->categoryList().join(",") ); |
3264 | } | 3264 | } |
3265 | if ( filter ) | 3265 | if ( filter ) |
3266 | mTodoEditor->setSecrecy( filter->getSecrecy() ); | 3266 | mTodoEditor->setSecrecy( filter->getSecrecy() ); |
3267 | } | 3267 | } |
3268 | mTodoEditor->exec(); | 3268 | mTodoEditor->exec(); |
3269 | setActiveWindow(); | 3269 | setActiveWindow(); |
3270 | } | 3270 | } |
3271 | 3271 | ||
3272 | void CalendarView::newTodo() | 3272 | void CalendarView::newTodo() |
3273 | { | 3273 | { |
3274 | newTodoDateTime( QDateTime(),true ); | 3274 | newTodoDateTime( QDateTime(),true ); |
3275 | } | 3275 | } |
3276 | 3276 | ||
3277 | void CalendarView::newSubTodo() | 3277 | void CalendarView::newSubTodo() |
3278 | { | 3278 | { |
3279 | Todo *todo = selectedTodo(); | 3279 | Todo *todo = selectedTodo(); |
3280 | if ( todo ) newSubTodo( todo ); | 3280 | if ( todo ) newSubTodo( todo ); |
3281 | } | 3281 | } |
3282 | 3282 | ||
3283 | void CalendarView::newSubTodo(Todo *parentEvent) | 3283 | void CalendarView::newSubTodo(Todo *parentEvent) |
3284 | { | 3284 | { |
3285 | 3285 | ||
3286 | showTodoEditor(); | 3286 | showTodoEditor(); |
3287 | mTodoEditor->newTodo(QDateTime(),parentEvent,true); | 3287 | mTodoEditor->newTodo(QDateTime(),parentEvent,true); |
3288 | mTodoEditor->exec(); | 3288 | mTodoEditor->exec(); |
3289 | setActiveWindow(); | 3289 | setActiveWindow(); |
3290 | } | 3290 | } |
3291 | 3291 | ||
3292 | void CalendarView::newFloatingEvent() | 3292 | void CalendarView::newFloatingEvent() |
3293 | { | 3293 | { |
3294 | DateList tmpList = mNavigator->selectedDates(); | 3294 | DateList tmpList = mNavigator->selectedDates(); |
3295 | QDate date = tmpList.first(); | 3295 | QDate date = tmpList.first(); |
3296 | 3296 | ||
3297 | newEvent( QDateTime( date, QTime( 12, 0, 0 ) ), | 3297 | newEvent( QDateTime( date, QTime( 12, 0, 0 ) ), |
3298 | QDateTime( date, QTime( 12, 0, 0 ) ), true ); | 3298 | QDateTime( date, QTime( 12, 0, 0 ) ), true ); |
3299 | } | 3299 | } |
3300 | 3300 | ||
3301 | 3301 | ||
3302 | void CalendarView::editEvent( Event *event ) | 3302 | void CalendarView::editEvent( Event *event ) |
3303 | { | 3303 | { |
3304 | 3304 | ||
3305 | if ( !event ) return; | 3305 | if ( !event ) return; |
3306 | if ( event->isReadOnly() ) { | 3306 | if ( event->isReadOnly() ) { |
3307 | showEvent( event ); | 3307 | showEvent( event ); |
3308 | return; | 3308 | return; |
3309 | } | 3309 | } |
3310 | showEventEditor(); | 3310 | showEventEditor(); |
3311 | mEventEditor->editEvent( event , mFlagEditDescription); | 3311 | mEventEditor->editEvent( event , mFlagEditDescription); |
3312 | mEventEditor->exec(); | 3312 | mEventEditor->exec(); |
3313 | setActiveWindow(); | 3313 | setActiveWindow(); |
3314 | 3314 | ||
3315 | } | 3315 | } |
3316 | void CalendarView::editJournal( Journal *jour ) | 3316 | void CalendarView::editJournal( Journal *jour ) |
3317 | { | 3317 | { |
3318 | if ( !jour ) return; | 3318 | if ( !jour ) return; |
3319 | mDialogManager->hideSearchDialog(); | 3319 | mDialogManager->hideSearchDialog(); |
3320 | mViewManager->showJournalView(); | 3320 | mViewManager->showJournalView(); |
3321 | mNavigator->slotDaySelect( jour->dtStart().date() ); | 3321 | mNavigator->slotDaySelect( jour->dtStart().date() ); |
3322 | } | 3322 | } |
3323 | void CalendarView::editTodo( Todo *todo ) | 3323 | void CalendarView::editTodo( Todo *todo ) |
3324 | { | 3324 | { |
3325 | if ( !todo ) return; | 3325 | if ( !todo ) return; |
3326 | 3326 | ||
3327 | if ( todo->isReadOnly() ) { | 3327 | if ( todo->isReadOnly() ) { |
3328 | showTodo( todo ); | 3328 | showTodo( todo ); |
3329 | return; | 3329 | return; |
3330 | } | 3330 | } |
3331 | showTodoEditor(); | 3331 | showTodoEditor(); |
3332 | mTodoEditor->editTodo( todo ,mFlagEditDescription); | 3332 | mTodoEditor->editTodo( todo ,mFlagEditDescription); |
3333 | mTodoEditor->exec(); | 3333 | mTodoEditor->exec(); |
3334 | setActiveWindow(); | 3334 | setActiveWindow(); |
3335 | 3335 | ||
3336 | } | 3336 | } |
3337 | 3337 | ||
3338 | KOEventViewerDialog* CalendarView::getEventViewerDialog() | 3338 | KOEventViewerDialog* CalendarView::getEventViewerDialog() |
3339 | { | 3339 | { |
3340 | if ( !mEventViewerDialog ) { | 3340 | if ( !mEventViewerDialog ) { |
3341 | mEventViewerDialog = new KOEventViewerDialog(0); | 3341 | mEventViewerDialog = new KOEventViewerDialog(0); |
3342 | connect( mEventViewerDialog, SIGNAL( editIncidence( Incidence* )), this, SLOT(editIncidence( Incidence* ) ) ); | 3342 | connect( mEventViewerDialog, SIGNAL( editIncidence( Incidence* )), this, SLOT(editIncidence( Incidence* ) ) ); |
3343 | connect( this, SIGNAL(configChanged()), mEventViewerDialog, SLOT(updateConfig())); | 3343 | connect( this, SIGNAL(configChanged()), mEventViewerDialog, SLOT(updateConfig())); |
3344 | connect( mEventViewerDialog, SIGNAL(jumpToTime( const QDate &)), | 3344 | connect( mEventViewerDialog, SIGNAL(jumpToTime( const QDate &)), |
3345 | dateNavigator(), SLOT( selectWeek( const QDate & ) ) ); | 3345 | dateNavigator(), SLOT( selectWeek( const QDate & ) ) ); |
3346 | connect( mEventViewerDialog, SIGNAL(showAgendaView( bool ) ), | 3346 | connect( mEventViewerDialog, SIGNAL(showAgendaView( bool ) ), |
3347 | viewManager(), SLOT( showAgendaView( bool ) ) ); | 3347 | viewManager(), SLOT( showAgendaView( bool ) ) ); |
3348 | connect( mEventViewerDialog, SIGNAL(signalViewerClosed()), | 3348 | connect( mEventViewerDialog, SIGNAL(signalViewerClosed()), |
3349 | this, SLOT( slotViewerClosed() ) ); | 3349 | this, SLOT( slotViewerClosed() ) ); |
3350 | connect( mEventViewerDialog, SIGNAL( todoCompleted(Todo *) ), | 3350 | connect( mEventViewerDialog, SIGNAL( todoCompleted(Todo *) ), |
3351 | this, SLOT( todoChanged(Todo *) ) ); | 3351 | this, SLOT( todoChanged(Todo *) ) ); |
3352 | connect( mEventViewerDialog, SIGNAL( showIncidence( QString ) ),SLOT( showIncidence( QString ) )); | ||
3352 | mEventViewerDialog->resize( 640, 480 ); | 3353 | mEventViewerDialog->resize( 640, 480 ); |
3353 | 3354 | ||
3354 | } | 3355 | } |
3355 | return mEventViewerDialog; | 3356 | return mEventViewerDialog; |
3356 | } | 3357 | } |
3357 | void CalendarView::showEvent(Event *event) | 3358 | void CalendarView::showEvent(Event *event) |
3358 | { | 3359 | { |
3359 | getEventViewerDialog()->setEvent(event); | 3360 | getEventViewerDialog()->setEvent(event); |
3360 | getEventViewerDialog()->showMe(); | 3361 | getEventViewerDialog()->showMe(); |
3361 | } | 3362 | } |
3362 | 3363 | ||
3363 | void CalendarView::showTodo(Todo *event) | 3364 | void CalendarView::showTodo(Todo *event) |
3364 | { | 3365 | { |
3365 | getEventViewerDialog()->setTodo(event); | 3366 | getEventViewerDialog()->setTodo(event); |
3366 | getEventViewerDialog()->showMe(); | 3367 | getEventViewerDialog()->showMe(); |
3367 | } | 3368 | } |
3368 | void CalendarView::showJournal( Journal *jour ) | 3369 | void CalendarView::showJournal( Journal *jour ) |
3369 | { | 3370 | { |
3370 | getEventViewerDialog()->setJournal(jour); | 3371 | getEventViewerDialog()->setJournal(jour); |
3371 | getEventViewerDialog()->showMe(); | 3372 | getEventViewerDialog()->showMe(); |
3372 | 3373 | ||
3373 | } | 3374 | } |
3374 | // void CalendarView::todoModified (Todo *event, int changed) | 3375 | // void CalendarView::todoModified (Todo *event, int changed) |
3375 | // { | 3376 | // { |
3376 | // // if (mDialogList.find (event) != mDialogList.end ()) { | 3377 | // // if (mDialogList.find (event) != mDialogList.end ()) { |
3377 | // // kdDebug() << "Todo modified and open" << endl; | 3378 | // // kdDebug() << "Todo modified and open" << endl; |
3378 | // // KOTodoEditor* temp = (KOTodoEditor *) mDialogList[event]; | 3379 | // // KOTodoEditor* temp = (KOTodoEditor *) mDialogList[event]; |
3379 | // // temp->modified (changed); | 3380 | // // temp->modified (changed); |
3380 | 3381 | ||
3381 | // // } | 3382 | // // } |
3382 | 3383 | ||
3383 | // mViewManager->updateView(); | 3384 | // mViewManager->updateView(); |
3384 | // } | 3385 | // } |
3385 | 3386 | ||
3386 | void CalendarView::appointment_show() | 3387 | void CalendarView::appointment_show() |
3387 | { | 3388 | { |
3388 | Event *anEvent = 0; | 3389 | Event *anEvent = 0; |
3389 | 3390 | ||
3390 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); | 3391 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); |
3391 | 3392 | ||
3392 | if (mViewManager->currentView()->isEventView()) { | 3393 | if (mViewManager->currentView()->isEventView()) { |
3393 | if ( incidence && incidence->typeID() == eventID ) { | 3394 | if ( incidence && incidence->typeID() == eventID ) { |
3394 | anEvent = static_cast<Event *>(incidence); | 3395 | anEvent = static_cast<Event *>(incidence); |
3395 | } | 3396 | } |
3396 | } | 3397 | } |
3397 | 3398 | ||
3398 | if (!anEvent) { | 3399 | if (!anEvent) { |
3399 | KNotifyClient::beep(); | 3400 | KNotifyClient::beep(); |
3400 | return; | 3401 | return; |
3401 | } | 3402 | } |
3402 | 3403 | ||
3403 | showEvent(anEvent); | 3404 | showEvent(anEvent); |
3404 | } | 3405 | } |
3405 | 3406 | ||
3406 | void CalendarView::appointment_edit() | 3407 | void CalendarView::appointment_edit() |
3407 | { | 3408 | { |
3408 | Event *anEvent = 0; | 3409 | Event *anEvent = 0; |
3409 | 3410 | ||
3410 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); | 3411 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); |
3411 | 3412 | ||
3412 | if (mViewManager->currentView()->isEventView()) { | 3413 | if (mViewManager->currentView()->isEventView()) { |
3413 | if ( incidence && incidence->typeID() == eventID ) { | 3414 | if ( incidence && incidence->typeID() == eventID ) { |
3414 | anEvent = static_cast<Event *>(incidence); | 3415 | anEvent = static_cast<Event *>(incidence); |
3415 | } | 3416 | } |
3416 | } | 3417 | } |
3417 | 3418 | ||
3418 | if (!anEvent) { | 3419 | if (!anEvent) { |
3419 | KNotifyClient::beep(); | 3420 | KNotifyClient::beep(); |
3420 | return; | 3421 | return; |
3421 | } | 3422 | } |
3422 | 3423 | ||
3423 | editEvent(anEvent); | 3424 | editEvent(anEvent); |
3424 | } | 3425 | } |
3425 | 3426 | ||
3426 | void CalendarView::appointment_delete() | 3427 | void CalendarView::appointment_delete() |
3427 | { | 3428 | { |
3428 | Event *anEvent = 0; | 3429 | Event *anEvent = 0; |
3429 | 3430 | ||
3430 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); | 3431 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); |
3431 | 3432 | ||
3432 | if (mViewManager->currentView()->isEventView()) { | 3433 | if (mViewManager->currentView()->isEventView()) { |
3433 | if ( incidence && incidence->typeID() == eventID ) { | 3434 | if ( incidence && incidence->typeID() == eventID ) { |
3434 | anEvent = static_cast<Event *>(incidence); | 3435 | anEvent = static_cast<Event *>(incidence); |
3435 | } | 3436 | } |
3436 | } | 3437 | } |
3437 | 3438 | ||
3438 | if (!anEvent) { | 3439 | if (!anEvent) { |
3439 | KNotifyClient::beep(); | 3440 | KNotifyClient::beep(); |
3440 | return; | 3441 | return; |
3441 | } | 3442 | } |
3442 | 3443 | ||
3443 | deleteEvent(anEvent); | 3444 | deleteEvent(anEvent); |
3444 | } | 3445 | } |
3445 | 3446 | ||
3446 | void CalendarView::todo_resub( Todo * parent, Todo * sub ) | 3447 | void CalendarView::todo_resub( Todo * parent, Todo * sub ) |
3447 | { | 3448 | { |
3448 | if (!sub) return; | 3449 | if (!sub) return; |
3449 | if ( sub->relatedTo() == parent ) | 3450 | if ( sub->relatedTo() == parent ) |
3450 | return; | 3451 | return; |
3451 | sub->setRelatedTo(parent); | 3452 | sub->setRelatedTo(parent); |
3452 | sub->updated(); | 3453 | sub->updated(); |
3453 | setModified(true); | 3454 | setModified(true); |
3454 | updateView(); | 3455 | updateView(); |
3455 | } | 3456 | } |
3456 | void CalendarView::todo_unsub(Todo *anTodo ) | 3457 | void CalendarView::todo_unsub(Todo *anTodo ) |
3457 | { | 3458 | { |
3458 | todo_resub( 0, anTodo ); | 3459 | todo_resub( 0, anTodo ); |
3459 | } | 3460 | } |
3460 | 3461 | ||
3461 | void CalendarView::deleteTodo(Todo *todo) | 3462 | void CalendarView::deleteTodo(Todo *todo) |
3462 | { | 3463 | { |
3463 | if (!todo) { | 3464 | if (!todo) { |
3464 | KNotifyClient::beep(); | 3465 | KNotifyClient::beep(); |
3465 | return; | 3466 | return; |
3466 | } | 3467 | } |
3467 | if (KOPrefs::instance()->mConfirm) { | 3468 | if (KOPrefs::instance()->mConfirm) { |
3468 | QString text = todo->summary().left(20); | 3469 | QString text = todo->summary().left(20); |
3469 | if (!todo->relations().isEmpty()) { | 3470 | if (!todo->relations().isEmpty()) { |
3470 | text += i18n("\nhas sub-todos.\nAll completed sub-todos\nwill be deleted as well!"); | 3471 | text += i18n("\nhas sub-todos.\nAll completed sub-todos\nwill be deleted as well!"); |
3471 | 3472 | ||
3472 | } | 3473 | } |
3473 | switch (msgItemDelete(text)) { | 3474 | switch (msgItemDelete(text)) { |
3474 | case KMessageBox::Continue: // OK | 3475 | case KMessageBox::Continue: // OK |
3475 | bool deleteT = false; | 3476 | bool deleteT = false; |
3476 | if (!todo->relations().isEmpty()) { | 3477 | if (!todo->relations().isEmpty()) { |
3477 | deleteT = removeCompletedSubTodos( todo ); | 3478 | deleteT = removeCompletedSubTodos( todo ); |
3478 | } | 3479 | } |
3479 | // deleteT == true: todo already deleted in removeCompletedSubTodos | 3480 | // deleteT == true: todo already deleted in removeCompletedSubTodos |
3480 | if ( !deleteT ) { | 3481 | if ( !deleteT ) { |
3481 | checkExternalId( todo ); | 3482 | checkExternalId( todo ); |
3482 | calendar()->deleteTodo(todo); | 3483 | calendar()->deleteTodo(todo); |
3483 | changeTodoDisplay( todo,KOGlobals::EVENTDELETED ); | 3484 | changeTodoDisplay( todo,KOGlobals::EVENTDELETED ); |
3484 | updateView(); | 3485 | updateView(); |
3485 | } | 3486 | } |
3486 | break; | 3487 | break; |
3487 | } // switch | 3488 | } // switch |
3488 | } else { | 3489 | } else { |
3489 | checkExternalId( todo ); | 3490 | checkExternalId( todo ); |
3490 | mCalendar->deleteTodo(todo); | 3491 | mCalendar->deleteTodo(todo); |
3491 | changeTodoDisplay( todo,KOGlobals::EVENTDELETED ); | 3492 | changeTodoDisplay( todo,KOGlobals::EVENTDELETED ); |
3492 | updateView(); | 3493 | updateView(); |
3493 | } | 3494 | } |
3494 | 3495 | ||
3495 | emit updateSearchDialog(); | 3496 | emit updateSearchDialog(); |
3496 | } | 3497 | } |
3497 | void CalendarView::deleteJournal(Journal *jour) | 3498 | void CalendarView::deleteJournal(Journal *jour) |
3498 | { | 3499 | { |
3499 | if (!jour) { | 3500 | if (!jour) { |
3500 | KNotifyClient::beep(); | 3501 | KNotifyClient::beep(); |
3501 | return; | 3502 | return; |
3502 | } | 3503 | } |
3503 | if (KOPrefs::instance()->mConfirm) { | 3504 | if (KOPrefs::instance()->mConfirm) { |
3504 | switch (msgItemDelete( jour->description().left(20))) { | 3505 | switch (msgItemDelete( jour->description().left(20))) { |
3505 | case KMessageBox::Continue: // OK | 3506 | case KMessageBox::Continue: // OK |
3506 | calendar()->deleteJournal(jour); | 3507 | calendar()->deleteJournal(jour); |
3507 | updateView(); | 3508 | updateView(); |
3508 | break; | 3509 | break; |
3509 | } // switch | 3510 | } // switch |
3510 | } else { | 3511 | } else { |
3511 | calendar()->deleteJournal(jour);; | 3512 | calendar()->deleteJournal(jour);; |
3512 | updateView(); | 3513 | updateView(); |
3513 | } | 3514 | } |
3514 | emit updateSearchDialog(); | 3515 | emit updateSearchDialog(); |
3515 | } | 3516 | } |
3516 | 3517 | ||
3517 | void CalendarView::deleteEvent(Event *anEvent) | 3518 | void CalendarView::deleteEvent(Event *anEvent) |
3518 | { | 3519 | { |
3519 | if (!anEvent) { | 3520 | if (!anEvent) { |
3520 | KNotifyClient::beep(); | 3521 | KNotifyClient::beep(); |
3521 | return; | 3522 | return; |
3522 | } | 3523 | } |
3523 | 3524 | ||
3524 | if (anEvent->recurrence()->doesRecur()) { | 3525 | if (anEvent->recurrence()->doesRecur()) { |
3525 | QDate itemDate = mViewManager->currentSelectionDate(); | 3526 | QDate itemDate = mViewManager->currentSelectionDate(); |
3526 | int km; | 3527 | int km; |
3527 | if (!itemDate.isValid()) { | 3528 | if (!itemDate.isValid()) { |
3528 | //kdDebug() << "Date Not Valid" << endl; | 3529 | //kdDebug() << "Date Not Valid" << endl; |
3529 | if (KOPrefs::instance()->mConfirm) { | 3530 | if (KOPrefs::instance()->mConfirm) { |
3530 | km = KMessageBox::warningContinueCancel(this,anEvent->summary().left(25) + | 3531 | km = KMessageBox::warningContinueCancel(this,anEvent->summary().left(25) + |
3531 | i18n("\nThis event recurs\nover multiple dates.\nAre you sure you want\nto delete this event\nand all its recurrences?"), | 3532 | i18n("\nThis event recurs\nover multiple dates.\nAre you sure you want\nto delete this event\nand all its recurrences?"), |
3532 | i18n("KO/Pi Confirmation"),i18n("Delete All")); | 3533 | i18n("KO/Pi Confirmation"),i18n("Delete All")); |
3533 | if ( km == KMessageBox::Continue ) | 3534 | if ( km == KMessageBox::Continue ) |
3534 | km = KMessageBox::No; // No = all below | 3535 | km = KMessageBox::No; // No = all below |
3535 | } else | 3536 | } else |
3536 | km = KMessageBox::No; | 3537 | km = KMessageBox::No; |
3537 | } else { | 3538 | } else { |
3538 | km = KMessageBox::warningYesNoCancel(this,anEvent->summary().left(25) + | 3539 | km = KMessageBox::warningYesNoCancel(this,anEvent->summary().left(25) + |
3539 | i18n("\nThis event recurs\nover multiple dates.\nDo you want to delete\nall it's recurrences,\nor only the current one on:\n")+ | 3540 | i18n("\nThis event recurs\nover multiple dates.\nDo you want to delete\nall it's recurrences,\nor only the current one on:\n")+ |
3540 | KGlobal::locale()->formatDate(itemDate)+i18n(" ?\n\nDelete:\n"), | 3541 | KGlobal::locale()->formatDate(itemDate)+i18n(" ?\n\nDelete:\n"), |
3541 | i18n("KO/Pi Confirmation"),i18n("Current"), | 3542 | i18n("KO/Pi Confirmation"),i18n("Current"), |
3542 | i18n("All")); | 3543 | i18n("All")); |
3543 | } | 3544 | } |
diff --git a/korganizer/koeventviewer.cpp b/korganizer/koeventviewer.cpp index f6c252b..2d0bfff 100644 --- a/korganizer/koeventviewer.cpp +++ b/korganizer/koeventviewer.cpp | |||
@@ -1,304 +1,314 @@ | |||
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 | 19 | ||
20 | #include <qcstring.h> | 20 | #include <qcstring.h> |
21 | #include <qwhatsthis.h> | 21 | #include <qwhatsthis.h> |
22 | #include <qdialog.h> | 22 | #include <qdialog.h> |
23 | #include <qapplication.h> | 23 | #include <qapplication.h> |
24 | #include <qlabel.h> | 24 | #include <qlabel.h> |
25 | #include <qlayout.h> | 25 | #include <qlayout.h> |
26 | 26 | ||
27 | #include <klocale.h> | 27 | #include <klocale.h> |
28 | #include <kapplication.h> | 28 | #include <kapplication.h> |
29 | #include <libkcal/event.h> | 29 | #include <libkcal/event.h> |
30 | #include <libkcal/todo.h> | 30 | #include <libkcal/todo.h> |
31 | #include <kdebug.h> | 31 | #include <kdebug.h> |
32 | #include <kiconloader.h> | 32 | #include <kiconloader.h> |
33 | #include <krun.h> | 33 | #include <krun.h> |
34 | #include <kglobal.h> | 34 | #include <kglobal.h> |
35 | #include <kprocess.h> | 35 | #include <kprocess.h> |
36 | #include "koprefs.h" | 36 | #include "koprefs.h" |
37 | 37 | ||
38 | #include <kabc/stdaddressbook.h> | 38 | #include <kabc/stdaddressbook.h> |
39 | 39 | ||
40 | #ifndef KORG_NODCOP | 40 | #ifndef KORG_NODCOP |
41 | #include <dcopclient.h> | 41 | #include <dcopclient.h> |
42 | #include "korganizer.h" | 42 | #include "korganizer.h" |
43 | #include "koprefs.h" | 43 | #include "koprefs.h" |
44 | #include "actionmanager.h" | 44 | #include "actionmanager.h" |
45 | #endif | 45 | #endif |
46 | 46 | ||
47 | #include "koeventviewer.h" | 47 | #include "koeventviewer.h" |
48 | //#ifndef KORG_NOKABC | 48 | //#ifndef KORG_NOKABC |
49 | //#include <kabc/stdaddressbook.h> | 49 | //#include <kabc/stdaddressbook.h> |
50 | //#define size count | 50 | //#define size count |
51 | //#endif | 51 | //#endif |
52 | 52 | ||
53 | #ifdef DESKTOP_VERSION | 53 | #ifdef DESKTOP_VERSION |
54 | #include <kabc/addresseedialog.h> | 54 | #include <kabc/addresseedialog.h> |
55 | #include <kabc/addresseeview.h> | 55 | #include <kabc/addresseeview.h> |
56 | #include <qprinter.h> | 56 | #include <qprinter.h> |
57 | #include <qpainter.h> | 57 | #include <qpainter.h> |
58 | #include <qpaintdevicemetrics.h> | 58 | #include <qpaintdevicemetrics.h> |
59 | #else //DESKTOP_VERSION | 59 | #else //DESKTOP_VERSION |
60 | #include <externalapphandler.h> | 60 | #include <externalapphandler.h> |
61 | #include <qtopia/qcopenvelope_qws.h> | 61 | #include <qtopia/qcopenvelope_qws.h> |
62 | #endif //DESKTOP_VERSION | 62 | #endif //DESKTOP_VERSION |
63 | 63 | ||
64 | KOEventViewer::KOEventViewer(QWidget *parent,const char *name) | 64 | KOEventViewer::KOEventViewer(QWidget *parent,const char *name) |
65 | : QTextBrowser(parent,name) | 65 | : QTextBrowser(parent,name) |
66 | { | 66 | { |
67 | mSyncMode = false; | 67 | mSyncMode = false; |
68 | mColorMode = 0; | 68 | mColorMode = 0; |
69 | } | 69 | } |
70 | 70 | ||
71 | KOEventViewer::~KOEventViewer() | 71 | KOEventViewer::~KOEventViewer() |
72 | { | 72 | { |
73 | } | 73 | } |
74 | 74 | ||
75 | void KOEventViewer::printMe() | 75 | void KOEventViewer::printMe() |
76 | { | 76 | { |
77 | #ifdef DESKTOP_VERSION | 77 | #ifdef DESKTOP_VERSION |
78 | 78 | ||
79 | KOPrintPrefs pp ( this ); | 79 | KOPrintPrefs pp ( this ); |
80 | if (!pp.exec() ) | 80 | if (!pp.exec() ) |
81 | return; | 81 | return; |
82 | int scaleval = pp.printMode() ; | 82 | int scaleval = pp.printMode() ; |
83 | 83 | ||
84 | QPrinter printer; | 84 | QPrinter printer; |
85 | if (!printer.setup() ) | 85 | if (!printer.setup() ) |
86 | return; | 86 | return; |
87 | QPainter p; | 87 | QPainter p; |
88 | p.begin ( &printer ); | 88 | p.begin ( &printer ); |
89 | QPaintDeviceMetrics m = QPaintDeviceMetrics ( &printer ); | 89 | QPaintDeviceMetrics m = QPaintDeviceMetrics ( &printer ); |
90 | float dx, dy; | 90 | float dx, dy; |
91 | int wid = (m.width() * 9)/10; | 91 | int wid = (m.width() * 9)/10; |
92 | dx = (float) wid/(float)contentsWidth (); | 92 | dx = (float) wid/(float)contentsWidth (); |
93 | dy = (float)(m.height()) / (float)contentsHeight (); | 93 | dy = (float)(m.height()) / (float)contentsHeight (); |
94 | float scale; | 94 | float scale; |
95 | // scale to fit the width or height of the paper | 95 | // scale to fit the width or height of the paper |
96 | if ( dx < dy ) | 96 | if ( dx < dy ) |
97 | scale = dx; | 97 | scale = dx; |
98 | else | 98 | else |
99 | scale = dy; | 99 | scale = dy; |
100 | 100 | ||
101 | p.translate( m.width()/10,0 ); | 101 | p.translate( m.width()/10,0 ); |
102 | if ( scaleval == 2 || scaleval == 1 && scale < 1.0 ) { | 102 | if ( scaleval == 2 || scaleval == 1 && scale < 1.0 ) { |
103 | p.scale( scale, scale ); | 103 | p.scale( scale, scale ); |
104 | } | 104 | } |
105 | drawContents ( &p, 0,0, contentsWidth (), contentsHeight () ); | 105 | drawContents ( &p, 0,0, contentsWidth (), contentsHeight () ); |
106 | p.end(); | 106 | p.end(); |
107 | #endif | 107 | #endif |
108 | 108 | ||
109 | } | 109 | } |
110 | void KOEventViewer::setSource(const QString& n) | 110 | void KOEventViewer::setSource(const QString& n) |
111 | { | 111 | { |
112 | 112 | ||
113 | if ( n.left(8) == "todo_uid" ) { | ||
114 | int midstr = 9; | ||
115 | #ifdef DESKTOP_VERSION | ||
116 | midstr = 11; | ||
117 | #endif | ||
118 | qDebug("-%s- ", n.mid(midstr).latin1()); | ||
119 | emit showIncidence( n.mid(midstr) ); | ||
120 | return; | ||
121 | } | ||
122 | |||
113 | if ( n.left(3) == "uid" ) | 123 | if ( n.left(3) == "uid" ) |
114 | #ifdef DESKTOP_VERSION | 124 | #ifdef DESKTOP_VERSION |
115 | { | 125 | { |
116 | KABC::StdAddressBook* AddressBook = KABC::StdAddressBook::self( true ); | 126 | KABC::StdAddressBook* AddressBook = KABC::StdAddressBook::self( true ); |
117 | KABC::AddressBook::Iterator it; | 127 | KABC::AddressBook::Iterator it; |
118 | for( it = AddressBook->begin(); it != AddressBook->end(); ++it ) { | 128 | for( it = AddressBook->begin(); it != AddressBook->end(); ++it ) { |
119 | // LR I do not understand, why the uid string is different on zaurus and desktop | 129 | // LR I do not understand, why the uid string is different on zaurus and desktop |
120 | QString uid = "uid://"+(*it).uid(); | 130 | QString uid = "uid://"+(*it).uid(); |
121 | 131 | ||
122 | //qDebug("for *%s* +%s+ ", n.latin1(), uid.latin1()); | 132 | //qDebug("for *%s* +%s+ ", n.latin1(), uid.latin1()); |
123 | if (n == uid ) { | 133 | if (n == uid ) { |
124 | //qDebug("found %s ",(*it).mobileHomePhone().latin1() ); | 134 | //qDebug("found %s ",(*it).mobileHomePhone().latin1() ); |
125 | QDialog dia( this,"dia123", true ); | 135 | QDialog dia( this,"dia123", true ); |
126 | dia.setCaption( i18n("Details of attendee") ); | 136 | dia.setCaption( i18n("Details of attendee") ); |
127 | QVBoxLayout lay ( &dia ); | 137 | QVBoxLayout lay ( &dia ); |
128 | KABC::AddresseeView av ( &dia ); | 138 | KABC::AddresseeView av ( &dia ); |
129 | av.setAddressee( (*it) ); | 139 | av.setAddressee( (*it) ); |
130 | lay.addWidget( &av ); | 140 | lay.addWidget( &av ); |
131 | if ( QApplication::desktop()->width() < 480 ) | 141 | if ( QApplication::desktop()->width() < 480 ) |
132 | dia.resize( 220, 240); | 142 | dia.resize( 220, 240); |
133 | else { | 143 | else { |
134 | dia.resize( 400,400); | 144 | dia.resize( 400,400); |
135 | } | 145 | } |
136 | dia.exec(); | 146 | dia.exec(); |
137 | break; | 147 | break; |
138 | } | 148 | } |
139 | } | 149 | } |
140 | return; | 150 | return; |
141 | } | 151 | } |
142 | #else | 152 | #else |
143 | { | 153 | { |
144 | if ( "uid:organizer" == n ) { | 154 | if ( "uid:organizer" == n ) { |
145 | ExternalAppHandler::instance()->requestDetailsFromKAPI("", mCurrentIncidence->organizer(),""); | 155 | ExternalAppHandler::instance()->requestDetailsFromKAPI("", mCurrentIncidence->organizer(),""); |
146 | return; | 156 | return; |
147 | } | 157 | } |
148 | QPtrList<Attendee> attendees = mCurrentIncidence->attendees(); | 158 | QPtrList<Attendee> attendees = mCurrentIncidence->attendees(); |
149 | if (attendees.count()) { | 159 | if (attendees.count()) { |
150 | Attendee *a; | 160 | Attendee *a; |
151 | for(a=attendees.first();a;a=attendees.next()) { | 161 | for(a=attendees.first();a;a=attendees.next()) { |
152 | if ( "uid:"+a->uid() == n ) { | 162 | if ( "uid:"+a->uid() == n ) { |
153 | bool res = ExternalAppHandler::instance()->requestDetailsFromKAPI(a->name(), a->email(), a->uid()); | 163 | bool res = ExternalAppHandler::instance()->requestDetailsFromKAPI(a->name(), a->email(), a->uid()); |
154 | return; | 164 | return; |
155 | } | 165 | } |
156 | } | 166 | } |
157 | } | 167 | } |
158 | return; | 168 | return; |
159 | } | 169 | } |
160 | //requestNameEmailUidListFromKAPI("QPE/Application/kopi", this->name() /* name is here the unique uid*/); | 170 | //requestNameEmailUidListFromKAPI("QPE/Application/kopi", this->name() /* name is here the unique uid*/); |
161 | // the result should now arrive through method insertAttendees | 171 | // the result should now arrive through method insertAttendees |
162 | //QString uid = "uid:"+(*it).uid(); | 172 | //QString uid = "uid:"+(*it).uid(); |
163 | #endif | 173 | #endif |
164 | if ( n.left(6) == "mailto" ) { | 174 | if ( n.left(6) == "mailto" ) { |
165 | // qDebug("KOEventViewer::setSource %s ", n.mid(7).latin1()); | 175 | // qDebug("KOEventViewer::setSource %s ", n.mid(7).latin1()); |
166 | #ifndef DESKTOP_VERSION | 176 | #ifndef DESKTOP_VERSION |
167 | if ( n.mid(7,3) == "ALL" ) { | 177 | if ( n.mid(7,3) == "ALL" ) { |
168 | mailToAttendees( true ); | 178 | mailToAttendees( true ); |
169 | } else if ( n.mid(7,4) == "RSVP" ) { | 179 | } else if ( n.mid(7,4) == "RSVP" ) { |
170 | mailToAttendees( false ); | 180 | mailToAttendees( false ); |
171 | } else { | 181 | } else { |
172 | QCopEnvelope e("QPE/Application/ompi", "newMail(QString)" ); | 182 | QCopEnvelope e("QPE/Application/ompi", "newMail(QString)" ); |
173 | e << n.mid(7); | 183 | e << n.mid(7); |
174 | } | 184 | } |
175 | #endif | 185 | #endif |
176 | 186 | ||
177 | } | 187 | } |
178 | 188 | ||
179 | 189 | ||
180 | #ifndef KORG_NODCOP | 190 | #ifndef KORG_NODCOP |
181 | kdDebug() << "KOEventViewer::setSource(): " << n << endl; | 191 | kdDebug() << "KOEventViewer::setSource(): " << n << endl; |
182 | QString tmpStr; | 192 | QString tmpStr; |
183 | if (n.startsWith("mailto:")) { | 193 | if (n.startsWith("mailto:")) { |
184 | KApplication::kApplication()->invokeMailer(n.mid(7),QString::null); | 194 | KApplication::kApplication()->invokeMailer(n.mid(7),QString::null); |
185 | //emit showIncidence(n); | 195 | //emit showIncidence(n); |
186 | return; | 196 | return; |
187 | } else if (n.startsWith("uid:")) { | 197 | } else if (n.startsWith("uid:")) { |
188 | DCOPClient *client = KApplication::kApplication()->dcopClient(); | 198 | DCOPClient *client = KApplication::kApplication()->dcopClient(); |
189 | const QByteArray noParamData; | 199 | const QByteArray noParamData; |
190 | const QByteArray paramData; | 200 | const QByteArray paramData; |
191 | QByteArray replyData; | 201 | QByteArray replyData; |
192 | QCString replyTypeStr; | 202 | QCString replyTypeStr; |
193 | #define PING_ABBROWSER (client->call("kaddressbook", "KAddressBookIface", "interfaces()", noParamData, replyTypeStr, replyData)) | 203 | #define PING_ABBROWSER (client->call("kaddressbook", "KAddressBookIface", "interfaces()", noParamData, replyTypeStr, replyData)) |
194 | bool foundAbbrowser = PING_ABBROWSER; | 204 | bool foundAbbrowser = PING_ABBROWSER; |
195 | 205 | ||
196 | if (foundAbbrowser) { | 206 | if (foundAbbrowser) { |
197 | //KAddressbook is already running, so just DCOP to it to bring up the contact editor | 207 | //KAddressbook is already running, so just DCOP to it to bring up the contact editor |
198 | //client->send("kaddressbook","KAddressBookIface", | 208 | //client->send("kaddressbook","KAddressBookIface", |
199 | QDataStream arg(paramData, IO_WriteOnly); | 209 | QDataStream arg(paramData, IO_WriteOnly); |
200 | arg << n.mid(6); | 210 | arg << n.mid(6); |
201 | client->send("kaddressbook", "KAddressBookIface", "showContactEditor( QString )", paramData); | 211 | client->send("kaddressbook", "KAddressBookIface", "showContactEditor( QString )", paramData); |
202 | return; | 212 | return; |
203 | } else { | 213 | } else { |
204 | /* | 214 | /* |
205 | KaddressBook is not already running. Pass it the UID of the contact via the command line while starting it - its neater. | 215 | KaddressBook is not already running. Pass it the UID of the contact via the command line while starting it - its neater. |
206 | We start it without its main interface | 216 | We start it without its main interface |
207 | */ | 217 | */ |
208 | KIconLoader* iconLoader = new KIconLoader(); | 218 | KIconLoader* iconLoader = new KIconLoader(); |
209 | QString iconPath = iconLoader->iconPath("go",KIcon::Small); | 219 | QString iconPath = iconLoader->iconPath("go",KIcon::Small); |
210 | ActionManager::setStartedKAddressBook(true); | 220 | ActionManager::setStartedKAddressBook(true); |
211 | tmpStr = "kaddressbook --editor-only --uid "; | 221 | tmpStr = "kaddressbook --editor-only --uid "; |
212 | tmpStr += KProcess::quote(n.mid(6)); | 222 | tmpStr += KProcess::quote(n.mid(6)); |
213 | KRun::runCommand(tmpStr,"KAddressBook",iconPath); | 223 | KRun::runCommand(tmpStr,"KAddressBook",iconPath); |
214 | return; | 224 | return; |
215 | } | 225 | } |
216 | } else { | 226 | } else { |
217 | //QTextBrowser::setSource(n); | 227 | //QTextBrowser::setSource(n); |
218 | } | 228 | } |
219 | #endif | 229 | #endif |
220 | } | 230 | } |
221 | void KOEventViewer::mailToAttendees( bool all ) | 231 | void KOEventViewer::mailToAttendees( bool all ) |
222 | { | 232 | { |
223 | QPtrList<Attendee> attendees = mCurrentIncidence->attendees(); | 233 | QPtrList<Attendee> attendees = mCurrentIncidence->attendees(); |
224 | if (attendees.count() == 0) return; | 234 | if (attendees.count() == 0) return; |
225 | QStringList nameList; | 235 | QStringList nameList; |
226 | QStringList emailList; | 236 | QStringList emailList; |
227 | QStringList uidList; | 237 | QStringList uidList; |
228 | Attendee* a; | 238 | Attendee* a; |
229 | for(a=attendees.first();a;a=attendees.next()) { | 239 | for(a=attendees.first();a;a=attendees.next()) { |
230 | if ( !all && !a->RSVP() ) continue; | 240 | if ( !all && !a->RSVP() ) continue; |
231 | if (!a->email().isEmpty()) { | 241 | if (!a->email().isEmpty()) { |
232 | nameList.append (a->name() ); | 242 | nameList.append (a->name() ); |
233 | emailList.append (a->email() ); | 243 | emailList.append (a->email() ); |
234 | uidList.append (a->uid() ); | 244 | uidList.append (a->uid() ); |
235 | } | 245 | } |
236 | } | 246 | } |
237 | QString uid = "ComposeMailUIpick2"+mMailSubject; | 247 | QString uid = "ComposeMailUIpick2"+mMailSubject; |
238 | #ifndef DESKTOP_VERSION | 248 | #ifndef DESKTOP_VERSION |
239 | bool res = ExternalAppHandler::instance()->returnNameEmailUidListFromKAPI("QPE/Application/ompi", uid, nameList, emailList, uidList); | 249 | bool res = ExternalAppHandler::instance()->returnNameEmailUidListFromKAPI("QPE/Application/ompi", uid, nameList, emailList, uidList); |
240 | #endif | 250 | #endif |
241 | 251 | ||
242 | } | 252 | } |
243 | void KOEventViewer::addTag(const QString & tag,const QString & text) | 253 | void KOEventViewer::addTag(const QString & tag,const QString & text) |
244 | { | 254 | { |
245 | int number=text.contains("\n"); | 255 | int number=text.contains("\n"); |
246 | QString str = "<" + tag + ">"; | 256 | QString str = "<" + tag + ">"; |
247 | QString tmpText=text; | 257 | QString tmpText=text; |
248 | QString tmpStr=str; | 258 | QString tmpStr=str; |
249 | if(number !=-1) | 259 | if(number !=-1) |
250 | { | 260 | { |
251 | if (number > 0) { | 261 | if (number > 0) { |
252 | int pos=0; | 262 | int pos=0; |
253 | QString tmp; | 263 | QString tmp; |
254 | for(int i=0;i<=number;i++) { | 264 | for(int i=0;i<=number;i++) { |
255 | pos=tmpText.find("\n"); | 265 | pos=tmpText.find("\n"); |
256 | tmp=tmpText.left(pos); | 266 | tmp=tmpText.left(pos); |
257 | tmpText=tmpText.right(tmpText.length()-pos-1); | 267 | tmpText=tmpText.right(tmpText.length()-pos-1); |
258 | tmpStr+=tmp+"<br>"; | 268 | tmpStr+=tmp+"<br>"; |
259 | } | 269 | } |
260 | } | 270 | } |
261 | else tmpStr += tmpText; | 271 | else tmpStr += tmpText; |
262 | tmpStr+="</" + tag + ">"; | 272 | tmpStr+="</" + tag + ">"; |
263 | mText.append(tmpStr); | 273 | mText.append(tmpStr); |
264 | } | 274 | } |
265 | else | 275 | else |
266 | { | 276 | { |
267 | str += text + "</" + tag + ">"; | 277 | str += text + "</" + tag + ">"; |
268 | mText.append(str); | 278 | mText.append(str); |
269 | } | 279 | } |
270 | } | 280 | } |
271 | 281 | ||
272 | void KOEventViewer::setColorMode( int m ) | 282 | void KOEventViewer::setColorMode( int m ) |
273 | { | 283 | { |
274 | mColorMode = m; | 284 | mColorMode = m; |
275 | } | 285 | } |
276 | void KOEventViewer::appendEvent(Event *event, int mode ) | 286 | void KOEventViewer::appendEvent(Event *event, int mode ) |
277 | { | 287 | { |
278 | mMailSubject = ""; | 288 | mMailSubject = ""; |
279 | mCurrentIncidence = event; | 289 | mCurrentIncidence = event; |
280 | bool shortDate = KOPrefs::instance()->mShortDateInViewer; | 290 | bool shortDate = KOPrefs::instance()->mShortDateInViewer; |
281 | bool wideScreen = ( QApplication::desktop()->width() >= 640 ); | 291 | bool wideScreen = ( QApplication::desktop()->width() >= 640 ); |
282 | topLevelWidget()->setCaption(i18n("Event Viewer")); | 292 | topLevelWidget()->setCaption(i18n("Event Viewer")); |
283 | if ( mode == 0 ) { | 293 | if ( mode == 0 ) { |
284 | addTag("h2",deTag(event->summary())); | 294 | addTag("h2",deTag(event->summary())); |
285 | formatReadOnly(event); | 295 | formatReadOnly(event); |
286 | } | 296 | } |
287 | else { | 297 | else { |
288 | if ( mColorMode == 1 ) { | 298 | if ( mColorMode == 1 ) { |
289 | mText +="<font color=\"#00A000\">"; | 299 | mText +="<font color=\"#00A000\">"; |
290 | } | 300 | } |
291 | if ( mColorMode == 2 ) { | 301 | if ( mColorMode == 2 ) { |
292 | mText +="<font color=\"#C00000\">"; | 302 | mText +="<font color=\"#C00000\">"; |
293 | } | 303 | } |
294 | // mText +="<font color=\"#F00000\">" + i18n("O-due!") + "</font>"; | 304 | // mText +="<font color=\"#F00000\">" + i18n("O-due!") + "</font>"; |
295 | if ( mode == 1 ) { | 305 | if ( mode == 1 ) { |
296 | addTag("h2",i18n( "Local: " ) +deTag(event->summary())); | 306 | addTag("h2",i18n( "Local: " ) +deTag(event->summary())); |
297 | } else { | 307 | } else { |
298 | addTag("h2",i18n( "Remote: " ) +deTag(event->summary())); | 308 | addTag("h2",i18n( "Remote: " ) +deTag(event->summary())); |
299 | } | 309 | } |
300 | formatReadOnly(event); | 310 | formatReadOnly(event); |
301 | addTag("h3",i18n( "Last modified: " ) + KGlobal::locale()->formatDateTime(event->lastModified(),shortDate, true ) ); | 311 | addTag("h3",i18n( "Last modified: " ) + KGlobal::locale()->formatDateTime(event->lastModified(),shortDate, true ) ); |
302 | if ( mColorMode ) | 312 | if ( mColorMode ) |
303 | mText += "</font>"; | 313 | mText += "</font>"; |
304 | } | 314 | } |
@@ -341,392 +351,404 @@ void KOEventViewer::appendEvent(Event *event, int mode ) | |||
341 | 351 | ||
342 | QString recurText = event->recurrence()->recurrenceText(); | 352 | QString recurText = event->recurrence()->recurrenceText(); |
343 | addTag("p","<em>" + i18n("This is a %1 recurring event.").arg(recurText ) + "</em>"); | 353 | addTag("p","<em>" + i18n("This is a %1 recurring event.").arg(recurText ) + "</em>"); |
344 | bool ok; | 354 | bool ok; |
345 | QDate start = QDate::currentDate(); | 355 | QDate start = QDate::currentDate(); |
346 | QDateTime next; | 356 | QDateTime next; |
347 | next = event->getNextOccurence( QDateTime::currentDateTime() , &ok ); | 357 | next = event->getNextOccurence( QDateTime::currentDateTime() , &ok ); |
348 | if ( ok ) { | 358 | if ( ok ) { |
349 | if ( wideScreen ){ | 359 | if ( wideScreen ){ |
350 | addTag("p",i18n("<b>Next recurrence is on:</b>") +" " + KGlobal::locale()->formatDate( next.date(), shortDate ) ); | 360 | addTag("p",i18n("<b>Next recurrence is on:</b>") +" " + KGlobal::locale()->formatDate( next.date(), shortDate ) ); |
351 | } else { | 361 | } else { |
352 | addTag("p",i18n("<b>Next recurrence is on:</b>") ); | 362 | addTag("p",i18n("<b>Next recurrence is on:</b>") ); |
353 | addTag("p", KGlobal::locale()->formatDate( next.date(), shortDate )); | 363 | addTag("p", KGlobal::locale()->formatDate( next.date(), shortDate )); |
354 | } | 364 | } |
355 | mMailSubject += i18n(" - " )+ KGlobal::locale()->formatDateTime( next, true ); | 365 | mMailSubject += i18n(" - " )+ KGlobal::locale()->formatDateTime( next, true ); |
356 | 366 | ||
357 | } else { | 367 | } else { |
358 | bool last; | 368 | bool last; |
359 | QDate nextd; | 369 | QDate nextd; |
360 | nextd = event->recurrence()->getPreviousDate( QDate::currentDate() , &last ); | 370 | nextd = event->recurrence()->getPreviousDate( QDate::currentDate() , &last ); |
361 | if ( last ) { | 371 | if ( last ) { |
362 | if ( wideScreen ){ | 372 | if ( wideScreen ){ |
363 | addTag("p",i18n("<b>Last recurrence was on:</b>") +" " + KGlobal::locale()->formatDate( nextd, shortDate )); | 373 | addTag("p",i18n("<b>Last recurrence was on:</b>") +" " + KGlobal::locale()->formatDate( nextd, shortDate )); |
364 | } else{ | 374 | } else{ |
365 | addTag("p",i18n("<b>Last recurrence was on:</b>") ); | 375 | addTag("p",i18n("<b>Last recurrence was on:</b>") ); |
366 | addTag("p", KGlobal::locale()->formatDate( nextd, shortDate )); | 376 | addTag("p", KGlobal::locale()->formatDate( nextd, shortDate )); |
367 | } | 377 | } |
368 | } | 378 | } |
369 | } | 379 | } |
370 | } else { | 380 | } else { |
371 | mMailSubject += i18n(" - " )+event->dtStartStr( true ); | 381 | mMailSubject += i18n(" - " )+event->dtStartStr( true ); |
372 | 382 | ||
373 | } | 383 | } |
374 | 384 | ||
375 | 385 | ||
376 | if (event->isAlarmEnabled()) { | 386 | if (event->isAlarmEnabled()) { |
377 | Alarm *alarm =event->alarms().first() ; | 387 | Alarm *alarm =event->alarms().first() ; |
378 | QDateTime t = alarm->time(); | 388 | QDateTime t = alarm->time(); |
379 | QString s =i18n("( %1 before )").arg( alarm->offsetText() ); | 389 | QString s =i18n("( %1 before )").arg( alarm->offsetText() ); |
380 | if(wideScreen ){ | 390 | if(wideScreen ){ |
381 | addTag("p",i18n("<b>Alarm on: ") + s +" </b>"+ KGlobal::locale()->formatDateTime( t, shortDate )); | 391 | addTag("p",i18n("<b>Alarm on: ") + s +" </b>"+ KGlobal::locale()->formatDateTime( t, shortDate )); |
382 | }else{ | 392 | }else{ |
383 | addTag("p",i18n("<b>Alarm on: ") + s +" </b>"); | 393 | addTag("p",i18n("<b>Alarm on: ") + s +" </b>"); |
384 | addTag("p", KGlobal::locale()->formatDateTime( t, shortDate )); | 394 | addTag("p", KGlobal::locale()->formatDateTime( t, shortDate )); |
385 | } | 395 | } |
386 | //addTag("p",s); | 396 | //addTag("p",s); |
387 | } | 397 | } |
388 | 398 | ||
389 | addTag("p","<b>"+i18n("Access: ") + "</b>" + event->secrecyStr()); | 399 | addTag("p","<b>"+i18n("Access: ") + "</b>" + event->secrecyStr()); |
390 | 400 | ||
391 | formatCategories(event); | 401 | formatCategories(event); |
392 | 402 | ||
393 | formatAttendees(event); | 403 | formatAttendees(event); |
394 | 404 | ||
395 | if ( KOPrefs::instance()->mEVshowCreated ) { | 405 | if ( KOPrefs::instance()->mEVshowCreated ) { |
396 | if(wideScreen ){ | 406 | if(wideScreen ){ |
397 | addTag("p",i18n("<b>Created: ") +" </b>"+KGlobal::locale()->formatDateTime( event->created(), shortDate )); | 407 | addTag("p",i18n("<b>Created: ") +" </b>"+KGlobal::locale()->formatDateTime( event->created(), shortDate )); |
398 | }else{ | 408 | }else{ |
399 | addTag("p",i18n("<b>Created: ") +" </b>"); | 409 | addTag("p",i18n("<b>Created: ") +" </b>"); |
400 | addTag("p", KGlobal::locale()->formatDateTime( event->created(), shortDate )); | 410 | addTag("p", KGlobal::locale()->formatDateTime( event->created(), shortDate )); |
401 | } | 411 | } |
402 | 412 | ||
403 | 413 | ||
404 | } | 414 | } |
405 | if ( KOPrefs::instance()->mEVshowChanged ) { | 415 | if ( KOPrefs::instance()->mEVshowChanged ) { |
406 | if(wideScreen ){ | 416 | if(wideScreen ){ |
407 | addTag("p",i18n("<b>Last modified: ") +" </b>" + KGlobal::locale()->formatDateTime( event->lastModified(), shortDate ) ); | 417 | addTag("p",i18n("<b>Last modified: ") +" </b>" + KGlobal::locale()->formatDateTime( event->lastModified(), shortDate ) ); |
408 | }else{ | 418 | }else{ |
409 | addTag("p",i18n("<b>Last modified: ") +" </b>"); | 419 | addTag("p",i18n("<b>Last modified: ") +" </b>"); |
410 | addTag("p", KGlobal::locale()->formatDateTime( event->lastModified(), shortDate )); | 420 | addTag("p", KGlobal::locale()->formatDateTime( event->lastModified(), shortDate )); |
411 | } | 421 | } |
412 | 422 | ||
413 | } | 423 | } |
414 | if ( KOPrefs::instance()->mEVshowDetails ) { | 424 | if ( KOPrefs::instance()->mEVshowDetails ) { |
415 | if (!event->description().isEmpty()) { | 425 | if (!event->description().isEmpty()) { |
416 | addTag("p",i18n("<b>Details: </b>")); | 426 | addTag("p",i18n("<b>Details: </b>")); |
417 | addTag("p",deTag(event->description())); | 427 | addTag("p",deTag(event->description())); |
418 | } | 428 | } |
419 | } | 429 | } |
420 | setText(mText); | 430 | setText(mText); |
421 | //QWhatsThis::add(this,mText); | 431 | //QWhatsThis::add(this,mText); |
422 | 432 | ||
423 | } | 433 | } |
424 | 434 | ||
425 | void KOEventViewer::appendTodo(Todo *event, int mode ) | 435 | void KOEventViewer::appendTodo(Todo *event, int mode ) |
426 | { | 436 | { |
427 | mMailSubject = ""; | 437 | mMailSubject = ""; |
428 | mCurrentIncidence = event; | 438 | mCurrentIncidence = event; |
429 | topLevelWidget()->setCaption(i18n("Todo Viewer")); | 439 | topLevelWidget()->setCaption(i18n("Todo Viewer")); |
430 | bool shortDate = KOPrefs::instance()->mShortDateInViewer; | 440 | bool shortDate = KOPrefs::instance()->mShortDateInViewer; |
431 | bool wideScreen = ( QApplication::desktop()->width() >= 640 ); | 441 | bool wideScreen = ( QApplication::desktop()->width() >= 640 ); |
432 | if (mode == 0 ) { | 442 | if (mode == 0 ) { |
433 | addTag("h2",deTag(event->summary())); | 443 | addTag("h2",deTag(event->summary())); |
434 | formatReadOnly(event); | 444 | formatReadOnly(event); |
435 | } | 445 | } |
436 | else { | 446 | else { |
437 | if ( mColorMode == 1 ) { | 447 | if ( mColorMode == 1 ) { |
438 | mText +="<font color=\"#00A000\">"; | 448 | mText +="<font color=\"#00A000\">"; |
439 | } | 449 | } |
440 | if ( mColorMode == 2 ) { | 450 | if ( mColorMode == 2 ) { |
441 | mText +="<font color=\"#B00000\">"; | 451 | mText +="<font color=\"#B00000\">"; |
442 | } | 452 | } |
443 | if ( mode == 1 ) { | 453 | if ( mode == 1 ) { |
444 | addTag("h2",i18n( "Local: " ) +deTag(event->summary())); | 454 | addTag("h2",i18n( "Local: " ) +deTag(event->summary())); |
445 | } else { | 455 | } else { |
446 | addTag("h2",i18n( "Remote: " ) +deTag(event->summary())); | 456 | addTag("h2",i18n( "Remote: " ) +deTag(event->summary())); |
447 | } | 457 | } |
448 | formatReadOnly(event); | 458 | formatReadOnly(event); |
449 | addTag("h3",i18n( "Last modified: " ) + KGlobal::locale()->formatDateTime(event->lastModified(),shortDate, true ) ); | 459 | addTag("h3",i18n( "Last modified: " ) + KGlobal::locale()->formatDateTime(event->lastModified(),shortDate, true ) ); |
450 | if ( mColorMode ) | 460 | if ( mColorMode ) |
451 | mText += "</font>"; | 461 | mText += "</font>"; |
452 | } | 462 | } |
453 | mMailSubject += i18n( "Todo " )+ event->summary(); | 463 | mMailSubject += i18n( "Todo " )+ event->summary(); |
454 | 464 | ||
455 | if ( event->percentComplete() == 100 && event->hasCompletedDate() ) { | 465 | if ( event->percentComplete() == 100 && event->hasCompletedDate() ) { |
456 | mText +="<font color=\"#B00000\">"; | 466 | mText +="<font color=\"#B00000\">"; |
457 | addTag("i", i18n("<p><i>Completed on %1</i></p>").arg( event->completedStr(KOPrefs::instance()->mShortDateInViewer) ) ); | 467 | addTag("i", i18n("<p><i>Completed on %1</i></p>").arg( event->completedStr(KOPrefs::instance()->mShortDateInViewer) ) ); |
458 | mText += "</font>"; | 468 | mText += "</font>"; |
459 | } else { | 469 | } else { |
460 | mText.append(i18n("<p><i>%1 % completed</i></p>") | 470 | mText.append(i18n("<p><i>%1 % completed</i></p>") |
461 | .arg(event->percentComplete())); | 471 | .arg(event->percentComplete())); |
462 | } | 472 | } |
463 | 473 | ||
464 | if (event->cancelled ()) { | 474 | if (event->cancelled ()) { |
465 | mText +="<font color=\"#B00000\">"; | 475 | mText +="<font color=\"#B00000\">"; |
466 | addTag("i",i18n("This todo has been cancelled!")); | 476 | addTag("i",i18n("This todo has been cancelled!")); |
467 | mText.append("<br>"); | 477 | mText.append("<br>"); |
468 | mText += "</font>"; | 478 | mText += "</font>"; |
469 | mMailSubject += i18n("(cancelled)"); | 479 | mMailSubject += i18n("(cancelled)"); |
470 | } | 480 | } |
471 | 481 | ||
472 | 482 | ||
473 | 483 | ||
474 | if (event->recurrence()->doesRecur()) { | 484 | if (event->recurrence()->doesRecur()) { |
475 | 485 | ||
476 | QString recurText = event->recurrence()->recurrenceText(); | 486 | QString recurText = event->recurrence()->recurrenceText(); |
477 | addTag("p","<em>" + i18n("This is a %1 recurring todo.").arg(recurText ) + "</em>"); | 487 | addTag("p","<em>" + i18n("This is a %1 recurring todo.").arg(recurText ) + "</em>"); |
478 | 488 | ||
479 | } | 489 | } |
480 | if (event->hasStartDate()) { | 490 | if (event->hasStartDate()) { |
481 | mText.append(i18n("<p><b>Start on:</b> %1</p>").arg(event->dtStartStr(KOPrefs::instance()->mShortDateInViewer))); | 491 | mText.append(i18n("<p><b>Start on:</b> %1</p>").arg(event->dtStartStr(KOPrefs::instance()->mShortDateInViewer))); |
482 | } | 492 | } |
483 | if (event->hasDueDate()) { | 493 | if (event->hasDueDate()) { |
484 | mText.append(i18n("<p><b>Due on:</b> %1</p>").arg(event->dtDueStr(KOPrefs::instance()->mShortDateInViewer))); | 494 | mText.append(i18n("<p><b>Due on:</b> %1</p>").arg(event->dtDueStr(KOPrefs::instance()->mShortDateInViewer))); |
485 | mMailSubject += i18n(" - " )+event->dtDueStr( true ); | 495 | mMailSubject += i18n(" - " )+event->dtDueStr( true ); |
486 | } | 496 | } |
487 | if (!event->location().isEmpty()) { | 497 | if (!event->location().isEmpty()) { |
488 | addTag("p","<b>"+i18n("Location: ")+"</b>"+ deTag(event->location() ) ); | 498 | addTag("p","<b>"+i18n("Location: ")+"</b>"+ deTag(event->location() ) ); |
489 | mMailSubject += i18n(" at ") + event->location(); | 499 | mMailSubject += i18n(" at ") + event->location(); |
490 | } | 500 | } |
491 | mText.append(i18n("<p><b>Priority:</b> %2</p>") | 501 | mText.append(i18n("<p><b>Priority:</b> %2</p>") |
492 | .arg(QString::number(event->priority()))); | 502 | .arg(QString::number(event->priority()))); |
493 | 503 | ||
494 | if (event->isAlarmEnabled()) { | 504 | if (event->isAlarmEnabled()) { |
495 | Alarm *alarm =event->alarms().first() ; | 505 | Alarm *alarm =event->alarms().first() ; |
496 | QDateTime t = alarm->time(); | 506 | QDateTime t = alarm->time(); |
497 | QString s =i18n("( %1 before )").arg( alarm->offsetText() ); | 507 | QString s =i18n("( %1 before )").arg( alarm->offsetText() ); |
498 | if ( wideScreen ) { | 508 | if ( wideScreen ) { |
499 | addTag("p",i18n("<b>Alarm on: ") + s +" </b>"+ KGlobal::locale()->formatDateTime( t, shortDate )); | 509 | addTag("p",i18n("<b>Alarm on: ") + s +" </b>"+ KGlobal::locale()->formatDateTime( t, shortDate )); |
500 | } else { | 510 | } else { |
501 | addTag("p",i18n("<b>Alarm on: ") + s +" </b>"); | 511 | addTag("p",i18n("<b>Alarm on: ") + s +" </b>"); |
502 | addTag("p", KGlobal::locale()->formatDateTime( t, shortDate )); | 512 | addTag("p", KGlobal::locale()->formatDateTime( t, shortDate )); |
503 | } | 513 | } |
504 | } | 514 | } |
505 | 515 | ||
506 | addTag("p","<b>"+i18n("Access: ") + "</b>" + event->secrecyStr()); | 516 | addTag("p","<b>"+i18n("Access: ") + "</b>" + event->secrecyStr()); |
507 | 517 | ||
508 | formatCategories(event); | 518 | formatCategories(event); |
509 | 519 | ||
510 | formatAttendees(event); | 520 | formatAttendees(event); |
511 | 521 | ||
512 | if ( KOPrefs::instance()->mEVshowCreated ) { | 522 | if ( KOPrefs::instance()->mEVshowCreated ) { |
513 | if(wideScreen ){ | 523 | if(wideScreen ){ |
514 | 524 | ||
515 | addTag("p",i18n("<b>Created: ") +" </b>"+KGlobal::locale()->formatDateTime( event->created(), shortDate )); | 525 | addTag("p",i18n("<b>Created: ") +" </b>"+KGlobal::locale()->formatDateTime( event->created(), shortDate )); |
516 | 526 | ||
517 | } else { | 527 | } else { |
518 | addTag("p",i18n("<b>Created: ") +" </b>"); | 528 | addTag("p",i18n("<b>Created: ") +" </b>"); |
519 | addTag("p", KGlobal::locale()->formatDateTime( event->created(), shortDate )); | 529 | addTag("p", KGlobal::locale()->formatDateTime( event->created(), shortDate )); |
520 | } | 530 | } |
521 | } | 531 | } |
522 | if ( KOPrefs::instance()->mEVshowChanged ) { | 532 | if ( KOPrefs::instance()->mEVshowChanged ) { |
523 | if(wideScreen ){ | 533 | if(wideScreen ){ |
524 | addTag("p",i18n("<b>Last modified: ") +" </b>" +KGlobal::locale()->formatDateTime( event->lastModified(), shortDate ) ); | 534 | addTag("p",i18n("<b>Last modified: ") +" </b>" +KGlobal::locale()->formatDateTime( event->lastModified(), shortDate ) ); |
525 | 535 | ||
526 | } else { | 536 | } else { |
527 | addTag("p",i18n("<b>Last modified: ") +" </b>"); | 537 | addTag("p",i18n("<b>Last modified: ") +" </b>"); |
528 | addTag("p", KGlobal::locale()->formatDateTime( event->lastModified(), shortDate )); | 538 | addTag("p", KGlobal::locale()->formatDateTime( event->lastModified(), shortDate )); |
529 | } | 539 | } |
530 | } | 540 | } |
531 | if ( event->relatedTo() ) { | 541 | if ( event->relatedTo() ) { |
532 | addTag("b",i18n("Parent todo:<br>")); | 542 | addTag("b",i18n("Parent todo:<br>")); |
533 | mText.append(deTag(event->relatedTo()->summary())+" [" +QString::number(event->relatedTo()->priority()) + "/" + QString::number(((Todo*)event->relatedTo())->percentComplete())+"%] <br>"); | 543 | |
544 | QString t_name = "[" +QString::number(event->relatedTo()->priority()) + "/" + QString::number(((Todo*)event->relatedTo())->percentComplete())+"%] ";// +event->relatedTo()->summary()); | ||
545 | |||
546 | mText += t_name; | ||
547 | mText += "<a href=\"todo_uid:" + event->relatedTo()->uid() + "\">"; | ||
548 | mText += deTag(event->relatedTo()->summary()); | ||
549 | mText += "</a><br>"; | ||
550 | |||
551 | // mText.append(deTag("[" +QString::number(event->relatedTo()->priority()) + "/" + QString::number(((Todo*)event->relatedTo())->percentComplete())+"%] " +event->relatedTo()->summary()) +"<br>"); | ||
534 | } | 552 | } |
535 | QPtrList<Incidence> Relations = event->relations(); | 553 | QPtrList<Incidence> Relations = event->relations(); |
536 | Incidence *to; | 554 | Incidence *to; |
537 | if ( Relations.first() ) | 555 | if ( Relations.first() ) |
538 | addTag("b",i18n("Sub todos:<br>")); | 556 | addTag("b",i18n("Sub todos:<br>")); |
539 | for (to=Relations.first();to;to=Relations.next()) { | 557 | for (to=Relations.first();to;to=Relations.next()) { |
540 | mText.append( deTag(to->summary())+" [" +QString::number(to->priority()) + "/" + QString::number(((Todo*)to)->percentComplete())+"%]<br>"); | 558 | QString t_name = "[" +QString::number(((Todo*)to)->priority()) + "/" + QString::number(((Todo*)to)->percentComplete())+"%] ";// +to->relatedTo()->summary()); |
559 | mText += t_name; | ||
560 | mText += "<a href=\"todo_uid:" + to->uid() + "\">"; | ||
561 | mText += deTag(to->summary()); | ||
562 | mText += "</a><br>"; | ||
541 | 563 | ||
542 | } | 564 | } |
543 | 565 | ||
544 | if ( KOPrefs::instance()->mEVshowDetails ) { | 566 | if ( KOPrefs::instance()->mEVshowDetails ) { |
545 | if (!event->description().isEmpty()) { | 567 | if (!event->description().isEmpty()) { |
546 | addTag("p",i18n("<b>Details: </b>")); | 568 | addTag("p",i18n("<b>Details: </b>")); |
547 | addTag("p",deTag(event->description())); | 569 | addTag("p",deTag(event->description())); |
548 | } | 570 | } |
549 | } | 571 | } |
550 | setText(mText); | 572 | setText(mText); |
551 | } | 573 | } |
552 | 574 | ||
553 | void KOEventViewer::formatCategories(Incidence *event) | 575 | void KOEventViewer::formatCategories(Incidence *event) |
554 | { | 576 | { |
555 | if (!event->categoriesStr().isEmpty()) { | 577 | if (!event->categoriesStr().isEmpty()) { |
556 | if (event->categories().count() == 1) { | 578 | if (event->categories().count() == 1) { |
557 | addTag("p","<b>"+i18n("Category") + ":</b> " + event->categoriesStrWithSpace()); | 579 | addTag("p","<b>"+i18n("Category") + ":</b> " + event->categoriesStrWithSpace()); |
558 | } else { | 580 | } else { |
559 | addTag("p","<b>"+i18n("Categories")+":</b> " + event->categoriesStrWithSpace() ) ; | 581 | addTag("p","<b>"+i18n("Categories")+":</b> " + event->categoriesStrWithSpace() ) ; |
560 | } | 582 | } |
561 | } | 583 | } |
562 | } | 584 | } |
563 | void KOEventViewer::formatAttendees(Incidence *event) | 585 | void KOEventViewer::formatAttendees(Incidence *event) |
564 | { | 586 | { |
565 | QPtrList<Attendee> attendees = event->attendees(); | 587 | QPtrList<Attendee> attendees = event->attendees(); |
566 | if (attendees.count()) { | 588 | if (attendees.count()) { |
567 | 589 | ||
568 | 590 | ||
569 | QString iconPath = KGlobal::iconLoader()->iconPath("mailappt",KIcon::Small); | 591 | QString iconPath = KGlobal::iconLoader()->iconPath("mailappt",KIcon::Small); |
570 | QString NOiconPath = KGlobal::iconLoader()->iconPath("nomailappt",KIcon::Small); | 592 | QString NOiconPath = KGlobal::iconLoader()->iconPath("nomailappt",KIcon::Small); |
571 | addTag("h3",i18n("Organizer")); | 593 | addTag("h3",i18n("Organizer")); |
572 | mText.append("<ul><li>"); | 594 | mText.append("<ul><li>"); |
573 | #ifndef KORG_NOKABC | 595 | #ifndef KORG_NOKABC |
574 | 596 | ||
575 | #ifdef DESKTOP_VERSION | 597 | #ifdef DESKTOP_VERSION |
576 | KABC::AddressBook *add_book = KABC::StdAddressBook::self(); | 598 | KABC::AddressBook *add_book = KABC::StdAddressBook::self(); |
577 | KABC::Addressee::List addressList; | 599 | KABC::Addressee::List addressList; |
578 | addressList = add_book->findByEmail(event->organizer()); | 600 | addressList = add_book->findByEmail(event->organizer()); |
579 | KABC::Addressee o = addressList.first(); | 601 | KABC::Addressee o = addressList.first(); |
580 | if (!o.isEmpty() && addressList.size()<2) { | 602 | if (!o.isEmpty() && addressList.size()<2) { |
581 | mText += "<a href=\"uid:" + o.uid() + "\">"; | 603 | mText += "<a href=\"uid:" + o.uid() + "\">"; |
582 | mText += o.formattedName(); | 604 | mText += o.formattedName(); |
583 | mText += "</a>\n"; | 605 | mText += "</a>\n"; |
584 | } else { | 606 | } else { |
585 | mText.append(event->organizer()); | 607 | mText.append(event->organizer()); |
586 | } | 608 | } |
587 | #else //DESKTOP_VERSION | 609 | #else //DESKTOP_VERSION |
588 | mText += "<a href=\"uid:organizer\">"; | 610 | mText += "<a href=\"uid:organizer\">"; |
589 | mText += event->organizer(); | 611 | mText += event->organizer(); |
590 | mText += "</a>\n"; | 612 | mText += "</a>\n"; |
591 | #endif //DESKTOP_VERSION | 613 | #endif //DESKTOP_VERSION |
592 | 614 | ||
593 | 615 | ||
594 | #else | 616 | #else |
595 | mText.append(event->organizer()); | 617 | mText.append(event->organizer()); |
596 | #endif | 618 | #endif |
597 | 619 | ||
598 | if (iconPath) { | 620 | if (iconPath) { |
599 | mText += " <a href=\"mailto:" + event->organizer() + "\">"; | 621 | mText += " <a href=\"mailto:" + event->organizer() + "\">"; |
600 | mText += "<IMG src=\"" + iconPath + "\">"; | 622 | mText += "<IMG src=\"" + iconPath + "\">"; |
601 | mText += "</a>\n"; | 623 | mText += "</a>\n"; |
602 | } | 624 | } |
603 | mText.append("</li></ul>"); | 625 | mText.append("</li></ul>"); |
604 | 626 | ||
605 | addTag("h3",i18n("Attendees")); | 627 | addTag("h3",i18n("Attendees")); |
606 | Attendee *a; | 628 | Attendee *a; |
607 | mText.append("<ul>"); | 629 | mText.append("<ul>"); |
608 | int a_count = 0; | 630 | int a_count = 0; |
609 | int a_count_nr = 0; | 631 | int a_count_nr = 0; |
610 | 632 | ||
611 | for(a=attendees.first();a;a=attendees.next()) { | 633 | for(a=attendees.first();a;a=attendees.next()) { |
612 | #ifndef KORG_NOKABC | 634 | #ifndef KORG_NOKABC |
613 | #ifdef DESKTOP_VERSION | 635 | #ifdef DESKTOP_VERSION |
614 | if (a->name().isEmpty()) { | 636 | if (a->name().isEmpty()) { |
615 | addressList = add_book->findByEmail(a->email()); | 637 | addressList = add_book->findByEmail(a->email()); |
616 | KABC::Addressee o = addressList.first(); | 638 | KABC::Addressee o = addressList.first(); |
617 | if (!o.isEmpty() && addressList.size()<2) { | 639 | if (!o.isEmpty() && addressList.size()<2) { |
618 | mText += "<a href=\"uid:" + o.uid() + "\">"; | 640 | mText += "<a href=\"uid:" + o.uid() + "\">"; |
619 | mText += o.formattedName(); | 641 | mText += o.formattedName(); |
620 | mText += "</a>\n"; | 642 | mText += "</a>\n"; |
621 | } else { | 643 | } else { |
622 | mText += "<li>"; | 644 | mText += "<li>"; |
623 | mText.append(a->email()); | 645 | mText.append(a->email()); |
624 | mText += "\n"; | 646 | mText += "\n"; |
625 | } | 647 | } |
626 | } else { | 648 | } else { |
627 | mText += "<li><a href=\"uid:" + a->uid() + "\">"; | 649 | mText += "<li><a href=\"uid:" + a->uid() + "\">"; |
628 | if (!a->name().isEmpty()) mText += a->name(); | 650 | if (!a->name().isEmpty()) mText += a->name(); |
629 | else mText += a->email(); | 651 | else mText += a->email(); |
630 | mText += "</a>\n"; | 652 | mText += "</a>\n"; |
631 | } | 653 | } |
632 | #else //DESKTOP_VERSION | 654 | #else //DESKTOP_VERSION |
633 | mText += "<li><a href=\"uid:" + a->uid() + "\">"; | 655 | mText += "<li><a href=\"uid:" + a->uid() + "\">"; |
634 | if (!a->name().isEmpty()) mText += a->name(); | 656 | if (!a->name().isEmpty()) mText += a->name(); |
635 | else mText += a->email(); | 657 | else mText += a->email(); |
636 | mText += "</a>\n"; | 658 | mText += "</a>\n"; |
637 | #endif //DESKTOP_VERSION | 659 | #endif //DESKTOP_VERSION |
638 | #else | 660 | #else |
639 | //qDebug("nokabc "); | 661 | //qDebug("nokabc "); |
640 | mText += "<li><a href=\"uid:" + a->uid() + "\">"; | 662 | mText += "<li><a href=\"uid:" + a->uid() + "\">"; |
641 | if (!a->name().isEmpty()) mText += a->name(); | 663 | if (!a->name().isEmpty()) mText += a->name(); |
642 | else mText += a->email(); | 664 | else mText += a->email(); |
643 | mText += "</a>\n"; | 665 | mText += "</a>\n"; |
644 | #endif | 666 | #endif |
645 | 667 | ||
646 | 668 | ||
647 | if (!a->email().isEmpty()) { | 669 | if (!a->email().isEmpty()) { |
648 | if (iconPath) { | 670 | if (iconPath) { |
649 | mText += "<a href=\"mailto:" + a->name() +" <" + a->email() + ">:" + mMailSubject + "\">"; | 671 | mText += "<a href=\"mailto:" + a->name() +" <" + a->email() + ">:" + mMailSubject + "\">"; |
650 | if ( a->RSVP() ) { | 672 | if ( a->RSVP() ) { |
651 | ++a_count_nr; | 673 | ++a_count_nr; |
652 | mText += "<IMG src=\"" + iconPath + "\">"; | 674 | mText += "<IMG src=\"" + iconPath + "\">"; |
653 | } | 675 | } |
654 | else { | 676 | else { |
655 | ++a_count; | 677 | ++a_count; |
656 | mText += "<IMG src=\"" + NOiconPath + "\">"; | 678 | mText += "<IMG src=\"" + NOiconPath + "\">"; |
657 | } | 679 | } |
658 | mText += "</a>\n"; | 680 | mText += "</a>\n"; |
659 | } | 681 | } |
660 | } | 682 | } |
661 | if (a->status() != Attendee::NeedsAction ) | 683 | if (a->status() != Attendee::NeedsAction ) |
662 | mText +="[" + a->statusStr() + "] "; | 684 | mText +="[" + a->statusStr() + "] "; |
663 | if (a->role() == Attendee::Chair ) | 685 | if (a->role() == Attendee::Chair ) |
664 | mText +="(" + a->roleStr().left(1) + ".)"; | 686 | mText +="(" + a->roleStr().left(1) + ".)"; |
665 | } | 687 | } |
666 | mText.append("</li></ul>"); | 688 | mText.append("</li></ul>"); |
667 | if ( (a_count+a_count_nr) > 1 ) { | 689 | if ( (a_count+a_count_nr) > 1 ) { |
668 | mText += "<a href=\"mailto:ALL\">"; | 690 | mText += "<a href=\"mailto:ALL\">"; |
669 | mText += i18n( "Mail to all" ); | 691 | mText += i18n( "Mail to all" ); |
670 | mText += "</a> ( "; | 692 | mText += "</a> ( "; |
671 | mText += "<IMG src=\"" + iconPath + "\">"; | 693 | mText += "<IMG src=\"" + iconPath + "\">"; |
672 | mText += i18n( " and " ); | 694 | mText += i18n( " and " ); |
673 | mText += "<IMG src=\"" + NOiconPath + "\"> )"; | 695 | mText += "<IMG src=\"" + NOiconPath + "\"> )"; |
674 | mText += "<br>\n"; | 696 | mText += "<br>\n"; |
675 | 697 | ||
676 | 698 | ||
677 | } | 699 | } |
678 | if ( a_count_nr > 1 ) { | 700 | if ( a_count_nr > 1 ) { |
679 | mText += "<a href=\"mailto:RSVP\">"; | 701 | mText += "<a href=\"mailto:RSVP\">"; |
680 | mText += i18n( "Mail to selected" ); | 702 | mText += i18n( "Mail to selected" ); |
681 | mText += "</a> ( "; | 703 | mText += "</a> ( "; |
682 | mText += i18n( "<IMG src=\"%1\"> only )").arg ( iconPath ); | 704 | mText += i18n( "<IMG src=\"%1\"> only )").arg ( iconPath ); |
683 | mText += "<br>\n"; | 705 | mText += "<br>\n"; |
684 | } | 706 | } |
685 | } | 707 | } |
686 | 708 | ||
687 | } | 709 | } |
688 | void KOEventViewer::appendJournal(Journal *jour, int mode ) | 710 | void KOEventViewer::appendJournal(Journal *jour, int mode ) |
689 | { | 711 | { |
690 | bool shortDate = KOPrefs::instance()->mShortDateInViewer; | 712 | bool shortDate = KOPrefs::instance()->mShortDateInViewer; |
691 | QString text_d = i18n("Journal from: "); | 713 | QString text_d = i18n("Journal from: "); |
692 | if ( !jour->summary().isEmpty() ) | 714 | if ( !jour->summary().isEmpty() ) |
693 | text_d = jour->summary(); | 715 | text_d = jour->summary(); |
694 | if (mode == 0 ) { | 716 | if (mode == 0 ) { |
695 | addTag("h2", text_d ); | 717 | addTag("h2", text_d ); |
696 | } | 718 | } |
697 | else { | 719 | else { |
698 | if ( mode == 1 ) { | 720 | if ( mode == 1 ) { |
699 | addTag("h3",i18n( "Local: " ) + text_d ); | 721 | addTag("h3",i18n( "Local: " ) + text_d ); |
700 | } else { | 722 | } else { |
701 | addTag("h3",i18n( "Remote: " ) + text_d ); | 723 | addTag("h3",i18n( "Remote: " ) + text_d ); |
702 | } | 724 | } |
703 | } | 725 | } |
704 | topLevelWidget()->setCaption(i18n("Journal viewer")); | 726 | topLevelWidget()->setCaption(i18n("Journal viewer")); |
705 | mText.append(i18n("<h3> %1 </h3> ").arg(jour->dtStartDateStr(KOPrefs::instance()->mShortDateInViewer))); | 727 | mText.append(i18n("<h3> %1 </h3> ").arg(jour->dtStartDateStr(KOPrefs::instance()->mShortDateInViewer))); |
706 | formatReadOnly(jour); | 728 | formatReadOnly(jour); |
707 | addTag("p","<b>"+i18n( "Last modified: " ) + "</b>"+KGlobal::locale()->formatDateTime(jour->lastModified(),shortDate ) ); | 729 | addTag("p","<b>"+i18n( "Last modified: " ) + "</b>"+KGlobal::locale()->formatDateTime(jour->lastModified(),shortDate ) ); |
708 | 730 | ||
709 | if (!jour->description().isEmpty()) { | 731 | if (!jour->description().isEmpty()) { |
710 | addTag("p",deTag(jour->description())); | 732 | addTag("p",deTag(jour->description())); |
711 | } | 733 | } |
712 | setText(mText); | 734 | setText(mText); |
713 | } | 735 | } |
714 | 736 | ||
715 | void KOEventViewer::formatReadOnly(Incidence *event) | 737 | void KOEventViewer::formatReadOnly(Incidence *event) |
716 | { | 738 | { |
717 | int id = event->calID(); | 739 | int id = event->calID(); |
718 | if ( id > 1 ) { | 740 | if ( id > 1 ) { |
719 | addTag("p", "<em>("+i18n("Calendar:")+" " + KOPrefs::instance()->getCalendar( id )->mName + ")</em>"); | 741 | addTag("p", "<em>("+i18n("Calendar:")+" " + KOPrefs::instance()->getCalendar( id )->mName + ")</em>"); |
720 | } | 742 | } |
721 | if (event->isReadOnly()) { | 743 | if (event->isReadOnly()) { |
722 | addTag("p","<em>(" + i18n("read-only") + ")</em>"); | 744 | addTag("p","<em>(" + i18n("read-only") + ")</em>"); |
723 | } | 745 | } |
724 | } | 746 | } |
725 | void KOEventViewer::setSyncMode( bool b ) | 747 | void KOEventViewer::setSyncMode( bool b ) |
726 | { | 748 | { |
727 | mSyncMode = b; | 749 | mSyncMode = b; |
728 | } | 750 | } |
729 | 751 | ||
730 | void KOEventViewer::setTodo(Todo *event, bool clearV ) | 752 | void KOEventViewer::setTodo(Todo *event, bool clearV ) |
731 | { | 753 | { |
732 | if ( clearV ) | 754 | if ( clearV ) |
diff --git a/korganizer/koeventviewer.h b/korganizer/koeventviewer.h index 1eeb8d1..64eb4ff 100644 --- a/korganizer/koeventviewer.h +++ b/korganizer/koeventviewer.h | |||
@@ -1,131 +1,132 @@ | |||
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 | #ifndef KOEVENTVIEWER_H | 19 | #ifndef KOEVENTVIEWER_H |
20 | #define KOEVENTVIEWER_H | 20 | #define KOEVENTVIEWER_H |
21 | // | 21 | // |
22 | // Viewer widget for events. | 22 | // Viewer widget for events. |
23 | // | 23 | // |
24 | 24 | ||
25 | #include <qtextbrowser.h> | 25 | #include <qtextbrowser.h> |
26 | 26 | ||
27 | #include <libkcal/event.h> | 27 | #include <libkcal/event.h> |
28 | #include <libkcal/journal.h> | 28 | #include <libkcal/journal.h> |
29 | 29 | ||
30 | 30 | ||
31 | using namespace KCal; | 31 | using namespace KCal; |
32 | 32 | ||
33 | #ifdef DESKTOP_VERSION | 33 | #ifdef DESKTOP_VERSION |
34 | 34 | ||
35 | #include <qradiobutton.h> | 35 | #include <qradiobutton.h> |
36 | #include <qpushbutton.h> | 36 | #include <qpushbutton.h> |
37 | #include <qlayout.h> | 37 | #include <qlayout.h> |
38 | #include <qdialog.h> | 38 | #include <qdialog.h> |
39 | #include <qlabel.h> | 39 | #include <qlabel.h> |
40 | #include <qbuttongroup.h> | 40 | #include <qbuttongroup.h> |
41 | #include <kglobal.h> | 41 | #include <kglobal.h> |
42 | 42 | ||
43 | class KOPrintPrefs : public QDialog | 43 | class KOPrintPrefs : public QDialog |
44 | { | 44 | { |
45 | public: | 45 | public: |
46 | KOPrintPrefs( QWidget *parent=0, const char *name=0 ) : | 46 | KOPrintPrefs( QWidget *parent=0, const char *name=0 ) : |
47 | QDialog( parent, name, true ) | 47 | QDialog( parent, name, true ) |
48 | { | 48 | { |
49 | setCaption( i18n("KO/Pi Printout") ); | 49 | setCaption( i18n("KO/Pi Printout") ); |
50 | QVBoxLayout* lay = new QVBoxLayout( this ); | 50 | QVBoxLayout* lay = new QVBoxLayout( this ); |
51 | lay->setSpacing( 9 ); | 51 | lay->setSpacing( 9 ); |
52 | lay->setMargin( 9 ); | 52 | lay->setMargin( 9 ); |
53 | QLabel * lab = new QLabel( i18n("This prints the view as you see it.\n(With the complete content, of course.)\nYou may change the print layout by resizing the view.\nPrint unscaled may print several pages\ndepending on the amount of data.\nPrint scaled down will print all on one page.\nPrint scaled up/down will print all on one page,\nbut will scale up the text to page boundaries,\nif the text is smaller than the page.\nYou can select page geometry setup in the next dialog.\n"), this ); | 53 | QLabel * lab = new QLabel( i18n("This prints the view as you see it.\n(With the complete content, of course.)\nYou may change the print layout by resizing the view.\nPrint unscaled may print several pages\ndepending on the amount of data.\nPrint scaled down will print all on one page.\nPrint scaled up/down will print all on one page,\nbut will scale up the text to page boundaries,\nif the text is smaller than the page.\nYou can select page geometry setup in the next dialog.\n"), this ); |
54 | lay->addWidget( lab ); | 54 | lay->addWidget( lab ); |
55 | lab->setAlignment( AlignCenter ); | 55 | lab->setAlignment( AlignCenter ); |
56 | QButtonGroup* format = new QButtonGroup( 1, Horizontal, i18n("Printout Mode"), this ); | 56 | QButtonGroup* format = new QButtonGroup( 1, Horizontal, i18n("Printout Mode"), this ); |
57 | lay->addWidget( format ); | 57 | lay->addWidget( format ); |
58 | format->setExclusive ( true ) ; | 58 | format->setExclusive ( true ) ; |
59 | pmNo = new QRadioButton(i18n("Print unscaled"), format ); | 59 | pmNo = new QRadioButton(i18n("Print unscaled"), format ); |
60 | pmScaledDown = new QRadioButton(i18n("Print scaled down to fit one page"), format ); | 60 | pmScaledDown = new QRadioButton(i18n("Print scaled down to fit one page"), format ); |
61 | new QRadioButton(i18n("Print scaled up/down to fit one page"), format ); | 61 | new QRadioButton(i18n("Print scaled up/down to fit one page"), format ); |
62 | pmScaledDown->setChecked( true ); | 62 | pmScaledDown->setChecked( true ); |
63 | QPushButton * ok = new QPushButton( i18n("OK"), this ); | 63 | QPushButton * ok = new QPushButton( i18n("OK"), this ); |
64 | lay->addWidget( ok ); | 64 | lay->addWidget( ok ); |
65 | QPushButton * cancel = new QPushButton( i18n("Cancel"), this ); | 65 | QPushButton * cancel = new QPushButton( i18n("Cancel"), this ); |
66 | lay->addWidget( cancel ); | 66 | lay->addWidget( cancel ); |
67 | connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) ); | 67 | connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) ); |
68 | connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) ); | 68 | connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) ); |
69 | } | 69 | } |
70 | 70 | ||
71 | int printMode() | 71 | int printMode() |
72 | { | 72 | { |
73 | if ( pmNo->isChecked() ) | 73 | if ( pmNo->isChecked() ) |
74 | return 0; | 74 | return 0; |
75 | if ( pmScaledDown->isChecked() ) | 75 | if ( pmScaledDown->isChecked() ) |
76 | return 1; | 76 | return 1; |
77 | return 2; | 77 | return 2; |
78 | } | 78 | } |
79 | private: | 79 | private: |
80 | QRadioButton* pmNo; | 80 | QRadioButton* pmNo; |
81 | QRadioButton* pmScaledDown; | 81 | QRadioButton* pmScaledDown; |
82 | }; | 82 | }; |
83 | 83 | ||
84 | #endif | 84 | #endif |
85 | 85 | ||
86 | class KOEventViewer : public QTextBrowser { | 86 | class KOEventViewer : public QTextBrowser { |
87 | Q_OBJECT | 87 | Q_OBJECT |
88 | public: | 88 | public: |
89 | KOEventViewer(QWidget *parent=0,const char *name=0); | 89 | KOEventViewer(QWidget *parent=0,const char *name=0); |
90 | virtual ~KOEventViewer(); | 90 | virtual ~KOEventViewer(); |
91 | 91 | ||
92 | void setSource(const QString &); | 92 | void setSource(const QString &); |
93 | void setEvent(Event *event); | 93 | void setEvent(Event *event); |
94 | void addEvent(Event *event); | 94 | void addEvent(Event *event); |
95 | void setTodo(Todo *event, bool clearV = true ); | 95 | void setTodo(Todo *event, bool clearV = true ); |
96 | void setJournal(Journal *jour, bool clearV = true ); | 96 | void setJournal(Journal *jour, bool clearV = true ); |
97 | 97 | ||
98 | void appendEvent(Event *event, int mode = 0 ); | 98 | void appendEvent(Event *event, int mode = 0 ); |
99 | void appendTodo(Todo *event, int mode = 0 ); | 99 | void appendTodo(Todo *event, int mode = 0 ); |
100 | void appendJournal(Journal *jour, int mode = 0 ); | 100 | void appendJournal(Journal *jour, int mode = 0 ); |
101 | 101 | ||
102 | void clearEvents(bool now=false); | 102 | void clearEvents(bool now=false); |
103 | 103 | ||
104 | void addText(QString text); | 104 | void addText(QString text); |
105 | void setSyncMode( bool ); | 105 | void setSyncMode( bool ); |
106 | void setColorMode( int ); | 106 | void setColorMode( int ); |
107 | void mailToAttendees( bool all ); | 107 | void mailToAttendees( bool all ); |
108 | void printMe(); | 108 | void printMe(); |
109 | 109 | ||
110 | protected: | 110 | protected: |
111 | int mColorMode; | 111 | int mColorMode; |
112 | void addTag(const QString & tag,const QString & text); | 112 | void addTag(const QString & tag,const QString & text); |
113 | 113 | ||
114 | void formatCategories(Incidence *event); | 114 | void formatCategories(Incidence *event); |
115 | void formatAttendees(Incidence *event); | 115 | void formatAttendees(Incidence *event); |
116 | void formatReadOnly(Incidence *event); | 116 | void formatReadOnly(Incidence *event); |
117 | void keyPressEvent ( QKeyEvent * e ); | 117 | void keyPressEvent ( QKeyEvent * e ); |
118 | 118 | ||
119 | private: | 119 | private: |
120 | QTextBrowser *mEventTextView; | 120 | QTextBrowser *mEventTextView; |
121 | bool mSyncMode; | 121 | bool mSyncMode; |
122 | QString deTag(QString text); | 122 | QString deTag(QString text); |
123 | 123 | ||
124 | QString mText; | 124 | QString mText; |
125 | QString mMailSubject; | 125 | QString mMailSubject; |
126 | Incidence* mCurrentIncidence; | 126 | Incidence* mCurrentIncidence; |
127 | signals: | 127 | signals: |
128 | void launchaddressbook(QString uid); | 128 | void launchaddressbook(QString uid); |
129 | void showIncidence(QString uid); | ||
129 | }; | 130 | }; |
130 | 131 | ||
131 | #endif | 132 | #endif |
diff --git a/korganizer/koeventviewerdialog.cpp b/korganizer/koeventviewerdialog.cpp index 02f13c7..0763825 100644 --- a/korganizer/koeventviewerdialog.cpp +++ b/korganizer/koeventviewerdialog.cpp | |||
@@ -1,245 +1,246 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KOrganizer. | 2 | This file is part of KOrganizer. |
3 | Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org> | 3 | Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org> |
4 | 4 | ||
5 | This program is free software; you can redistribute it and/or modify | 5 | This program is free software; you can redistribute it and/or modify |
6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
7 | the Free Software Foundation; either version 2 of the License, or | 7 | the Free Software Foundation; either version 2 of the License, or |
8 | (at your option) any later version. | 8 | (at your option) any later version. |
9 | 9 | ||
10 | This program is distributed in the hope that it will be useful, | 10 | This program is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | GNU General Public License for more details. | 13 | GNU General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU General Public License | 15 | You should have received a copy of the GNU General Public License |
16 | along with this program; if not, write to the Free Software | 16 | along with this program; if not, write to the Free Software |
17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
18 | */ | 18 | */ |
19 | 19 | ||
20 | #include <klocale.h> | 20 | #include <klocale.h> |
21 | 21 | ||
22 | #include <libkcal/event.h> | 22 | #include <libkcal/event.h> |
23 | #include <qtimer.h> | 23 | #include <qtimer.h> |
24 | #include <qpushbutton.h> | 24 | #include <qpushbutton.h> |
25 | 25 | ||
26 | #include "koeventviewer.h" | 26 | #include "koeventviewer.h" |
27 | #include <kmessagebox.h> | 27 | #include <kmessagebox.h> |
28 | #include "koprefs.h" | 28 | #include "koprefs.h" |
29 | #include <libkcal/todo.h> | 29 | #include <libkcal/todo.h> |
30 | #include "qapp.h" | 30 | #include "qapp.h" |
31 | 31 | ||
32 | #include "koeventviewerdialog.h" | 32 | #include "koeventviewerdialog.h" |
33 | extern int globalFlagBlockAgenda; | 33 | extern int globalFlagBlockAgenda; |
34 | 34 | ||
35 | KOEventViewerDialog::KOEventViewerDialog(QWidget *parent,const char *name) | 35 | KOEventViewerDialog::KOEventViewerDialog(QWidget *parent,const char *name) |
36 | : KDialogBase(parent,name, | 36 | : KDialogBase(parent,name, |
37 | #ifndef DESKTOP_VERSION | 37 | #ifndef DESKTOP_VERSION |
38 | true , | 38 | true , |
39 | #else | 39 | #else |
40 | false, | 40 | false, |
41 | #endif | 41 | #endif |
42 | i18n("Event Viewer"),Ok|User1|Close,Close, false, i18n("Agenda")) | 42 | i18n("Event Viewer"),Ok|User1|Close,Close, false, i18n("Agenda")) |
43 | { | 43 | { |
44 | sendSignalViewerClosed = true; | 44 | sendSignalViewerClosed = true; |
45 | mEventViewer = new KOEventViewer(this); | 45 | mEventViewer = new KOEventViewer(this); |
46 | mEventViewer->setFont( KOPrefs::instance()->mEventViewFont ); | 46 | mEventViewer->setFont( KOPrefs::instance()->mEventViewFont ); |
47 | setMainWidget(mEventViewer); | 47 | setMainWidget(mEventViewer); |
48 | setButtonText(Ok, i18n("Edit") ); | 48 | setButtonText(Ok, i18n("Edit") ); |
49 | 49 | ||
50 | QObject::connect(findButton( Ok ),SIGNAL(clicked()), | 50 | QObject::connect(findButton( Ok ),SIGNAL(clicked()), |
51 | SLOT(editIncidence())); | 51 | SLOT(editIncidence())); |
52 | QObject::connect(this,SIGNAL(user1Clicked()), | 52 | QObject::connect(this,SIGNAL(user1Clicked()), |
53 | SLOT(showIncidence())); | 53 | SLOT(showIncidence())); |
54 | connect( mEventViewer, SIGNAL( showIncidence( QString ) ),SIGNAL( showIncidence( QString ) )); | ||
54 | mIncidence = 0; | 55 | mIncidence = 0; |
55 | // TODO: Set a sensible size (based on the content?). | 56 | // TODO: Set a sensible size (based on the content?). |
56 | //showMaximized(); | 57 | //showMaximized(); |
57 | //qDebug("++++++++++++KOEventViewerDialog() "); | 58 | //qDebug("++++++++++++KOEventViewerDialog() "); |
58 | // if ( KOPrefs::instance()->mCompactDialogs ) { | 59 | // if ( KOPrefs::instance()->mCompactDialogs ) { |
59 | // setFixedSize( 240,284 ); | 60 | // setFixedSize( 240,284 ); |
60 | // move( 0, 15 ); | 61 | // move( 0, 15 ); |
61 | // } else { | 62 | // } else { |
62 | // setMinimumSize(300,200); | 63 | // setMinimumSize(300,200); |
63 | // resize(320,300); | 64 | // resize(320,300); |
64 | // } | 65 | // } |
65 | mSyncMode = false; | 66 | mSyncMode = false; |
66 | mSyncResult = 0; | 67 | mSyncResult = 0; |
67 | 68 | ||
68 | } | 69 | } |
69 | 70 | ||
70 | KOEventViewerDialog::~KOEventViewerDialog() | 71 | KOEventViewerDialog::~KOEventViewerDialog() |
71 | { | 72 | { |
72 | //qDebug("-------~KOEventViewerDialog() "); | 73 | //qDebug("-------~KOEventViewerDialog() "); |
73 | } | 74 | } |
74 | void KOEventViewerDialog::showMe() | 75 | void KOEventViewerDialog::showMe() |
75 | { | 76 | { |
76 | 77 | ||
77 | #ifdef DESKTOP_VERSION | 78 | #ifdef DESKTOP_VERSION |
78 | int x,y,w,h; | 79 | int x,y,w,h; |
79 | x = geometry().x(); | 80 | x = geometry().x(); |
80 | y = geometry().y(); | 81 | y = geometry().y(); |
81 | w = width(); | 82 | w = width(); |
82 | h = height(); | 83 | h = height(); |
83 | show(); | 84 | show(); |
84 | setGeometry(x,y,w,h); | 85 | setGeometry(x,y,w,h); |
85 | raise(); | 86 | raise(); |
86 | #else | 87 | #else |
87 | showMaximized(); | 88 | showMaximized(); |
88 | #endif | 89 | #endif |
89 | QTimer::singleShot( 1, this, SLOT ( setMyFocus() ) ); | 90 | QTimer::singleShot( 1, this, SLOT ( setMyFocus() ) ); |
90 | 91 | ||
91 | } | 92 | } |
92 | void KOEventViewerDialog::setMyFocus() | 93 | void KOEventViewerDialog::setMyFocus() |
93 | { | 94 | { |
94 | 95 | ||
95 | setActiveWindow(); | 96 | setActiveWindow(); |
96 | mEventViewer->setFocus(); | 97 | mEventViewer->setFocus(); |
97 | 98 | ||
98 | } | 99 | } |
99 | void KOEventViewerDialog::print() | 100 | void KOEventViewerDialog::print() |
100 | { | 101 | { |
101 | mEventViewer->printMe(); | 102 | mEventViewer->printMe(); |
102 | 103 | ||
103 | } | 104 | } |
104 | void KOEventViewerDialog::setSyncMode( bool b ) | 105 | void KOEventViewerDialog::setSyncMode( bool b ) |
105 | { | 106 | { |
106 | mSyncMode = b; | 107 | mSyncMode = b; |
107 | //qDebug("KOEventViewerDialog::setSyncMode %d ",mSyncMode ); | 108 | //qDebug("KOEventViewerDialog::setSyncMode %d ",mSyncMode ); |
108 | if ( mSyncMode ) { | 109 | if ( mSyncMode ) { |
109 | findButton( Close )->setText( i18n("Cancel Sync")); | 110 | findButton( Close )->setText( i18n("Cancel Sync")); |
110 | findButton( Ok )->setText( i18n("Remote")); | 111 | findButton( Ok )->setText( i18n("Remote")); |
111 | findButton( User1 )->setText( i18n("Local")); | 112 | findButton( User1 )->setText( i18n("Local")); |
112 | } else { | 113 | } else { |
113 | findButton( Close )->setText( i18n("Close")); | 114 | findButton( Close )->setText( i18n("Close")); |
114 | findButton( Ok )->setText( i18n("Edit")); | 115 | findButton( Ok )->setText( i18n("Edit")); |
115 | findButton( User1 )->setText( i18n("Agenda")); | 116 | findButton( User1 )->setText( i18n("Agenda")); |
116 | } | 117 | } |
117 | mEventViewer->setSyncMode( b ); | 118 | mEventViewer->setSyncMode( b ); |
118 | } | 119 | } |
119 | void KOEventViewerDialog::setColorMode( int m ) | 120 | void KOEventViewerDialog::setColorMode( int m ) |
120 | { | 121 | { |
121 | mEventViewer->setColorMode( m ); | 122 | mEventViewer->setColorMode( m ); |
122 | } | 123 | } |
123 | int KOEventViewerDialog::executeS( bool local ) | 124 | int KOEventViewerDialog::executeS( bool local ) |
124 | { | 125 | { |
125 | mSyncResult = 3; | 126 | mSyncResult = 3; |
126 | if ( local ) | 127 | if ( local ) |
127 | findButton( User1 )->setFocus(); | 128 | findButton( User1 )->setFocus(); |
128 | else | 129 | else |
129 | findButton( Ok )->setFocus(); | 130 | findButton( Ok )->setFocus(); |
130 | exec(); | 131 | exec(); |
131 | return mSyncResult; | 132 | return mSyncResult; |
132 | } | 133 | } |
133 | 134 | ||
134 | void KOEventViewerDialog::updateConfig() | 135 | void KOEventViewerDialog::updateConfig() |
135 | { | 136 | { |
136 | mEventViewer->setFont( KOPrefs::instance()->mEventViewFont ); | 137 | mEventViewer->setFont( KOPrefs::instance()->mEventViewFont ); |
137 | 138 | ||
138 | } | 139 | } |
139 | void KOEventViewerDialog::setEvent(Event *event) | 140 | void KOEventViewerDialog::setEvent(Event *event) |
140 | { | 141 | { |
141 | mEventViewer->setEvent(event); | 142 | mEventViewer->setEvent(event); |
142 | mIncidence = event; | 143 | mIncidence = event; |
143 | mEventViewer->setFocus(); | 144 | mEventViewer->setFocus(); |
144 | //findButton( Close )->setFocus(); | 145 | //findButton( Close )->setFocus(); |
145 | if ( !mSyncMode ) { | 146 | if ( !mSyncMode ) { |
146 | findButton( User1 )->setText( i18n("Agenda")); | 147 | findButton( User1 )->setText( i18n("Agenda")); |
147 | } | 148 | } |
148 | } | 149 | } |
149 | void KOEventViewerDialog::setIncidence(Incidence *in ) | 150 | void KOEventViewerDialog::setIncidence(Incidence *in ) |
150 | { | 151 | { |
151 | if ( in->typeID() == eventID ) | 152 | if ( in->typeID() == eventID ) |
152 | setEvent( (Event*) in ); | 153 | setEvent( (Event*) in ); |
153 | else if ( in->typeID() == todoID ) | 154 | else if ( in->typeID() == todoID ) |
154 | setTodo( (Todo*) in ); | 155 | setTodo( (Todo*) in ); |
155 | else if ( in->typeID() == journalID ) | 156 | else if ( in->typeID() == journalID ) |
156 | setJournal( (Journal*) in ); | 157 | setJournal( (Journal*) in ); |
157 | } | 158 | } |
158 | void KOEventViewerDialog::addIncidence(Incidence *in) | 159 | void KOEventViewerDialog::addIncidence(Incidence *in) |
159 | { | 160 | { |
160 | if ( in->typeID() == eventID ) | 161 | if ( in->typeID() == eventID ) |
161 | addEvent( (Event*) in ); | 162 | addEvent( (Event*) in ); |
162 | else if ( in->typeID() == todoID ) | 163 | else if ( in->typeID() == todoID ) |
163 | mEventViewer->setTodo( (Todo*) in, false ); | 164 | mEventViewer->setTodo( (Todo*) in, false ); |
164 | else if ( in->typeID() == journalID ) | 165 | else if ( in->typeID() == journalID ) |
165 | mEventViewer->setJournal( (Journal*) in, false ); | 166 | mEventViewer->setJournal( (Journal*) in, false ); |
166 | if ( mSyncMode ) { | 167 | if ( mSyncMode ) { |
167 | findButton( User1 )->setFocus(); | 168 | findButton( User1 )->setFocus(); |
168 | setCaption(i18n("Conflict! Please choose entry")); | 169 | setCaption(i18n("Conflict! Please choose entry")); |
169 | } | 170 | } |
170 | } | 171 | } |
171 | 172 | ||
172 | void KOEventViewerDialog::addEvent(Event *event) | 173 | void KOEventViewerDialog::addEvent(Event *event) |
173 | { | 174 | { |
174 | mEventViewer->addEvent(event); | 175 | mEventViewer->addEvent(event); |
175 | mIncidence = event; | 176 | mIncidence = event; |
176 | mEventViewer->setFocus(); | 177 | mEventViewer->setFocus(); |
177 | //findButton( Close )->setFocus(); | 178 | //findButton( Close )->setFocus(); |
178 | if ( !mSyncMode ) { | 179 | if ( !mSyncMode ) { |
179 | findButton( User1 )->setText( i18n("Agenda")); | 180 | findButton( User1 )->setText( i18n("Agenda")); |
180 | } | 181 | } |
181 | } | 182 | } |
182 | 183 | ||
183 | void KOEventViewerDialog::setTodo(Todo *event) | 184 | void KOEventViewerDialog::setTodo(Todo *event) |
184 | { | 185 | { |
185 | mEventViewer->setTodo(event); | 186 | mEventViewer->setTodo(event); |
186 | mIncidence = (Incidence*)event; | 187 | mIncidence = (Incidence*)event; |
187 | mEventViewer->setFocus(); | 188 | mEventViewer->setFocus(); |
188 | //findButton( Close )->setFocus(); | 189 | //findButton( Close )->setFocus(); |
189 | if ( !mSyncMode ) { | 190 | if ( !mSyncMode ) { |
190 | findButton( User1 )->setText( i18n("Set complete")); | 191 | findButton( User1 )->setText( i18n("Set complete")); |
191 | } | 192 | } |
192 | } | 193 | } |
193 | void KOEventViewerDialog::setJournal(Journal *j) | 194 | void KOEventViewerDialog::setJournal(Journal *j) |
194 | { | 195 | { |
195 | mEventViewer->setJournal(j); | 196 | mEventViewer->setJournal(j); |
196 | mIncidence = (Incidence*)j; | 197 | mIncidence = (Incidence*)j; |
197 | mEventViewer->setFocus(); | 198 | mEventViewer->setFocus(); |
198 | //findButton( Close )->setFocus(); | 199 | //findButton( Close )->setFocus(); |
199 | if ( !mSyncMode ) { | 200 | if ( !mSyncMode ) { |
200 | findButton( User1 )->setText( i18n("Agenda")); | 201 | findButton( User1 )->setText( i18n("Agenda")); |
201 | } | 202 | } |
202 | } | 203 | } |
203 | 204 | ||
204 | void KOEventViewerDialog::addText(QString text) | 205 | void KOEventViewerDialog::addText(QString text) |
205 | { | 206 | { |
206 | mEventViewer->addText(text); | 207 | mEventViewer->addText(text); |
207 | mEventViewer->setFocus(); | 208 | mEventViewer->setFocus(); |
208 | //findButton( Close )->setFocus(); | 209 | //findButton( Close )->setFocus(); |
209 | } | 210 | } |
210 | void KOEventViewerDialog::editIncidence() | 211 | void KOEventViewerDialog::editIncidence() |
211 | { | 212 | { |
212 | sendSignalViewerClosed = false; | 213 | sendSignalViewerClosed = false; |
213 | if ( mSyncMode ) { | 214 | if ( mSyncMode ) { |
214 | mSyncResult = 2; | 215 | mSyncResult = 2; |
215 | accept(); | 216 | accept(); |
216 | return; | 217 | return; |
217 | } | 218 | } |
218 | if ( mIncidence ){ | 219 | if ( mIncidence ){ |
219 | close(); | 220 | close(); |
220 | emit editIncidence( mIncidence ); | 221 | emit editIncidence( mIncidence ); |
221 | } | 222 | } |
222 | } | 223 | } |
223 | void KOEventViewerDialog::showIncidence() | 224 | void KOEventViewerDialog::showIncidence() |
224 | { | 225 | { |
225 | sendSignalViewerClosed = false; | 226 | sendSignalViewerClosed = false; |
226 | if ( mSyncMode ) { | 227 | if ( mSyncMode ) { |
227 | mSyncResult = 1; | 228 | mSyncResult = 1; |
228 | accept(); | 229 | accept(); |
229 | return; | 230 | return; |
230 | } | 231 | } |
231 | 232 | ||
232 | if ( mIncidence ){ | 233 | if ( mIncidence ){ |
233 | QDate date; | 234 | QDate date; |
234 | if ( mIncidence->type() == "Todo" ) { | 235 | if ( mIncidence->type() == "Todo" ) { |
235 | /* | 236 | /* |
236 | if ( ((Todo*)mIncidence)->hasDueDate() ) | 237 | if ( ((Todo*)mIncidence)->hasDueDate() ) |
237 | date = ((Todo*)mIncidence)->dtDue().date(); | 238 | date = ((Todo*)mIncidence)->dtDue().date(); |
238 | else { | 239 | else { |
239 | globalFlagBlockAgenda = 2; | 240 | globalFlagBlockAgenda = 2; |
240 | emit showAgendaView( false ); | 241 | emit showAgendaView( false ); |
241 | return; | 242 | return; |
242 | } | 243 | } |
243 | */ | 244 | */ |
244 | ((Todo*)mIncidence)->setCompleted( true ); | 245 | ((Todo*)mIncidence)->setCompleted( true ); |
245 | ((Todo*)mIncidence)->setCompleted(QDateTime::currentDateTime() ); | 246 | ((Todo*)mIncidence)->setCompleted(QDateTime::currentDateTime() ); |
diff --git a/korganizer/koeventviewerdialog.h b/korganizer/koeventviewerdialog.h index 29fee49..71696f4 100644 --- a/korganizer/koeventviewerdialog.h +++ b/korganizer/koeventviewerdialog.h | |||
@@ -1,77 +1,78 @@ | |||
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 | #ifndef KOEVENTVIEWERDIALOG_H | 19 | #ifndef KOEVENTVIEWERDIALOG_H |
20 | #define KOEVENTVIEWERDIALOG_H | 20 | #define KOEVENTVIEWERDIALOG_H |
21 | // | 21 | // |
22 | // Viewer dialog for events. | 22 | // Viewer dialog for events. |
23 | // | 23 | // |
24 | 24 | ||
25 | #include <qtextview.h> | 25 | #include <qtextview.h> |
26 | 26 | ||
27 | #include <kdialogbase.h> | 27 | #include <kdialogbase.h> |
28 | 28 | ||
29 | #include <libkcal/event.h> | 29 | #include <libkcal/event.h> |
30 | 30 | ||
31 | using namespace KCal; | 31 | using namespace KCal; |
32 | 32 | ||
33 | class KOEventViewer; | 33 | class KOEventViewer; |
34 | 34 | ||
35 | class KOEventViewerDialog : public KDialogBase { | 35 | class KOEventViewerDialog : public KDialogBase { |
36 | Q_OBJECT | 36 | Q_OBJECT |
37 | public: | 37 | public: |
38 | KOEventViewerDialog(QWidget *parent=0,const char *name=0); | 38 | KOEventViewerDialog(QWidget *parent=0,const char *name=0); |
39 | virtual ~KOEventViewerDialog(); | 39 | virtual ~KOEventViewerDialog(); |
40 | 40 | ||
41 | void setEvent(Event *event); | 41 | void setEvent(Event *event); |
42 | void addEvent(Event *event); | 42 | void addEvent(Event *event); |
43 | void setTodo(Todo *event); | 43 | void setTodo(Todo *event); |
44 | void setJournal(Journal *journal); | 44 | void setJournal(Journal *journal); |
45 | void setIncidence(Incidence *inc); | 45 | void setIncidence(Incidence *inc); |
46 | void addIncidence(Incidence *inc); | 46 | void addIncidence(Incidence *inc); |
47 | void addText(QString text); | 47 | void addText(QString text); |
48 | void showMe(); | 48 | void showMe(); |
49 | void setSyncMode( bool ); | 49 | void setSyncMode( bool ); |
50 | void setColorMode( int m ); | 50 | void setColorMode( int m ); |
51 | int executeS( bool ); | 51 | int executeS( bool ); |
52 | public slots: | 52 | public slots: |
53 | void updateConfig(); | 53 | void updateConfig(); |
54 | void print(); | 54 | void print(); |
55 | void setMyFocus(); | 55 | void setMyFocus(); |
56 | signals: | 56 | signals: |
57 | void showIncidence( QString ); | ||
57 | void editIncidence( Incidence* ); | 58 | void editIncidence( Incidence* ); |
58 | void jumpToTime( const QDate &); | 59 | void jumpToTime( const QDate &); |
59 | void showAgendaView( bool ); | 60 | void showAgendaView( bool ); |
60 | void todoCompleted(Todo*); | 61 | void todoCompleted(Todo*); |
61 | void signalViewerClosed(); | 62 | void signalViewerClosed(); |
62 | private slots: | 63 | private slots: |
63 | void slotViewerClosed(); | 64 | void slotViewerClosed(); |
64 | void editIncidence(); | 65 | void editIncidence(); |
65 | void showIncidence(); | 66 | void showIncidence(); |
66 | protected: | 67 | protected: |
67 | void hideEvent ( QHideEvent * e ); | 68 | void hideEvent ( QHideEvent * e ); |
68 | private: | 69 | private: |
69 | bool sendSignalViewerClosed; | 70 | bool sendSignalViewerClosed; |
70 | bool mSyncMode; | 71 | bool mSyncMode; |
71 | int mSyncResult; | 72 | int mSyncResult; |
72 | KOEventViewer *mEventViewer; | 73 | KOEventViewer *mEventViewer; |
73 | Incidence* mIncidence; | 74 | Incidence* mIncidence; |
74 | void keyPressEvent ( QKeyEvent * e ); | 75 | void keyPressEvent ( QKeyEvent * e ); |
75 | }; | 76 | }; |
76 | 77 | ||
77 | #endif | 78 | #endif |
diff --git a/korganizer/kotodoview.cpp b/korganizer/kotodoview.cpp index e2966f8..4f42c83 100644 --- a/korganizer/kotodoview.cpp +++ b/korganizer/kotodoview.cpp | |||
@@ -378,402 +378,416 @@ void KOTodoListView::contentsMouseMoveEvent(QMouseEvent* e) | |||
378 | if ( !internalDrop ) { | 378 | if ( !internalDrop ) { |
379 | //emit deleteTodo( ((KOTodoViewItem *)item)->todo() ); | 379 | //emit deleteTodo( ((KOTodoViewItem *)item)->todo() ); |
380 | qDebug("Dnd: External move: Delete drag source "); | 380 | qDebug("Dnd: External move: Delete drag source "); |
381 | } else | 381 | } else |
382 | qDebug("Dnd: Internal move "); | 382 | qDebug("Dnd: Internal move "); |
383 | 383 | ||
384 | } else { | 384 | } else { |
385 | if ( !internalDrop ) { | 385 | if ( !internalDrop ) { |
386 | qDebug("Dnd: External Copy"); | 386 | qDebug("Dnd: External Copy"); |
387 | } else | 387 | } else |
388 | qDebug("DnD: Internal copy: Copy pending"); | 388 | qDebug("DnD: Internal copy: Copy pending"); |
389 | } | 389 | } |
390 | } | 390 | } |
391 | } | 391 | } |
392 | #endif | 392 | #endif |
393 | } | 393 | } |
394 | void KOTodoListView::keyReleaseEvent ( QKeyEvent *e ) | 394 | void KOTodoListView::keyReleaseEvent ( QKeyEvent *e ) |
395 | { | 395 | { |
396 | if ( !e->isAutoRepeat() ) { | 396 | if ( !e->isAutoRepeat() ) { |
397 | mFlagKeyPressed = false; | 397 | mFlagKeyPressed = false; |
398 | } | 398 | } |
399 | } | 399 | } |
400 | 400 | ||
401 | 401 | ||
402 | void KOTodoListView::keyPressEvent ( QKeyEvent * e ) | 402 | void KOTodoListView::keyPressEvent ( QKeyEvent * e ) |
403 | { | 403 | { |
404 | qApp->processEvents(); | 404 | qApp->processEvents(); |
405 | if ( e->isAutoRepeat() && !mFlagKeyPressed ) { | 405 | if ( e->isAutoRepeat() && !mFlagKeyPressed ) { |
406 | e->ignore(); | 406 | e->ignore(); |
407 | // qDebug(" ignore %d",e->isAutoRepeat() ); | 407 | // qDebug(" ignore %d",e->isAutoRepeat() ); |
408 | return; | 408 | return; |
409 | } | 409 | } |
410 | if (! e->isAutoRepeat() ) | 410 | if (! e->isAutoRepeat() ) |
411 | mFlagKeyPressed = true; | 411 | mFlagKeyPressed = true; |
412 | QListViewItem* cn; | 412 | QListViewItem* cn; |
413 | if ( e->key() == Qt::Key_Return || e->key() == Qt::Key_Enter ) { | 413 | if ( e->key() == Qt::Key_Return || e->key() == Qt::Key_Enter ) { |
414 | cn = currentItem(); | 414 | cn = currentItem(); |
415 | if ( cn ) { | 415 | if ( cn ) { |
416 | KOTodoViewItem* ci = (KOTodoViewItem*)( cn ); | 416 | KOTodoViewItem* ci = (KOTodoViewItem*)( cn ); |
417 | if ( ci ){ | 417 | if ( ci ){ |
418 | if ( e->state() == ShiftButton ) | 418 | if ( e->state() == ShiftButton ) |
419 | ci->setOn( false ); | 419 | ci->setOn( false ); |
420 | else | 420 | else |
421 | ci->setOn( true ); | 421 | ci->setOn( true ); |
422 | cn = cn->itemBelow(); | 422 | cn = cn->itemBelow(); |
423 | if ( cn ) { | 423 | if ( cn ) { |
424 | setCurrentItem ( cn ); | 424 | setCurrentItem ( cn ); |
425 | ensureItemVisible ( cn ); | 425 | ensureItemVisible ( cn ); |
426 | } | 426 | } |
427 | 427 | ||
428 | } | 428 | } |
429 | } | 429 | } |
430 | 430 | ||
431 | return; | 431 | return; |
432 | } | 432 | } |
433 | 433 | ||
434 | if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton || mName != "todolistsmall" ) { | 434 | if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton || mName != "todolistsmall" ) { |
435 | switch ( e->key() ) { | 435 | switch ( e->key() ) { |
436 | case Qt::Key_Down: | 436 | case Qt::Key_Down: |
437 | case Qt::Key_Up: | 437 | case Qt::Key_Up: |
438 | QListView::keyPressEvent ( e ); | 438 | QListView::keyPressEvent ( e ); |
439 | break; | 439 | break; |
440 | case Qt::Key_Left: | 440 | case Qt::Key_Left: |
441 | case Qt::Key_Right: | 441 | case Qt::Key_Right: |
442 | QListView::keyPressEvent ( e ); | 442 | QListView::keyPressEvent ( e ); |
443 | e->accept(); | 443 | e->accept(); |
444 | return; | 444 | return; |
445 | break; | 445 | break; |
446 | default: | 446 | default: |
447 | e->ignore(); | 447 | e->ignore(); |
448 | break; | 448 | break; |
449 | } | 449 | } |
450 | return; | 450 | return; |
451 | } | 451 | } |
452 | e->ignore(); | 452 | e->ignore(); |
453 | } | 453 | } |
454 | void KOTodoListView::contentsMouseReleaseEvent(QMouseEvent *e) | 454 | void KOTodoListView::contentsMouseReleaseEvent(QMouseEvent *e) |
455 | { | 455 | { |
456 | QListView::contentsMouseReleaseEvent(e); | 456 | QListView::contentsMouseReleaseEvent(e); |
457 | mMousePressed = false; | 457 | mMousePressed = false; |
458 | } | 458 | } |
459 | 459 | ||
460 | void KOTodoListView::contentsMouseDoubleClickEvent(QMouseEvent *e) | 460 | void KOTodoListView::contentsMouseDoubleClickEvent(QMouseEvent *e) |
461 | { | 461 | { |
462 | if (!e) return; | 462 | if (!e) return; |
463 | 463 | ||
464 | QPoint vp = contentsToViewport(e->pos()); | 464 | QPoint vp = contentsToViewport(e->pos()); |
465 | 465 | ||
466 | QListViewItem *item = itemAt(vp); | 466 | QListViewItem *item = itemAt(vp); |
467 | 467 | ||
468 | emit double_Clicked(item); | 468 | emit double_Clicked(item); |
469 | if (!item) return; | 469 | if (!item) return; |
470 | 470 | ||
471 | emit doubleClicked(item,vp,0); | 471 | emit doubleClicked(item,vp,0); |
472 | } | 472 | } |
473 | 473 | ||
474 | ///////////////////////////////////////////////////////////////////////////// | 474 | ///////////////////////////////////////////////////////////////////////////// |
475 | 475 | ||
476 | KOQuickTodo::KOQuickTodo(QWidget *parent) : | 476 | KOQuickTodo::KOQuickTodo(QWidget *parent) : |
477 | QLineEdit(parent) | 477 | QLineEdit(parent) |
478 | { | 478 | { |
479 | setText(i18n("Click to add a new Todo")); | 479 | setText(i18n("Click to add a new Todo")); |
480 | } | 480 | } |
481 | 481 | ||
482 | void KOQuickTodo::focusInEvent(QFocusEvent *ev) | 482 | void KOQuickTodo::focusInEvent(QFocusEvent *ev) |
483 | { | 483 | { |
484 | if ( text()==i18n("Click to add a new Todo") ) | 484 | if ( text()==i18n("Click to add a new Todo") ) |
485 | setText(""); | 485 | setText(""); |
486 | QLineEdit::focusInEvent(ev); | 486 | QLineEdit::focusInEvent(ev); |
487 | } | 487 | } |
488 | 488 | ||
489 | void KOQuickTodo::focusOutEvent(QFocusEvent *ev) | 489 | void KOQuickTodo::focusOutEvent(QFocusEvent *ev) |
490 | { | 490 | { |
491 | setText(i18n("Click to add a new Todo")); | 491 | setText(i18n("Click to add a new Todo")); |
492 | QLineEdit::focusOutEvent(ev); | 492 | QLineEdit::focusOutEvent(ev); |
493 | } | 493 | } |
494 | 494 | ||
495 | ///////////////////////////////////////////////////////////////////////////// | 495 | ///////////////////////////////////////////////////////////////////////////// |
496 | 496 | ||
497 | KOTodoView::KOTodoView(Calendar *calendar,QWidget* parent,const char* name) : | 497 | KOTodoView::KOTodoView(Calendar *calendar,QWidget* parent,const char* name) : |
498 | KOrg::BaseView(calendar,parent,name) | 498 | KOrg::BaseView(calendar,parent,name) |
499 | { | 499 | { |
500 | mCategoryPopupMenu = 0; | 500 | mCategoryPopupMenu = 0; |
501 | mPendingUpdateBeforeRepaint = false; | 501 | mPendingUpdateBeforeRepaint = false; |
502 | isFlatDisplay = false; | 502 | isFlatDisplay = false; |
503 | mNavigator = 0; | 503 | mNavigator = 0; |
504 | QBoxLayout *topLayout = new QVBoxLayout(this); | 504 | QBoxLayout *topLayout = new QVBoxLayout(this); |
505 | mName = QString ( name ); | 505 | mName = QString ( name ); |
506 | mBlockUpdate = false; | 506 | mBlockUpdate = false; |
507 | mQuickAdd = new KOQuickTodo(this); | 507 | mQuickAdd = new KOQuickTodo(this); |
508 | topLayout->addWidget(mQuickAdd); | 508 | topLayout->addWidget(mQuickAdd); |
509 | 509 | ||
510 | if ( !KOPrefs::instance()->mEnableQuickTodo ) mQuickAdd->hide(); | 510 | if ( !KOPrefs::instance()->mEnableQuickTodo ) mQuickAdd->hide(); |
511 | 511 | ||
512 | mTodoListView = new KOTodoListView(calendar,this, name ); | 512 | mTodoListView = new KOTodoListView(calendar,this, name ); |
513 | topLayout->addWidget(mTodoListView); | 513 | topLayout->addWidget(mTodoListView); |
514 | //mTodoListView->header()->setMaximumHeight(30); | 514 | //mTodoListView->header()->setMaximumHeight(30); |
515 | mTodoListView->setRootIsDecorated(true); | 515 | mTodoListView->setRootIsDecorated(true); |
516 | mTodoListView->setAllColumnsShowFocus(true); | 516 | mTodoListView->setAllColumnsShowFocus(true); |
517 | 517 | ||
518 | mTodoListView->setShowSortIndicator(true); | 518 | mTodoListView->setShowSortIndicator(true); |
519 | 519 | ||
520 | mTodoListView->addColumn(i18n("Todo")); | 520 | mTodoListView->addColumn(i18n("Todo")); |
521 | mTodoListView->addColumn(i18n("Prio")); | 521 | mTodoListView->addColumn(i18n("Prio")); |
522 | mTodoListView->setColumnAlignment(1,AlignHCenter); | 522 | mTodoListView->setColumnAlignment(1,AlignHCenter); |
523 | mTodoListView->addColumn(i18n("Complete")); | 523 | mTodoListView->addColumn(i18n("Complete")); |
524 | mTodoListView->setColumnAlignment(2,AlignCenter); | 524 | mTodoListView->setColumnAlignment(2,AlignCenter); |
525 | 525 | ||
526 | mTodoListView->addColumn(i18n("Due Date")); | 526 | mTodoListView->addColumn(i18n("Due Date")); |
527 | mTodoListView->setColumnAlignment(3,AlignLeft); | 527 | mTodoListView->setColumnAlignment(3,AlignLeft); |
528 | mTodoListView->addColumn(i18n("Due Time")); | 528 | mTodoListView->addColumn(i18n("Due Time")); |
529 | mTodoListView->setColumnAlignment(4,AlignHCenter); | 529 | mTodoListView->setColumnAlignment(4,AlignHCenter); |
530 | 530 | ||
531 | mTodoListView->addColumn(i18n("Start Date")); | 531 | mTodoListView->addColumn(i18n("Start Date")); |
532 | mTodoListView->setColumnAlignment(5,AlignLeft); | 532 | mTodoListView->setColumnAlignment(5,AlignLeft); |
533 | mTodoListView->addColumn(i18n("Start Time")); | 533 | mTodoListView->addColumn(i18n("Start Time")); |
534 | mTodoListView->setColumnAlignment(6,AlignHCenter); | 534 | mTodoListView->setColumnAlignment(6,AlignHCenter); |
535 | 535 | ||
536 | mTodoListView->addColumn(i18n("Cancelled")); | 536 | mTodoListView->addColumn(i18n("Cancelled")); |
537 | mTodoListView->addColumn(i18n("Categories")); | 537 | mTodoListView->addColumn(i18n("Categories")); |
538 | mTodoListView->addColumn(i18n("Calendar")); | 538 | mTodoListView->addColumn(i18n("Calendar")); |
539 | #if 0 | 539 | #if 0 |
540 | mTodoListView->addColumn(i18n("Sort Id")); | 540 | mTodoListView->addColumn(i18n("Sort Id")); |
541 | mTodoListView->setColumnAlignment(4,AlignHCenter); | 541 | mTodoListView->setColumnAlignment(4,AlignHCenter); |
542 | #endif | 542 | #endif |
543 | 543 | ||
544 | mTodoListView->setMinimumHeight( 60 ); | 544 | mTodoListView->setMinimumHeight( 60 ); |
545 | mTodoListView->setItemsRenameable( true ); | 545 | mTodoListView->setItemsRenameable( true ); |
546 | mTodoListView->setRenameable( 0 ); | 546 | mTodoListView->setRenameable( 0 ); |
547 | mTodoListView->setColumnWidth( 0, 120 ); | 547 | mTodoListView->setColumnWidth( 0, 120 ); |
548 | int iii = 0; | 548 | int iii = 0; |
549 | for ( iii = 0; iii< 10 ; ++iii ) | 549 | for ( iii = 0; iii< 10 ; ++iii ) |
550 | mTodoListView->setColumnWidthMode( iii, QListView::Manual ); | 550 | mTodoListView->setColumnWidthMode( iii, QListView::Manual ); |
551 | 551 | ||
552 | 552 | ||
553 | mKOTodoViewWhatsThis = new KOTodoViewWhatsThis(mTodoListView->viewport(),this); | 553 | mKOTodoViewWhatsThis = new KOTodoViewWhatsThis(mTodoListView->viewport(),this); |
554 | 554 | ||
555 | mPriorityPopupMenu = new QPopupMenu(this); | 555 | mPriorityPopupMenu = new QPopupMenu(this); |
556 | for (int i = 1; i <= 5; i++) { | 556 | for (int i = 1; i <= 5; i++) { |
557 | QString label = QString ("%1").arg (i); | 557 | QString label = QString ("%1").arg (i); |
558 | mPriority[mPriorityPopupMenu->insertItem (label)] = i; | 558 | mPriority[mPriorityPopupMenu->insertItem (label)] = i; |
559 | } | 559 | } |
560 | connect (mPriorityPopupMenu, SIGNAL(activated (int)), SLOT (setNewPriority(int))); | 560 | connect (mPriorityPopupMenu, SIGNAL(activated (int)), SLOT (setNewPriority(int))); |
561 | 561 | ||
562 | mPercentageCompletedPopupMenu = new QPopupMenu(this); | 562 | mPercentageCompletedPopupMenu = new QPopupMenu(this); |
563 | for (int i = 0; i <= 100; i+=20) { | 563 | for (int i = 0; i <= 100; i+=20) { |
564 | QString label = QString ("%1 %").arg (i); | 564 | QString label = QString ("%1 %").arg (i); |
565 | mPercentage[mPercentageCompletedPopupMenu->insertItem (label)] = i; | 565 | mPercentage[mPercentageCompletedPopupMenu->insertItem (label)] = i; |
566 | } | 566 | } |
567 | connect (mPercentageCompletedPopupMenu, SIGNAL (activated (int)), SLOT (setNewPercentage (int))); | 567 | connect (mPercentageCompletedPopupMenu, SIGNAL (activated (int)), SLOT (setNewPercentage (int))); |
568 | 568 | ||
569 | 569 | ||
570 | mCategoryPopupMenu = new QPopupMenu (this); | ||
571 | mCategoryPopupMenu->setCheckable (true); | ||
572 | connect (mCategoryPopupMenu, SIGNAL (activated (int)), SLOT (changedCategories (int))); | ||
573 | connect (mCategoryPopupMenu, SIGNAL (aboutToShow ()), SLOT (fillCategories ())); | ||
574 | |||
575 | mCalPopupMenu = new QPopupMenu (this); | ||
576 | mCalPopupMenu->setCheckable (true); | ||
577 | connect (mCalPopupMenu, SIGNAL (activated (int)), SLOT (changedCal (int))); | ||
578 | connect (mCalPopupMenu, SIGNAL (aboutToShow ()), SLOT (fillCal ())); | ||
579 | |||
580 | |||
581 | |||
570 | 582 | ||
571 | mItemPopupMenu = new QPopupMenu(this); | 583 | mItemPopupMenu = new QPopupMenu(this); |
572 | mItemPopupMenu->insertItem(i18n("Show..."), this, | 584 | mItemPopupMenu->insertItem(i18n("Show"), this, |
573 | SLOT (showTodo())); | 585 | SLOT (showTodo())); |
574 | mItemPopupMenu->insertItem(i18n("Edit..."), this, | 586 | mItemPopupMenu->insertItem(i18n("Edit..."), this, |
575 | SLOT (editTodo())); | 587 | SLOT (editTodo())); |
576 | mItemPopupMenu->insertItem( i18n("Delete"), this, | 588 | mItemPopupMenu->insertItem( i18n("Delete"), this, |
577 | SLOT (deleteTodo())); | 589 | SLOT (deleteTodo())); |
578 | mItemPopupMenu->insertItem( i18n("Clone..."), this, | 590 | mItemPopupMenu->insertItem( i18n("Clone..."), this, |
579 | SLOT (cloneTodo())); | 591 | SLOT (cloneTodo())); |
580 | mItemPopupMenu->insertItem( i18n("Move..."), this, | 592 | mItemPopupMenu->insertItem( i18n("Move..."), this, |
581 | SLOT (moveTodo())); | 593 | SLOT (moveTodo())); |
582 | #ifndef DESKTOP_VERSION | 594 | #ifndef DESKTOP_VERSION |
583 | mItemPopupMenu->insertItem( i18n("Beam..."), this, | 595 | mItemPopupMenu->insertItem( i18n("Beam..."), this, |
584 | SLOT (beamTodo())); | 596 | SLOT (beamTodo())); |
585 | #endif | 597 | #endif |
586 | mItemPopupMenu->insertItem( i18n("Toggle Cancel"), this, | 598 | mItemPopupMenu->insertItem( i18n("Toggle Cancel"), this, |
587 | SLOT (cancelTodo())); | 599 | SLOT (cancelTodo())); |
600 | mItemPopupMenu->insertItem( i18n("Categories"), mCategoryPopupMenu); | ||
601 | mItemPopupMenu->insertItem( i18n("Calendar"), mCalPopupMenu); | ||
588 | mItemPopupMenu->insertSeparator(); | 602 | mItemPopupMenu->insertSeparator(); |
589 | mItemPopupMenu->insertItem( i18n("Start/Stop todo..."), this, | 603 | mItemPopupMenu->insertItem( i18n("Start/Stop todo..."), this, |
590 | SLOT (toggleRunningItem())); | 604 | SLOT (toggleRunningItem())); |
591 | mItemPopupMenu->insertSeparator(); | 605 | mItemPopupMenu->insertSeparator(); |
592 | /* | 606 | /* |
593 | mItemPopupMenu->insertItem( i18n("New Todo..."), this, | 607 | mItemPopupMenu->insertItem( i18n("New Todo..."), this, |
594 | SLOT (newTodo())); | 608 | SLOT (newTodo())); |
595 | */ | 609 | */ |
596 | mItemPopupMenu->insertItem(i18n("New Sub-Todo..."), this, | 610 | mItemPopupMenu->insertItem(i18n("New Sub-Todo..."), this, |
597 | SLOT (newSubTodo())); | 611 | SLOT (newSubTodo())); |
598 | mItemPopupMenu->insertItem(i18n("Unparent Todo"), this, | 612 | mItemPopupMenu->insertItem(i18n("Unparent Todo"), this, |
599 | SLOT (unparentTodo()),0,21); | 613 | SLOT (unparentTodo()),0,21); |
600 | mItemPopupMenu->insertItem(i18n("Reparent Todo"), this, | 614 | mItemPopupMenu->insertItem(i18n("Reparent Todo"), this, |
601 | SLOT (reparentTodo()),0,22); | 615 | SLOT (reparentTodo()),0,22); |
602 | mItemPopupMenu->insertSeparator(); | 616 | mItemPopupMenu->insertSeparator(); |
603 | #if 0 | 617 | #if 0 |
604 | mItemPopupMenu->insertItem(i18n("Delete completed To-Dos","Purge Completed..."), | 618 | mItemPopupMenu->insertItem(i18n("Delete completed To-Dos","Purge Completed..."), |
605 | this, SLOT( purgeCompleted() ) ); | 619 | this, SLOT( purgeCompleted() ) ); |
606 | mItemPopupMenu->insertItem(i18n("toggle completed To-Dos","Show Completed"), | 620 | mItemPopupMenu->insertItem(i18n("toggle completed To-Dos","Show Completed"), |
607 | this, SLOT( toggleCompleted() ),0, 33 ); | 621 | this, SLOT( toggleCompleted() ),0, 33 ); |
608 | mItemPopupMenu->insertItem(i18n("toggle quick todo","Show Quick Todo"), | 622 | mItemPopupMenu->insertItem(i18n("toggle quick todo","Show Quick Todo"), |
609 | this, SLOT( toggleQuickTodo() ),0, 34 ); | 623 | this, SLOT( toggleQuickTodo() ),0, 34 ); |
610 | mItemPopupMenu->insertItem(i18n("toggle running todo","Hide not Running"), | 624 | mItemPopupMenu->insertItem(i18n("toggle running todo","Hide not Running"), |
611 | this, SLOT( toggleRunning() ),0, 35 ); | 625 | this, SLOT( toggleRunning() ),0, 35 ); |
612 | 626 | ||
613 | #endif | 627 | #endif |
614 | mPopupMenu = new QPopupMenu(this); | 628 | mPopupMenu = new QPopupMenu(this); |
615 | mPopupMenu->insertItem(SmallIconSet("todo"), i18n("New Todo..."), this, | 629 | mPopupMenu->insertItem(SmallIconSet("todo"), i18n("New Todo..."), this, |
616 | SLOT (newTodo()),0,1); | 630 | SLOT (newTodo()),0,1); |
617 | mPopupMenu->insertItem(i18n("delete completed To-Dos","Purge Completed..."), | 631 | mPopupMenu->insertItem(i18n("delete completed To-Dos","Purge Completed..."), |
618 | this, SLOT(purgeCompleted()),0,2); | 632 | this, SLOT(purgeCompleted()),0,2); |
619 | mPopupMenu->insertItem(i18n("Show Completed"), | 633 | mPopupMenu->insertItem(i18n("Show Completed"), |
620 | this, SLOT( toggleCompleted() ),0,3 ); | 634 | this, SLOT( toggleCompleted() ),0,3 ); |
621 | mPopupMenu->insertItem(i18n("toggle running todo","Hide not Running"), | 635 | mPopupMenu->insertItem(i18n("toggle running todo","Hide not Running"), |
622 | this, SLOT( toggleRunning() ),0,5 ); | 636 | this, SLOT( toggleRunning() ),0,5 ); |
623 | mPopupMenu->insertItem(i18n(" set all open","Display all opened"), | 637 | mPopupMenu->insertItem(i18n(" set all open","Display all opened"), |
624 | this, SLOT( setAllOpen() ),0,6 ); | 638 | this, SLOT( setAllOpen() ),0,6 ); |
625 | mPopupMenu->insertItem(i18n(" set all close","Display all closed"), | 639 | mPopupMenu->insertItem(i18n(" set all close","Display all closed"), |
626 | this, SLOT( setAllClose() ),0,7 ); | 640 | this, SLOT( setAllClose() ),0,7 ); |
627 | mPopupMenu->insertItem(i18n(" set all flat","Display all flat"), | 641 | mPopupMenu->insertItem(i18n(" set all flat","Display all flat"), |
628 | this, SLOT( setAllFlat() ),0,8 ); | 642 | this, SLOT( setAllFlat() ),0,8 ); |
629 | mPopupMenu->insertSeparator(); | 643 | mPopupMenu->insertSeparator(); |
630 | mPopupMenu->insertItem(i18n("toggle quick todo","Show Quick Todo"), | 644 | mPopupMenu->insertItem(i18n("toggle quick todo","Show Quick Todo"), |
631 | this, SLOT( toggleQuickTodo() ),0,4 ); | 645 | this, SLOT( toggleQuickTodo() ),0,4 ); |
632 | mDocPrefs = new DocPrefs( name ); | 646 | mDocPrefs = new DocPrefs( name ); |
633 | 647 | ||
634 | mItemPopupMenu->insertItem(i18n("Todo View"),mPopupMenu ); | 648 | mItemPopupMenu->insertItem(i18n("Todo View"),mPopupMenu ); |
635 | mPopupMenu->setCheckable( true ); | 649 | mPopupMenu->setCheckable( true ); |
636 | mItemPopupMenu->setCheckable( true ); | 650 | mItemPopupMenu->setCheckable( true ); |
637 | 651 | ||
638 | 652 | ||
639 | mPopupMenu->setItemChecked( 3,KOPrefs::instance()->mShowCompletedTodo ); | 653 | mPopupMenu->setItemChecked( 3,KOPrefs::instance()->mShowCompletedTodo ); |
640 | mItemPopupMenu->setItemChecked( 33 , KOPrefs::instance()->mShowCompletedTodo ); | 654 | mItemPopupMenu->setItemChecked( 33 , KOPrefs::instance()->mShowCompletedTodo ); |
641 | 655 | ||
642 | mPopupMenu->setItemChecked(4,KOPrefs::instance()->mEnableQuickTodo); | 656 | mPopupMenu->setItemChecked(4,KOPrefs::instance()->mEnableQuickTodo); |
643 | mItemPopupMenu->setItemChecked( 34 , KOPrefs::instance()->mEnableQuickTodo ); | 657 | mItemPopupMenu->setItemChecked( 34 , KOPrefs::instance()->mEnableQuickTodo ); |
644 | 658 | ||
645 | mPopupMenu->setItemChecked(5,KOPrefs::instance()->mHideNonStartedTodos); | 659 | mPopupMenu->setItemChecked(5,KOPrefs::instance()->mHideNonStartedTodos); |
646 | mItemPopupMenu->setItemChecked( 35 , KOPrefs::instance()->mHideNonStartedTodos ); | 660 | mItemPopupMenu->setItemChecked( 35 , KOPrefs::instance()->mHideNonStartedTodos ); |
647 | 661 | ||
648 | 662 | ||
649 | // Double clicking conflicts with opening/closing the subtree | 663 | // Double clicking conflicts with opening/closing the subtree |
650 | connect( mTodoListView, SIGNAL( doubleClicked( QListViewItem *) ), | 664 | connect( mTodoListView, SIGNAL( doubleClicked( QListViewItem *) ), |
651 | SLOT( editItem( QListViewItem *) ) ); | 665 | SLOT( editItem( QListViewItem *) ) ); |
652 | /* | 666 | /* |
653 | connect( mTodoListView, SIGNAL( rightButtonClicked ( QListViewItem *, | 667 | connect( mTodoListView, SIGNAL( rightButtonClicked ( QListViewItem *, |
654 | const QPoint &,int ) ), | 668 | const QPoint &,int ) ), |
655 | SLOT( popupMenu( QListViewItem *, const QPoint & ,int) ) ); | 669 | SLOT( popupMenu( QListViewItem *, const QPoint & ,int) ) ); |
656 | */ | 670 | */ |
657 | connect( mTodoListView, SIGNAL( contextRequest ( QListViewItem *, | 671 | connect( mTodoListView, SIGNAL( contextRequest ( QListViewItem *, |
658 | const QPoint &,int ) ), | 672 | const QPoint &,int ) ), |
659 | SLOT( popupMenu( QListViewItem *, const QPoint & ,int) ) ); | 673 | SLOT( popupMenu( QListViewItem *, const QPoint & ,int) ) ); |
660 | connect( mTodoListView, SIGNAL( clicked( QListViewItem * ) ), | 674 | connect( mTodoListView, SIGNAL( clicked( QListViewItem * ) ), |
661 | SLOT( itemClicked( QListViewItem * ) ) ); | 675 | SLOT( itemClicked( QListViewItem * ) ) ); |
662 | connect( mTodoListView, SIGNAL( double_Clicked( QListViewItem * ) ), | 676 | connect( mTodoListView, SIGNAL( double_Clicked( QListViewItem * ) ), |
663 | SLOT( itemDoubleClicked( QListViewItem * ) ) ); | 677 | SLOT( itemDoubleClicked( QListViewItem * ) ) ); |
664 | connect( mTodoListView, SIGNAL( todoDropped( Todo *, int ) ), | 678 | connect( mTodoListView, SIGNAL( todoDropped( Todo *, int ) ), |
665 | SLOT( updateView() ) ); | 679 | SLOT( updateView() ) ); |
666 | connect( mTodoListView, SIGNAL( todoDropped( Todo *, int ) ), | 680 | connect( mTodoListView, SIGNAL( todoDropped( Todo *, int ) ), |
667 | SLOT( todoModified(Todo *, int) ) ); | 681 | SLOT( todoModified(Todo *, int) ) ); |
668 | connect( mTodoListView, SIGNAL( expanded( QListViewItem * ) ), | 682 | connect( mTodoListView, SIGNAL( expanded( QListViewItem * ) ), |
669 | SLOT( itemStateChanged( QListViewItem * ) ) ); | 683 | SLOT( itemStateChanged( QListViewItem * ) ) ); |
670 | connect( mTodoListView, SIGNAL( collapsed( QListViewItem * ) ), | 684 | connect( mTodoListView, SIGNAL( collapsed( QListViewItem * ) ), |
671 | SLOT( itemStateChanged( QListViewItem * ) ) ); | 685 | SLOT( itemStateChanged( QListViewItem * ) ) ); |
672 | connect( mTodoListView, SIGNAL( paintNeeded() ), | 686 | connect( mTodoListView, SIGNAL( paintNeeded() ), |
673 | SLOT( paintNeeded()) ); | 687 | SLOT( paintNeeded()) ); |
674 | 688 | ||
675 | #if 0 | 689 | #if 0 |
676 | connect(mTodoListView,SIGNAL(selectionChanged(QListViewItem *)), | 690 | connect(mTodoListView,SIGNAL(selectionChanged(QListViewItem *)), |
677 | SLOT(selectionChanged(QListViewItem *))); | 691 | SLOT(selectionChanged(QListViewItem *))); |
678 | connect(mTodoListView,SIGNAL(clicked(QListViewItem *)), | 692 | connect(mTodoListView,SIGNAL(clicked(QListViewItem *)), |
679 | SLOT(selectionChanged(QListViewItem *))); | 693 | SLOT(selectionChanged(QListViewItem *))); |
680 | connect(mTodoListView,SIGNAL(pressed(QListViewItem *)), | 694 | connect(mTodoListView,SIGNAL(pressed(QListViewItem *)), |
681 | SLOT(selectionChanged(QListViewItem *))); | 695 | SLOT(selectionChanged(QListViewItem *))); |
682 | #endif | 696 | #endif |
683 | 697 | ||
684 | connect( mTodoListView, SIGNAL(reparentTodoSignal( Todo *,Todo * ) ), SIGNAL(reparentTodoSignal( Todo *,Todo * ) )); | 698 | connect( mTodoListView, SIGNAL(reparentTodoSignal( Todo *,Todo * ) ), SIGNAL(reparentTodoSignal( Todo *,Todo * ) )); |
685 | connect( mTodoListView, SIGNAL(unparentTodoSignal(Todo *) ), SIGNAL(unparentTodoSignal(Todo *) )); | 699 | connect( mTodoListView, SIGNAL(unparentTodoSignal(Todo *) ), SIGNAL(unparentTodoSignal(Todo *) )); |
686 | connect( mTodoListView, SIGNAL( deleteTodo(Todo *) ), SIGNAL(deleteTodoSignal(Todo *) )); | 700 | connect( mTodoListView, SIGNAL( deleteTodo(Todo *) ), SIGNAL(deleteTodoSignal(Todo *) )); |
687 | 701 | ||
688 | connect( mTodoListView, SIGNAL(selectionChanged() ), | 702 | connect( mTodoListView, SIGNAL(selectionChanged() ), |
689 | SLOT( processSelectionChange() ) ); | 703 | SLOT( processSelectionChange() ) ); |
690 | connect( mQuickAdd, SIGNAL( returnPressed () ), | 704 | connect( mQuickAdd, SIGNAL( returnPressed () ), |
691 | SLOT( addQuickTodo() ) ); | 705 | SLOT( addQuickTodo() ) ); |
692 | 706 | ||
693 | } | 707 | } |
694 | 708 | ||
695 | KOTodoView::~KOTodoView() | 709 | KOTodoView::~KOTodoView() |
696 | { | 710 | { |
697 | 711 | ||
698 | #if QT_VERSION >= 0x030000 | 712 | #if QT_VERSION >= 0x030000 |
699 | 713 | ||
700 | #else | 714 | #else |
701 | delete mKOTodoViewWhatsThis; | 715 | delete mKOTodoViewWhatsThis; |
702 | #endif | 716 | #endif |
703 | 717 | ||
704 | delete mDocPrefs; | 718 | delete mDocPrefs; |
705 | } | 719 | } |
706 | QString KOTodoView::getWhatsThisText(QPoint p) | 720 | QString KOTodoView::getWhatsThisText(QPoint p) |
707 | { | 721 | { |
708 | KOTodoViewItem* item = ( KOTodoViewItem* ) mTodoListView->itemAt( p ); | 722 | KOTodoViewItem* item = ( KOTodoViewItem* ) mTodoListView->itemAt( p ); |
709 | if ( item ) | 723 | if ( item ) |
710 | return KIncidenceFormatter::instance()->getFormattedText( item->todo(), | 724 | return KIncidenceFormatter::instance()->getFormattedText( item->todo(), |
711 | KOPrefs::instance()->mWTshowDetails, | 725 | KOPrefs::instance()->mWTshowDetails, |
712 | KOPrefs::instance()->mWTshowCreated, | 726 | KOPrefs::instance()->mWTshowCreated, |
713 | KOPrefs::instance()->mWTshowChanged); | 727 | KOPrefs::instance()->mWTshowChanged); |
714 | return i18n("That is the todo view" ); | 728 | return i18n("That is the todo view" ); |
715 | 729 | ||
716 | } | 730 | } |
717 | 731 | ||
718 | void KOTodoView::jumpToDate () | 732 | void KOTodoView::jumpToDate () |
719 | { | 733 | { |
720 | // if (mActiveItem) { | 734 | // if (mActiveItem) { |
721 | // mActiveItem->todo()); | 735 | // mActiveItem->todo()); |
722 | // if ( mActiveItem->todo()->hasDueDate() ) | 736 | // if ( mActiveItem->todo()->hasDueDate() ) |
723 | // emit mActiveItem->todo()jumpToTime( mTodo->dtDue().date() ); | 737 | // emit mActiveItem->todo()jumpToTime( mTodo->dtDue().date() ); |
724 | } | 738 | } |
725 | void KOTodoView::paintNeeded() | 739 | void KOTodoView::paintNeeded() |
726 | { | 740 | { |
727 | if ( mPendingUpdateBeforeRepaint ) { | 741 | if ( mPendingUpdateBeforeRepaint ) { |
728 | updateView(); | 742 | updateView(); |
729 | mPendingUpdateBeforeRepaint = false; | 743 | mPendingUpdateBeforeRepaint = false; |
730 | } | 744 | } |
731 | } | 745 | } |
732 | void KOTodoView::paintEvent(QPaintEvent * pevent) | 746 | void KOTodoView::paintEvent(QPaintEvent * pevent) |
733 | { | 747 | { |
734 | if ( mPendingUpdateBeforeRepaint ) { | 748 | if ( mPendingUpdateBeforeRepaint ) { |
735 | updateView(); | 749 | updateView(); |
736 | mPendingUpdateBeforeRepaint = false; | 750 | mPendingUpdateBeforeRepaint = false; |
737 | } | 751 | } |
738 | KOrg::BaseView::paintEvent( pevent); | 752 | KOrg::BaseView::paintEvent( pevent); |
739 | } | 753 | } |
740 | 754 | ||
741 | void KOTodoView::updateView() | 755 | void KOTodoView::updateView() |
742 | { | 756 | { |
743 | pendingSubtodo = 0; | 757 | pendingSubtodo = 0; |
744 | if ( mBlockUpdate ) { | 758 | if ( mBlockUpdate ) { |
745 | return; | 759 | return; |
746 | } | 760 | } |
747 | if ( !isVisible() ) { | 761 | if ( !isVisible() ) { |
748 | mPendingUpdateBeforeRepaint = true; | 762 | mPendingUpdateBeforeRepaint = true; |
749 | return; | 763 | return; |
750 | } | 764 | } |
751 | //qDebug("KOTodoView::updateView() %x", this); | 765 | //qDebug("KOTodoView::updateView() %x", this); |
752 | if ( isFlatDisplay ) { | 766 | if ( isFlatDisplay ) { |
753 | displayAllFlat(); | 767 | displayAllFlat(); |
754 | return; | 768 | return; |
755 | } | 769 | } |
756 | storeCurrentItem(); | 770 | storeCurrentItem(); |
757 | //qDebug("update "); | 771 | //qDebug("update "); |
758 | // kdDebug() << "KOTodoView::updateView()" << endl; | 772 | // kdDebug() << "KOTodoView::updateView()" << endl; |
759 | QFont fo = KOPrefs::instance()->mTodoViewFont; | 773 | QFont fo = KOPrefs::instance()->mTodoViewFont; |
760 | 774 | ||
761 | 775 | ||
762 | mTodoListView->clear(); | 776 | mTodoListView->clear(); |
763 | if ( mName == "todolistsmall" ) { | 777 | if ( mName == "todolistsmall" ) { |
764 | if ( KOPrefs::instance()->mTodoViewUsesSmallFont ) { | 778 | if ( KOPrefs::instance()->mTodoViewUsesSmallFont ) { |
765 | int ps = fo.pointSize() -2; | 779 | int ps = fo.pointSize() -2; |
766 | if ( ps > 12 ) | 780 | if ( ps > 12 ) |
767 | ps -= 2; | 781 | ps -= 2; |
768 | fo.setPointSize( ps ); | 782 | fo.setPointSize( ps ); |
769 | } | 783 | } |
770 | } | 784 | } |
771 | 785 | ||
772 | mTodoListView->setFont( fo ); | 786 | mTodoListView->setFont( fo ); |
773 | // QFontMetrics fm ( KOPrefs::instance()->mTodoViewFont ); | 787 | // QFontMetrics fm ( KOPrefs::instance()->mTodoViewFont ); |
774 | //mTodoListView->header()->setMaximumHeight(fm.height()); | 788 | //mTodoListView->header()->setMaximumHeight(fm.height()); |
775 | QPtrList<Todo> todoList = calendar()->todos(); | 789 | QPtrList<Todo> todoList = calendar()->todos(); |
776 | 790 | ||
777 | /* | 791 | /* |
778 | kdDebug() << "KOTodoView::updateView(): Todo List:" << endl; | 792 | kdDebug() << "KOTodoView::updateView(): Todo List:" << endl; |
779 | Event *t; | 793 | Event *t; |
@@ -864,514 +878,529 @@ void KOTodoView::resetCurrentItem() | |||
864 | KOTodoViewItem* foundItemParent = 0; | 878 | KOTodoViewItem* foundItemParent = 0; |
865 | KOTodoViewItem* foundItemAbove = 0; | 879 | KOTodoViewItem* foundItemAbove = 0; |
866 | if ( mTodoListView->firstChild () ) { | 880 | if ( mTodoListView->firstChild () ) { |
867 | if ( mCurItem ) { | 881 | if ( mCurItem ) { |
868 | KOTodoViewItem* item = (KOTodoViewItem*)mTodoListView->firstChild (); | 882 | KOTodoViewItem* item = (KOTodoViewItem*)mTodoListView->firstChild (); |
869 | while ( item ) { | 883 | while ( item ) { |
870 | if ( item->todo() == mCurItem ) { | 884 | if ( item->todo() == mCurItem ) { |
871 | foundItem = item; | 885 | foundItem = item; |
872 | break; | 886 | break; |
873 | } else if ( item->todo() == mCurItemAbove ) { | 887 | } else if ( item->todo() == mCurItemAbove ) { |
874 | foundItemAbove = item; | 888 | foundItemAbove = item; |
875 | 889 | ||
876 | } | 890 | } |
877 | if ( item->todo() == mCurItemRootParent ) { | 891 | if ( item->todo() == mCurItemRootParent ) { |
878 | foundItemRoot = item; | 892 | foundItemRoot = item; |
879 | } | 893 | } |
880 | if ( item->todo() == mCurItemParent ) { | 894 | if ( item->todo() == mCurItemParent ) { |
881 | foundItemParent = item; | 895 | foundItemParent = item; |
882 | } | 896 | } |
883 | item = (KOTodoViewItem*)item->itemBelow(); | 897 | item = (KOTodoViewItem*)item->itemBelow(); |
884 | } | 898 | } |
885 | if ( ! foundItem ) { | 899 | if ( ! foundItem ) { |
886 | if ( foundItemParent ) { | 900 | if ( foundItemParent ) { |
887 | foundItem = foundItemParent; | 901 | foundItem = foundItemParent; |
888 | } else { | 902 | } else { |
889 | if ( foundItemRoot ) | 903 | if ( foundItemRoot ) |
890 | foundItem = foundItemRoot; | 904 | foundItem = foundItemRoot; |
891 | else | 905 | else |
892 | foundItem = foundItemAbove; | 906 | foundItem = foundItemAbove; |
893 | } | 907 | } |
894 | } | 908 | } |
895 | } | 909 | } |
896 | if ( foundItem ) { | 910 | if ( foundItem ) { |
897 | mTodoListView->setSelected ( foundItem, true ); | 911 | mTodoListView->setSelected ( foundItem, true ); |
898 | mTodoListView->setCurrentItem( foundItem ); | 912 | mTodoListView->setCurrentItem( foundItem ); |
899 | mTodoListView->ensureItemVisible( foundItem ); | 913 | mTodoListView->ensureItemVisible( foundItem ); |
900 | } else { | 914 | } else { |
901 | if ( mTodoListView->firstChild () ) { | 915 | if ( mTodoListView->firstChild () ) { |
902 | mTodoListView->setSelected ( mTodoListView->firstChild (), true ); | 916 | mTodoListView->setSelected ( mTodoListView->firstChild (), true ); |
903 | mTodoListView->setCurrentItem( mTodoListView->firstChild () ); | 917 | mTodoListView->setCurrentItem( mTodoListView->firstChild () ); |
904 | } | 918 | } |
905 | } | 919 | } |
906 | } | 920 | } |
907 | processSelectionChange(); | 921 | processSelectionChange(); |
908 | QTimer::singleShot( 100, this, SLOT ( resetFocusToList() )); | 922 | QTimer::singleShot( 100, this, SLOT ( resetFocusToList() )); |
909 | } | 923 | } |
910 | void KOTodoView::resetFocusToList() | 924 | void KOTodoView::resetFocusToList() |
911 | { | 925 | { |
912 | topLevelWidget()->setActiveWindow(); | 926 | topLevelWidget()->setActiveWindow(); |
913 | mTodoListView->setFocus(); | 927 | mTodoListView->setFocus(); |
914 | } | 928 | } |
915 | //Incidence * mCurItem, *mCurItemRootParent,*mCurItemAbove; | 929 | //Incidence * mCurItem, *mCurItemRootParent,*mCurItemAbove; |
916 | bool KOTodoView::checkTodo( Todo * todo ) | 930 | bool KOTodoView::checkTodo( Todo * todo ) |
917 | { | 931 | { |
918 | 932 | ||
919 | if ( !KOPrefs::instance()->mShowCompletedTodo && todo->isCompleted() ) | 933 | if ( !KOPrefs::instance()->mShowCompletedTodo && todo->isCompleted() ) |
920 | return false; | 934 | return false; |
921 | if ( !todo->isCompleted() ) { | 935 | if ( !todo->isCompleted() ) { |
922 | if ( todo->hasDueDate() && todo->dtDue().date() <= QDate::currentDate() ) | 936 | if ( todo->hasDueDate() && todo->dtDue().date() <= QDate::currentDate() ) |
923 | return true; | 937 | return true; |
924 | } | 938 | } |
925 | if ( KOPrefs::instance()->mHideNonStartedTodos && mNavigator ) { | 939 | if ( KOPrefs::instance()->mHideNonStartedTodos && mNavigator ) { |
926 | if ( todo->hasStartDate() ) | 940 | if ( todo->hasStartDate() ) |
927 | if ( mNavigator->selectedDates().last() < todo->dtStart().date() ) | 941 | if ( mNavigator->selectedDates().last() < todo->dtStart().date() ) |
928 | return false; | 942 | return false; |
929 | if ( todo->hasDueDate() ) | 943 | if ( todo->hasDueDate() ) |
930 | if ( mNavigator->selectedDates().first() > todo->dtDue().date() ) | 944 | if ( mNavigator->selectedDates().first() > todo->dtDue().date() ) |
931 | return false; | 945 | return false; |
932 | } | 946 | } |
933 | return true; | 947 | return true; |
934 | } | 948 | } |
935 | 949 | ||
936 | void KOTodoView::restoreItemState( QListViewItem *item ) | 950 | void KOTodoView::restoreItemState( QListViewItem *item ) |
937 | { | 951 | { |
938 | pendingSubtodo = 0; | 952 | pendingSubtodo = 0; |
939 | while( item ) { | 953 | while( item ) { |
940 | KOTodoViewItem *todoItem = (KOTodoViewItem *)item; | 954 | KOTodoViewItem *todoItem = (KOTodoViewItem *)item; |
941 | todoItem->setOpen( mDocPrefs->readBoolEntry( todoItem->todo()->uid() ) ); | 955 | todoItem->setOpen( mDocPrefs->readBoolEntry( todoItem->todo()->uid() ) ); |
942 | if( item->childCount() > 0 ) restoreItemState( item->firstChild() ); | 956 | if( item->childCount() > 0 ) restoreItemState( item->firstChild() ); |
943 | item = item->nextSibling(); | 957 | item = item->nextSibling(); |
944 | } | 958 | } |
945 | } | 959 | } |
946 | 960 | ||
947 | 961 | ||
948 | QMap<Todo *,KOTodoViewItem *>::ConstIterator | 962 | QMap<Todo *,KOTodoViewItem *>::ConstIterator |
949 | KOTodoView::insertTodoItem(Todo *todo) | 963 | KOTodoView::insertTodoItem(Todo *todo) |
950 | { | 964 | { |
951 | 965 | ||
952 | // kdDebug() << "KOTodoView::insertTodoItem(): " << todo->getSummary() << endl; | 966 | // kdDebug() << "KOTodoView::insertTodoItem(): " << todo->getSummary() << endl; |
953 | // TODO: Check, if dynmaic cast is necessary | 967 | // TODO: Check, if dynmaic cast is necessary |
954 | 968 | ||
955 | pendingSubtodo = 0; | 969 | pendingSubtodo = 0; |
956 | Incidence *incidence = todo->relatedTo(); | 970 | Incidence *incidence = todo->relatedTo(); |
957 | while ( incidence && !incidence->calEnabled() ) | 971 | while ( incidence && !incidence->calEnabled() ) |
958 | incidence = incidence->relatedTo(); | 972 | incidence = incidence->relatedTo(); |
959 | if (incidence && incidence->typeID() == todoID ) { | 973 | if (incidence && incidence->typeID() == todoID ) { |
960 | Todo *relatedTodo = static_cast<Todo *>(incidence); | 974 | Todo *relatedTodo = static_cast<Todo *>(incidence); |
961 | 975 | ||
962 | // kdDebug() << " has Related" << endl; | 976 | // kdDebug() << " has Related" << endl; |
963 | QMap<Todo *,KOTodoViewItem *>::ConstIterator itemIterator; | 977 | QMap<Todo *,KOTodoViewItem *>::ConstIterator itemIterator; |
964 | itemIterator = mTodoMap.find(relatedTodo); | 978 | itemIterator = mTodoMap.find(relatedTodo); |
965 | if (itemIterator == mTodoMap.end()) { | 979 | if (itemIterator == mTodoMap.end()) { |
966 | // kdDebug() << " related not yet in list" << endl; | 980 | // kdDebug() << " related not yet in list" << endl; |
967 | itemIterator = insertTodoItem (relatedTodo); | 981 | itemIterator = insertTodoItem (relatedTodo); |
968 | } | 982 | } |
969 | // isn't this pretty stupid? We give one Todo to the KOTodoViewItem | 983 | // isn't this pretty stupid? We give one Todo to the KOTodoViewItem |
970 | // and one into the map. Sure finding is more easy but why? -zecke | 984 | // and one into the map. Sure finding is more easy but why? -zecke |
971 | KOTodoViewItem *todoItem = new KOTodoViewItem(*itemIterator,todo,this); | 985 | KOTodoViewItem *todoItem = new KOTodoViewItem(*itemIterator,todo,this); |
972 | return mTodoMap.insert(todo,todoItem); | 986 | return mTodoMap.insert(todo,todoItem); |
973 | } else { | 987 | } else { |
974 | // kdDebug() << " no Related" << endl; | 988 | // kdDebug() << " no Related" << endl; |
975 | // see above -zecke | 989 | // see above -zecke |
976 | KOTodoViewItem *todoItem = new KOTodoViewItem(mTodoListView,todo,this); | 990 | KOTodoViewItem *todoItem = new KOTodoViewItem(mTodoListView,todo,this); |
977 | return mTodoMap.insert(todo,todoItem); | 991 | return mTodoMap.insert(todo,todoItem); |
978 | } | 992 | } |
979 | } | 993 | } |
980 | 994 | ||
981 | 995 | ||
982 | void KOTodoView::updateConfig() | 996 | void KOTodoView::updateConfig() |
983 | { | 997 | { |
984 | updateView(); | 998 | updateView(); |
985 | mTodoListView->repaintContents(); | 999 | mTodoListView->repaintContents(); |
986 | } | 1000 | } |
987 | 1001 | ||
988 | QPtrList<Incidence> KOTodoView::selectedIncidences() | 1002 | QPtrList<Incidence> KOTodoView::selectedIncidences() |
989 | { | 1003 | { |
990 | QPtrList<Incidence> selected; | 1004 | QPtrList<Incidence> selected; |
991 | 1005 | ||
992 | KOTodoViewItem *item = (KOTodoViewItem *)(mTodoListView->selectedItem()); | 1006 | KOTodoViewItem *item = (KOTodoViewItem *)(mTodoListView->selectedItem()); |
993 | // if (!item) item = mActiveItem; | 1007 | // if (!item) item = mActiveItem; |
994 | if (item) selected.append(item->todo()); | 1008 | if (item) selected.append(item->todo()); |
995 | 1009 | ||
996 | return selected; | 1010 | return selected; |
997 | } | 1011 | } |
998 | 1012 | ||
999 | QPtrList<Todo> KOTodoView::selectedTodos() | 1013 | QPtrList<Todo> KOTodoView::selectedTodos() |
1000 | { | 1014 | { |
1001 | QPtrList<Todo> selected; | 1015 | QPtrList<Todo> selected; |
1002 | 1016 | ||
1003 | KOTodoViewItem *item = (KOTodoViewItem *)(mTodoListView->selectedItem()); | 1017 | KOTodoViewItem *item = (KOTodoViewItem *)(mTodoListView->selectedItem()); |
1004 | // if (!item) item = mActiveItem; | 1018 | // if (!item) item = mActiveItem; |
1005 | if (item) selected.append(item->todo()); | 1019 | if (item) selected.append(item->todo()); |
1006 | 1020 | ||
1007 | return selected; | 1021 | return selected; |
1008 | } | 1022 | } |
1009 | 1023 | ||
1010 | void KOTodoView::changeEventDisplay(Event *, int) | 1024 | void KOTodoView::changeEventDisplay(Event *, int) |
1011 | { | 1025 | { |
1012 | updateView(); | 1026 | updateView(); |
1013 | } | 1027 | } |
1014 | 1028 | ||
1015 | void KOTodoView::showDates(const QDate &, const QDate &) | 1029 | void KOTodoView::showDates(const QDate &, const QDate &) |
1016 | { | 1030 | { |
1017 | } | 1031 | } |
1018 | 1032 | ||
1019 | void KOTodoView::showEvents(QPtrList<Event>) | 1033 | void KOTodoView::showEvents(QPtrList<Event>) |
1020 | { | 1034 | { |
1021 | kdDebug() << "KOTodoView::selectEvents(): not yet implemented" << endl; | 1035 | kdDebug() << "KOTodoView::selectEvents(): not yet implemented" << endl; |
1022 | } | 1036 | } |
1023 | 1037 | ||
1024 | void KOTodoView::printPreview(CalPrinter *calPrinter, const QDate &fd, | 1038 | void KOTodoView::printPreview(CalPrinter *calPrinter, const QDate &fd, |
1025 | const QDate &td) | 1039 | const QDate &td) |
1026 | { | 1040 | { |
1027 | #ifndef KORG_NOPRINTER | 1041 | #ifndef KORG_NOPRINTER |
1028 | calPrinter->preview(CalPrinter::Todolist, fd, td); | 1042 | calPrinter->preview(CalPrinter::Todolist, fd, td); |
1029 | #endif | 1043 | #endif |
1030 | } | 1044 | } |
1031 | 1045 | ||
1032 | void KOTodoView::editItem(QListViewItem *item ) | 1046 | void KOTodoView::editItem(QListViewItem *item ) |
1033 | { | 1047 | { |
1034 | emit editTodoSignal(((KOTodoViewItem *)item)->todo()); | 1048 | emit editTodoSignal(((KOTodoViewItem *)item)->todo()); |
1035 | } | 1049 | } |
1036 | 1050 | ||
1037 | void KOTodoView::showItem(QListViewItem *item,const QPoint &,int) | 1051 | void KOTodoView::showItem(QListViewItem *item,const QPoint &,int) |
1038 | { | 1052 | { |
1039 | emit showTodoSignal(((KOTodoViewItem *)item)->todo()); | 1053 | emit showTodoSignal(((KOTodoViewItem *)item)->todo()); |
1040 | } | 1054 | } |
1041 | 1055 | ||
1042 | void KOTodoView::popupMenu(QListViewItem *item,const QPoint &p,int column) | 1056 | void KOTodoView::popupMenu(QListViewItem *item,const QPoint &p,int column) |
1043 | { | 1057 | { |
1044 | pendingSubtodo = 0; | 1058 | pendingSubtodo = 0; |
1045 | mActiveItem = (KOTodoViewItem *)item; | 1059 | mActiveItem = (KOTodoViewItem *)item; |
1046 | if (item) { | 1060 | if (item) { |
1047 | switch (column){ | 1061 | switch (column){ |
1048 | case 1: | 1062 | case 1: |
1049 | mPriorityPopupMenu->popup(QCursor::pos ()); break; | 1063 | mPriorityPopupMenu->popup(QCursor::pos ()); break; |
1050 | case 2: | 1064 | case 2: |
1051 | mPercentageCompletedPopupMenu->popup(QCursor::pos ()); break; | 1065 | mPercentageCompletedPopupMenu->popup(QCursor::pos ()); break; |
1052 | case 3: | 1066 | case 3: |
1053 | moveTodo(); | 1067 | moveTodo(); |
1054 | break; | 1068 | break; |
1055 | case 8: | 1069 | case 8: |
1056 | getCategoryPopupMenu((KOTodoViewItem *)item)->popup(QCursor::pos ()); break; | 1070 | mCategoryPopupMenu->popup(QCursor::pos ()); break; |
1071 | case 9: | ||
1072 | mCalPopupMenu->popup(QCursor::pos ()); break; | ||
1057 | default: | 1073 | default: |
1058 | mItemPopupMenu->popup(QCursor::pos()); | 1074 | mItemPopupMenu->popup(QCursor::pos()); |
1059 | } | 1075 | } |
1060 | } else mPopupMenu->popup(QCursor::pos()); | 1076 | } else mPopupMenu->popup(QCursor::pos()); |
1061 | } | 1077 | } |
1062 | void KOTodoView::newTodo() | 1078 | void KOTodoView::newTodo() |
1063 | { | 1079 | { |
1064 | emit newTodoSignal(); | 1080 | emit newTodoSignal(); |
1065 | } | 1081 | } |
1066 | 1082 | ||
1067 | void KOTodoView::newSubTodo() | 1083 | void KOTodoView::newSubTodo() |
1068 | { | 1084 | { |
1069 | if (mActiveItem) { | 1085 | if (mActiveItem) { |
1070 | emit newSubTodoSignal(mActiveItem->todo()); | 1086 | emit newSubTodoSignal(mActiveItem->todo()); |
1071 | } | 1087 | } |
1072 | } | 1088 | } |
1073 | void KOTodoView::unparentTodo() | 1089 | void KOTodoView::unparentTodo() |
1074 | { | 1090 | { |
1075 | if (mActiveItem) { | 1091 | if (mActiveItem) { |
1076 | emit unparentTodoSignal(mActiveItem->todo()); | 1092 | emit unparentTodoSignal(mActiveItem->todo()); |
1077 | } | 1093 | } |
1078 | } | 1094 | } |
1079 | 1095 | ||
1080 | void KOTodoView::reparentTodo() | 1096 | void KOTodoView::reparentTodo() |
1081 | { | 1097 | { |
1082 | if (mActiveItem) { | 1098 | if (mActiveItem) { |
1083 | topLevelWidget()->setCaption(i18n("Click on new parent item")); | 1099 | topLevelWidget()->setCaption(i18n("Click on new parent item")); |
1084 | pendingSubtodo = mActiveItem; | 1100 | pendingSubtodo = mActiveItem; |
1085 | } | 1101 | } |
1086 | } | 1102 | } |
1087 | void KOTodoView::editTodo() | 1103 | void KOTodoView::editTodo() |
1088 | { | 1104 | { |
1089 | if (mActiveItem) { | 1105 | if (mActiveItem) { |
1090 | emit editTodoSignal(mActiveItem->todo()); | 1106 | emit editTodoSignal(mActiveItem->todo()); |
1091 | } | 1107 | } |
1092 | } | 1108 | } |
1093 | void KOTodoView::cloneTodo() | 1109 | void KOTodoView::cloneTodo() |
1094 | { | 1110 | { |
1095 | if (mActiveItem) { | 1111 | if (mActiveItem) { |
1096 | emit cloneTodoSignal((Incidence*)mActiveItem->todo()); | 1112 | emit cloneTodoSignal((Incidence*)mActiveItem->todo()); |
1097 | } | 1113 | } |
1098 | } | 1114 | } |
1099 | void KOTodoView::cancelTodo() | 1115 | void KOTodoView::cancelTodo() |
1100 | { | 1116 | { |
1101 | if (mActiveItem) { | 1117 | if (mActiveItem) { |
1102 | emit cancelTodoSignal((Incidence*)mActiveItem->todo()); | 1118 | emit cancelTodoSignal((Incidence*)mActiveItem->todo()); |
1103 | } | 1119 | } |
1104 | } | 1120 | } |
1105 | void KOTodoView::moveTodo() | 1121 | void KOTodoView::moveTodo() |
1106 | { | 1122 | { |
1107 | if (mActiveItem) { | 1123 | if (mActiveItem) { |
1108 | emit moveTodoSignal((Incidence*)mActiveItem->todo()); | 1124 | emit moveTodoSignal((Incidence*)mActiveItem->todo()); |
1109 | } | 1125 | } |
1110 | } | 1126 | } |
1111 | void KOTodoView::beamTodo() | 1127 | void KOTodoView::beamTodo() |
1112 | { | 1128 | { |
1113 | if (mActiveItem) { | 1129 | if (mActiveItem) { |
1114 | emit beamTodoSignal((Incidence*)mActiveItem->todo()); | 1130 | emit beamTodoSignal((Incidence*)mActiveItem->todo()); |
1115 | } | 1131 | } |
1116 | } | 1132 | } |
1117 | 1133 | ||
1118 | 1134 | ||
1119 | void KOTodoView::showTodo() | 1135 | void KOTodoView::showTodo() |
1120 | { | 1136 | { |
1121 | if (mActiveItem) { | 1137 | if (mActiveItem) { |
1122 | emit showTodoSignal(mActiveItem->todo()); | 1138 | emit showTodoSignal(mActiveItem->todo()); |
1123 | } | 1139 | } |
1124 | } | 1140 | } |
1125 | 1141 | ||
1126 | void KOTodoView::deleteTodo() | 1142 | void KOTodoView::deleteTodo() |
1127 | { | 1143 | { |
1128 | if (mActiveItem) { | 1144 | if (mActiveItem) { |
1129 | emit deleteTodoSignal(mActiveItem->todo()); | 1145 | emit deleteTodoSignal(mActiveItem->todo()); |
1130 | } | 1146 | } |
1131 | } | 1147 | } |
1132 | 1148 | ||
1133 | void KOTodoView::setNewPriority(int index) | 1149 | void KOTodoView::setNewPriority(int index) |
1134 | { | 1150 | { |
1135 | if (mActiveItem && !mActiveItem->todo()->isReadOnly ()) { | 1151 | if (mActiveItem && !mActiveItem->todo()->isReadOnly ()) { |
1136 | mActiveItem->todo()->setPriority(mPriority[index]); | 1152 | mActiveItem->todo()->setPriority(mPriority[index]); |
1137 | mActiveItem->construct(); | 1153 | mActiveItem->construct(); |
1138 | todoModified (mActiveItem->todo(), KOGlobals::PRIORITY_MODIFIED); | 1154 | todoModified (mActiveItem->todo(), KOGlobals::PRIORITY_MODIFIED); |
1139 | mActiveItem->todo()->setRevision( mActiveItem->todo()->revision()+1 ); | 1155 | mActiveItem->todo()->setRevision( mActiveItem->todo()->revision()+1 ); |
1140 | } | 1156 | } |
1141 | } | 1157 | } |
1142 | 1158 | ||
1143 | void KOTodoView::setNewPercentage(int index) | 1159 | void KOTodoView::setNewPercentage(int index) |
1144 | { | 1160 | { |
1145 | if (mActiveItem && !mActiveItem->todo()->isReadOnly ()) { | 1161 | if (mActiveItem && !mActiveItem->todo()->isReadOnly ()) { |
1146 | 1162 | ||
1147 | if ( mPercentage[index] == 100 && !mActiveItem->isOn() ) { | 1163 | if ( mPercentage[index] == 100 && !mActiveItem->isOn() ) { |
1148 | mActiveItem->setOn( true ); | 1164 | mActiveItem->setOn( true ); |
1149 | return; | 1165 | return; |
1150 | } else if ( mPercentage[index] != 100 && mActiveItem->isOn() ) { | 1166 | } else if ( mPercentage[index] != 100 && mActiveItem->isOn() ) { |
1151 | KOTodoViewItem* par = (static_cast<KOTodoViewItem*>(mActiveItem->parent())); | 1167 | KOTodoViewItem* par = (static_cast<KOTodoViewItem*>(mActiveItem->parent())); |
1152 | if ( par && par->isOn() ) | 1168 | if ( par && par->isOn() ) |
1153 | par->setOn( false ); | 1169 | par->setOn( false ); |
1154 | } | 1170 | } |
1155 | if (mPercentage[index] == 100) { | 1171 | if (mPercentage[index] == 100) { |
1156 | mActiveItem->todo()->setCompleted(QDateTime::currentDateTime()); | 1172 | mActiveItem->todo()->setCompleted(QDateTime::currentDateTime()); |
1157 | } else { | 1173 | } else { |
1158 | mActiveItem->todo()->setCompleted(false); | 1174 | mActiveItem->todo()->setCompleted(false); |
1159 | } | 1175 | } |
1160 | mActiveItem->todo()->setPercentComplete(mPercentage[index]); | 1176 | mActiveItem->todo()->setPercentComplete(mPercentage[index]); |
1161 | mActiveItem->construct(); | 1177 | mActiveItem->construct(); |
1162 | todoModified (mActiveItem->todo (), KOGlobals::COMPLETION_MODIFIED); | 1178 | todoModified (mActiveItem->todo (), KOGlobals::COMPLETION_MODIFIED); |
1163 | mActiveItem->todo()->setRevision( mActiveItem->todo()->revision()+1 ); | 1179 | mActiveItem->todo()->setRevision( mActiveItem->todo()->revision()+1 ); |
1164 | } | 1180 | } |
1165 | } | 1181 | } |
1166 | 1182 | ||
1167 | 1183 | void KOTodoView::fillCategories () | |
1168 | QPopupMenu * KOTodoView::getCategoryPopupMenu (KOTodoViewItem *todoItem) | ||
1169 | { | 1184 | { |
1170 | if ( !mCategoryPopupMenu ) { | ||
1171 | mCategoryPopupMenu = new QPopupMenu (this); | ||
1172 | mCategoryPopupMenu->setCheckable (true); | ||
1173 | connect (mCategoryPopupMenu, SIGNAL (activated (int)), SLOT (changedCategories (int))); | ||
1174 | } | ||
1175 | mCategoryPopupMenu->clear(); | 1185 | mCategoryPopupMenu->clear(); |
1176 | QStringList checkedCategories = todoItem->todo()->categories (); | 1186 | if ( ! mActiveItem ) return; |
1177 | 1187 | QStringList checkedCategories = mActiveItem->todo()->categories (); | |
1178 | for (QStringList::Iterator it = KOPrefs::instance()->mCustomCategories.begin (); | 1188 | for (QStringList::Iterator it = KOPrefs::instance()->mCustomCategories.begin (); |
1179 | it != KOPrefs::instance()->mCustomCategories.end (); | 1189 | it != KOPrefs::instance()->mCustomCategories.end (); |
1180 | ++it) { | 1190 | ++it) { |
1181 | int index = mCategoryPopupMenu->insertItem (*it); | 1191 | int index = mCategoryPopupMenu->insertItem (*it); |
1182 | mCategory[index] = *it; | 1192 | mCategory[index] = *it; |
1183 | if (checkedCategories.find (*it) != checkedCategories.end ()) mCategoryPopupMenu->setItemChecked (index, true); | 1193 | if (checkedCategories.find (*it) != checkedCategories.end ()) mCategoryPopupMenu->setItemChecked (index, true); |
1184 | } | 1194 | } |
1185 | return mCategoryPopupMenu; | 1195 | } |
1196 | void KOTodoView::fillCal () | ||
1197 | { | ||
1198 | mCalPopupMenu->clear(); | ||
1199 | if (!mActiveItem) return; | ||
1200 | bool readO = mActiveItem->todo()->isReadOnly(); | ||
1201 | KopiCalendarFile * kkf = KOPrefs::instance()->mCalendars.first(); | ||
1202 | while ( kkf ) { | ||
1203 | int index = mCalPopupMenu->insertItem( kkf->mName, kkf->mCalNumber); | ||
1204 | if ( kkf->mErrorOnLoad || kkf->isReadOnly || readO ) | ||
1205 | mCalPopupMenu->setItemEnabled( index, false ); | ||
1206 | mCalPopupMenu->setItemChecked (index, kkf->mCalNumber == mActiveItem->todo()->calID()); | ||
1207 | kkf = KOPrefs::instance()->mCalendars.next(); | ||
1208 | } | ||
1209 | } | ||
1210 | void KOTodoView::changedCal (int index ) | ||
1211 | { | ||
1212 | if (!mActiveItem) return; | ||
1213 | mActiveItem->todo()->setCalID( index ); | ||
1214 | mActiveItem->construct(); | ||
1186 | } | 1215 | } |
1187 | void KOTodoView::changedCategories(int index) | 1216 | void KOTodoView::changedCategories(int index) |
1188 | { | 1217 | { |
1189 | if (mActiveItem && !mActiveItem->todo()->isReadOnly ()) { | 1218 | if (mActiveItem && !mActiveItem->todo()->isReadOnly ()) { |
1190 | QStringList categories = mActiveItem->todo()->categories (); | 1219 | QStringList categories = mActiveItem->todo()->categories (); |
1191 | QString colcat = categories.first(); | 1220 | QString colcat = categories.first(); |
1192 | if (categories.find (mCategory[index]) != categories.end ()) | 1221 | if (categories.find (mCategory[index]) != categories.end ()) |
1193 | categories.remove (mCategory[index]); | 1222 | categories.remove (mCategory[index]); |
1194 | else | 1223 | else |
1195 | categories.insert (categories.end(), mCategory[index]); | 1224 | categories.insert (categories.end(), mCategory[index]); |
1196 | categories.sort (); | 1225 | categories.sort (); |
1197 | if ( !colcat.isEmpty() ) { | 1226 | if ( !colcat.isEmpty() ) { |
1198 | if ( categories.find ( colcat ) != categories.end () ) { | 1227 | if ( categories.find ( colcat ) != categories.end () ) { |
1199 | categories.remove( colcat ); | 1228 | categories.remove( colcat ); |
1200 | categories.prepend( colcat ); | 1229 | categories.prepend( colcat ); |
1201 | } | 1230 | } |
1202 | } | 1231 | } |
1203 | mActiveItem->todo()->setCategories (categories); | 1232 | mActiveItem->todo()->setCategories (categories); |
1204 | mActiveItem->construct(); | 1233 | mActiveItem->construct(); |
1205 | mActiveItem->todo()->setRevision( mActiveItem->todo()->revision()+1 ); | 1234 | mActiveItem->todo()->setRevision( mActiveItem->todo()->revision()+1 ); |
1206 | todoModified (mActiveItem->todo (), KOGlobals::CATEGORY_MODIFIED); | 1235 | todoModified (mActiveItem->todo (), KOGlobals::CATEGORY_MODIFIED); |
1207 | } | 1236 | } |
1208 | } | 1237 | } |
1209 | void KOTodoView::itemDoubleClicked(QListViewItem *item) | 1238 | void KOTodoView::itemDoubleClicked(QListViewItem *item) |
1210 | { | 1239 | { |
1211 | if ( pendingSubtodo != 0 ) { | 1240 | if ( pendingSubtodo != 0 ) { |
1212 | topLevelWidget()->setCaption(i18n("Reparenting aborted!")); | 1241 | topLevelWidget()->setCaption(i18n("Reparenting aborted!")); |
1213 | } | 1242 | } |
1214 | pendingSubtodo = 0; | 1243 | pendingSubtodo = 0; |
1215 | //int row = mTodoListView->header()->sectionAt ( mTodoListView->header()->mapFromGlobal( QCursor::pos()).x() ); | 1244 | //int row = mTodoListView->header()->sectionAt ( mTodoListView->header()->mapFromGlobal( QCursor::pos()).x() ); |
1216 | int row = mTodoListView->header()->sectionAt ( mTodoListView->viewportToContents(mTodoListView->viewport()->mapFromGlobal( QCursor::pos())) .x() ); | 1245 | int row = mTodoListView->header()->sectionAt ( mTodoListView->viewportToContents(mTodoListView->viewport()->mapFromGlobal( QCursor::pos())) .x() ); |
1217 | //qDebug("ROW %d ", row); | 1246 | //qDebug("ROW %d ", row); |
1218 | if (!item) { | 1247 | if (!item) { |
1219 | newTodo(); | 1248 | newTodo(); |
1220 | return; | 1249 | return; |
1221 | } else { | 1250 | } else { |
1222 | if ( row == 1 ) { | 1251 | if ( row == 1 ) { |
1223 | mActiveItem = (KOTodoViewItem *) item; | 1252 | mActiveItem = (KOTodoViewItem *) item; |
1224 | newSubTodo(); | 1253 | newSubTodo(); |
1225 | return; | 1254 | return; |
1226 | } | 1255 | } |
1227 | if ( row == 5 || row == 6 || row == 2) { | 1256 | if ( row == 5 || row == 6 || row == 2) { |
1228 | mActiveItem = (KOTodoViewItem *) item; | 1257 | mActiveItem = (KOTodoViewItem *) item; |
1229 | Todo * t = mActiveItem->todo(); | 1258 | Todo * t = mActiveItem->todo(); |
1230 | if ( t->isRunning() ) { | 1259 | if ( t->isRunning() ) { |
1231 | if ( t->runTime() < 15) { | 1260 | if ( t->runTime() < 15) { |
1232 | t->stopRunning(); | 1261 | t->stopRunning(); |
1233 | mActiveItem->construct(); | 1262 | mActiveItem->construct(); |
1234 | topLevelWidget()->setCaption(i18n("Todo stopped - no data saved because runtime was < 15 sec!")); | 1263 | topLevelWidget()->setCaption(i18n("Todo stopped - no data saved because runtime was < 15 sec!")); |
1235 | return; | 1264 | return; |
1236 | } | 1265 | } |
1237 | else | 1266 | else |
1238 | toggleRunningItem(); | 1267 | toggleRunningItem(); |
1239 | return; | 1268 | return; |
1240 | } else { | 1269 | } else { |
1241 | t->setRunning( true ); | 1270 | t->setRunning( true ); |
1242 | mActiveItem->construct(); | 1271 | mActiveItem->construct(); |
1243 | topLevelWidget()->setCaption(i18n("Todo started! Double click again to stop!")); | 1272 | topLevelWidget()->setCaption(i18n("Todo started! Double click again to stop!")); |
1244 | return; | 1273 | return; |
1245 | } | 1274 | } |
1246 | } | 1275 | } |
1247 | } | 1276 | } |
1248 | if ( KOPrefs::instance()->mEditOnDoubleClick ) | 1277 | if ( KOPrefs::instance()->mEditOnDoubleClick ) |
1249 | editItem( item ); | 1278 | editItem( item ); |
1250 | else | 1279 | else |
1251 | showItem( item , QPoint(), 0 ); | 1280 | showItem( item , QPoint(), 0 ); |
1252 | } | 1281 | } |
1253 | void KOTodoView::toggleRunningItem() | 1282 | void KOTodoView::toggleRunningItem() |
1254 | { | 1283 | { |
1255 | // qDebug("KOTodoView::toggleRunning() "); | 1284 | // qDebug("KOTodoView::toggleRunning() "); |
1256 | if ( ! mActiveItem ) | 1285 | if ( ! mActiveItem ) |
1257 | return; | 1286 | return; |
1258 | Todo * t = mActiveItem->todo(); | 1287 | Todo * t = mActiveItem->todo(); |
1259 | if ( t->isRunning() ) { | 1288 | if ( t->isRunning() ) { |
1260 | KOStopTodoPrefs tp ( t, this ); | 1289 | KOStopTodoPrefs tp ( t, this ); |
1261 | if (QApplication::desktop()->width() <= 800 ){ | 1290 | if (QApplication::desktop()->width() <= 800 ){ |
1262 | int wid = tp.width(); | 1291 | int wid = tp.width(); |
1263 | int hei = tp.height(); | 1292 | int hei = tp.height(); |
1264 | int xx = (QApplication::desktop()->width()-wid)/2; | 1293 | int xx = (QApplication::desktop()->width()-wid)/2; |
1265 | int yy = (QApplication::desktop()->height()-hei)/2; | 1294 | int yy = (QApplication::desktop()->height()-hei)/2; |
1266 | tp.setGeometry( xx,yy,wid,hei ); | 1295 | tp.setGeometry( xx,yy,wid,hei ); |
1267 | } | 1296 | } |
1268 | tp.exec(); | 1297 | tp.exec(); |
1269 | mActiveItem->construct(); | 1298 | mActiveItem->construct(); |
1270 | } else { | 1299 | } else { |
1271 | KOStartTodoPrefs tp ( t->summary(), this ); | 1300 | KOStartTodoPrefs tp ( t->summary(), this ); |
1272 | if (QApplication::desktop()->width() <= 800 ){ | 1301 | if (QApplication::desktop()->width() <= 800 ){ |
1273 | int wid = tp.width(); | 1302 | int wid = tp.width(); |
1274 | int hei = tp.height(); | 1303 | int hei = tp.height(); |
1275 | int xx = (QApplication::desktop()->width()-wid)/2; | 1304 | int xx = (QApplication::desktop()->width()-wid)/2; |
1276 | int yy = (QApplication::desktop()->height()-hei)/2; | 1305 | int yy = (QApplication::desktop()->height()-hei)/2; |
1277 | tp.setGeometry( xx,yy,wid,hei ); | 1306 | tp.setGeometry( xx,yy,wid,hei ); |
1278 | } | 1307 | } |
1279 | if ( !tp.exec() ) return; | 1308 | if ( !tp.exec() ) return; |
1280 | if ( tp.stopAll() ) { | 1309 | if ( tp.stopAll() ) { |
1281 | mCalendar->stopAllTodos(); | 1310 | mCalendar->stopAllTodos(); |
1282 | t->setRunning( true ); | 1311 | t->setRunning( true ); |
1283 | updateView(); | 1312 | updateView(); |
1284 | } else { | 1313 | } else { |
1285 | t->setRunning( true ); | 1314 | t->setRunning( true ); |
1286 | mActiveItem->construct(); | 1315 | mActiveItem->construct(); |
1287 | } | 1316 | } |
1288 | } | 1317 | } |
1289 | } | 1318 | } |
1290 | 1319 | ||
1291 | void KOTodoView::itemClicked(QListViewItem *item) | 1320 | void KOTodoView::itemClicked(QListViewItem *item) |
1292 | { | 1321 | { |
1293 | //qDebug("KOTodoView::itemClicked %d", item); | 1322 | //qDebug("KOTodoView::itemClicked %d", item); |
1294 | if (!item) { | 1323 | if (!item) { |
1295 | if ( pendingSubtodo != 0 ) { | 1324 | if ( pendingSubtodo != 0 ) { |
1296 | topLevelWidget()->setCaption(i18n("Reparenting aborted!")); | 1325 | topLevelWidget()->setCaption(i18n("Reparenting aborted!")); |
1297 | } | 1326 | } |
1298 | pendingSubtodo = 0; | 1327 | pendingSubtodo = 0; |
1299 | return; | 1328 | return; |
1300 | } | 1329 | } |
1301 | KOTodoViewItem *todoItem = (KOTodoViewItem *)item; | 1330 | KOTodoViewItem *todoItem = (KOTodoViewItem *)item; |
1302 | if ( pendingSubtodo != 0 ) { | 1331 | if ( pendingSubtodo != 0 ) { |
1303 | bool allowReparent = true; | 1332 | bool allowReparent = true; |
1304 | QListViewItem *par = item; | 1333 | QListViewItem *par = item; |
1305 | while ( par ) { | 1334 | while ( par ) { |
1306 | if ( par == pendingSubtodo ) { | 1335 | if ( par == pendingSubtodo ) { |
1307 | allowReparent = false; | 1336 | allowReparent = false; |
1308 | break; | 1337 | break; |
1309 | } | 1338 | } |
1310 | par = par->parent(); | 1339 | par = par->parent(); |
1311 | } | 1340 | } |
1312 | if ( !allowReparent ) { | 1341 | if ( !allowReparent ) { |
1313 | topLevelWidget()->setCaption(i18n("Recursive reparenting not possible!")); | 1342 | topLevelWidget()->setCaption(i18n("Recursive reparenting not possible!")); |
1314 | pendingSubtodo = 0; | 1343 | pendingSubtodo = 0; |
1315 | } else { | 1344 | } else { |
1316 | Todo* newParent = todoItem->todo(); | 1345 | Todo* newParent = todoItem->todo(); |
1317 | Todo* newSub = pendingSubtodo->todo(); | 1346 | Todo* newSub = pendingSubtodo->todo(); |
1318 | pendingSubtodo = 0; | 1347 | pendingSubtodo = 0; |
1319 | emit reparentTodoSignal( newParent,newSub ); | 1348 | emit reparentTodoSignal( newParent,newSub ); |
1320 | return; | 1349 | return; |
1321 | } | 1350 | } |
1322 | } | 1351 | } |
1323 | 1352 | ||
1324 | } | 1353 | } |
1325 | 1354 | ||
1326 | void KOTodoView::setDocumentId( const QString &id ) | 1355 | void KOTodoView::setDocumentId( const QString &id ) |
1327 | { | 1356 | { |
1328 | 1357 | ||
1329 | mDocPrefs->setDoc( id ); | 1358 | mDocPrefs->setDoc( id ); |
1330 | } | 1359 | } |
1331 | 1360 | ||
1332 | void KOTodoView::itemStateChanged( QListViewItem *item ) | 1361 | void KOTodoView::itemStateChanged( QListViewItem *item ) |
1333 | { | 1362 | { |
1334 | if (!item) return; | 1363 | if (!item) return; |
1335 | 1364 | ||
1336 | KOTodoViewItem *todoItem = (KOTodoViewItem *)item; | 1365 | KOTodoViewItem *todoItem = (KOTodoViewItem *)item; |
1337 | 1366 | ||
1338 | // kdDebug() << "KOTodoView::itemStateChanged(): " << todoItem->todo()->summary() << endl; | 1367 | // kdDebug() << "KOTodoView::itemStateChanged(): " << todoItem->todo()->summary() << endl; |
1339 | 1368 | ||
1340 | if( mDocPrefs ) mDocPrefs->writeEntry( todoItem->todo()->uid(), todoItem->isOpen() ); | 1369 | if( mDocPrefs ) mDocPrefs->writeEntry( todoItem->todo()->uid(), todoItem->isOpen() ); |
1341 | } | 1370 | } |
1342 | 1371 | ||
1343 | void KOTodoView::saveLayout(KConfig *config, const QString &group) const | 1372 | void KOTodoView::saveLayout(KConfig *config, const QString &group) const |
1344 | { | 1373 | { |
1345 | mTodoListView->saveLayout(config,group); | 1374 | mTodoListView->saveLayout(config,group); |
1346 | } | 1375 | } |
1347 | 1376 | ||
1348 | void KOTodoView::restoreLayout(KConfig *config, const QString &group) | 1377 | void KOTodoView::restoreLayout(KConfig *config, const QString &group) |
1349 | { | 1378 | { |
1350 | mTodoListView->restoreLayout(config,group); | 1379 | mTodoListView->restoreLayout(config,group); |
1351 | } | 1380 | } |
1352 | 1381 | ||
1353 | void KOTodoView::processSelectionChange() | 1382 | void KOTodoView::processSelectionChange() |
1354 | { | 1383 | { |
1355 | // kdDebug() << "KOTodoView::processSelectionChange()" << endl; | 1384 | // kdDebug() << "KOTodoView::processSelectionChange()" << endl; |
1356 | 1385 | ||
1357 | KOTodoViewItem *item = | 1386 | KOTodoViewItem *item = |
1358 | static_cast<KOTodoViewItem *>( mTodoListView->selectedItem() ); | 1387 | static_cast<KOTodoViewItem *>( mTodoListView->selectedItem() ); |
1359 | 1388 | ||
1360 | if ( !item ) { | 1389 | if ( !item ) { |
1361 | emit incidenceSelected( 0 ); | 1390 | emit incidenceSelected( 0 ); |
1362 | } else { | 1391 | } else { |
1363 | emit incidenceSelected( item->todo() ); | 1392 | emit incidenceSelected( item->todo() ); |
1364 | } | 1393 | } |
1365 | } | 1394 | } |
1366 | 1395 | ||
1367 | void KOTodoView::modified(bool b) | 1396 | void KOTodoView::modified(bool b) |
1368 | { | 1397 | { |
1369 | emit isModified(b); | 1398 | emit isModified(b); |
1370 | } | 1399 | } |
1371 | void KOTodoView::setTodoModified( Todo* todo ) | 1400 | void KOTodoView::setTodoModified( Todo* todo ) |
1372 | { | 1401 | { |
1373 | todoModified( todo, KOGlobals::UNKNOWN_MODIFIED ); | 1402 | todoModified( todo, KOGlobals::UNKNOWN_MODIFIED ); |
1374 | } | 1403 | } |
1375 | void KOTodoView::clearSelection() | 1404 | void KOTodoView::clearSelection() |
1376 | { | 1405 | { |
1377 | mTodoListView->selectAll( false ); | 1406 | mTodoListView->selectAll( false ); |
diff --git a/korganizer/kotodoview.h b/korganizer/kotodoview.h index 9ae7f53..79cc756 100644 --- a/korganizer/kotodoview.h +++ b/korganizer/kotodoview.h | |||
@@ -1,303 +1,305 @@ | |||
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 KOTODOVIEW_H | 23 | #ifndef KOTODOVIEW_H |
24 | #define KOTODOVIEW_H | 24 | #define KOTODOVIEW_H |
25 | 25 | ||
26 | #include <qfont.h> | 26 | #include <qfont.h> |
27 | #include <qfontmetrics.h> | 27 | #include <qfontmetrics.h> |
28 | #include <qlineedit.h> | 28 | #include <qlineedit.h> |
29 | #include <qptrlist.h> | 29 | #include <qptrlist.h> |
30 | #include <qstrlist.h> | 30 | #include <qstrlist.h> |
31 | #include <qlistbox.h> | 31 | #include <qlistbox.h> |
32 | #include <qpopupmenu.h> | 32 | #include <qpopupmenu.h> |
33 | #include <qlabel.h> | 33 | #include <qlabel.h> |
34 | #include <qmap.h> | 34 | #include <qmap.h> |
35 | #include <qdialog.h> | 35 | #include <qdialog.h> |
36 | #include <qlabel.h> | 36 | #include <qlabel.h> |
37 | #include <qlistview.h> | 37 | #include <qlistview.h> |
38 | #include <klistview.h> | 38 | #include <klistview.h> |
39 | 39 | ||
40 | #include <libkcal/calendar.h> | 40 | #include <libkcal/calendar.h> |
41 | #include <libkcal/todo.h> | 41 | #include <libkcal/todo.h> |
42 | 42 | ||
43 | #include <korganizer/baseview.h> | 43 | #include <korganizer/baseview.h> |
44 | 44 | ||
45 | #include "kotodoviewitem.h" | 45 | #include "kotodoviewitem.h" |
46 | #include "koprefs.h" | 46 | #include "koprefs.h" |
47 | #include "koglobals.h" | 47 | #include "koglobals.h" |
48 | #include "datenavigator.h" | 48 | #include "datenavigator.h" |
49 | 49 | ||
50 | class QDragEnterEvent; | 50 | class QDragEnterEvent; |
51 | class QDragMoveEvent; | 51 | class QDragMoveEvent; |
52 | class QDragLeaveEvent; | 52 | class QDragLeaveEvent; |
53 | class QDropEvent; | 53 | class QDropEvent; |
54 | class KOTodoViewWhatsThis; | 54 | class KOTodoViewWhatsThis; |
55 | class KDateEdit; | 55 | class KDateEdit; |
56 | class KOTimeEdit; | 56 | class KOTimeEdit; |
57 | 57 | ||
58 | class DocPrefs; | 58 | class DocPrefs; |
59 | 59 | ||
60 | 60 | ||
61 | class KOStopTodoPrefs : public QDialog | 61 | class KOStopTodoPrefs : public QDialog |
62 | { | 62 | { |
63 | Q_OBJECT | 63 | Q_OBJECT |
64 | public: | 64 | public: |
65 | KOStopTodoPrefs( Todo* todo, QWidget *parent=0, const char *name=0 ) ; | 65 | KOStopTodoPrefs( Todo* todo, QWidget *parent=0, const char *name=0 ) ; |
66 | 66 | ||
67 | 67 | ||
68 | private slots: | 68 | private slots: |
69 | void doNotSave(); | 69 | void doNotSave(); |
70 | void accept(); | 70 | void accept(); |
71 | private: | 71 | private: |
72 | Todo* mTodo; | 72 | Todo* mTodo; |
73 | QLineEdit* mComment; | 73 | QLineEdit* mComment; |
74 | KDateEdit *sde, *ede; | 74 | KDateEdit *sde, *ede; |
75 | KOTimeEdit *ste, *ete; | 75 | KOTimeEdit *ste, *ete; |
76 | 76 | ||
77 | }; | 77 | }; |
78 | 78 | ||
79 | class KOStartTodoPrefs : public QDialog | 79 | class KOStartTodoPrefs : public QDialog |
80 | { | 80 | { |
81 | Q_OBJECT | 81 | Q_OBJECT |
82 | public: | 82 | public: |
83 | KOStartTodoPrefs( QString sum, QWidget *parent=0, const char *name=0 ) ; | 83 | KOStartTodoPrefs( QString sum, QWidget *parent=0, const char *name=0 ) ; |
84 | 84 | ||
85 | bool stopAll() { return mStopAll; } | 85 | bool stopAll() { return mStopAll; } |
86 | private slots: | 86 | private slots: |
87 | void doStop(); | 87 | void doStop(); |
88 | private: | 88 | private: |
89 | bool mStopAll; | 89 | bool mStopAll; |
90 | 90 | ||
91 | }; | 91 | }; |
92 | 92 | ||
93 | class KOTodoListView : public KListView | 93 | class KOTodoListView : public KListView |
94 | { | 94 | { |
95 | Q_OBJECT | 95 | Q_OBJECT |
96 | public: | 96 | public: |
97 | KOTodoListView(Calendar *,QWidget *parent=0,const char *name=0); | 97 | KOTodoListView(Calendar *,QWidget *parent=0,const char *name=0); |
98 | virtual ~KOTodoListView() {} | 98 | virtual ~KOTodoListView() {} |
99 | 99 | ||
100 | signals: | 100 | signals: |
101 | void paintNeeded(); | 101 | void paintNeeded(); |
102 | void todoDropped(Todo *, int); | 102 | void todoDropped(Todo *, int); |
103 | void double_Clicked(QListViewItem *item); | 103 | void double_Clicked(QListViewItem *item); |
104 | void reparentTodoSignal( Todo *,Todo * ); | 104 | void reparentTodoSignal( Todo *,Todo * ); |
105 | void unparentTodoSignal(Todo *); | 105 | void unparentTodoSignal(Todo *); |
106 | void deleteTodo( Todo * ); | 106 | void deleteTodo( Todo * ); |
107 | protected: | 107 | protected: |
108 | void wheelEvent (QWheelEvent *e); | 108 | void wheelEvent (QWheelEvent *e); |
109 | void contentsDragEnterEvent(QDragEnterEvent *); | 109 | void contentsDragEnterEvent(QDragEnterEvent *); |
110 | void contentsDragMoveEvent(QDragMoveEvent *); | 110 | void contentsDragMoveEvent(QDragMoveEvent *); |
111 | void contentsDragLeaveEvent(QDragLeaveEvent *); | 111 | void contentsDragLeaveEvent(QDragLeaveEvent *); |
112 | void contentsDropEvent(QDropEvent *); | 112 | void contentsDropEvent(QDropEvent *); |
113 | 113 | ||
114 | void contentsMousePressEvent(QMouseEvent *); | 114 | void contentsMousePressEvent(QMouseEvent *); |
115 | void contentsMouseMoveEvent(QMouseEvent *); | 115 | void contentsMouseMoveEvent(QMouseEvent *); |
116 | void contentsMouseReleaseEvent(QMouseEvent *); | 116 | void contentsMouseReleaseEvent(QMouseEvent *); |
117 | void contentsMouseDoubleClickEvent(QMouseEvent *); | 117 | void contentsMouseDoubleClickEvent(QMouseEvent *); |
118 | 118 | ||
119 | private: | 119 | private: |
120 | void paintEvent(QPaintEvent * pevent); | 120 | void paintEvent(QPaintEvent * pevent); |
121 | bool internalDrop; | 121 | bool internalDrop; |
122 | QString mName; | 122 | QString mName; |
123 | Calendar *mCalendar; | 123 | Calendar *mCalendar; |
124 | QPoint mPressPos; | 124 | QPoint mPressPos; |
125 | bool mMousePressed; | 125 | bool mMousePressed; |
126 | QListViewItem *mOldCurrent; | 126 | QListViewItem *mOldCurrent; |
127 | bool mFlagKeyPressed; | 127 | bool mFlagKeyPressed; |
128 | void keyPressEvent ( QKeyEvent * ) ; | 128 | void keyPressEvent ( QKeyEvent * ) ; |
129 | void keyReleaseEvent ( QKeyEvent * ) ; | 129 | void keyReleaseEvent ( QKeyEvent * ) ; |
130 | }; | 130 | }; |
131 | 131 | ||
132 | 132 | ||
133 | /** | 133 | /** |
134 | This is the line-edit on top of the todoview for fast addition of new todos | 134 | This is the line-edit on top of the todoview for fast addition of new todos |
135 | */ | 135 | */ |
136 | class KOQuickTodo : public QLineEdit | 136 | class KOQuickTodo : public QLineEdit |
137 | { | 137 | { |
138 | public: | 138 | public: |
139 | KOQuickTodo(QWidget *parent=0); | 139 | KOQuickTodo(QWidget *parent=0); |
140 | protected: | 140 | protected: |
141 | void focusInEvent(QFocusEvent *ev); | 141 | void focusInEvent(QFocusEvent *ev); |
142 | void focusOutEvent(QFocusEvent *ev); | 142 | void focusOutEvent(QFocusEvent *ev); |
143 | }; | 143 | }; |
144 | 144 | ||
145 | 145 | ||
146 | /** | 146 | /** |
147 | This class provides a multi-column list view of todo events. | 147 | This class provides a multi-column list view of todo events. |
148 | 148 | ||
149 | @short multi-column list view of todo events. | 149 | @short multi-column list view of todo events. |
150 | @author Cornelius Schumacher <schumacher@kde.org> | 150 | @author Cornelius Schumacher <schumacher@kde.org> |
151 | */ | 151 | */ |
152 | class KOTodoView : public KOrg::BaseView | 152 | class KOTodoView : public KOrg::BaseView |
153 | { | 153 | { |
154 | Q_OBJECT | 154 | Q_OBJECT |
155 | public: | 155 | public: |
156 | KOTodoView(Calendar *, QWidget* parent=0, const char* name=0 ); | 156 | KOTodoView(Calendar *, QWidget* parent=0, const char* name=0 ); |
157 | ~KOTodoView(); | 157 | ~KOTodoView(); |
158 | 158 | ||
159 | QPtrList<Incidence> selectedIncidences(); | 159 | QPtrList<Incidence> selectedIncidences(); |
160 | QPtrList<Todo> selectedTodos(); | 160 | QPtrList<Todo> selectedTodos(); |
161 | 161 | ||
162 | DateList selectedDates() | 162 | DateList selectedDates() |
163 | {DateList q; | 163 | {DateList q; |
164 | return q;} | 164 | return q;} |
165 | 165 | ||
166 | /** Return number of shown dates. TodoView does not show dates, */ | 166 | /** Return number of shown dates. TodoView does not show dates, */ |
167 | int currentDateCount() { return 0; } | 167 | int currentDateCount() { return 0; } |
168 | 168 | ||
169 | void printPreview(CalPrinter *calPrinter, const QDate &fd, const QDate &td); | 169 | void printPreview(CalPrinter *calPrinter, const QDate &fd, const QDate &td); |
170 | 170 | ||
171 | void setDocumentId( const QString & ); | 171 | void setDocumentId( const QString & ); |
172 | 172 | ||
173 | void saveLayout(KConfig *config, const QString &group) const; | 173 | void saveLayout(KConfig *config, const QString &group) const; |
174 | void restoreLayout(KConfig *config, const QString &group); | 174 | void restoreLayout(KConfig *config, const QString &group); |
175 | /** Create a popup menu to set categories */ | ||
176 | QPopupMenu *getCategoryPopupMenu (KOTodoViewItem *todoItem); | ||
177 | void setNavigator( DateNavigator* nav ) {mNavigator = nav;} | 175 | void setNavigator( DateNavigator* nav ) {mNavigator = nav;} |
178 | QString getWhatsThisText(QPoint p); | 176 | QString getWhatsThisText(QPoint p); |
179 | void clearList() {mTodoListView->clear(); } | 177 | void clearList() {mTodoListView->clear(); } |
180 | 178 | ||
181 | public slots: | 179 | public slots: |
182 | void updateView(); | 180 | void updateView(); |
183 | void updateConfig(); | 181 | void updateConfig(); |
184 | 182 | ||
185 | void changeEventDisplay(Event *, int); | 183 | void changeEventDisplay(Event *, int); |
186 | 184 | ||
187 | void showDates(const QDate &start, const QDate &end); | 185 | void showDates(const QDate &start, const QDate &end); |
188 | void showEvents(QPtrList<Event> eventList); | 186 | void showEvents(QPtrList<Event> eventList); |
189 | 187 | ||
190 | void clearSelection(); | 188 | void clearSelection(); |
191 | void jumpToDate (); | 189 | void jumpToDate (); |
192 | 190 | ||
193 | void editItem(QListViewItem *item); | 191 | void editItem(QListViewItem *item); |
194 | void showItem(QListViewItem *item,const QPoint &,int); | 192 | void showItem(QListViewItem *item,const QPoint &,int); |
195 | void popupMenu(QListViewItem *item,const QPoint &,int); | 193 | void popupMenu(QListViewItem *item,const QPoint &,int); |
196 | void newTodo(); | 194 | void newTodo(); |
197 | void newSubTodo(); | 195 | void newSubTodo(); |
198 | void unparentTodo(); | 196 | void unparentTodo(); |
199 | void reparentTodo(); | 197 | void reparentTodo(); |
200 | void showTodo(); | 198 | void showTodo(); |
201 | void editTodo(); | 199 | void editTodo(); |
202 | void cloneTodo(); | 200 | void cloneTodo(); |
203 | void cancelTodo(); | 201 | void cancelTodo(); |
204 | void moveTodo(); | 202 | void moveTodo(); |
205 | void beamTodo(); | 203 | void beamTodo(); |
206 | void deleteTodo(); | 204 | void deleteTodo(); |
207 | 205 | ||
208 | void setNewPriority(int); | 206 | void setNewPriority(int); |
209 | void setNewPercentage(int); | 207 | void setNewPercentage(int); |
210 | void changedCategories(int); | 208 | void changedCategories(int); |
211 | 209 | ||
212 | void setAllOpen(); | 210 | void setAllOpen(); |
213 | void setAllClose(); | 211 | void setAllClose(); |
214 | void setAllFlat(); | 212 | void setAllFlat(); |
215 | void displayAllFlat(); | 213 | void displayAllFlat(); |
216 | 214 | ||
217 | void purgeCompleted(); | 215 | void purgeCompleted(); |
218 | void toggleCompleted(); | 216 | void toggleCompleted(); |
219 | void toggleRunning(); | 217 | void toggleRunning(); |
220 | void toggleQuickTodo(); | 218 | void toggleQuickTodo(); |
221 | void updateTodo( Todo *, int ); | 219 | void updateTodo( Todo *, int ); |
222 | 220 | ||
223 | void itemClicked(QListViewItem *); | 221 | void itemClicked(QListViewItem *); |
224 | void itemStateChanged(QListViewItem *); | 222 | void itemStateChanged(QListViewItem *); |
225 | void modified(bool); | 223 | void modified(bool); |
226 | void itemDoubleClicked(QListViewItem *item); | 224 | void itemDoubleClicked(QListViewItem *item); |
227 | void resetFocusToList(); | 225 | void resetFocusToList(); |
226 | void fillCategories (); | ||
227 | void fillCal (); | ||
228 | void changedCal (int); | ||
228 | 229 | ||
229 | signals: | 230 | signals: |
230 | void newTodoSignal(); | 231 | void newTodoSignal(); |
231 | void newSubTodoSignal(Todo *); | 232 | void newSubTodoSignal(Todo *); |
232 | void unparentTodoSignal(Todo *); | 233 | void unparentTodoSignal(Todo *); |
233 | void reparentTodoSignal( Todo *,Todo * ); | 234 | void reparentTodoSignal( Todo *,Todo * ); |
234 | void showTodoSignal(Todo *); | 235 | void showTodoSignal(Todo *); |
235 | 236 | ||
236 | void editTodoSignal(Todo *); | 237 | void editTodoSignal(Todo *); |
237 | void deleteTodoSignal(Todo *); | 238 | void deleteTodoSignal(Todo *); |
238 | void todoModifiedSignal (Todo *, int); | 239 | void todoModifiedSignal (Todo *, int); |
239 | 240 | ||
240 | void isModified(bool); | 241 | void isModified(bool); |
241 | void cloneTodoSignal( Incidence * ); | 242 | void cloneTodoSignal( Incidence * ); |
242 | void cancelTodoSignal( Incidence * ); | 243 | void cancelTodoSignal( Incidence * ); |
243 | void moveTodoSignal( Incidence * ); | 244 | void moveTodoSignal( Incidence * ); |
244 | void beamTodoSignal( Incidence * ); | 245 | void beamTodoSignal( Incidence * ); |
245 | void purgeCompletedSignal(); | 246 | void purgeCompletedSignal(); |
246 | 247 | ||
247 | protected slots: | 248 | protected slots: |
248 | void toggleRunningItem(); | 249 | void toggleRunningItem(); |
249 | void paintNeeded(); | 250 | void paintNeeded(); |
250 | void processSelectionChange(); | 251 | void processSelectionChange(); |
251 | void addQuickTodo(); | 252 | void addQuickTodo(); |
252 | void setTodoModified( Todo* ); | 253 | void setTodoModified( Todo* ); |
253 | void todoModified(Todo *, int ); | 254 | void todoModified(Todo *, int ); |
254 | 255 | ||
255 | private: | 256 | private: |
256 | /* | 257 | /* |
257 | * the TodoEditor approach is rather unscaling in the long | 258 | * the TodoEditor approach is rather unscaling in the long |
258 | * run. | 259 | * run. |
259 | * Korganizer keeps it in memory and we need to update | 260 | * Korganizer keeps it in memory and we need to update |
260 | * 1. make KOTodoViewItem a QObject again? | 261 | * 1. make KOTodoViewItem a QObject again? |
261 | * 2. add a public method for setting one todo modified? | 262 | * 2. add a public method for setting one todo modified? |
262 | * 3. add a private method for setting a todo modified + friend here? | 263 | * 3. add a private method for setting a todo modified + friend here? |
263 | * -- zecke 2002-07-08 | 264 | * -- zecke 2002-07-08 |
264 | */ | 265 | */ |
265 | KOTodoViewWhatsThis* mKOTodoViewWhatsThis; | 266 | KOTodoViewWhatsThis* mKOTodoViewWhatsThis; |
266 | friend class KOTodoListView; | 267 | friend class KOTodoListView; |
267 | void paintEvent(QPaintEvent * pevent); | 268 | void paintEvent(QPaintEvent * pevent); |
268 | bool mPendingUpdateBeforeRepaint; | 269 | bool mPendingUpdateBeforeRepaint; |
269 | friend class KOTodoViewItem; | 270 | friend class KOTodoViewItem; |
270 | QMap<Todo *,KOTodoViewItem *>::ConstIterator insertTodoItem(Todo *todo); | 271 | QMap<Todo *,KOTodoViewItem *>::ConstIterator insertTodoItem(Todo *todo); |
271 | void restoreItemState( QListViewItem * ); | 272 | void restoreItemState( QListViewItem * ); |
272 | 273 | ||
273 | bool checkTodo( Todo * ); | 274 | bool checkTodo( Todo * ); |
274 | bool isFlatDisplay; | 275 | bool isFlatDisplay; |
275 | void setOpen( QListViewItem*, bool setOpen); | 276 | void setOpen( QListViewItem*, bool setOpen); |
276 | KOTodoListView *mTodoListView; | 277 | KOTodoListView *mTodoListView; |
277 | QPopupMenu *mItemPopupMenu; | 278 | QPopupMenu *mItemPopupMenu; |
278 | QPopupMenu *mPopupMenu; | 279 | QPopupMenu *mPopupMenu; |
279 | QPopupMenu *mPriorityPopupMenu; | 280 | QPopupMenu *mPriorityPopupMenu; |
280 | QPopupMenu *mPercentageCompletedPopupMenu; | 281 | QPopupMenu *mPercentageCompletedPopupMenu; |
281 | QPopupMenu *mCategoryPopupMenu; | 282 | QPopupMenu *mCategoryPopupMenu; |
283 | QPopupMenu *mCalPopupMenu; | ||
282 | 284 | ||
283 | QMap<int, int> mPercentage; | 285 | QMap<int, int> mPercentage; |
284 | QMap<int, int> mPriority; | 286 | QMap<int, int> mPriority; |
285 | QMap<int, QString> mCategory; | 287 | QMap<int, QString> mCategory; |
286 | KOTodoViewItem *mActiveItem; | 288 | KOTodoViewItem *mActiveItem; |
287 | 289 | ||
288 | QMap<Todo *,KOTodoViewItem *> mTodoMap; | 290 | QMap<Todo *,KOTodoViewItem *> mTodoMap; |
289 | QString mName; | 291 | QString mName; |
290 | 292 | ||
291 | DocPrefs *mDocPrefs; | 293 | DocPrefs *mDocPrefs; |
292 | QString mCurrentDoc; | 294 | QString mCurrentDoc; |
293 | KOQuickTodo *mQuickAdd; | 295 | KOQuickTodo *mQuickAdd; |
294 | bool mBlockUpdate; | 296 | bool mBlockUpdate; |
295 | void keyPressEvent ( QKeyEvent * ) ; | 297 | void keyPressEvent ( QKeyEvent * ) ; |
296 | KOTodoViewItem * pendingSubtodo; | 298 | KOTodoViewItem * pendingSubtodo; |
297 | DateNavigator* mNavigator; | 299 | DateNavigator* mNavigator; |
298 | void storeCurrentItem(); | 300 | void storeCurrentItem(); |
299 | void resetCurrentItem(); | 301 | void resetCurrentItem(); |
300 | Incidence * mCurItem, *mCurItemRootParent, *mCurItemParent,*mCurItemAbove; | 302 | Incidence * mCurItem, *mCurItemRootParent, *mCurItemParent,*mCurItemAbove; |
301 | }; | 303 | }; |
302 | 304 | ||
303 | #endif | 305 | #endif |