mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-08 11:40:16 +00:00
overlay: Document availability of properties
Add missing "Since" https://bugzilla.gnome.org/show_bug.cgi?id=773082
This commit is contained in:
parent
6ee17810d1
commit
2b527d6e97
@ -536,6 +536,8 @@ gtk_overlay_remove (GtkContainer *container,
|
|||||||
* A widget’s index in the @overlay children list determines which order
|
* A widget’s index in the @overlay children list determines which order
|
||||||
* the children are drawn if they overlap. The first child is drawn at
|
* the children are drawn if they overlap. The first child is drawn at
|
||||||
* the bottom. It also affects the default focus chain order.
|
* the bottom. It also affects the default focus chain order.
|
||||||
|
*
|
||||||
|
* Since: 3.18
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
gtk_overlay_reorder_overlay (GtkOverlay *overlay,
|
gtk_overlay_reorder_overlay (GtkOverlay *overlay,
|
||||||
@ -760,10 +762,25 @@ gtk_overlay_class_init (GtkOverlayClass *klass)
|
|||||||
|
|
||||||
klass->get_child_position = gtk_overlay_get_child_position;
|
klass->get_child_position = gtk_overlay_get_child_position;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GtkOverlay:pass-through:
|
||||||
|
*
|
||||||
|
* Pass through input, does not affect main child.
|
||||||
|
*
|
||||||
|
* Since: 3.18
|
||||||
|
*/
|
||||||
gtk_container_class_install_child_property (container_class, CHILD_PROP_PASS_THROUGH,
|
gtk_container_class_install_child_property (container_class, CHILD_PROP_PASS_THROUGH,
|
||||||
g_param_spec_boolean ("pass-through", P_("Pass Through"), P_("Pass through input, does not affect main child"),
|
g_param_spec_boolean ("pass-through", P_("Pass Through"), P_("Pass through input, does not affect main child"),
|
||||||
FALSE,
|
FALSE,
|
||||||
GTK_PARAM_READWRITE));
|
GTK_PARAM_READWRITE));
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GtkOverlay:index:
|
||||||
|
*
|
||||||
|
* The index of the overlay in the parent, -1 for the main child.
|
||||||
|
*
|
||||||
|
* Since: 3.18
|
||||||
|
*/
|
||||||
gtk_container_class_install_child_property (container_class, CHILD_PROP_INDEX,
|
gtk_container_class_install_child_property (container_class, CHILD_PROP_INDEX,
|
||||||
g_param_spec_int ("index",
|
g_param_spec_int ("index",
|
||||||
P_("Index"),
|
P_("Index"),
|
||||||
|
Loading…
Reference in New Issue
Block a user