]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-protocol-chooser.h
Clean up #include directives in headers
[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 <glib-object.h>
27 #include <gtk/gtk.h>
28 #include <telepathy-glib/telepathy-glib.h>
29
30 #include "empathy-account-settings.h"
31
32 G_BEGIN_DECLS
33
34 #define EMPATHY_TYPE_PROTOCOL_CHOOSER (empathy_protocol_chooser_get_type ())
35 #define EMPATHY_PROTOCOL_CHOOSER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), \
36     EMPATHY_TYPE_PROTOCOL_CHOOSER, EmpathyProtocolChooser))
37 #define EMPATHY_PROTOCOL_CHOOSER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), \
38     EMPATHY_TYPE_PROTOCOL_CHOOSER, EmpathyProtocolChooserClass))
39 #define EMPATHY_IS_PROTOCOL_CHOOSER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), \
40     EMPATHY_TYPE_PROTOCOL_CHOOSER))
41 #define EMPATHY_IS_PROTOCOL_CHOOSER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), \
42     EMPATHY_TYPE_PROTOCOL_CHOOSER))
43 #define EMPATHY_PROTOCOL_CHOOSER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o),\
44     EMPATHY_TYPE_PROTOCOL_CHOOSER, EmpathyProtocolChooserClass))
45
46 typedef struct _EmpathyProtocolChooser EmpathyProtocolChooser;
47 typedef struct _EmpathyProtocolChooserClass EmpathyProtocolChooserClass;
48
49 struct _EmpathyProtocolChooser
50 {
51   GtkComboBox parent;
52
53   /*<private>*/
54   gpointer priv;
55 };
56
57 struct _EmpathyProtocolChooserClass
58 {
59   GtkComboBoxClass parent_class;
60 };
61
62 typedef gboolean (*EmpathyProtocolChooserFilterFunc) (TpConnectionManager *cm,
63     TpProtocol *protocol,
64     const gchar *service,
65     gpointer user_data);
66
67 GType empathy_protocol_chooser_get_type (void) G_GNUC_CONST;
68 GtkWidget * empathy_protocol_chooser_new (void);
69 TpConnectionManager *empathy_protocol_chooser_dup_selected (
70     EmpathyProtocolChooser *protocol_chooser,
71     TpProtocol **protocol,
72     gchar **service);
73
74 void empathy_protocol_chooser_set_visible (
75     EmpathyProtocolChooser *protocol_chooser,
76     EmpathyProtocolChooserFilterFunc func,
77     gpointer user_data);
78
79 EmpathyAccountSettings * empathy_protocol_chooser_create_account_settings (
80     EmpathyProtocolChooser *self);
81
82 G_END_DECLS
83 #endif /*  __EMPATHY_PROTOCOL_CHOOSER_H__ */