summaryrefslogtreecommitdiff
path: root/gtk/gtkflowbox.c
diff options
context:
space:
mode:
Diffstat (limited to 'gtk/gtkflowbox.c')
-rw-r--r--gtk/gtkflowbox.c76
1 files changed, 0 insertions, 76 deletions
diff --git a/gtk/gtkflowbox.c b/gtk/gtkflowbox.c
index 0d444f6b7b..8afc448456 100644
--- a/gtk/gtkflowbox.c
+++ b/gtk/gtkflowbox.c
@@ -492,8 +492,6 @@ gtk_flow_box_child_init (GtkFlowBoxChild *child)
* of a #GtkFlowBox.
*
* Returns: a new #GtkFlowBoxChild
- *
- * Since: 3.12
*/
GtkWidget *
gtk_flow_box_child_new (void)
@@ -509,8 +507,6 @@ gtk_flow_box_child_new (void)
*
* Returns: the index of the @child, or -1 if the @child is not
* in a flow box.
- *
- * Since: 3.12
*/
gint
gtk_flow_box_child_get_index (GtkFlowBoxChild *child)
@@ -535,8 +531,6 @@ gtk_flow_box_child_get_index (GtkFlowBoxChild *child)
* #GtkFlowBox container.
*
* Returns: %TRUE if @child is selected
- *
- * Since: 3.12
*/
gboolean
gtk_flow_box_child_is_selected (GtkFlowBoxChild *child)
@@ -566,8 +560,6 @@ gtk_flow_box_child_is_selected (GtkFlowBoxChild *child)
* and filtering functions into the widgets themselves. Another
* alternative is to call gtk_flow_box_invalidate_sort() on any
* model change, but that is more expensive.
- *
- * Since: 3.12
*/
void
gtk_flow_box_child_changed (GtkFlowBoxChild *child)
@@ -3829,8 +3821,6 @@ gtk_flow_box_bound_model_changed (GListModel *list,
* Creates a GtkFlowBox.
*
* Returns: a new #GtkFlowBox container
- *
- * Since: 3.12
*/
GtkWidget *
gtk_flow_box_new (void)
@@ -3871,8 +3861,6 @@ gtk_flow_box_insert_css_node (GtkFlowBox *box,
*
* If @position is -1, or larger than the total number of children
* in the @box, then the @widget will be appended to the end.
- *
- * Since: 3.12
*/
void
gtk_flow_box_insert (GtkFlowBox *box,
@@ -3928,8 +3916,6 @@ gtk_flow_box_insert (GtkFlowBox *box,
* Returns: (transfer none) (nullable): the child widget, which will
* always be a #GtkFlowBoxChild or %NULL in case no child widget
* with the given index exists.
- *
- * Since: 3.12
*/
GtkFlowBoxChild *
gtk_flow_box_get_child_at_index (GtkFlowBox *box,
@@ -3958,8 +3944,6 @@ gtk_flow_box_get_child_at_index (GtkFlowBox *box,
* Returns: (transfer none) (nullable): the child widget, which will
* always be a #GtkFlowBoxChild or %NULL in case no child widget
* exists for the given x and y coordinates.
- *
- * Since: 3.22.6
*/
GtkFlowBoxChild *
gtk_flow_box_get_child_at_pos (GtkFlowBox *box,
@@ -4002,8 +3986,6 @@ gtk_flow_box_get_child_at_pos (GtkFlowBox *box,
* The adjustments have to be in pixel units and in the same
* coordinate system as the allocation for immediate children
* of the box.
- *
- * Since: 3.12
*/
void
gtk_flow_box_set_hadjustment (GtkFlowBox *box,
@@ -4039,8 +4021,6 @@ gtk_flow_box_set_hadjustment (GtkFlowBox *box,
* The adjustments have to be in pixel units and in the same
* coordinate system as the allocation for immediate children
* of the box.
- *
- * Since: 3.12
*/
void
gtk_flow_box_set_vadjustment (GtkFlowBox *box,
@@ -4094,8 +4074,6 @@ gtk_flow_box_check_model_compat (GtkFlowBox *box)
* Note that using a model is incompatible with the filtering and sorting
* functionality in GtkFlowBox. When using a model, filtering and sorting
* should be implemented by the model.
- *
- * Since: 3.18
*/
void
gtk_flow_box_bind_model (GtkFlowBox *box,
@@ -4145,8 +4123,6 @@ gtk_flow_box_bind_model (GtkFlowBox *box,
* same size). See gtk_box_set_homogeneous().
*
* Returns: %TRUE if the box is homogeneous.
- *
- * Since: 3.12
*/
gboolean
gtk_flow_box_get_homogeneous (GtkFlowBox *box)
@@ -4165,8 +4141,6 @@ gtk_flow_box_get_homogeneous (GtkFlowBox *box)
* Sets the #GtkFlowBox:homogeneous property of @box, controlling
* whether or not all children of @box are given equal space
* in the box.
- *
- * Since: 3.12
*/
void
gtk_flow_box_set_homogeneous (GtkFlowBox *box,
@@ -4192,8 +4166,6 @@ gtk_flow_box_set_homogeneous (GtkFlowBox *box,
*
* Sets the vertical space to add between children.
* See the #GtkFlowBox:row-spacing property.
- *
- * Since: 3.12
*/
void
gtk_flow_box_set_row_spacing (GtkFlowBox *box,
@@ -4217,8 +4189,6 @@ gtk_flow_box_set_row_spacing (GtkFlowBox *box,
* Gets the vertical spacing.
*
* Returns: the vertical spacing
- *
- * Since: 3.12
*/
guint
gtk_flow_box_get_row_spacing (GtkFlowBox *box)
@@ -4235,8 +4205,6 @@ gtk_flow_box_get_row_spacing (GtkFlowBox *box)
*
* Sets the horizontal space to add between children.
* See the #GtkFlowBox:column-spacing property.
- *
- * Since: 3.12
*/
void
gtk_flow_box_set_column_spacing (GtkFlowBox *box,
@@ -4260,8 +4228,6 @@ gtk_flow_box_set_column_spacing (GtkFlowBox *box,
* Gets the horizontal spacing.
*
* Returns: the horizontal spacing
- *
- * Since: 3.12
*/
guint
gtk_flow_box_get_column_spacing (GtkFlowBox *box)
@@ -4278,8 +4244,6 @@ gtk_flow_box_get_column_spacing (GtkFlowBox *box)
*
* Sets the minimum number of children to line up
* in @box’s orientation before flowing.
- *
- * Since: 3.12
*/
void
gtk_flow_box_set_min_children_per_line (GtkFlowBox *box,
@@ -4303,8 +4267,6 @@ gtk_flow_box_set_min_children_per_line (GtkFlowBox *box,
* Gets the minimum number of children per line.
*
* Returns: the minimum number of children per line
- *
- * Since: 3.12
*/
guint
gtk_flow_box_get_min_children_per_line (GtkFlowBox *box)
@@ -4325,8 +4287,6 @@ gtk_flow_box_get_min_children_per_line (GtkFlowBox *box)
* Setting the maximum number of children per line
* limits the overall natural size request to be no more
* than @n_children children long in the given orientation.
- *
- * Since: 3.12
*/
void
gtk_flow_box_set_max_children_per_line (GtkFlowBox *box,
@@ -4351,8 +4311,6 @@ gtk_flow_box_set_max_children_per_line (GtkFlowBox *box,
* Gets the maximum number of children per line.
*
* Returns: the maximum number of children per line
- *
- * Since: 3.12
*/
guint
gtk_flow_box_get_max_children_per_line (GtkFlowBox *box)
@@ -4369,8 +4327,6 @@ gtk_flow_box_get_max_children_per_line (GtkFlowBox *box)
*
* If @single is %TRUE, children will be activated when you click
* on them, otherwise you need to double-click.
- *
- * Since: 3.12
*/
void
gtk_flow_box_set_activate_on_single_click (GtkFlowBox *box,
@@ -4395,8 +4351,6 @@ gtk_flow_box_set_activate_on_single_click (GtkFlowBox *box,
*
* Returns: %TRUE if children are activated on single click,
* %FALSE otherwise
- *
- * Since: 3.12
*/
gboolean
gtk_flow_box_get_activate_on_single_click (GtkFlowBox *box)
@@ -4428,8 +4382,6 @@ gtk_flow_box_set_accept_unpaired_release (GtkFlowBox *box,
* Returns: (element-type GtkFlowBoxChild) (transfer container):
* A #GList containing the #GtkWidget for each selected child.
* Free with g_list_free() when done.
- *
- * Since: 3.12
*/
GList *
gtk_flow_box_get_selected_children (GtkFlowBox *box)
@@ -4459,8 +4411,6 @@ gtk_flow_box_get_selected_children (GtkFlowBox *box)
*
* Selects a single child of @box, if the selection
* mode allows it.
- *
- * Since: 3.12
*/
void
gtk_flow_box_select_child (GtkFlowBox *box,
@@ -4479,8 +4429,6 @@ gtk_flow_box_select_child (GtkFlowBox *box,
*
* Unselects a single child of @box, if the selection
* mode allows it.
- *
- * Since: 3.12
*/
void
gtk_flow_box_unselect_child (GtkFlowBox *box,
@@ -4498,8 +4446,6 @@ gtk_flow_box_unselect_child (GtkFlowBox *box,
*
* Select all children of @box, if the selection
* mode allows it.
- *
- * Since: 3.12
*/
void
gtk_flow_box_select_all (GtkFlowBox *box)
@@ -4522,8 +4468,6 @@ gtk_flow_box_select_all (GtkFlowBox *box)
*
* Unselect all children of @box, if the selection
* mode allows it.
- *
- * Since: 3.12
*/
void
gtk_flow_box_unselect_all (GtkFlowBox *box)
@@ -4549,8 +4493,6 @@ gtk_flow_box_unselect_all (GtkFlowBox *box)
*
* A function used by gtk_flow_box_selected_foreach().
* It will be called on every selected child of the @box.
- *
- * Since: 3.12
*/
/**
@@ -4563,8 +4505,6 @@ gtk_flow_box_unselect_all (GtkFlowBox *box)
*
* Note that the selection cannot be modified from within
* this function.
- *
- * Since: 3.12
*/
void
gtk_flow_box_selected_foreach (GtkFlowBox *box,
@@ -4593,8 +4533,6 @@ gtk_flow_box_selected_foreach (GtkFlowBox *box,
*
* Sets how selection works in @box.
* See #GtkSelectionMode for details.
- *
- * Since: 3.12
*/
void
gtk_flow_box_set_selection_mode (GtkFlowBox *box,
@@ -4629,8 +4567,6 @@ gtk_flow_box_set_selection_mode (GtkFlowBox *box,
* Gets the selection mode of @box.
*
* Returns: the #GtkSelectionMode
- *
- * Since: 3.12
*/
GtkSelectionMode
gtk_flow_box_get_selection_mode (GtkFlowBox *box)
@@ -4652,8 +4588,6 @@ gtk_flow_box_get_selection_mode (GtkFlowBox *box)
* visible or not.
*
* Returns: %TRUE if the row should be visible, %FALSE otherwise
- *
- * Since: 3.12
*/
/**
@@ -4675,8 +4609,6 @@ gtk_flow_box_get_selection_mode (GtkFlowBox *box)
*
* Note that using a filter function is incompatible with using a model
* (see gtk_flow_box_bind_model()).
- *
- * Since: 3.12
*/
void
gtk_flow_box_set_filter_func (GtkFlowBox *box,
@@ -4713,8 +4645,6 @@ gtk_flow_box_set_filter_func (GtkFlowBox *box,
* factor. For instance, this would be used if the
* filter function just looked for a specific search
* term, and the entry with the string has changed.
- *
- * Since: 3.12
*/
void
gtk_flow_box_invalidate_filter (GtkFlowBox *box)
@@ -4738,8 +4668,6 @@ gtk_flow_box_invalidate_filter (GtkFlowBox *box)
*
* Returns: < 0 if @child1 should be before @child2, 0 if
* the are equal, and > 0 otherwise
- *
- * Since: 3.12
*/
/**
@@ -4760,8 +4688,6 @@ gtk_flow_box_invalidate_filter (GtkFlowBox *box)
*
* Note that using a sort function is incompatible with using a model
* (see gtk_flow_box_bind_model()).
- *
- * Since: 3.12
*/
void
gtk_flow_box_set_sort_func (GtkFlowBox *box,
@@ -4826,8 +4752,6 @@ gtk_flow_box_css_node_foreach (gpointer data,
*
* Call this when the result of the sort function on
* @box is changed due to an external factor.
- *
- * Since: 3.12
*/
void
gtk_flow_box_invalidate_sort (GtkFlowBox *box)