Update python binding
[empathy.git] / libempathy-gtk / empathy-account-chooser.h
blobc15923bc3ac76a04fe9bf34b0b214007ed3c3403
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-2008 Collabora Ltd.
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.
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.
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.
21 * Authors: Martyn Russell <martyn@imendio.com>
22 * Xavier Claessens <xclaesse@gmail.com>
25 #ifndef __EMPATHY_ACCOUNT_CHOOSER_H__
26 #define __EMPATHY_ACCOUNT_CHOOSER_H__
28 #include <gtk/gtkcombobox.h>
30 #include <libmissioncontrol/mc-account.h>
32 G_BEGIN_DECLS
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))
41 typedef gboolean (* EmpathyAccountChooserFilterFunc) (McAccount *account,
42 gpointer user_data);
45 typedef struct _EmpathyAccountChooser EmpathyAccountChooser;
46 typedef struct _EmpathyAccountChooserClass EmpathyAccountChooserClass;
48 struct _EmpathyAccountChooser {
49 GtkComboBox parent;
50 gpointer priv;
53 struct _EmpathyAccountChooserClass {
54 GtkComboBoxClass parent_class;
57 GType empathy_account_chooser_get_type (void) G_GNUC_CONST;
58 GtkWidget * empathy_account_chooser_new (void);
59 McAccount * empathy_account_chooser_get_account (EmpathyAccountChooser *chooser);
60 gboolean empathy_account_chooser_set_account (EmpathyAccountChooser *chooser,
61 McAccount *account);
62 gboolean empathy_account_chooser_get_has_all_option (EmpathyAccountChooser *chooser);
63 void empathy_account_chooser_set_has_all_option (EmpathyAccountChooser *chooser,
64 gboolean has_all_option);
65 void empathy_account_chooser_set_filter (EmpathyAccountChooser *chooser,
66 EmpathyAccountChooserFilterFunc filter,
67 gpointer user_data);
68 gboolean empathy_account_chooser_filter_is_connected(McAccount *account,
69 gpointer user_data);
71 G_END_DECLS
73 #endif /* __EMPATHY_ACCOUNT_CHOOSER_H__ */