2 * Copyright (C) 2007-2009 Collabora Ltd.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 * Authors: Xavier Claessens <xclaesse@gmail.com>
19 * Authors: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
22 #ifndef __EMPATHY_CONTACT_SELECTOR_DIALOG_H__
23 #define __EMPATHY_CONTACT_SELECTOR_DIALOG_H__
25 #include <glib-object.h>
28 #include <telepathy-glib/connection.h>
29 #include <telepathy-glib/account.h>
33 typedef struct _EmpathyContactSelectorDialog EmpathyContactSelectorDialog
;
34 typedef struct _EmpathyContactSelectorDialogClass \
35 EmpathyContactSelectorDialogClass
;
37 struct _EmpathyContactSelectorDialogClass
{
38 GtkDialogClass parent_class
;
40 void (*got_response
) (EmpathyContactSelectorDialog
*self
,
41 TpConnection
*connection
,
42 const gchar
*contact_id
);
44 gboolean (*account_filter
) (EmpathyContactSelectorDialog
*self
,
48 struct _EmpathyContactSelectorDialog
{
51 /* protected fields */
52 GtkWidget
*button_action
;
53 GtkWidget
*table_contact
;
56 GType
empathy_contact_selector_dialog_get_type (void);
59 #define EMPATHY_TYPE_CONTACT_SELECTOR_DIALOG \
60 (empathy_contact_selector_dialog_get_type ())
61 #define EMPATHY_CONTACT_SELECTOR_DIALOG(obj) \
62 (G_TYPE_CHECK_INSTANCE_CAST((obj), EMPATHY_TYPE_CONTACT_SELECTOR_DIALOG, \
63 EmpathyContactSelectorDialog))
64 #define EMPATHY_CONTACT_SELECTOR_DIALOG_CLASS(klass) \
65 (G_TYPE_CHECK_CLASS_CAST((klass), EMPATHY_TYPE_CONTACT_SELECTOR_DIALOG, \
66 EmpathyContactSelectorDialogClass))
67 #define EMPATHY_IS_CONTACT_SELECTOR_DIALOG(obj) \
68 (G_TYPE_CHECK_INSTANCE_TYPE((obj), EMPATHY_TYPE_CONTACT_SELECTOR_DIALOG))
69 #define EMPATHY_IS_CONTACT_SELECTOR_DIALOG_CLASS(klass) \
70 (G_TYPE_CHECK_CLASS_TYPE((klass), EMPATHY_TYPE_CONTACT_SELECTOR_DIALOG))
71 #define EMPATHY_CONTACT_SELECTOR_DIALOG_GET_CLASS(obj) \
72 (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_CONTACT_SELECTOR_DIALOG, \
73 EmpathyContactSelectorDialogClass))
77 #endif /* __EMPATHY_CONTACT_SELECTOR_DIALOG_H__ */