From 4e60b7d947fc081958acc7b4e17dfdf4e62ec08b Mon Sep 17 00:00:00 2001 From: Iain Holmes Date: Fri, 17 Aug 2001 04:29:11 +0000 Subject: Startup assistant stuff svn path=/trunk/; revision=12145 --- shell/evolution-wizard.h | 86 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 shell/evolution-wizard.h (limited to 'shell/evolution-wizard.h') diff --git a/shell/evolution-wizard.h b/shell/evolution-wizard.h new file mode 100644 index 0000000000..617d7bb3a5 --- /dev/null +++ b/shell/evolution-wizard.h @@ -0,0 +1,86 @@ +/* + * evolution-wizard.h + * + * Copyright (C) 2001 Ximian, Inc. + * + * Authors: Iain Holmes + */ + +#ifndef __EVOLUTION_WIZARD_H__ +#define __EVOLUTION_WIZARD_H__ + +#include +#include + +#include + +BEGIN_GNOME_DECLS + +typedef struct _EvolutionWizard EvolutionWizard; +typedef struct _EvolutionWizardPrivate EvolutionWizardPrivate; + +#define EVOLUTION_WIZARD_SET_PAGE "GNOME::Evolution::Wizard_setPage" +#define EVOLUTION_WIZARD_SET_SHOW_FINISH "GNOME::Evolution::Wizard_setShowFinish" +#define EVOLUTION_WIZARD_SET_BUTTONS_SENSITIVE "GNOME::Evolution::Wizard_setButtonsSensitive" + +#define EVOLUTION_WIZARD_TYPE (evolution_wizard_get_type ()) +#define EVOLUTION_WIZARD(o) (GTK_CHECK_CAST ((o), EVOLUTION_WIZARD_TYPE, EvolutionWizard)) +#define EVOLUTION_WIZARD_CLASS(k) (GTK_CHECK_CLASS_CAST((k), EVOLUTION_WIZARD_TYPE, EvolutionWizardClass)) +#define IS_EVOLUTION_WIZARD(o) (GTK_CHECK_TYPE ((o), EVOLUTION_WIZARD_TYPE)) +#define IS_EVOLUTION_WIZARD_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), EVOLUTION_WIZARD_TYPE)) + +typedef BonoboControl *(* EvolutionWizardGetControlFn) (EvolutionWizard *wizard, + int page_number, + void *closure); + +struct _EvolutionWizard { + BonoboXObject object; + + EvolutionWizardPrivate *priv; +}; + +typedef struct { + BonoboXObjectClass parent_class; + + POA_GNOME_Evolution_Wizard__epv epv; + + void (* next) (EvolutionWizard *wizard, int page_number); + void (* prepare) (EvolutionWizard *wizard, int page_number); + void (* back) (EvolutionWizard *wizard, int page_number); + void (* finish) (EvolutionWizard *wizard, int page_number); + void (* cancel) (EvolutionWizard *wizard, int page_number); + void (* help) (EvolutionWizard *wizard, int page_number); +} EvolutionWizardClass; + +GtkType evolution_wizard_get_type (void); + +EvolutionWizard *evolution_wizard_construct (EvolutionWizard *wizard, + BonoboEventSource *event_source, + EvolutionWizardGetControlFn get_fn, + int num_pages, + void *closure); +EvolutionWizard *evolution_wizard_new_full (EvolutionWizardGetControlFn get_fn, + int num_pages, + BonoboEventSource *event_source, + void *closure); +EvolutionWizard *evolution_wizard_new (EvolutionWizardGetControlFn get_fn, + int num_pages, + void *closure); + +void evolution_wizard_set_buttons_sensitive (EvolutionWizard *wizard, + gboolean back_sensitive, + gboolean next_sensitive, + gboolean cancel_sensitive, + CORBA_Environment *opt_ev); +void evolution_wizard_set_show_finish (EvolutionWizard *wizard, + gboolean show_finish, + CORBA_Environment *opt_ev); +void evolution_wizard_set_page (EvolutionWizard *wizard, + int page_number, + CORBA_Environment *opt_ev); + +BonoboEventSource * evolution_wizard_get_event_source (EvolutionWizard *wizard); + +END_GNOME_DECLS + +#endif /* __EVOLUTION_WIZARD_H__ */ -- cgit v1.2.3