sogo/UI/Scheduler/Toolbars/SOGoAppointmentFolder.toolbar
Wolfgang Sourdeau d46b7352db Monotone-Parent: 89f7acd5b2ca8bc8da9b0cb8fcf35fe89259d61c
Monotone-Revision: 553e03d19134ad3b614013a454242bf2cc14df0b

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-02-13T22:02:52
Monotone-Branch: ca.inverse.sogo
2007-02-13 22:02:52 +00:00

41 lines
1.3 KiB
Perl

( /* the toolbar groups -*-cperl-*- */
( { link = "#";
isSafe = NO;
label = "New Event";
onclick = "return newEvent(this, 'event');";
image = "new-event.png"; },
{ link = "new_task";
label="New Task";
image = "new-task.png";
onclick = "return newEvent(this, 'task');";
image = "new-task.png"; },
{ link = "edit";
label="Edit";
onclick = "return editEvent(this);";
image = "edit.png"; },
{ link = "delete";
label="Delete";
onclick = "return deleteEvent(this);";
image = "delete.png"; } ),
( { link = "today";
label="Go to Today";
onclick = "return gotoToday();";
image = "goto-today.png" } ),
( { link = "dayoverview";
label="Day View";
onclick = "return onDayOverview();";
image = "day-view.png"; },
{ link = "dayoverview";
label="Multicolumn Day View";
onclick = "return onMulticolumnDayOverview();";
image = "day-view-multicolumn.png"; },
{ link = "weekoverview";
label="Week View";
onclick = "return onWeekOverview();";
image = "week-view.png"; },
{ link = "monthoverview";
label="Month View";
onclick = "return onMonthOverview();";
image = "month-view.png"; } )
)