add empathy-auto-salut-account-helper.c to POTFILES.in
[empathy-mirror.git] / libempathy-gtk / empathy-protocol-chooser.h
blob088d1b6649900f10c8762f52a2e761b3cd80c715
1 /* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2; -*- */
2 /*
3 * Copyright (C) 2007-2009 Collabora Ltd.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library 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 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 * Authors: Xavier Claessens <xclaesse@gmail.com>
20 * Jonny Lamb <jonny.lamb@collabora.co.uk
23 #ifndef __EMPATHY_PROTOCOL_CHOOSER_H__
24 #define __EMPATHY_PROTOCOL_CHOOSER_H__
26 #include <glib-object.h>
27 #include <gtk/gtk.h>
29 #include <telepathy-glib/connection-manager.h>
31 G_BEGIN_DECLS
33 #define EMPATHY_TYPE_PROTOCOL_CHOOSER (empathy_protocol_chooser_get_type ())
34 #define EMPATHY_PROTOCOL_CHOOSER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), \
35 EMPATHY_TYPE_PROTOCOL_CHOOSER, EmpathyProtocolChooser))
36 #define EMPATHY_PROTOCOL_CHOOSER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), \
37 EMPATHY_TYPE_PROTOCOL_CHOOSER, EmpathyProtocolChooserClass))
38 #define EMPATHY_IS_PROTOCOL_CHOOSER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), \
39 EMPATHY_TYPE_PROTOCOL_CHOOSER))
40 #define EMPATHY_IS_PROTOCOL_CHOOSER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), \
41 EMPATHY_TYPE_PROTOCOL_CHOOSER))
42 #define EMPATHY_PROTOCOL_CHOOSER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o),\
43 EMPATHY_TYPE_PROTOCOL_CHOOSER, EmpathyProtocolChooserClass))
45 typedef struct _EmpathyProtocolChooser EmpathyProtocolChooser;
46 typedef struct _EmpathyProtocolChooserClass EmpathyProtocolChooserClass;
48 struct _EmpathyProtocolChooser
50 GtkComboBox parent;
52 /*<private>*/
53 gpointer priv;
56 struct _EmpathyProtocolChooserClass
58 GtkComboBoxClass parent_class;
61 typedef gboolean (*EmpathyProtocolChooserFilterFunc) (TpConnectionManager *cm,
62 TpConnectionManagerProtocol *protocol,
63 gboolean is_gtalk,
64 gpointer user_data);
66 GType empathy_protocol_chooser_get_type (void) G_GNUC_CONST;
67 GtkWidget * empathy_protocol_chooser_new (void);
68 TpConnectionManager *empathy_protocol_chooser_dup_selected (
69 EmpathyProtocolChooser *protocol_chooser,
70 TpConnectionManagerProtocol **protocol,
71 gboolean *is_gtalk);
73 void empathy_protocol_chooser_set_visible (
74 EmpathyProtocolChooser *protocol_chooser,
75 EmpathyProtocolChooserFilterFunc func,
76 gpointer user_data);
78 G_END_DECLS
79 #endif /* __EMPATHY_PROTOCOL_CHOOSER_H__ */