2007-06-25 Johannes Schmid <johannes.schmid@openismus.com>
[modest] / src / maemo / easysetup / modest-easysetup-wizard.h
1 /* Copyright (c) 2006, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #ifndef _MODEST_EAYSETUP_WIZARD_DIALOG
31 #define _MODEST_EAYSETUP_WIZARD_DIALOG
32
33 /* #include <hildon-widgets/hildon-wizard-dialog.h> */
34 #include "modest-wizard-dialog.h" /* We use a copied-and-improved HildonWizardDialog. */
35 #include "modest-account-mgr.h"
36 #include <config.h>
37
38 #ifdef HAVE_CONFIG_H
39 #include <config.h>
40 #endif
41
42 #ifdef MODEST_HAVE_HILDON0_WIDGETS
43 #include <hildon-widgets/hildon-caption.h>
44 #else
45 #include <hildon/hildon-caption.h>
46 #endif /*MODEST_HAVE_HILDON0_WIDGETS*/
47
48 G_BEGIN_DECLS
49
50 #define MODEST_TYPE_EASYSETUP_WIZARD_DIALOG modest_easysetup_wizard_dialog_get_type()
51
52 #define MODEST_EASYSETUP_WIZARD_DIALOG(obj) \
53         (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
54         MODEST_TYPE_EASYSETUP_WIZARD_DIALOG, ModestEasysetupWizardDialog))
55
56 #define MODEST_EASYSETUP_WIZARD_DIALOG_CLASS(klass) \
57         (G_TYPE_CHECK_CLASS_CAST ((klass), \
58         MODEST_TYPE_EASYSETUP_WIZARD_DIALOG, ModestEasysetupWizardDialogClass))
59
60 #define ACCOUNT_IS_WIZARD_DIALOG(obj) \
61         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
62         MODEST_TYPE_EASYSETUP_WIZARD_DIALOG))
63
64 #define MODEST_EASYSETUP_IS_WIZARD_DIALOG_CLASS(klass) \
65         (G_TYPE_CHECK_CLASS_TYPE ((klass), \
66         MODEST_TYPE_EASYSETUP_WIZARD_DIALOG))
67
68 #define MODEST_EASYSETUP_WIZARD_DIALOG_GET_CLASS(obj) \
69         (G_TYPE_INSTANCE_GET_CLASS ((obj), \
70         MODEST_TYPE_EASYSETUP_WIZARD_DIALOG, ModestEasysetupWizardDialogClass))
71
72 typedef struct {
73         ModestWizardDialog parent;
74         
75         /* Used by derived widgets to query existing accounts,
76          * and to create new accounts: */
77         ModestAccountMgr *account_manager;
78         
79         /* Whether we saved the account before we were finished, 
80          * to allow editing via the Advanced Settings dialog.
81          * We might need to delete the account if Finish is never clicked. */
82         gchar* saved_account_name;
83                 
84         /* notebook pages: */
85         GtkWidget *page_welcome;
86         
87         GtkWidget *page_account_details;
88         GtkWidget *combo_account_country;
89         GtkWidget *combo_account_serviceprovider;
90         GtkWidget *entry_account_title;
91         
92         GtkWidget *page_user_details;
93         GtkWidget *entry_user_name;
94         GtkWidget *entry_user_username;
95         GtkWidget *entry_user_password;
96         GtkWidget *entry_user_email;
97         
98         GtkWidget *page_complete_easysetup;
99         
100         GtkWidget *page_custom_incoming;
101         GtkWidget *combo_incoming_servertype;
102         GtkWidget *caption_incoming;
103         GtkWidget *entry_incomingserver;
104         GtkWidget *combo_incoming_security;
105         GtkWidget *checkbox_incoming_auth;
106
107         GtkWidget *page_custom_outgoing;
108         GtkWidget *entry_outgoingserver;
109         GtkWidget *combo_outgoing_security;
110         GtkWidget *combo_outgoing_auth;
111         GtkWidget *checkbox_outgoing_smtp_specific;
112         GtkWidget *button_outgoing_smtp_servers;
113         
114         GtkWidget *page_complete_customsetup;
115         GtkWidget *button_edit;
116         
117         GtkWidget *specific_window;
118         
119 } ModestEasysetupWizardDialog;
120
121 typedef struct {
122         ModestWizardDialogClass parent_class;
123         
124 } ModestEasysetupWizardDialogClass;
125
126 GType modest_easysetup_wizard_dialog_get_type (void);
127
128 ModestEasysetupWizardDialog* modest_easysetup_wizard_dialog_new (void);
129
130 G_END_DECLS
131
132 #endif /* _MODEST_EAYSETUP_WIZARD_DIALOG */