/* * Copyright (c) 2024, Andrew Kaster * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include #include namespace Gfx { class PathFontProvider final : public SystemFontProvider { AK_MAKE_NONCOPYABLE(PathFontProvider); AK_MAKE_NONMOVABLE(PathFontProvider); public: PathFontProvider(); virtual ~PathFontProvider() override; void set_name_but_fixme_should_create_custom_system_font_provider(String name) { m_name = move(name); } void load_all_fonts_from_uri(StringView); virtual RefPtr get_font(FlyString const& family, float point_size, unsigned weight, unsigned width, unsigned slope) override; virtual void for_each_typeface_with_family_name(FlyString const& family_name, Function) override; virtual StringView name() const override { return m_name.bytes_as_string_view(); } private: HashMap>, AK::ASCIICaseInsensitiveFlyStringTraits> m_typeface_by_family; String m_name { "Path"_string }; }; }