/* * Copyright (c) 2018-2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include #include namespace Gfx { namespace FontWeight { enum { Thin = 100, ExtraLight = 200, Light = 300, Regular = 400, Medium = 500, SemiBold = 600, Bold = 700, ExtraBold = 800, Black = 900, ExtraBlack = 950 }; } class FontDatabase { public: static FontDatabase& the(); static Font& default_font(); static Font& default_fixed_width_font(); static String default_font_query(); static String fixed_width_font_query(); static void set_default_font_query(String); static void set_fixed_width_font_query(String); RefPtr get(const String& family, unsigned size, unsigned weight); RefPtr get(const String& family, const String& variant, unsigned size); RefPtr get_by_name(const StringView&); void for_each_font(Function); void for_each_fixed_width_font(Function); void for_each_typeface(Function); private: FontDatabase(); ~FontDatabase(); RefPtr get_or_create_typeface(const String& family, const String& variant); struct Private; OwnPtr m_private; }; }