2020-07-08 15:34:32 +00:00
|
|
|
/* gtkaccessiblevalueprivate.h: Accessible value
|
|
|
|
*
|
|
|
|
* Copyright 2020 GNOME Foundation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <glib-object.h>
|
|
|
|
|
2020-07-13 14:51:39 +00:00
|
|
|
#include "gtkaccessible.h"
|
2020-07-08 15:34:32 +00:00
|
|
|
#include "gtkenums.h"
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GTK_TYPE_ACCESSIBLE_VALUE (gtk_accessible_value_get_type())
|
|
|
|
|
|
|
|
#define GTK_ACCESSIBLE_VALUE_ERROR (gtk_accessible_value_error_quark())
|
|
|
|
|
|
|
|
typedef struct _GtkAccessibleValue GtkAccessibleValue;
|
|
|
|
typedef struct _GtkAccessibleValueClass GtkAccessibleValueClass;
|
|
|
|
|
2020-07-16 17:08:22 +00:00
|
|
|
typedef enum {
|
|
|
|
GTK_ACCESSIBLE_VALUE_TYPE_UNDEFINED,
|
|
|
|
GTK_ACCESSIBLE_VALUE_TYPE_BOOLEAN,
|
|
|
|
GTK_ACCESSIBLE_VALUE_TYPE_TRISTATE,
|
|
|
|
GTK_ACCESSIBLE_VALUE_TYPE_TOKEN,
|
|
|
|
GTK_ACCESSIBLE_VALUE_TYPE_INTEGER,
|
|
|
|
GTK_ACCESSIBLE_VALUE_TYPE_NUMBER,
|
|
|
|
GTK_ACCESSIBLE_VALUE_TYPE_STRING,
|
2020-07-22 12:07:36 +00:00
|
|
|
GTK_ACCESSIBLE_VALUE_TYPE_REFERENCE,
|
|
|
|
GTK_ACCESSIBLE_VALUE_TYPE_REFERENCE_LIST
|
2020-07-16 17:08:22 +00:00
|
|
|
} GtkAccessibleValueType;
|
|
|
|
|
2020-07-08 15:34:32 +00:00
|
|
|
struct _GtkAccessibleValue
|
|
|
|
{
|
|
|
|
const GtkAccessibleValueClass *value_class;
|
|
|
|
|
|
|
|
int ref_count;
|
|
|
|
};
|
|
|
|
|
2020-07-16 17:08:22 +00:00
|
|
|
#define GTK_ACCESSIBLE_VALUE_INIT(klass) { .value_class = (klass), .ref_count = 1 }
|
|
|
|
|
2020-07-08 15:34:32 +00:00
|
|
|
struct _GtkAccessibleValueClass
|
|
|
|
{
|
2020-07-16 17:08:22 +00:00
|
|
|
GtkAccessibleValueType type;
|
2020-07-08 15:34:32 +00:00
|
|
|
const char *type_name;
|
|
|
|
gsize instance_size;
|
|
|
|
|
|
|
|
void (* init) (GtkAccessibleValue *self);
|
|
|
|
void (* finalize) (GtkAccessibleValue *self);
|
|
|
|
void (* print) (const GtkAccessibleValue *self,
|
|
|
|
GString *string);
|
|
|
|
gboolean (* equal) (const GtkAccessibleValue *value_a,
|
|
|
|
const GtkAccessibleValue *value_b);
|
|
|
|
};
|
|
|
|
|
2020-07-16 17:08:22 +00:00
|
|
|
#define GTK_IS_ACCESSIBLE_VALUE_TYPE(v,type) \
|
|
|
|
((v)->value_class->type == (type))
|
|
|
|
|
2020-07-08 15:34:32 +00:00
|
|
|
typedef enum {
|
|
|
|
GTK_ACCESSIBLE_VALUE_ERROR_READ_ONLY,
|
|
|
|
GTK_ACCESSIBLE_VALUE_ERROR_INVALID_VALUE,
|
|
|
|
GTK_ACCESSIBLE_VALUE_ERROR_INVALID_RANGE,
|
|
|
|
GTK_ACCESSIBLE_VALUE_ERROR_INVALID_TOKEN
|
|
|
|
} GtkAccessibleValueError;
|
|
|
|
|
|
|
|
GType gtk_accessible_value_get_type (void) G_GNUC_CONST;
|
|
|
|
GQuark gtk_accessible_value_error_quark (void);
|
|
|
|
|
|
|
|
GtkAccessibleValue * gtk_accessible_value_alloc (const GtkAccessibleValueClass *klass);
|
|
|
|
GtkAccessibleValue * gtk_accessible_value_ref (GtkAccessibleValue *self);
|
|
|
|
void gtk_accessible_value_unref (GtkAccessibleValue *self);
|
|
|
|
void gtk_accessible_value_print (const GtkAccessibleValue *self,
|
|
|
|
GString *buffer);
|
|
|
|
char * gtk_accessible_value_to_string (const GtkAccessibleValue *self);
|
|
|
|
gboolean gtk_accessible_value_equal (const GtkAccessibleValue *value_a,
|
|
|
|
const GtkAccessibleValue *value_b);
|
|
|
|
|
|
|
|
GtkAccessibleValue * gtk_accessible_value_get_default_for_state (GtkAccessibleState state);
|
|
|
|
GtkAccessibleValue * gtk_accessible_value_collect_for_state (GtkAccessibleState state,
|
a11y: Add proper error reporting to value collection
We're currently overloading NULL to mean both "this value is undefined,
and should be reset to its default" and "the value collection failed".
Let's do error reporting right, by using GError to mean "the collection
failed, for this specific reason"; then, we can use a NULL return value
to signal that the accessible attribute should be reset to its default
value.
This is only relevant for pointer-sized attribute values: strings,
references, and reference lists; numeric, boolean, tristate, and token
values either cannot be undefined, or have a specific "undefined" value.
2020-07-28 15:41:44 +00:00
|
|
|
GError **error,
|
2020-07-08 15:34:32 +00:00
|
|
|
va_list *args);
|
|
|
|
GtkAccessibleValue * gtk_accessible_value_collect_for_state_value (GtkAccessibleState state,
|
a11y: Add proper error reporting to value collection
We're currently overloading NULL to mean both "this value is undefined,
and should be reset to its default" and "the value collection failed".
Let's do error reporting right, by using GError to mean "the collection
failed, for this specific reason"; then, we can use a NULL return value
to signal that the accessible attribute should be reset to its default
value.
This is only relevant for pointer-sized attribute values: strings,
references, and reference lists; numeric, boolean, tristate, and token
values either cannot be undefined, or have a specific "undefined" value.
2020-07-28 15:41:44 +00:00
|
|
|
const GValue *value,
|
|
|
|
GError **error);
|
2020-10-21 12:22:58 +00:00
|
|
|
GtkAccessibleValue * gtk_accessible_value_parse_for_state (GtkAccessibleState state,
|
|
|
|
const char *str,
|
|
|
|
gsize len,
|
|
|
|
GError **error);
|
2020-07-08 15:34:32 +00:00
|
|
|
|
2020-07-13 14:22:24 +00:00
|
|
|
GtkAccessibleValue * gtk_accessible_value_get_default_for_property (GtkAccessibleProperty property);
|
|
|
|
GtkAccessibleValue * gtk_accessible_value_collect_for_property (GtkAccessibleProperty property,
|
a11y: Add proper error reporting to value collection
We're currently overloading NULL to mean both "this value is undefined,
and should be reset to its default" and "the value collection failed".
Let's do error reporting right, by using GError to mean "the collection
failed, for this specific reason"; then, we can use a NULL return value
to signal that the accessible attribute should be reset to its default
value.
This is only relevant for pointer-sized attribute values: strings,
references, and reference lists; numeric, boolean, tristate, and token
values either cannot be undefined, or have a specific "undefined" value.
2020-07-28 15:41:44 +00:00
|
|
|
GError **error,
|
2020-07-13 14:22:24 +00:00
|
|
|
va_list *args);
|
|
|
|
GtkAccessibleValue * gtk_accessible_value_collect_for_property_value (GtkAccessibleProperty property,
|
a11y: Add proper error reporting to value collection
We're currently overloading NULL to mean both "this value is undefined,
and should be reset to its default" and "the value collection failed".
Let's do error reporting right, by using GError to mean "the collection
failed, for this specific reason"; then, we can use a NULL return value
to signal that the accessible attribute should be reset to its default
value.
This is only relevant for pointer-sized attribute values: strings,
references, and reference lists; numeric, boolean, tristate, and token
values either cannot be undefined, or have a specific "undefined" value.
2020-07-28 15:41:44 +00:00
|
|
|
const GValue *value,
|
|
|
|
GError **error);
|
2020-10-21 12:22:58 +00:00
|
|
|
GtkAccessibleValue * gtk_accessible_value_parse_for_property (GtkAccessibleProperty property,
|
|
|
|
const char *str,
|
|
|
|
gsize len,
|
|
|
|
GError **error);
|
2020-07-13 14:22:24 +00:00
|
|
|
|
2020-07-17 11:00:31 +00:00
|
|
|
GtkAccessibleValue * gtk_accessible_value_get_default_for_relation (GtkAccessibleRelation relation);
|
|
|
|
GtkAccessibleValue * gtk_accessible_value_collect_for_relation (GtkAccessibleRelation relation,
|
a11y: Add proper error reporting to value collection
We're currently overloading NULL to mean both "this value is undefined,
and should be reset to its default" and "the value collection failed".
Let's do error reporting right, by using GError to mean "the collection
failed, for this specific reason"; then, we can use a NULL return value
to signal that the accessible attribute should be reset to its default
value.
This is only relevant for pointer-sized attribute values: strings,
references, and reference lists; numeric, boolean, tristate, and token
values either cannot be undefined, or have a specific "undefined" value.
2020-07-28 15:41:44 +00:00
|
|
|
GError **error,
|
2020-07-17 11:00:31 +00:00
|
|
|
va_list *args);
|
|
|
|
GtkAccessibleValue * gtk_accessible_value_collect_for_relation_value (GtkAccessibleRelation relation,
|
a11y: Add proper error reporting to value collection
We're currently overloading NULL to mean both "this value is undefined,
and should be reset to its default" and "the value collection failed".
Let's do error reporting right, by using GError to mean "the collection
failed, for this specific reason"; then, we can use a NULL return value
to signal that the accessible attribute should be reset to its default
value.
This is only relevant for pointer-sized attribute values: strings,
references, and reference lists; numeric, boolean, tristate, and token
values either cannot be undefined, or have a specific "undefined" value.
2020-07-28 15:41:44 +00:00
|
|
|
const GValue *value,
|
|
|
|
GError **error);
|
2020-10-21 12:22:58 +00:00
|
|
|
GtkAccessibleValue * gtk_accessible_value_parse_for_relation (GtkAccessibleRelation relation,
|
|
|
|
const char *str,
|
|
|
|
gsize len,
|
|
|
|
GError **error);
|
2020-07-17 11:00:31 +00:00
|
|
|
|
2020-07-13 14:22:24 +00:00
|
|
|
/* Basic values */
|
2020-07-15 18:08:37 +00:00
|
|
|
GtkAccessibleValue * gtk_undefined_accessible_value_new (void);
|
2020-07-16 17:08:22 +00:00
|
|
|
int gtk_undefined_accessible_value_get (const GtkAccessibleValue *value);
|
2020-07-15 18:08:37 +00:00
|
|
|
|
2020-07-13 14:22:24 +00:00
|
|
|
GtkAccessibleValue * gtk_boolean_accessible_value_new (gboolean value);
|
|
|
|
gboolean gtk_boolean_accessible_value_get (const GtkAccessibleValue *value);
|
2020-07-08 15:34:32 +00:00
|
|
|
|
2020-07-16 17:08:22 +00:00
|
|
|
GtkAccessibleValue * gtk_tristate_accessible_value_new (GtkAccessibleTristate value);
|
|
|
|
GtkAccessibleTristate gtk_tristate_accessible_value_get (const GtkAccessibleValue *value);
|
|
|
|
|
2020-07-13 14:22:24 +00:00
|
|
|
GtkAccessibleValue * gtk_int_accessible_value_new (int value);
|
|
|
|
int gtk_int_accessible_value_get (const GtkAccessibleValue *value);
|
2020-07-08 15:34:32 +00:00
|
|
|
|
2020-07-13 14:22:24 +00:00
|
|
|
GtkAccessibleValue * gtk_number_accessible_value_new (double value);
|
|
|
|
double gtk_number_accessible_value_get (const GtkAccessibleValue *value);
|
2020-07-08 15:34:32 +00:00
|
|
|
|
2020-07-13 14:22:24 +00:00
|
|
|
GtkAccessibleValue * gtk_string_accessible_value_new (const char *value);
|
|
|
|
const char * gtk_string_accessible_value_get (const GtkAccessibleValue *value);
|
2020-07-08 15:34:32 +00:00
|
|
|
|
2020-07-13 14:51:39 +00:00
|
|
|
GtkAccessibleValue * gtk_reference_accessible_value_new (GtkAccessible *value);
|
|
|
|
GtkAccessible * gtk_reference_accessible_value_get (const GtkAccessibleValue *value);
|
|
|
|
|
2020-07-22 12:07:36 +00:00
|
|
|
GtkAccessibleValue * gtk_reference_list_accessible_value_new (GList *value);
|
|
|
|
GList * gtk_reference_list_accessible_value_get (const GtkAccessibleValue *value);
|
|
|
|
|
2020-07-13 14:22:24 +00:00
|
|
|
/* Token values */
|
|
|
|
GtkAccessibleValue * gtk_invalid_accessible_value_new (GtkAccessibleInvalidState value);
|
2020-07-08 15:34:32 +00:00
|
|
|
GtkAccessibleInvalidState gtk_invalid_accessible_value_get (const GtkAccessibleValue *value);
|
2020-10-21 12:22:58 +00:00
|
|
|
GtkAccessibleValue * gtk_invalid_accessible_value_parse (const char *str,
|
|
|
|
gsize len,
|
|
|
|
GError **error);
|
2020-11-10 14:08:16 +00:00
|
|
|
void gtk_invalid_accessible_value_init_value (GValue *value);
|
2020-07-08 15:34:32 +00:00
|
|
|
|
2020-07-13 14:22:24 +00:00
|
|
|
GtkAccessibleValue * gtk_autocomplete_accessible_value_new (GtkAccessibleAutocomplete value);
|
|
|
|
GtkAccessibleAutocomplete gtk_autocomplete_accessible_value_get (const GtkAccessibleValue *value);
|
2020-10-21 12:22:58 +00:00
|
|
|
GtkAccessibleValue * gtk_autocomplete_accessible_value_parse (const char *str,
|
|
|
|
gsize len,
|
|
|
|
GError **error);
|
2020-11-10 14:08:16 +00:00
|
|
|
void gtk_autocomplete_accessible_value_init_value (GValue *value);
|
2020-07-13 14:22:24 +00:00
|
|
|
|
|
|
|
GtkAccessibleValue * gtk_orientation_accessible_value_new (GtkOrientation value);
|
|
|
|
GtkOrientation gtk_orientation_accessible_value_get (const GtkAccessibleValue *value);
|
2020-10-21 12:22:58 +00:00
|
|
|
GtkAccessibleValue * gtk_orientation_accessible_value_parse (const char *str,
|
|
|
|
gsize len,
|
|
|
|
GError **error);
|
2020-11-10 14:08:16 +00:00
|
|
|
void gtk_orientation_accessible_value_init_value (GValue *value);
|
2020-07-13 14:22:24 +00:00
|
|
|
|
|
|
|
GtkAccessibleValue * gtk_sort_accessible_value_new (GtkAccessibleSort value);
|
|
|
|
GtkAccessibleSort gtk_sort_accessible_value_get (const GtkAccessibleValue *value);
|
2020-10-21 12:22:58 +00:00
|
|
|
GtkAccessibleValue * gtk_sort_accessible_value_parse (const char *str,
|
|
|
|
gsize len,
|
|
|
|
GError **error);
|
2020-11-10 14:08:16 +00:00
|
|
|
void gtk_sort_accessible_value_init_value (GValue *value);
|
2020-07-13 14:22:24 +00:00
|
|
|
|
2020-07-08 15:34:32 +00:00
|
|
|
G_END_DECLS
|