diff --git a/UI/Scheduler/GNUmakefile b/UI/Scheduler/GNUmakefile index 12279b984..36018de1d 100644 --- a/UI/Scheduler/GNUmakefile +++ b/UI/Scheduler/GNUmakefile @@ -63,7 +63,10 @@ SchedulerUI_RESOURCE_FILES += \ SchedulerUI_RESOURCE_FILES += \ Toolbars/SOGoAppointmentFolder.toolbar \ - Toolbars/SOGoAppointmentObject.toolbar + Toolbars/SOGoAppointmentObject.toolbar \ + Toolbars/SOGoAppointmentObjectAccept.toolbar \ + Toolbars/SOGoAppointmentObjectDecline.toolbar \ + Toolbars/SOGoAppointmentObjectAcceptOrDecline.toolbar SchedulerUI_LOCALIZED_RESOURCE_FILES += \ Localizable.strings \ diff --git a/UI/Scheduler/Toolbars/SOGoAppointmentObjectAccept.toolbar b/UI/Scheduler/Toolbars/SOGoAppointmentObjectAccept.toolbar new file mode 100644 index 000000000..e3913afc1 --- /dev/null +++ b/UI/Scheduler/Toolbars/SOGoAppointmentObjectAccept.toolbar @@ -0,0 +1,7 @@ +( /* the toolbar groups -*-cperl-*- */ + ( { link = "#"; + isSafe = NO; + label = "accept"; + onclick = "return modifyEvent(this, 'accept');"; + image = "tb-ab-properties-flat-24x24.png"; } ) +) diff --git a/UI/Scheduler/Toolbars/SOGoAppointmentObjectAcceptOrDecline.toolbar b/UI/Scheduler/Toolbars/SOGoAppointmentObjectAcceptOrDecline.toolbar new file mode 100644 index 000000000..bb967d8ea --- /dev/null +++ b/UI/Scheduler/Toolbars/SOGoAppointmentObjectAcceptOrDecline.toolbar @@ -0,0 +1,12 @@ +( /* the toolbar groups -*-cperl-*- */ + ( { link = "#"; + isSafe = NO; + label = "accept"; + onclick = "return modifyEvent(this, 'accept');"; + image = "tb-ab-properties-flat-24x24.png"; }, + { link = "#"; + isSafe = NO; + label = "decline"; + onclick = "return modifyEvent(this, 'decline');"; + image = "tb-mail-stop-flat-24x24.png"; } ) +) diff --git a/UI/Scheduler/Toolbars/SOGoAppointmentObjectDecline.toolbar b/UI/Scheduler/Toolbars/SOGoAppointmentObjectDecline.toolbar new file mode 100644 index 000000000..347b8f8cf --- /dev/null +++ b/UI/Scheduler/Toolbars/SOGoAppointmentObjectDecline.toolbar @@ -0,0 +1,7 @@ +( /* the toolbar groups -*-cperl-*- */ + ( { link = "#"; + isSafe = NO; + label = "decline"; + onclick = "return modifyEvent(this, 'decline');"; + image = "tb-mail-stop-flat-24x24.png"; } ) +)