/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* * Storage interface for the Evolution shell. * * Authors: * Ettore Perazzoli * * Copyright (C) 2000 Helix Code, Inc. */ #include module Evolution { struct Folder { string type; string description; string display_name; string physical_uri; }; interface Storage; interface StorageListener; interface Storage : Bonobo::Unknown { exception AlreadyListening {}; exception NotFound {}; attribute string name; void add_listener (in StorageListener listener) raises (AlreadyListening); void remove_listener (in StorageListener listener) raises (NotFound); }; interface StorageListener { exception Exists {}; exception NotFound {}; void destroyed (); /* FIXME exceptions don't make much sense here... */ void new_folder (in string path, in Folder folder) raises (Exists); void removed_folder (in string path) raises (NotFound); }; interface StorageRegistry : Bonobo::Unknown { exception Exists {}; exception NotFound {}; StorageListener register_storage (in Storage storage, in string name) raises (Exists); void unregister_storage (in string name) raises (NotFound); }; }; en' name='id' value='a12128508122f62ae193948ef93b7c8bf0d207f0'/> FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome)
aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Decommissioning java 1.5 (EOLed since October 2009):bapt2012-12-101-6/+2
* Update to 0.9.1 official release.ale2011-11-173-5/+35
* Remove more tags from pkg-descr files fo the form:dougb2011-10-24