]> git.0d.be Git - empathy.git/blob - src/empathy-invite-participant-dialog.h
Updated Polish translation
[empathy.git] / src / empathy-invite-participant-dialog.h
1 /*
2  * empathy-invite-participant-dialog.h
3  *
4  * EmpathyInviteParticipantDialog
5  *
6  * (c) 2009, Collabora Ltd.
7  *
8  * Authors:
9  *    Danielle Madeley <danielle.madeley@collabora.co.uk>
10  */
11
12 #ifndef __EMPATHY_INVITE_PARTICIPANT_DIALOG_H__
13 #define __EMPATHY_INVITE_PARTICIPANT_DIALOG_H__
14
15 #include <gtk/gtk.h>
16
17 #include <libempathy-gtk/empathy-contact-selector-dialog.h>
18
19 G_BEGIN_DECLS
20
21 #define EMPATHY_TYPE_INVITE_PARTICIPANT_DIALOG  (empathy_invite_participant_dialog_get_type ())
22 #define EMPATHY_INVITE_PARTICIPANT_DIALOG(obj)  (G_TYPE_CHECK_INSTANCE_CAST ((obj), EMPATHY_TYPE_INVITE_PARTICIPANT_DIALOG, EmpathyInviteParticipantDialog))
23 #define EMPATHY_INVITE_PARTICIPANT_DIALOG_CLASS(obj)    (G_TYPE_CHECK_CLASS_CAST ((obj), EMPATHY_TYPE_INVITE_PARTICIPANT_DIALOG, EmpathyInviteParticipantDialogClass))
24 #define EMPATHY_IS_INVITE_PARTICIPANT_DIALOG(obj)       (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EMPATHY_TYPE_INVITE_PARTICIPANT_DIALOG))
25 #define EMPATHY_IS_INVITE_PARTICIPANT_DIALOG_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE ((obj), EMPATHY_TYPE_INVITE_PARTICIPANT_DIALOG))
26 #define EMPATHY_INVITE_PARTICIPANT_DIALOG_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_INVITE_PARTICIPANT_DIALOG, EmpathyInviteParticipantDialogClass))
27
28 typedef struct _EmpathyInviteParticipantDialog EmpathyInviteParticipantDialog;
29 typedef struct _EmpathyInviteParticipantDialogClass EmpathyInviteParticipantDialogClass;
30
31 struct _EmpathyInviteParticipantDialog
32 {
33   EmpathyContactSelectorDialog parent;
34 };
35
36 struct _EmpathyInviteParticipantDialogClass
37 {
38   EmpathyContactSelectorDialogClass parent_class;
39 };
40
41 GType empathy_invite_participant_dialog_get_type (void);
42 GtkWidget *empathy_invite_participant_dialog_new (GtkWindow *parent,
43     TpAccount *account);
44
45 G_END_DECLS
46
47 #endif