diff options
author | nobody <nobody@localhost> | 2002-03-10 23:35:38 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2002-03-10 23:35:38 +0800 |
commit | e06178d6876873dc1dcba02f9307c905408bfcc8 (patch) | |
tree | 112fdd1c1308eff2630d6e381ed55bb0b4ee3071 /shell/Evolution-Shortcuts.idl | |
parent | 0bdf8fdb5529e6cda86403085c1f6870796404d3 (diff) | |
download | gsoc2013-evolution-e06178d6876873dc1dcba02f9307c905408bfcc8.tar.gz gsoc2013-evolution-e06178d6876873dc1dcba02f9307c905408bfcc8.tar.zst gsoc2013-evolution-e06178d6876873dc1dcba02f9307c905408bfcc8.zip |
This commit was manufactured by cvs2svn to create tagGEDIT_1_115_0
'GEDIT_1_115_0'.
svn path=/tags/GEDIT_1_115_0/; revision=16028
Diffstat (limited to 'shell/Evolution-Shortcuts.idl')
-rw-r--r-- | shell/Evolution-Shortcuts.idl | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/shell/Evolution-Shortcuts.idl b/shell/Evolution-Shortcuts.idl deleted file mode 100644 index ffd3a9cf21..0000000000 --- a/shell/Evolution-Shortcuts.idl +++ /dev/null @@ -1,54 +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 {}; - exception InvalidPosition {}; - exception CannotRemove {}; - - 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) - raises (InvalidPosition); - void removeGroup (in short group_num) - raises (NotFound, CannotRemove); - Group getGroup (in short group_num) - raises (NotFound); - - }; - -}; -}; |