Files
evolution/shell/Evolution-Wizard.idl
Iain Holmes 4e60b7d947 Startup assistant stuff
svn path=/trunk/; revision=12145
2001-08-17 04:29:11 +00:00

38 lines
628 B
Plaintext

/* -*- 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 {
readonly attribute long pageCount;
enum Action {
NEXT,
PREPARE,
BACK,
FINISH,
CANCEL,
HELP
};
exception NoPage {};
Bonobo::Control getControl (in long pagenumber)
raises (NoPage);
void notifyAction (in long pagenumber, in Action action)
raises (NoPage);
};
};
};