]> git.0d.be Git - empathy.git/blob - src/empathy-account-assistant.h
Merge branch 'debug-window'
[empathy.git] / src / empathy-account-assistant.h
1 /*
2  * Copyright (C) 2009 Collabora Ltd.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  *
18  * Authors: Cosimo Cecchi <cosimo.cecchi@collabora.co.uk>
19  */
20
21 /* empathy-account-assistant.h */
22
23 #ifndef __EMPATHY_ACCOUNT_ASSISTANT_H__
24 #define __EMPATHY_ACCOUNT_ASSISTANT_H__
25
26 #include <glib-object.h>
27 #include <gtk/gtk.h>
28
29 G_BEGIN_DECLS
30
31 #define EMPATHY_TYPE_ACCOUNT_ASSISTANT empathy_account_assistant_get_type()
32 #define EMPATHY_ACCOUNT_ASSISTANT(obj) \
33   (G_TYPE_CHECK_INSTANCE_CAST ((obj), EMPATHY_TYPE_ACCOUNT_ASSISTANT,\
34       EmpathyAccountAssistant))
35 #define EMPATHY_ACCOUNT_ASSISTANT_CLASS(klass) \
36   (G_TYPE_CHECK_CLASS_CAST ((klass), EMPATHY_TYPE_ACCOUNT_ASSISTANT,\
37       EmpathyAccountAssistantClass))
38 #define EMPATHY_IS_ACCOUNT_ASSISTANT(obj) \
39   (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EMPATHY_TYPE_ACCOUNT_ASSISTANT))
40 #define EMPATHY_IS_ACCOUNT_ASSISTANT_CLASS(klass) \
41   (G_TYPE_CHECK_CLASS_TYPE ((klass), EMPATHY_TYPE_ACCOUNT_ASSISTANT))
42 #define EMPATHY_ACCOUNT_ASSISTANT_GET_CLASS(obj) \
43   (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_ACCOUNT_ASSISTANT,\
44       EmpathyAccountAssistantClass))
45
46 typedef struct {
47   GtkAssistant parent;
48
49   /* private */
50   gpointer priv;
51 } EmpathyAccountAssistant;
52
53 typedef struct {
54   GtkAssistantClass parent_class;
55 } EmpathyAccountAssistantClass;
56
57 GType empathy_account_assistant_get_type (void);
58
59 GtkWidget *empathy_account_assistant_new (GtkWindow *parent);
60
61 G_END_DECLS
62
63 #endif /* __EMPATHY_ACCOUNT_ASSISTANT_H__ */