]> git.0d.be Git - empathy.git/blobdiff - src/empathy-invite-participant-dialog.h
Clean up #include directives in headers
[empathy.git] / src / empathy-invite-participant-dialog.h
index 642733871aad0cc661a0996c25cc3a9e6551b253..daa3448d2755b48c32c3aa610581f58ca7998c1a 100644 (file)
@@ -13,6 +13,9 @@
 #define __EMPATHY_INVITE_PARTICIPANT_DIALOG_H__
 
 #include <gtk/gtk.h>
+#include <telepathy-glib/telepathy-glib.h>
+
+#include "empathy-tp-chat.h"
 
 G_BEGIN_DECLS
 
@@ -25,10 +28,13 @@ G_BEGIN_DECLS
 
 typedef struct _EmpathyInviteParticipantDialog EmpathyInviteParticipantDialog;
 typedef struct _EmpathyInviteParticipantDialogClass EmpathyInviteParticipantDialogClass;
+typedef struct _EmpathyInviteParticipantDialogPrivate EmpathyInviteParticipantDialogPrivate;
 
 struct _EmpathyInviteParticipantDialog
 {
   GtkDialog parent;
+
+  EmpathyInviteParticipantDialogPrivate *priv;
 };
 
 struct _EmpathyInviteParticipantDialogClass
@@ -37,9 +43,12 @@ struct _EmpathyInviteParticipantDialogClass
 };
 
 GType empathy_invite_participant_dialog_get_type (void);
-GtkWidget *empathy_invite_participant_dialog_new (GtkWindow *parent);
-EmpathyContact *empathy_invite_participant_dialog_dup_selected_contact (EmpathyInviteParticipantDialog *self);
 
+GtkWidget * empathy_invite_participant_dialog_new (GtkWindow *parent,
+    EmpathyTpChat *tp_chat);
+
+TpContact * empathy_invite_participant_dialog_get_selected (
+    EmpathyInviteParticipantDialog *self);
 
 G_END_DECLS