]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-account-widget.h
57eaa1a3630e0a4e1d12a59583e26825e31dc40f
[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 _EmpathyAccountWidgetPriv EmpathyAccountWidgetPriv;
46 typedef struct _EmpathyAccountWidgetUIDetails EmpathyAccountWidgetUIDetails;
47
48 typedef struct {
49   GtkBox parent;
50
51   EmpathyAccountWidgetUIDetails *ui_details;
52
53   EmpathyAccountWidgetPriv *priv;
54 } EmpathyAccountWidget;
55
56 typedef struct {
57   GtkBoxClass parent_class;
58 } EmpathyAccountWidgetClass;
59
60 GType empathy_account_widget_get_type (void);
61
62 EmpathyAccountWidget * empathy_account_widget_new_for_protocol (
63     EmpathyAccountSettings *settings,
64     gboolean simple);
65
66 gboolean empathy_account_widget_contains_pending_changes
67     (EmpathyAccountWidget *widget);
68 void empathy_account_widget_discard_pending_changes
69     (EmpathyAccountWidget *widget);
70
71 gchar * empathy_account_widget_get_default_display_name (
72     EmpathyAccountWidget *widget);
73
74 void empathy_account_widget_set_account_param (EmpathyAccountWidget *widget,
75     const gchar *account);
76
77 void empathy_account_widget_set_password_param (EmpathyAccountWidget *self,
78     const gchar *password);
79
80 void empathy_account_widget_set_other_accounts_exist (
81     EmpathyAccountWidget *self, gboolean others_exist);
82
83 void empathy_account_widget_hide_buttons (EmpathyAccountWidget *self);
84
85 void empathy_account_widget_apply_and_log_in (EmpathyAccountWidget *self);
86
87 /* protected methods */
88 void empathy_account_widget_changed (EmpathyAccountWidget *widget);
89
90 EmpathyAccountSettings * empathy_account_widget_get_settings (
91     EmpathyAccountWidget *self);
92
93 G_END_DECLS
94
95 #endif /* __EMPATHY_ACCOUNT_WIDGET_H__ */