2022-11-28 17:58:13 -06:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2022, Jonah Shafran <jonahshafran@gmail.com>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2023-11-20 21:59:45 +13:00
|
|
|
#include <AK/String.h>
|
2023-02-25 15:50:34 -06:00
|
|
|
#include <AK/Vector.h>
|
|
|
|
|
#include <LibWeb/ARIA/AriaData.h>
|
2024-12-05 08:33:26 -05:00
|
|
|
#include <LibWeb/ARIA/AttributeNames.h>
|
2023-01-28 22:23:16 +00:00
|
|
|
#include <LibWeb/ARIA/Roles.h>
|
2022-11-28 17:58:13 -06:00
|
|
|
#include <LibWeb/WebIDL/ExceptionOr.h>
|
|
|
|
|
|
2023-01-28 22:23:16 +00:00
|
|
|
namespace Web::ARIA {
|
2022-11-28 17:58:13 -06:00
|
|
|
|
|
|
|
|
class ARIAMixin {
|
|
|
|
|
public:
|
|
|
|
|
virtual ~ARIAMixin() = default;
|
|
|
|
|
|
2024-12-05 08:33:26 -05:00
|
|
|
#define __ENUMERATE_ARIA_ATTRIBUTE(name, attribute) \
|
|
|
|
|
virtual Optional<String> name() const = 0; \
|
|
|
|
|
virtual WebIDL::ExceptionOr<void> set_##name(Optional<String> const&) = 0;
|
|
|
|
|
ENUMERATE_ARIA_ATTRIBUTES
|
|
|
|
|
#undef __ENUMERATE_ARIA_ATTRIBUTE
|
2022-11-28 17:58:13 -06:00
|
|
|
|
|
|
|
|
// https://www.w3.org/TR/html-aria/#docconformance
|
2023-07-07 22:48:11 -04:00
|
|
|
virtual Optional<Role> default_role() const { return {}; }
|
2022-11-28 17:58:13 -06:00
|
|
|
|
2024-12-19 16:56:58 +09:00
|
|
|
virtual DOM::Element const* to_element() const { return {}; }
|
|
|
|
|
|
2024-12-06 18:41:38 +09:00
|
|
|
Optional<Role> role_from_role_attribute_value() const;
|
2023-01-28 22:23:16 +00:00
|
|
|
Optional<Role> role_or_default() const;
|
2022-11-28 17:58:13 -06:00
|
|
|
|
2022-12-11 10:53:37 -06:00
|
|
|
// https://www.w3.org/TR/wai-aria-1.2/#tree_exclusion
|
|
|
|
|
virtual bool exclude_from_accessibility_tree() const = 0;
|
|
|
|
|
|
|
|
|
|
// https://www.w3.org/TR/wai-aria-1.2/#tree_inclusion
|
|
|
|
|
virtual bool include_in_accessibility_tree() const = 0;
|
|
|
|
|
|
2022-12-11 10:52:58 -06:00
|
|
|
bool has_global_aria_attribute() const;
|
|
|
|
|
|
2023-02-25 15:50:34 -06:00
|
|
|
// https://www.w3.org/TR/wai-aria-1.2/#valuetype_idref
|
2023-11-20 21:59:45 +13:00
|
|
|
Optional<String> parse_id_reference(Optional<String> const&) const;
|
2023-02-25 15:50:34 -06:00
|
|
|
|
|
|
|
|
// https://www.w3.org/TR/wai-aria-1.2/#valuetype_idref_list
|
2023-11-20 21:59:45 +13:00
|
|
|
Vector<String> parse_id_reference_list(Optional<String> const&) const;
|
2023-02-25 15:50:34 -06:00
|
|
|
|
2022-11-28 17:58:13 -06:00
|
|
|
protected:
|
|
|
|
|
ARIAMixin() = default;
|
2023-02-25 15:50:34 -06:00
|
|
|
|
2023-11-20 21:59:45 +13:00
|
|
|
virtual bool id_reference_exists(String const&) const = 0;
|
2022-11-28 17:58:13 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|