]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-account-chooser.h
Merge call branch from Elliot Fairweather with cleanups from Xavier Claessens.
[empathy.git] / libempathy-gtk / empathy-account-chooser.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2005-2007 Imendio AB
4  * Copyright (C) 2007 Collabora Ltd.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; either version 2 of the
9  * License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public
17  * License along with this program; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  * 
21  * Authors: Martyn Russell <martyn@imendio.com>
22  *          Xavier Claessens <xclaesse@gmail.com>
23  */
24
25 #ifndef __EMPATHY_ACCOUNT_CHOOSER_H__
26 #define __EMPATHY_ACCOUNT_CHOOSER_H__
27
28 #include <gtk/gtkcombobox.h>
29
30 #include <libmissioncontrol/mc-account.h>
31
32 G_BEGIN_DECLS
33
34 #define EMPATHY_TYPE_ACCOUNT_CHOOSER (empathy_account_chooser_get_type ())
35 #define EMPATHY_ACCOUNT_CHOOSER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_ACCOUNT_CHOOSER, EmpathyAccountChooser))
36 #define EMPATHY_ACCOUNT_CHOOSER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), EMPATHY_TYPE_ACCOUNT_CHOOSER, EmpathyAccountChooserClass))
37 #define EMPATHY_IS_ACCOUNT_CHOOSER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_ACCOUNT_CHOOSER))
38 #define EMPATHY_IS_ACCOUNT_CHOOSER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_ACCOUNT_CHOOSER))
39 #define EMPATHY_ACCOUNT_CHOOSER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_ACCOUNT_CHOOSER, EmpathyAccountChooserClass))
40
41 typedef gboolean (* EmpathyAccountChooserFilterFunc) (McAccount *account,
42                                                       gpointer   user_data);
43
44
45 typedef struct _EmpathyAccountChooser      EmpathyAccountChooser;
46 typedef struct _EmpathyAccountChooserClass EmpathyAccountChooserClass;
47
48 struct _EmpathyAccountChooser {
49         GtkComboBox parent;
50 };
51
52 struct _EmpathyAccountChooserClass {
53         GtkComboBoxClass parent_class;
54 };
55
56 GType          empathy_account_chooser_get_type           (void) G_GNUC_CONST;
57 GtkWidget *    empathy_account_chooser_new                (void);
58 McAccount *    empathy_account_chooser_get_account        (EmpathyAccountChooser *chooser);
59 gboolean       empathy_account_chooser_set_account        (EmpathyAccountChooser *chooser,
60                                                            McAccount            *account);
61 gboolean       empathy_account_chooser_get_has_all_option (EmpathyAccountChooser *chooser);
62 void           empathy_account_chooser_set_has_all_option (EmpathyAccountChooser *chooser,
63                                                            gboolean               has_all_option);
64 void           empathy_account_chooser_set_filter         (EmpathyAccountChooser *chooser,
65                                                            EmpathyAccountChooserFilterFunc filter,
66                                                            gpointer               user_data);
67 gboolean       empathy_account_chooser_filter_is_connected(McAccount             *account,
68                                                            gpointer               user_data);
69
70 G_END_DECLS
71
72 #endif /* __EMPATHY_ACCOUNT_CHOOSER_H__ */
73