File: Evolution-Wizard.idl

package info (click to toggle)
evolution 2.0.4-2sarge3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 86,600 kB
  • ctags: 29,239
  • sloc: ansic: 282,229; sh: 11,353; xml: 7,480; makefile: 3,293; perl: 1,591
file content (42 lines) | stat: -rw-r--r-- 694 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* -*- 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);
	};
};
};