diff options
Diffstat (limited to 'gtk/gtkoverlay.h')
-rw-r--r-- | gtk/gtkoverlay.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gtk/gtkoverlay.h b/gtk/gtkoverlay.h index 1f8883bc6b..32e3f391d3 100644 --- a/gtk/gtkoverlay.h +++ b/gtk/gtkoverlay.h @@ -47,14 +47,24 @@ struct _GtkOverlay GtkOverlayPrivate *priv; }; +/** + * GtkOverlayClass: + * @parent_class: The parent class. + * @get_child_position: Signal emitted to determine the position and + * size of any overlay child widgets. + */ struct _GtkOverlayClass { GtkBinClass parent_class; + /*< public >*/ + gboolean (*get_child_position) (GtkOverlay *overlay, GtkWidget *widget, GtkAllocation *allocation); + /*< private >*/ + /* Padding for future expansion */ void (*_gtk_reserved1) (void); void (*_gtk_reserved2) (void); |