Fix broken markup in Finnish user docs translation
[empathy-mirror.git] / src / empathy-import-widget.h
blob221fa14393b05e1d2957a357389bfd31db49853d
1 /*
2 * Copyright (C) 2008-2009 Collabora Ltd.
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.
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.
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
19 * Authors: Jonny Lamb <jonny.lamb@collabora.co.uk>
20 * Cosimo Cecchi <cosimo.cecchi@collabora.co.uk>
23 /* empathy-import-widget.h */
25 #ifndef __EMPATHY_IMPORT_WIDGET_H__
26 #define __EMPATHY_IMPORT_WIDGET_H__
28 #include <gtk/gtk.h>
29 #include <tp-account-widgets/tpaw-connection-managers.h>
31 #include "empathy-import-utils.h"
33 G_BEGIN_DECLS
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))
50 typedef struct {
51 GObject parent;
53 /* private */
54 gpointer priv;
55 } EmpathyImportWidget;
57 typedef struct {
58 GObjectClass parent_class;
59 } EmpathyImportWidgetClass;
61 GType empathy_import_widget_get_type (void);
63 EmpathyImportWidget* empathy_import_widget_new (EmpathyImportApplication id,
64 TpawConnectionManagers *cms);
66 GtkWidget * empathy_import_widget_get_widget (EmpathyImportWidget *self);
68 void empathy_import_widget_add_selected_accounts (EmpathyImportWidget *self);
70 G_END_DECLS
72 #endif /* __EMPATHY_IMPORT_WIDGET_H__ */