pidgin/minidialog.h

changeset 37994
11829debec7a
parent 37094
84873ce721dc
child 38743
61e429efe744
equal deleted inserted replaced
37993:b84212f9f022 37994:11829debec7a
55 (G_TYPE_INSTANCE_GET_CLASS ((obj), \ 55 (G_TYPE_INSTANCE_GET_CLASS ((obj), \
56 PIDGIN_TYPE_MINI_DIALOG, PidginMiniDialogClass)) 56 PIDGIN_TYPE_MINI_DIALOG, PidginMiniDialogClass))
57 57
58 /** 58 /**
59 * PidginMiniDialog: 59 * PidginMiniDialog:
60 * @contents: A GtkVBox into which extra widgets for the dialog should be packed. 60 * @contents: A GtkBox into which extra widgets for the dialog should be packed.
61 * 61 *
62 * A widget resembling a diminutive dialog box, designed to be embedded in the 62 * A widget resembling a diminutive dialog box, designed to be embedded in the
63 * #PidginBuddyList. Mini-dialogs have titles, optional descriptions, and a row 63 * #PidginBuddyList. Mini-dialogs have titles, optional descriptions, and a row
64 * of buttons at the bottom; above the buttons is a #GtkHBox into which 64 * of buttons at the bottom; above the buttons is a #GtkBox into which
65 * you can pack any random widgets you want to add to the dialog. When any of 65 * you can pack any random widgets you want to add to the dialog. When any of
66 * the dialog's buttons is clicked, the dialog will be destroyed. 66 * the dialog's buttons is clicked, the dialog will be destroyed.
67 * 67 *
68 * Dialogs have the following GObject properties: 68 * Dialogs have the following GObject properties:
69 * <informaltable frame='none'> 69 * <informaltable frame='none'>
89 * </row> 89 * </row>
90 * </tbody></tgroup> 90 * </tbody></tgroup>
91 * </informaltable> 91 * </informaltable>
92 */ 92 */
93 typedef struct { 93 typedef struct {
94 GtkVBox parent; 94 GtkBox parent;
95 gpointer priv; 95 gpointer priv;
96 96
97 /*< public >*/ 97 /*< public >*/
98 GtkBox *contents; 98 GtkBox *contents;
99 } PidginMiniDialog; 99 } PidginMiniDialog;

mercurial