Document that this will be available only in GTK 4.10

This commit is contained in:
Lukáš Tyrychtr
2022-09-19 16:40:03 +02:00
parent d517804acd
commit 7fb892460a
2 changed files with 13 additions and 3 deletions

View File

@@ -36,6 +36,8 @@
* For controls where a minimum increment makes no sense and which do not allow
* setting the current value from the user, the default implementation of this
* interface suffices.
*
* Since: 4.10
*/
#include "config.h"
@@ -70,6 +72,8 @@ gtk_accessible_range_default_init (GtkAccessibleRangeInterface *iface)
* Returns the minimum increment which this `GtkAccessibleRange` supports.
*
* Returns: the minimum increment, or 0.0 if not overridden
*
* Since: 4.10
*/
double
gtk_accessible_range_get_minimum_increment (GtkAccessibleRange *self)
@@ -83,11 +87,13 @@ gtk_accessible_range_get_minimum_increment (GtkAccessibleRange *self)
* gtk_accessible_range_set_current_value:
* @self: a `GtkAccessibleRange`
*
* Sets the current value of this `GtkAccessibleRange`.
* Sets the current value of this `GtkAccessibleRange` to @value.
* Note that for some widgets implementing this interface, setting a value
* through the accessibility API makes no sense, so calling this function may
* in some cases do nothing.
* @returns: %true if the call changed the value, %false otherwise
*
* Since: 4.10
*/
gboolean
gtk_accessible_range_set_current_value (GtkAccessibleRange *self, double value)

View File

@@ -44,7 +44,9 @@ struct _GtkAccessibleRangeInterface
* Returns the minimum increment for this `GtkAccessibleRange`.
* The default implementation returns 0.0, which indicates that a minimum
* increment does not make sense for this implementation.
* @returns: the minimum increment
* Returns: the minimum increment
*
* Since: 4.10
*/
double (* get_minimum_increment) (GtkAccessibleRange *self);
/**
@@ -54,7 +56,9 @@ struct _GtkAccessibleRangeInterface
*
* Sets the current value of @self to @value.
* This operation should behave similarly as if the user performed the action.
* @returns: %true if the operation was performed, %false otherwise
* Returns: %true if the operation was performed, %false otherwise
*
* Since: 4.10
*/
gboolean (* set_current_value) (GtkAccessibleRange *self, double value);
};