2008-12-11 Alberto Garcia <agarcia@igalia.com>
[hildon] / src / hildon-wizard-dialog.h
1 /*
2  * This file is a part of hildon
3  *
4  * Copyright (C) 2005, 2006 Nokia Corporation, all rights reserved.
5  *
6  * Contact: Rodrigo Novo <rodrigo.novo@nokia.com>
7  *   Fixes: Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public License
11  * as published by the Free Software Foundation; version 2.1 of
12  * the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
22  * 02110-1301 USA
23  *
24  */
25  
26 #ifndef                                         __HILDON_WIZARD_DIALOG_H__
27 #define                                         __HILDON_WIZARD_DIALOG_H__
28
29 #include                                        <gtk/gtk.h>
30
31 G_BEGIN_DECLS
32
33 #define                                         HILDON_TYPE_WIZARD_DIALOG \
34                                                 (hildon_wizard_dialog_get_type())
35
36 #define                                         HILDON_WIZARD_DIALOG(obj) (GTK_CHECK_CAST ((obj), \
37                                                 HILDON_TYPE_WIZARD_DIALOG, HildonWizardDialog))
38
39 #define                                         HILDON_WIZARD_DIALOG_CLASS(klass) \
40                                                 (GTK_CHECK_CLASS_CAST ((klass), \
41                                                 HILDON_TYPE_WIZARD_DIALOG, HildonWizardDialogClass))
42
43 #define                                         HILDON_IS_WIZARD_DIALOG(obj) \
44                                                 (GTK_CHECK_TYPE ((obj), \
45                                                 HILDON_TYPE_WIZARD_DIALOG))
46
47 #define                                         HILDON_IS_WIZARD_DIALOG_CLASS(klass) \
48                                                 (GTK_CHECK_CLASS_TYPE ((klass), \
49                                                 HILDON_TYPE_WIZARD_DIALOG))
50
51 typedef struct                                  _HildonWizardDialog HildonWizardDialog;
52
53 typedef struct                                  _HildonWizardDialogClass HildonWizardDialogClass;
54
55 /* button response IDs */
56
57 typedef enum 
58 {
59   /* HILDON_WIZARD_DIALOG_CANCEL should be marked as deprecated */
60     HILDON_WIZARD_DIALOG_CANCEL = GTK_RESPONSE_CANCEL,
61     HILDON_WIZARD_DIALOG_PREVIOUS = 0,
62     HILDON_WIZARD_DIALOG_NEXT,
63     HILDON_WIZARD_DIALOG_FINISH
64 }                                               HildonWizardDialogResponse;
65
66 struct                                          _HildonWizardDialog 
67 {
68     GtkDialog parent;
69 };
70
71 struct                                          _HildonWizardDialogClass 
72 {
73     GtkDialogClass parent_class;
74 };
75
76 typedef gboolean (*HildonWizardDialogPageFunc) (GtkNotebook *notebook, gint current_page, gpointer data);
77
78 GType G_GNUC_CONST
79 hildon_wizard_dialog_get_type                   (void);
80
81 GtkWidget* 
82 hildon_wizard_dialog_new                        (GtkWindow *parent,
83                                                  const char *wizard_name,
84                                                  GtkNotebook *notebook);
85
86 void
87 hildon_wizard_dialog_set_forward_page_func      (HildonWizardDialog *wizard_dialog,
88                                                  HildonWizardDialogPageFunc page_func,
89                                                  gpointer data,
90                                                  GDestroyNotify destroy);
91
92 G_END_DECLS
93
94 #endif                                          /* __HILDON_WIZARD_DIALOG_H__ */
95