* For controls where a minimum increment makes no sense and which do not allow\r
* setting the current value from the user, the default implementation of this\r
* interface suffices.\r
+ *\r
+ * Since: 4.10\r
*/\r
\r
#include "config.h"\r
* Returns the minimum increment which this `GtkAccessibleRange` supports.\r
*\r
* Returns: the minimum increment, or 0.0 if not overridden\r
+ *\r
+ * Since: 4.10\r
*/\r
double\r
gtk_accessible_range_get_minimum_increment (GtkAccessibleRange *self)\r
* gtk_accessible_range_set_current_value:\r
* @self: a `GtkAccessibleRange`\r
*\r
- * Sets the current value of this `GtkAccessibleRange`.\r
+ * Sets the current value of this `GtkAccessibleRange` to @value.\r
* Note that for some widgets implementing this interface, setting a value\r
* through the accessibility API makes no sense, so calling this function may\r
* in some cases do nothing.\r
* @returns: %true if the call changed the value, %false otherwise\r
+ *\r
+ * Since: 4.10\r
*/\r
gboolean\r
gtk_accessible_range_set_current_value (GtkAccessibleRange *self, double value)\r
* Returns the minimum increment for this `GtkAccessibleRange`.\r
* The default implementation returns 0.0, which indicates that a minimum\r
* increment does not make sense for this implementation.\r
- * @returns: the minimum increment\r
+ * Returns: the minimum increment\r
+ * \r
+ * Since: 4.10\r
*/\r
double (* get_minimum_increment) (GtkAccessibleRange *self);\r
/**\r
* \r
* Sets the current value of @self to @value.\r
* This operation should behave similarly as if the user performed the action.\r
- * @returns: %true if the operation was performed, %false otherwise\r
+ * Returns: %true if the operation was performed, %false otherwise\r
+ *\r
+ * Since: 4.10\r
*/\r
gboolean (* set_current_value) (GtkAccessibleRange *self, double value);\r
};\r