]> git.0d.be Git - empathy.git/blob - src/empathy-import-widget.h
add an header bar to the main window
[empathy.git] / src / empathy-import-widget.h
1 /*
2  * Copyright (C) 2008-2009 Collabora Ltd.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program 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  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public
15  * License along with this program; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17  * Boston, MA  02110-1301  USA
18  *
19  * Authors: Jonny Lamb <jonny.lamb@collabora.co.uk>
20  *          Cosimo Cecchi <cosimo.cecchi@collabora.co.uk>
21  */
22
23 /* empathy-import-widget.h */
24
25 #ifndef __EMPATHY_IMPORT_WIDGET_H__
26 #define __EMPATHY_IMPORT_WIDGET_H__
27
28 #include <gtk/gtk.h>
29 #include <tp-account-widgets/tpaw-connection-managers.h>
30
31 #include "empathy-import-utils.h"
32
33 G_BEGIN_DECLS
34
35 #define EMPATHY_TYPE_IMPORT_WIDGET empathy_import_widget_get_type()
36 #define EMPATHY_IMPORT_WIDGET(obj) \
37   (G_TYPE_CHECK_INSTANCE_CAST ((obj), EMPATHY_TYPE_IMPORT_WIDGET,\
38       EmpathyImportWidget))
39 #define EMPATHY_IMPORT_WIDGET_CLASS(klass) \
40   (G_TYPE_CHECK_CLASS_CAST ((klass), EMPATHY_TYPE_IMPORT_WIDGET,\
41       EmpathyImportWidgetClass))
42 #define EMPATHY_IS_IMPORT_WIDGET(obj) \
43   (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EMPATHY_TYPE_IMPORT_WIDGET))
44 #define EMPATHY_IS_IMPORT_WIDGET_CLASS(klass) \
45   (G_TYPE_CHECK_CLASS_TYPE ((klass), EMPATHY_TYPE_IMPORT_WIDGET))
46 #define EMPATHY_IMPORT_WIDGET_GET_CLASS(obj) \
47   (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_IMPORT_WIDGET,\
48       EmpathyImportWidgetClass))
49
50 typedef struct {
51   GObject parent;
52
53   /* private */
54   gpointer priv;
55 } EmpathyImportWidget;
56
57 typedef struct {
58   GObjectClass parent_class;
59 } EmpathyImportWidgetClass;
60
61 GType empathy_import_widget_get_type (void);
62
63 EmpathyImportWidget* empathy_import_widget_new (EmpathyImportApplication id,
64     TpawConnectionManagers *cms);
65
66 GtkWidget * empathy_import_widget_get_widget (EmpathyImportWidget *self);
67
68 void empathy_import_widget_add_selected_accounts (EmpathyImportWidget *self);
69
70 G_END_DECLS
71
72 #endif /* __EMPATHY_IMPORT_WIDGET_H__ */