]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-protocol-chooser.h
account-settings: move from Empathy to tp-account-widgets
[empathy.git] / libempathy-gtk / empathy-protocol-chooser.h
1 /* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2; -*- */
2 /*
3  * Copyright (C) 2007-2009 Collabora Ltd.
4  *
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.
9  *
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.
14  *
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
18  *
19  * Authors: Xavier Claessens <xclaesse@gmail.com>
20  *          Jonny Lamb <jonny.lamb@collabora.co.uk
21  */
22
23 #ifndef __EMPATHY_PROTOCOL_CHOOSER_H__
24 #define __EMPATHY_PROTOCOL_CHOOSER_H__
25
26 #include <gtk/gtk.h>
27 #include <telepathy-glib/telepathy-glib.h>
28 #include <tp-account-widgets/tpaw-account-settings.h>
29
30 G_BEGIN_DECLS
31
32 #define EMPATHY_TYPE_PROTOCOL_CHOOSER (empathy_protocol_chooser_get_type ())
33 #define EMPATHY_PROTOCOL_CHOOSER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), \
34     EMPATHY_TYPE_PROTOCOL_CHOOSER, EmpathyProtocolChooser))
35 #define EMPATHY_PROTOCOL_CHOOSER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), \
36     EMPATHY_TYPE_PROTOCOL_CHOOSER, EmpathyProtocolChooserClass))
37 #define EMPATHY_IS_PROTOCOL_CHOOSER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), \
38     EMPATHY_TYPE_PROTOCOL_CHOOSER))
39 #define EMPATHY_IS_PROTOCOL_CHOOSER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), \
40     EMPATHY_TYPE_PROTOCOL_CHOOSER))
41 #define EMPATHY_PROTOCOL_CHOOSER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o),\
42     EMPATHY_TYPE_PROTOCOL_CHOOSER, EmpathyProtocolChooserClass))
43
44 typedef struct _EmpathyProtocolChooser EmpathyProtocolChooser;
45 typedef struct _EmpathyProtocolChooserClass EmpathyProtocolChooserClass;
46
47 struct _EmpathyProtocolChooser
48 {
49   GtkComboBox parent;
50
51   /*<private>*/
52   gpointer priv;
53 };
54
55 struct _EmpathyProtocolChooserClass
56 {
57   GtkComboBoxClass parent_class;
58 };
59
60 typedef gboolean (*EmpathyProtocolChooserFilterFunc) (TpConnectionManager *cm,
61     TpProtocol *protocol,
62     const gchar *service,
63     gpointer user_data);
64
65 GType empathy_protocol_chooser_get_type (void) G_GNUC_CONST;
66 GtkWidget * empathy_protocol_chooser_new (void);
67 TpConnectionManager *empathy_protocol_chooser_dup_selected (
68     EmpathyProtocolChooser *protocol_chooser,
69     TpProtocol **protocol,
70     gchar **service);
71
72 void empathy_protocol_chooser_set_visible (
73     EmpathyProtocolChooser *protocol_chooser,
74     EmpathyProtocolChooserFilterFunc func,
75     gpointer user_data);
76
77 TpawAccountSettings * empathy_protocol_chooser_create_account_settings (
78     EmpathyProtocolChooser *self);
79
80 G_END_DECLS
81 #endif /*  __EMPATHY_PROTOCOL_CHOOSER_H__ */