aboutsummaryrefslogtreecommitdiffstats
path: root/shell/Evolution-StorageSetView.idl
diff options
context:
space:
mode:
Diffstat (limited to 'shell/Evolution-StorageSetView.idl')
-rw-r--r--shell/Evolution-StorageSetView.idl31
1 files changed, 0 insertions, 31 deletions
diff --git a/shell/Evolution-StorageSetView.idl b/shell/Evolution-StorageSetView.idl
deleted file mode 100644
index 3d95b075be..0000000000
--- a/shell/Evolution-StorageSetView.idl
+++ /dev/null
@@ -1,31 +0,0 @@
-/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
-/*
- * Interface for the Evolution's StorageSetView control.
- *
- * Authors:
- * Ettore Perazzoli <ettore@helixcode.com>
- *
- * Copyright (C) 2000 Helix Code, Inc.
- */
-
-#include <Bonoob.idl>
-
-module Evolution {
- interface StorageSetViewListener {
- void folder_selected (in string uri);
- void storage_selected (in string uri);
- };
-
- /* FIXME: Maybe we should have a generic Bonobo::Listener interface. */
- interface StorageSetView : Bonobo::Unknown {
- exception AlreadyListening {};
- exception NotFound {};
-
- attribute boolean show_folders;
-
- void add_listener (in StorageSetViewListener listener)
- raises (AlreadyListening);
- void remove_listener (in StorageSetViewListener listener)
- raises (NotFound);
- };
-};