-rw-r--r-- | korganizer/calendarview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/korganizer/calendarview.cpp b/korganizer/calendarview.cpp index 2ba8528..e31a6e1 100644 --- a/korganizer/calendarview.cpp +++ b/korganizer/calendarview.cpp | |||
@@ -3919,194 +3919,194 @@ void CalendarView::appointment_show() | |||
3919 | Event *anEvent = 0; | 3919 | Event *anEvent = 0; |
3920 | 3920 | ||
3921 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); | 3921 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); |
3922 | 3922 | ||
3923 | if (mViewManager->currentView()->isEventView()) { | 3923 | if (mViewManager->currentView()->isEventView()) { |
3924 | if ( incidence && incidence->typeID() == eventID ) { | 3924 | if ( incidence && incidence->typeID() == eventID ) { |
3925 | anEvent = static_cast<Event *>(incidence); | 3925 | anEvent = static_cast<Event *>(incidence); |
3926 | } | 3926 | } |
3927 | } | 3927 | } |
3928 | 3928 | ||
3929 | if (!anEvent) { | 3929 | if (!anEvent) { |
3930 | KNotifyClient::beep(); | 3930 | KNotifyClient::beep(); |
3931 | return; | 3931 | return; |
3932 | } | 3932 | } |
3933 | 3933 | ||
3934 | showEvent(anEvent); | 3934 | showEvent(anEvent); |
3935 | } | 3935 | } |
3936 | 3936 | ||
3937 | void CalendarView::appointment_edit() | 3937 | void CalendarView::appointment_edit() |
3938 | { | 3938 | { |
3939 | Event *anEvent = 0; | 3939 | Event *anEvent = 0; |
3940 | 3940 | ||
3941 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); | 3941 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); |
3942 | 3942 | ||
3943 | if (mViewManager->currentView()->isEventView()) { | 3943 | if (mViewManager->currentView()->isEventView()) { |
3944 | if ( incidence && incidence->typeID() == eventID ) { | 3944 | if ( incidence && incidence->typeID() == eventID ) { |
3945 | anEvent = static_cast<Event *>(incidence); | 3945 | anEvent = static_cast<Event *>(incidence); |
3946 | } | 3946 | } |
3947 | } | 3947 | } |
3948 | 3948 | ||
3949 | if (!anEvent) { | 3949 | if (!anEvent) { |
3950 | KNotifyClient::beep(); | 3950 | KNotifyClient::beep(); |
3951 | return; | 3951 | return; |
3952 | } | 3952 | } |
3953 | 3953 | ||
3954 | editEvent(anEvent); | 3954 | editEvent(anEvent); |
3955 | } | 3955 | } |
3956 | 3956 | ||
3957 | void CalendarView::appointment_delete() | 3957 | void CalendarView::appointment_delete() |
3958 | { | 3958 | { |
3959 | Event *anEvent = 0; | 3959 | Event *anEvent = 0; |
3960 | 3960 | ||
3961 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); | 3961 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); |
3962 | 3962 | ||
3963 | if (mViewManager->currentView()->isEventView()) { | 3963 | if (mViewManager->currentView()->isEventView()) { |
3964 | if ( incidence && incidence->typeID() == eventID ) { | 3964 | if ( incidence && incidence->typeID() == eventID ) { |
3965 | anEvent = static_cast<Event *>(incidence); | 3965 | anEvent = static_cast<Event *>(incidence); |
3966 | } | 3966 | } |
3967 | } | 3967 | } |
3968 | 3968 | ||
3969 | if (!anEvent) { | 3969 | if (!anEvent) { |
3970 | KNotifyClient::beep(); | 3970 | KNotifyClient::beep(); |
3971 | return; | 3971 | return; |
3972 | } | 3972 | } |
3973 | 3973 | ||
3974 | deleteEvent(anEvent); | 3974 | deleteEvent(anEvent); |
3975 | } | 3975 | } |
3976 | 3976 | ||
3977 | void CalendarView::todo_resub( Todo * parent, Todo * sub ) | 3977 | void CalendarView::todo_resub( Todo * parent, Todo * sub ) |
3978 | { | 3978 | { |
3979 | if (!sub) return; | 3979 | if (!sub) return; |
3980 | if ( sub->relatedTo() == parent ) | 3980 | if ( sub->relatedTo() == parent ) |
3981 | return; | 3981 | return; |
3982 | sub->setRelatedTo(parent); | 3982 | sub->setRelatedTo(parent); |
3983 | sub->updated(); | 3983 | sub->updated(); |
3984 | setModified(true); | 3984 | setModified(true); |
3985 | updateView(); | 3985 | updateView(); |
3986 | } | 3986 | } |
3987 | void CalendarView::todo_unsub(Todo *anTodo ) | 3987 | void CalendarView::todo_unsub(Todo *anTodo ) |
3988 | { | 3988 | { |
3989 | todo_resub( 0, anTodo ); | 3989 | todo_resub( 0, anTodo ); |
3990 | } | 3990 | } |
3991 | 3991 | ||
3992 | void CalendarView::deleteTodo(Todo *todo) | 3992 | void CalendarView::deleteTodo(Todo *todo) |
3993 | { | 3993 | { |
3994 | if (!todo) { | 3994 | if (!todo) { |
3995 | KNotifyClient::beep(); | 3995 | KNotifyClient::beep(); |
3996 | return; | 3996 | return; |
3997 | } | 3997 | } |
3998 | if (KOPrefs::instance()->mConfirm) { | 3998 | if (KOPrefs::instance()->mConfirm) { |
3999 | QString text = KGlobal::formatMessage ( todo->summary(),0 ); | 3999 | QString text = KGlobal::formatMessage ( todo->summary(),0 ); |
4000 | if (!todo->relations().isEmpty()) { | 4000 | if (!todo->relations().isEmpty()) { |
4001 | text += i18n("\nhas sub-todos.\nAll completed sub-todos\nwill be deleted as well!"); | 4001 | text += i18n("\nhas sub-todos.\nAll completed sub-todos\nwill be deleted as well!"); |
4002 | 4002 | ||
4003 | } | 4003 | } |
4004 | switch (msgItemDelete(i18n("Todo:") +"\n"+text)) { | 4004 | switch (msgItemDelete(i18n("Todo:") +"\n"+text)) { |
4005 | case KMessageBox::Continue: // OK | 4005 | case KMessageBox::Continue: // OK |
4006 | bool deleteT = false; | 4006 | bool deleteT = false; |
4007 | if (!todo->relations().isEmpty()) { | 4007 | if (!todo->relations().isEmpty()) { |
4008 | deleteT = removeCompletedSubTodos( todo ); | 4008 | deleteT = removeCompletedSubTodos( todo ); |
4009 | } | 4009 | } |
4010 | // deleteT == true: todo already deleted in removeCompletedSubTodos | 4010 | // deleteT == true: todo already deleted in removeCompletedSubTodos |
4011 | if ( !deleteT ) { | 4011 | if ( !deleteT ) { |
4012 | checkExternalId( todo ); | 4012 | checkExternalId( todo ); |
4013 | calendar()->deleteTodo(todo); | 4013 | calendar()->deleteTodo(todo); |
4014 | changeTodoDisplay( todo,KOGlobals::EVENTDELETED ); | 4014 | changeTodoDisplay( todo,KOGlobals::EVENTDELETED ); |
4015 | updateView(); | ||
4016 | } | 4015 | } |
4016 | updateView(); | ||
4017 | break; | 4017 | break; |
4018 | } // switch | 4018 | } // switch |
4019 | } else { | 4019 | } else { |
4020 | checkExternalId( todo ); | 4020 | checkExternalId( todo ); |
4021 | mCalendar->deleteTodo(todo); | 4021 | mCalendar->deleteTodo(todo); |
4022 | changeTodoDisplay( todo,KOGlobals::EVENTDELETED ); | 4022 | changeTodoDisplay( todo,KOGlobals::EVENTDELETED ); |
4023 | updateView(); | 4023 | updateView(); |
4024 | } | 4024 | } |
4025 | 4025 | ||
4026 | emit updateSearchDialog(); | 4026 | emit updateSearchDialog(); |
4027 | } | 4027 | } |
4028 | void CalendarView::deleteJournal(Journal *jour) | 4028 | void CalendarView::deleteJournal(Journal *jour) |
4029 | { | 4029 | { |
4030 | if (!jour) { | 4030 | if (!jour) { |
4031 | KNotifyClient::beep(); | 4031 | KNotifyClient::beep(); |
4032 | return; | 4032 | return; |
4033 | } | 4033 | } |
4034 | if (KOPrefs::instance()->mConfirm) { | 4034 | if (KOPrefs::instance()->mConfirm) { |
4035 | 4035 | ||
4036 | QString des; | 4036 | QString des; |
4037 | if ( !jour->summary().isEmpty() ) { | 4037 | if ( !jour->summary().isEmpty() ) { |
4038 | des = jour->summary(); | 4038 | des = jour->summary(); |
4039 | } else { | 4039 | } else { |
4040 | des = jour->description().left(30); | 4040 | des = jour->description().left(30); |
4041 | des = des.simplifyWhiteSpace (); | 4041 | des = des.simplifyWhiteSpace (); |
4042 | des.replace (QRegExp ("\\n"),"" ); | 4042 | des.replace (QRegExp ("\\n"),"" ); |
4043 | des.replace (QRegExp ("\\r"),"" ); | 4043 | des.replace (QRegExp ("\\r"),"" ); |
4044 | } | 4044 | } |
4045 | switch (msgItemDelete( i18n("Journal:") +"\n"+KGlobal::formatMessage ( des,0 ))) { | 4045 | switch (msgItemDelete( i18n("Journal:") +"\n"+KGlobal::formatMessage ( des,0 ))) { |
4046 | case KMessageBox::Continue: // OK | 4046 | case KMessageBox::Continue: // OK |
4047 | calendar()->deleteJournal(jour); | 4047 | calendar()->deleteJournal(jour); |
4048 | updateView(); | 4048 | updateView(); |
4049 | break; | 4049 | break; |
4050 | } // switch | 4050 | } // switch |
4051 | } else { | 4051 | } else { |
4052 | calendar()->deleteJournal(jour);; | 4052 | calendar()->deleteJournal(jour);; |
4053 | updateView(); | 4053 | updateView(); |
4054 | } | 4054 | } |
4055 | emit updateSearchDialog(); | 4055 | emit updateSearchDialog(); |
4056 | } | 4056 | } |
4057 | 4057 | ||
4058 | void CalendarView::deleteEvent(Event *anEvent) | 4058 | void CalendarView::deleteEvent(Event *anEvent) |
4059 | { | 4059 | { |
4060 | if (!anEvent) { | 4060 | if (!anEvent) { |
4061 | KNotifyClient::beep(); | 4061 | KNotifyClient::beep(); |
4062 | return; | 4062 | return; |
4063 | } | 4063 | } |
4064 | 4064 | ||
4065 | if (anEvent->doesRecur()) { | 4065 | if (anEvent->doesRecur()) { |
4066 | QDate itemDate = mViewManager->currentSelectionDate(); | 4066 | QDate itemDate = mViewManager->currentSelectionDate(); |
4067 | int km; | 4067 | int km; |
4068 | if (!itemDate.isValid()) { | 4068 | if (!itemDate.isValid()) { |
4069 | //kdDebug() << "Date Not Valid" << endl; | 4069 | //kdDebug() << "Date Not Valid" << endl; |
4070 | if (KOPrefs::instance()->mConfirm) { | 4070 | if (KOPrefs::instance()->mConfirm) { |
4071 | km = KMessageBox::warningContinueCancel(this,KGlobal::formatMessage ( anEvent->summary(),0 ) + | 4071 | km = KMessageBox::warningContinueCancel(this,KGlobal::formatMessage ( anEvent->summary(),0 ) + |
4072 | i18n("\nThis event recurs\nover multiple dates.\nAre you sure you want\nto delete this event\nand all its recurrences?"), | 4072 | i18n("\nThis event recurs\nover multiple dates.\nAre you sure you want\nto delete this event\nand all its recurrences?"), |
4073 | i18n("KO/Pi Confirmation"),i18n("Delete All")); | 4073 | i18n("KO/Pi Confirmation"),i18n("Delete All")); |
4074 | if ( km == KMessageBox::Continue ) | 4074 | if ( km == KMessageBox::Continue ) |
4075 | km = KMessageBox::No; // No = all below | 4075 | km = KMessageBox::No; // No = all below |
4076 | } else | 4076 | } else |
4077 | km = KMessageBox::No; | 4077 | km = KMessageBox::No; |
4078 | } else { | 4078 | } else { |
4079 | km = KMessageBox::warningYesNoCancel(this,KGlobal::formatMessage ( anEvent->summary(),0 ) + | 4079 | km = KMessageBox::warningYesNoCancel(this,KGlobal::formatMessage ( anEvent->summary(),0 ) + |
4080 | i18n("\nThis event recurs\nover multiple dates.\nDo you want to delete\nall it's recurrences,\nor only the current one on:\n")+ | 4080 | i18n("\nThis event recurs\nover multiple dates.\nDo you want to delete\nall it's recurrences,\nor only the current one on:\n")+ |
4081 | KGlobal::locale()->formatDate(itemDate)+i18n(" ?\n\nDelete:\n"), | 4081 | KGlobal::locale()->formatDate(itemDate)+i18n(" ?\n\nDelete:\n"), |
4082 | i18n("KO/Pi Confirmation"),i18n("Current"), | 4082 | i18n("KO/Pi Confirmation"),i18n("Current"), |
4083 | i18n("All")); | 4083 | i18n("All")); |
4084 | } | 4084 | } |
4085 | switch(km) { | 4085 | switch(km) { |
4086 | 4086 | ||
4087 | case KMessageBox::No: // Continue // all | 4087 | case KMessageBox::No: // Continue // all |
4088 | //qDebug("KMessageBox::No "); | 4088 | //qDebug("KMessageBox::No "); |
4089 | if (anEvent->organizer()==KOPrefs::instance()->email() && anEvent->attendeeCount()>0) | 4089 | if (anEvent->organizer()==KOPrefs::instance()->email() && anEvent->attendeeCount()>0) |
4090 | schedule(Scheduler::Cancel,anEvent); | 4090 | schedule(Scheduler::Cancel,anEvent); |
4091 | 4091 | ||
4092 | checkExternalId( anEvent); | 4092 | checkExternalId( anEvent); |
4093 | mCalendar->deleteEvent(anEvent); | 4093 | mCalendar->deleteEvent(anEvent); |
4094 | changeEventDisplay(anEvent,KOGlobals::EVENTDELETED); | 4094 | changeEventDisplay(anEvent,KOGlobals::EVENTDELETED); |
4095 | break; | 4095 | break; |
4096 | 4096 | ||
4097 | // Disabled because it does not work | 4097 | // Disabled because it does not work |
4098 | //#if 0 | 4098 | //#if 0 |
4099 | case KMessageBox::Yes: // just this one | 4099 | case KMessageBox::Yes: // just this one |
4100 | //QDate qd = mNavigator->selectedDates().first(); | 4100 | //QDate qd = mNavigator->selectedDates().first(); |
4101 | //if (!qd.isValid()) { | 4101 | //if (!qd.isValid()) { |
4102 | // kdDebug() << "no date selected, or invalid date" << endl; | 4102 | // kdDebug() << "no date selected, or invalid date" << endl; |
4103 | // KNotifyClient::beep(); | 4103 | // KNotifyClient::beep(); |
4104 | // return; | 4104 | // return; |
4105 | //} | 4105 | //} |
4106 | //while (!anEvent->recursOn(qd)) qd = qd.addDays(1); | 4106 | //while (!anEvent->recursOn(qd)) qd = qd.addDays(1); |
4107 | if (itemDate!=QDate(1,1,1) || itemDate.isValid()) { | 4107 | if (itemDate!=QDate(1,1,1) || itemDate.isValid()) { |
4108 | anEvent->addExDate(itemDate); | 4108 | anEvent->addExDate(itemDate); |
4109 | int duration = anEvent->recurrence()->duration(); | 4109 | int duration = anEvent->recurrence()->duration(); |
4110 | if ( duration > 0 ) { | 4110 | if ( duration > 0 ) { |
4111 | anEvent->recurrence()->setDuration( duration - 1 ); | 4111 | anEvent->recurrence()->setDuration( duration - 1 ); |
4112 | } | 4112 | } |