]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-account-widget.h
add myself to AUTHORS
[empathy.git] / libempathy-gtk / empathy-account-widget.h
1 /*
2  * Copyright (C) 2006-2007 Imendio AB
3  * Copyright (C) 2007-2008 Collabora Ltd.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * License along with this program; if not, write to the
17  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
18  * Boston, MA  02110-1301  USA
19  *
20  * Authors: Xavier Claessens <xclaesse@gmail.com>
21  *          Martyn Russell <martyn@imendio.com>
22  */
23
24 #ifndef __EMPATHY_ACCOUNT_WIDGET_H__
25 #define __EMPATHY_ACCOUNT_WIDGET_H__
26
27 #include <gtk/gtk.h>
28
29 #include <libempathy/empathy-account-settings.h>
30
31 G_BEGIN_DECLS
32
33 #define EMPATHY_TYPE_ACCOUNT_WIDGET empathy_account_widget_get_type()
34 #define EMPATHY_ACCOUNT_WIDGET(obj) \
35   (G_TYPE_CHECK_INSTANCE_CAST ((obj), EMPATHY_TYPE_ACCOUNT_WIDGET, EmpathyAccountWidget))
36 #define EMPATHY_ACCOUNT_WIDGET_CLASS(klass) \
37   (G_TYPE_CHECK_CLASS_CAST ((klass), EMPATHY_TYPE_ACCOUNT_WIDGET, EmpathyAccountWidgetClass))
38 #define EMPATHY_IS_ACCOUNT_WIDGET(obj) \
39   (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EMPATHY_TYPE_ACCOUNT_WIDGET))
40 #define EMPATHY_IS_ACCOUNT_WIDGET_CLASS(klass) \
41   (G_TYPE_CHECK_CLASS_TYPE ((klass), EMPATHY_TYPE_ACCOUNT_WIDGET))
42 #define EMPATHY_ACCOUNT_WIDGET_GET_CLASS(obj) \
43   (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_ACCOUNT_WIDGET, EmpathyAccountWidgetClass))
44
45 typedef struct _EmpathyAccountWidgetUIDetails EmpathyAccountWidgetUIDetails;
46
47 typedef struct {
48   GObject parent;
49
50   EmpathyAccountWidgetUIDetails *ui_details;
51
52   /* private */
53   gpointer priv;
54 } EmpathyAccountWidget;
55
56 typedef struct {
57   GObjectClass parent_class;
58 } EmpathyAccountWidgetClass;
59
60 GType empathy_account_widget_get_type (void);
61
62 GtkWidget *empathy_account_widget_get_widget (EmpathyAccountWidget *widget);
63
64 EmpathyAccountWidget * empathy_account_widget_new_for_protocol (
65     EmpathyAccountSettings *settings,
66     gboolean simple);
67
68 gboolean empathy_account_widget_contains_pending_changes
69     (EmpathyAccountWidget *widget);
70 void empathy_account_widget_discard_pending_changes
71     (EmpathyAccountWidget *widget);
72
73 gchar * empathy_account_widget_get_default_display_name (
74     EmpathyAccountWidget *widget);
75
76 G_END_DECLS
77
78 #endif /* __EMPATHY_ACCOUNT_WIDGET_H__ */