forked from AuroraMiddleware/gtk
31fea11255
MinimumIncrement is an AT-SPI-ism that has no counterpart in the ARIA specification, so it should not live inside public API. Additionally, it's not really a useful method because it collapses two values on the adjustment API. The only method in the GtkAccessibleRange interface should be the set_current_value(), which allows ATs to control the current position in a ranged widget. The AT-SPI implementation can now use all the accessible properties, including the VALUE_TEXT one, mapped to the Text property on the AtSpi.Value interface.
19 lines
427 B
C
19 lines
427 B
C
/* gtkaccessiblerangeprivate.h: Accessible range private API
|
|
*
|
|
* SPDX-FileCopyrightText: 2022 Emmanuele Bassi
|
|
* SPDX-FileCopyrightText: 2022 Red Hat Inc
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "gtkaccessiblerange.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
gboolean
|
|
gtk_accessible_range_set_current_value (GtkAccessibleRange *self,
|
|
double value);
|
|
|
|
G_END_DECLS
|