aboutsummaryrefslogtreecommitdiffstats
path: root/shell/Evolution-StorageSetView.idl
diff options
context:
space:
mode:
authornobody <nobody@localhost>2000-11-07 05:40:14 +0800
committernobody <nobody@localhost>2000-11-07 05:40:14 +0800
commit7ff5a358e591e3babf755052f6ea2ef5d849e6a2 (patch)
tree786145ed8b82796d89e41d2ed37058c0097ace13 /shell/Evolution-StorageSetView.idl
parentb4c61eba8055f666fd8a2270879a6f9722faa2b3 (diff)
downloadgsoc2013-evolution-BEFORE_UI_REFACTOR.tar
gsoc2013-evolution-BEFORE_UI_REFACTOR.tar.gz
gsoc2013-evolution-BEFORE_UI_REFACTOR.tar.bz2
gsoc2013-evolution-BEFORE_UI_REFACTOR.tar.lz
gsoc2013-evolution-BEFORE_UI_REFACTOR.tar.xz
gsoc2013-evolution-BEFORE_UI_REFACTOR.tar.zst
gsoc2013-evolution-BEFORE_UI_REFACTOR.zip
This commit was manufactured by cvs2svn to create tagBEFORE_UI_REFACTOR
'BEFORE_UI_REFACTOR'. svn path=/tags/BEFORE_UI_REFACTOR/; revision=6432
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);
- };
-};