call-window: properly remove the fs element notifiers
[empathy-mirror.git] / libempathy-gtk / empathy-protocol-chooser.h
blob7797afc5ccc4195a8b67fd73a0ebd1d618fe2533
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 <gtk/gtk.h>
27 #include <telepathy-glib/telepathy-glib.h>
28 #include <tp-account-widgets/tpaw-account-settings.h>
29 #include <tp-account-widgets/tpaw-protocol.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 TpProtocol *protocol,
63 const gchar *service,
64 gpointer user_data);
66 GType empathy_protocol_chooser_get_type (void) G_GNUC_CONST;
67 GtkWidget * empathy_protocol_chooser_new (void);
68 TpawProtocol *empathy_protocol_chooser_dup_selected (
69 EmpathyProtocolChooser *protocol_chooser);
71 void empathy_protocol_chooser_set_visible (
72 EmpathyProtocolChooser *protocol_chooser,
73 EmpathyProtocolChooserFilterFunc func,
74 gpointer user_data);
76 TpawAccountSettings * empathy_protocol_chooser_create_account_settings (
77 EmpathyProtocolChooser *self);
79 G_END_DECLS
80 #endif /* __EMPATHY_PROTOCOL_CHOOSER_H__ */