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_PRIVATE_H__
27
#define                                         __HILDON_WIZARD_DIALOG_PRIVATE_H__
28
29
G_BEGIN_DECLS
30
31
#define                                         HILDON_WIZARD_DIALOG_GET_PRIVATE(obj)\
32
                                                (G_TYPE_INSTANCE_GET_PRIVATE ((obj), \
33
                                                HILDON_TYPE_WIZARD_DIALOG, \
34
                                                HildonWizardDialogPrivate));
35
36
typedef struct                                  _HildonWizardDialogPrivate HildonWizardDialogPrivate;
37
38
struct                                          _HildonWizardDialogPrivate 
39
{
40
    gchar *wizard_name;
41
    GtkNotebook *notebook;
42
    gboolean autotitle;
43
44
    HildonWizardDialogPageFunc forward_function;
45
    gpointer forward_function_data;
46
    GDestroyNotify forward_data_destroy;
47
};
48
49
G_END_DECLS
50
51
#endif                                          /* __HILDON_WIZARD_DIALOG_PRIVATE_H__ */