diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-08-24 13:04:13 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-08-24 13:04:13 +0800 |
commit | 46666a5e1f30ea835a062712e524f2ffe3e48ece (patch) | |
tree | e49bfe73b48fdcc0bcb764e6bcce1cc2b77e515b | |
parent | a7d51125891ff732d853f0462d89c1e052f454df (diff) | |
download | gsoc2013-evolution-46666a5e1f30ea835a062712e524f2ffe3e48ece.tar gsoc2013-evolution-46666a5e1f30ea835a062712e524f2ffe3e48ece.tar.gz gsoc2013-evolution-46666a5e1f30ea835a062712e524f2ffe3e48ece.tar.bz2 gsoc2013-evolution-46666a5e1f30ea835a062712e524f2ffe3e48ece.tar.lz gsoc2013-evolution-46666a5e1f30ea835a062712e524f2ffe3e48ece.tar.xz gsoc2013-evolution-46666a5e1f30ea835a062712e524f2ffe3e48ece.tar.zst gsoc2013-evolution-46666a5e1f30ea835a062712e524f2ffe3e48ece.zip |
Remove unused file.
svn path=/trunk/; revision=5000
-rw-r--r-- | shell/idl/folder.idl | 87 |
1 files changed, 0 insertions, 87 deletions
diff --git a/shell/idl/folder.idl b/shell/idl/folder.idl deleted file mode 100644 index 4a9850a468..0000000000 --- a/shell/idl/folder.idl +++ /dev/null @@ -1,87 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -/* - * folder.idl - * Copyright (C) 2000 Helix Code, Inc. - * Author: Christopher James Lahey <clahey@helixcode.com> - * - * Based on original from Matt Loper. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation; either version 2 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -module Evolution { - - interface FolderListener { - - enum CallStatus { - Success, - RepositoryOffline, - PermissionDenied, - WrongFolderType, - WrongFolderDomain, - FolderNotFound - }; - - void folder_listener_ready (in CallStatus status, - in Folder folder); - - void respond_add_subfolder (in CallStatus status, - in Folder folder); - void respond_move_subfolder (in CallStatus status); - void respond_delete_subfolder (in CallStatus status); - - /* This signals that some piece of data has changed. - The name or icon has changed. */ - void signal_name_changed(in Folder folder); - void signal_icon_changed(in Folder folder); - - /* This says a child/children has been added. */ - void signal_subfolder_added(in FolderList folders); - /* This says a child has been removed. */ - void signal_subfolder_removed(in Folder folder); - }; - - interface Folder { - void set_listener (in FolderListener listener); - - /* - * get a bonobo control for this view; a client won't - * use the goad_id gathered in the above function, b/c - * only the wombat knows how to do that, by surfing - * the physical evolution directory structure - */ - Bonobo::control get_control(); - - /* - * You must know what interface to query_interface() - * for once you get a data source! - */ - Bonobo::Unknown get_data_source(); - - char *get_name(); - char *get_icon(); - - void add_subfolder (in string data_source_id, - in string control_id, - in string viewable_name); - void move_subfolder (in Folder subfolder); - void delete_subfolder (in Folder subfolder); - }; - - interface Wombat { - void get_root_folder(FolderListener listener); - }; -}; |