* add some new windows to the gtk2 backend. very experimental
[modest] / src / gtk2 / modest-account-wizard.h
1 /* modest-account-wizard.h */
2 /* insert (c)/licensing information) */
3
4 #ifndef __MODEST_ACCOUNT_WIZARD_H__
5 #define __MODEST_ACCOUNT_WIZARD_H__
6
7 #include <gtk/gtk.h>
8 #include <glib/gi18n.h>
9
10 G_BEGIN_DECLS
11
12 /* convenience macros */
13 #define MODEST_TYPE_ACCOUNT_WIZARD             (modest_account_wizard_get_type())
14 #define MODEST_ACCOUNT_WIZARD(obj)             (G_TYPE_CHECK_INSTANCE_CAST((obj),MODEST_TYPE_ACCOUNT_WIZARD,ModestAccountWizard))
15 #define MODEST_ACCOUNT_WIZARD_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST((klass),MODEST_TYPE_ACCOUNT_WIZARD,GtkAssistant))
16 #define MODEST_IS_ACCOUNT_WIZARD(obj)          (G_TYPE_CHECK_INSTANCE_TYPE((obj),MODEST_TYPE_ACCOUNT_WIZARD))
17 #define MODEST_IS_ACCOUNT_WIZARD_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE((klass),MODEST_TYPE_ACCOUNT_WIZARD))
18 #define MODEST_ACCOUNT_WIZARD_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS((obj),MODEST_TYPE_ACCOUNT_WIZARD,ModestAccountWizardClass))
19
20 typedef struct _ModestAccountWizard      ModestAccountWizard;
21 typedef struct _ModestAccountWizardClass ModestAccountWizardClass;
22
23 struct _ModestAccountWizard {
24          GtkAssistant parent;
25         /* insert public members, if any */
26 };
27
28 struct _ModestAccountWizardClass {
29         GtkAssistantClass parent_class;
30         /* insert signal callback declarations, eg. */
31         /* void (* my_event) (ModestAccountWizard* obj); */
32 };
33
34 /* member functions */
35 GType        modest_account_wizard_get_type    (void) G_GNUC_CONST;
36
37 /* typical parameter-less _new function */
38 /* if this is a kind of GtkWidget, it should probably return at GtkWidget* */
39 GtkWidget*   modest_account_wizard_new         (void);
40
41 /* fill in other public functions, eg.: */
42 /*      void       modest_account_wizard_do_something (ModestAccountWizard *self, const gchar* param); */
43 /*      gboolean   modest_account_wizard_has_foo      (ModestAccountWizard *self, gint value); */
44
45
46 G_END_DECLS
47
48 #endif /* __MODEST_ACCOUNT_WIZARD_H__ */
49