aboutsummaryrefslogtreecommitdiffstats
path: root/shell/Evolution-Wizard.idl
diff options
context:
space:
mode:
authornobody <nobody@localhost>2003-12-09 09:57:09 +0800
committernobody <nobody@localhost>2003-12-09 09:57:09 +0800
commit4ef7d31cb740e45d402fa986aea2449fc1e1ed02 (patch)
tree75bb0caf9afd4b94842023406d6a7938c5d8b2b7 /shell/Evolution-Wizard.idl
parent0031a7166cd0f3fc0cec0b60c468ca22a8c45b0b (diff)
downloadgsoc2013-evolution-4ef7d31cb740e45d402fa986aea2449fc1e1ed02.tar.gz
gsoc2013-evolution-4ef7d31cb740e45d402fa986aea2449fc1e1ed02.tar.zst
gsoc2013-evolution-4ef7d31cb740e45d402fa986aea2449fc1e1ed02.zip
This commit was manufactured by cvs2svn to create tagLIBGLADE_2_4_0
'LIBGLADE_2_4_0'. svn path=/tags/LIBGLADE_2_4_0/; revision=23842
Diffstat (limited to 'shell/Evolution-Wizard.idl')
-rw-r--r--shell/Evolution-Wizard.idl42
1 files changed, 0 insertions, 42 deletions
diff --git a/shell/Evolution-Wizard.idl b/shell/Evolution-Wizard.idl
deleted file mode 100644
index 145774f70b..0000000000
--- a/shell/Evolution-Wizard.idl
+++ /dev/null
@@ -1,42 +0,0 @@
-/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
-/*
- * Interface for a wizard done through Bonobo.
- *
- * Authors:
- * Iain Holmes <iain@ximian.com>
- *
- * Copyright (C) 2000, 2001 Ximian, Inc.
- */
-
-#include <Bonobo.idl>
-
-module GNOME {
-module Evolution {
-
- interface Wizard : Bonobo::Unknown {
-
- struct Page {
- string title;
- Icon icon;
- Bonobo::Control control;
- };
- typedef sequence<Page> PageList;
-
- readonly attribute PageList pages;
-
- enum Action {
- NEXT,
- PREPARE,
- BACK,
- FINISH,
- CANCEL,
- HELP
- };
-
- exception NoPage {};
-
- void notifyAction (in long pagenumber, in Action action)
- raises (NoPage);
- };
-};
-};