docs: add Gtk*Class docs

https://bugzilla.gnome.org/show_bug.cgi?id=81006
This commit is contained in:
William Jon McCann
2014-01-17 15:17:45 -05:00
parent f3f7c385d9
commit add1ca00f4
65 changed files with 657 additions and 40 deletions

View File

@ -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);