From 8506eafd689ff265372469355bf5bd21894932a1 Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Tue, 7 Nov 2006 18:14:50 +0000 Subject: [PATCH] Monotone-Parent: 259559c21caed39aa6ab914f31e8244a63e1f96a Monotone-Revision: 269cd0a16b31c221370fdeb7c63b2eb4e0684419 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-11-07T18:14:50 Monotone-Branch: ca.inverse.sogo --- UI/Scheduler/GNUmakefile | 5 ++++- .../Toolbars/SOGoAppointmentObjectAccept.toolbar | 7 +++++++ .../SOGoAppointmentObjectAcceptOrDecline.toolbar | 12 ++++++++++++ .../Toolbars/SOGoAppointmentObjectDecline.toolbar | 7 +++++++ 4 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 UI/Scheduler/Toolbars/SOGoAppointmentObjectAccept.toolbar create mode 100644 UI/Scheduler/Toolbars/SOGoAppointmentObjectAcceptOrDecline.toolbar create mode 100644 UI/Scheduler/Toolbars/SOGoAppointmentObjectDecline.toolbar 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"; } ) +)