aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/idl/evolution-calendar.idl
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2002-03-15 03:08:20 +0800
committerJP Rosevear <jpr@src.gnome.org>2002-03-15 03:08:20 +0800
commitf3a444674878385818f5fb13f5e65bae9a50eca3 (patch)
tree7024fcd4242427caf0e98f9db26d100dc3e0c879 /calendar/idl/evolution-calendar.idl
parentb7fc0ec31acaead06c9d9889ef65af0c35ed7693 (diff)
downloadgsoc2013-evolution-f3a444674878385818f5fb13f5e65bae9a50eca3.tar
gsoc2013-evolution-f3a444674878385818f5fb13f5e65bae9a50eca3.tar.gz
gsoc2013-evolution-f3a444674878385818f5fb13f5e65bae9a50eca3.tar.bz2
gsoc2013-evolution-f3a444674878385818f5fb13f5e65bae9a50eca3.tar.lz
gsoc2013-evolution-f3a444674878385818f5fb13f5e65bae9a50eca3.tar.xz
gsoc2013-evolution-f3a444674878385818f5fb13f5e65bae9a50eca3.tar.zst
gsoc2013-evolution-f3a444674878385818f5fb13f5e65bae9a50eca3.zip
add all day event editor mode
2002-03-14 JP Rosevear <jpr@ximian.com> * idl/evolution-calendar.idl: add all day event editor mode * gui/component-factory.c: clean up exception handling (sc_user_create_new_item_cb): support the all day event id (create_object): add a user creatable all day appointment item * gui/comp-editor-factory.c (get_default_event): get a default event either all day or starting at the top of the hour (get_default_task): get a default task (edit_new): support the all day event mode * gui/calendar-commands.c: remove unused functions/verbs svn path=/trunk/; revision=16157
Diffstat (limited to 'calendar/idl/evolution-calendar.idl')
-rw-r--r--calendar/idl/evolution-calendar.idl5
1 files changed, 3 insertions, 2 deletions
diff --git a/calendar/idl/evolution-calendar.idl b/calendar/idl/evolution-calendar.idl
index f38bc9b47a..7ad011aecf 100644
--- a/calendar/idl/evolution-calendar.idl
+++ b/calendar/idl/evolution-calendar.idl
@@ -330,8 +330,9 @@ module Calendar {
typedef long CompEditorMode;
const CompEditorMode EDITOR_MODE_EVENT = 1 << 0;
- const CompEditorMode EDITOR_MODE_MEETING = 1 << 1;
- const CompEditorMode EDITOR_MODE_TODO = 1 << 2;
+ const CompEditorMode EDITOR_MODE_ALLDAY_EVENT = 1 << 1;
+ const CompEditorMode EDITOR_MODE_MEETING = 1 << 2;
+ const CompEditorMode EDITOR_MODE_TODO = 1 << 3;
/* Loads a calendar and opens an editor for the specified object */
void editExisting (in string uri, in CalObjUID uid)