| 24 #endif |
24 #endif |
| 25 |
25 |
| 26 #ifndef PIDGIN_INVITE_DIALOG_H |
26 #ifndef PIDGIN_INVITE_DIALOG_H |
| 27 #define PIDGIN_INVITE_DIALOG_H |
27 #define PIDGIN_INVITE_DIALOG_H |
| 28 |
28 |
| |
29 #include <gtk/gtk.h> |
| |
30 |
| |
31 #include <purple.h> |
| |
32 |
| |
33 G_BEGIN_DECLS |
| |
34 |
| 29 /** |
35 /** |
| 30 * SECTION:pidgininvitedialog |
36 * PidginInviteDialog: |
| 31 * @section_id: pidgin-invite-dialog |
|
| 32 * @short_description: A dialog widget to invite others to chat |
|
| 33 * @title: Invite Dialog |
|
| 34 * |
37 * |
| 35 * #PidginInviteDialog is a simple #GtkDialog that presents the user with an |
38 * #PidginInviteDialog is a simple #GtkDialog that presents the user with an |
| 36 * interface to invite another user to a conversation. Name completion is |
39 * interface to invite another user to a conversation. Name completion is |
| 37 * automatically setup as well. |
40 * automatically setup as well. |
| 38 * |
41 * |
| 58 * |
61 * |
| 59 * } |
62 * } |
| 60 * ]| |
63 * ]| |
| 61 */ |
64 */ |
| 62 |
65 |
| 63 #include <gtk/gtk.h> |
|
| 64 |
|
| 65 #include <purple.h> |
|
| 66 |
|
| 67 G_BEGIN_DECLS |
|
| 68 |
|
| 69 #define PIDGIN_TYPE_INVITE_DIALOG pidgin_invite_dialog_get_type() |
66 #define PIDGIN_TYPE_INVITE_DIALOG pidgin_invite_dialog_get_type() |
| 70 |
|
| 71 G_DECLARE_FINAL_TYPE(PidginInviteDialog, pidgin_invite_dialog, PIDGIN, |
67 G_DECLARE_FINAL_TYPE(PidginInviteDialog, pidgin_invite_dialog, PIDGIN, |
| 72 INVITE_DIALOG, GtkDialog) |
68 INVITE_DIALOG, GtkDialog) |
| 73 |
69 |
| 74 /** |
70 /** |
| 75 * pidgin_invite_dialog_new: |
71 * pidgin_invite_dialog_new: |