aboutsummaryrefslogtreecommitdiffstats
path: root/shell/Evolution-Shortcuts.idl
diff options
context:
space:
mode:
authornobody <nobody@localhost>2001-08-20 23:43:30 +0800
committernobody <nobody@localhost>2001-08-20 23:43:30 +0800
commit19150238dd9bc7dead6b789772d82653aea9c634 (patch)
treeec1f6913db147c635df98f914ab6b3a1711e0fac /shell/Evolution-Shortcuts.idl
parentdb79f8266e5055e6d5512016dfa518f71ce1a8cc (diff)
downloadgsoc2013-evolution-LIBGNOMEFILESEL_0_1.tar.gz
gsoc2013-evolution-LIBGNOMEFILESEL_0_1.tar.zst
gsoc2013-evolution-LIBGNOMEFILESEL_0_1.zip
This commit was manufactured by cvs2svn to create tagLIBGNOMEFILESEL_0_1
'LIBGNOMEFILESEL_0_1'. svn path=/tags/LIBGNOMEFILESEL_0_1/; revision=12305
Diffstat (limited to 'shell/Evolution-Shortcuts.idl')
-rw-r--r--shell/Evolution-Shortcuts.idl51
1 files changed, 0 insertions, 51 deletions
diff --git a/shell/Evolution-Shortcuts.idl b/shell/Evolution-Shortcuts.idl
deleted file mode 100644
index 7ffb55a164..0000000000
--- a/shell/Evolution-Shortcuts.idl
+++ /dev/null
@@ -1,51 +0,0 @@
-/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
-/*
- * Interface for the Evolution shortcuts.
- *
- * Authors:
- * Ettore Perazzoli <ettore@ximian.com>
- *
- * Copyright (C) 2001 Ximian, Inc.
- */
-
-#include <Bonobo.idl>
-
-module GNOME {
-module Evolution {
-
- interface Shortcuts : Bonobo::Unknown {
-
- struct Shortcut {
- string uri;
- string name;
- string type;
- };
- typedef sequence <Shortcut> ShortcutList;
-
- struct Group {
- string name;
- ShortcutList shortcuts;
- };
- typedef sequence<Group> GroupList;
-
- exception NotFound {};
-
- readonly attribute GroupList groups; // FIXME: Could be non-readonly
-
- void add (in short group_num, in short position, in Shortcut shortcut)
- raises (NotFound);
- void remove (in short group_num, in short item_num)
- raises (NotFound);
- Shortcut get (in short group_num, in short item_num)
- raises (NotFound);
-
- void addGroup (in short position, in string name);
- void removeGroup (in short group_num)
- raises (NotFound);
- Group getGroup (in short group_num)
- raises (NotFound);
-
- };
-
-};
-};