diff options
author | nobody <nobody@localhost> | 2003-12-09 09:57:09 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2003-12-09 09:57:09 +0800 |
commit | 4ef7d31cb740e45d402fa986aea2449fc1e1ed02 (patch) | |
tree | 75bb0caf9afd4b94842023406d6a7938c5d8b2b7 /calendar/idl | |
parent | 0031a7166cd0f3fc0cec0b60c468ca22a8c45b0b (diff) | |
download | gsoc2013-evolution-LIBGLADE_2_4_0.tar.gz gsoc2013-evolution-LIBGLADE_2_4_0.tar.zst gsoc2013-evolution-LIBGLADE_2_4_0.zip |
This commit was manufactured by cvs2svn to create tagLIBGLADE_2_4_0
'LIBGLADE_2_4_0'.
svn path=/tags/LIBGLADE_2_4_0/; revision=23842
Diffstat (limited to 'calendar/idl')
-rw-r--r-- | calendar/idl/.cvsignore | 2 | ||||
-rw-r--r-- | calendar/idl/Makefile.am | 5 | ||||
-rw-r--r-- | calendar/idl/evolution-calendar.idl | 48 |
3 files changed, 0 insertions, 55 deletions
diff --git a/calendar/idl/.cvsignore b/calendar/idl/.cvsignore deleted file mode 100644 index b840c21800..0000000000 --- a/calendar/idl/.cvsignore +++ /dev/null @@ -1,2 +0,0 @@ -Makefile.in -Makefile
\ No newline at end of file diff --git a/calendar/idl/Makefile.am b/calendar/idl/Makefile.am deleted file mode 100644 index dd866141fc..0000000000 --- a/calendar/idl/Makefile.am +++ /dev/null @@ -1,5 +0,0 @@ -idl_DATA = \ - evolution-calendar.idl - -EXTRA_DIST = \ - $(idl_DATA) diff --git a/calendar/idl/evolution-calendar.idl b/calendar/idl/evolution-calendar.idl deleted file mode 100644 index 66f4eb8939..0000000000 --- a/calendar/idl/evolution-calendar.idl +++ /dev/null @@ -1,48 +0,0 @@ -/* Evolution calendar interface - * - * Copyright (C) 2000 Eskil Heyn Olsen - * Copyright (C) 2000 Ximian, Inc. - * Copyright (C) 2000 Ximian, Inc. - * - * Authors: Eskil Heyn Olsen <deity@eskil.dk> - * Federico Mena-Quintero <federico@ximian.com> - */ - -#ifndef _EVOLUTION_CALENDAR_IDL_ -#define _EVOLUTION_CALENDAR_IDL_ - -#include <Bonobo.idl> - -module GNOME { -module Evolution { - -module Calendar { - /* A unique identifier for a calendar component */ - typedef string CalObjUID; - - /* Factory to centralize calendar component editor dialogs */ - interface CompEditorFactory : Bonobo::Unknown { - exception InvalidURI {}; - exception BackendContactError {}; - exception UnsupportedType {}; - - typedef long CompEditorMode; - const CompEditorMode EDITOR_MODE_EVENT = 1 << 0; - 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) - raises (InvalidURI, BackendContactError); - - /* Loads a calendar and creates a new component of the specified type */ - void editNew (in string uri, in CompEditorMode mode) - raises (InvalidURI, BackendContactError, UnsupportedType); - }; -}; - -}; -}; - -#endif |