mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-01 05:14:58 +00:00
Typeface is a more widely used name for the data represented by class previously named VectorFont. Now: - Typeface represents decoded font that is not ready for rendering - ScaledFont represents the combination of typeface and size for rendering
40 lines
924 B
C++
40 lines
924 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/ByteString.h>
|
|
#include <AK/FlyString.h>
|
|
#include <AK/Function.h>
|
|
#include <AK/HashMap.h>
|
|
#include <AK/OwnPtr.h>
|
|
#include <LibGfx/Font/FontWeight.h>
|
|
#include <LibGfx/Font/Typeface.h>
|
|
#include <LibGfx/Forward.h>
|
|
|
|
namespace Gfx {
|
|
|
|
class FontDatabase {
|
|
public:
|
|
static FontDatabase& the();
|
|
|
|
RefPtr<Gfx::Font> get(FlyString const& family, float point_size, unsigned weight, unsigned width, unsigned slope);
|
|
RefPtr<Gfx::Font> get(FlyString const& family, FlyString const& variant, float point_size);
|
|
|
|
void for_each_typeface_with_family_name(FlyString const& family_name, Function<void(Typeface const&)>);
|
|
|
|
void load_all_fonts_from_uri(StringView);
|
|
|
|
private:
|
|
FontDatabase();
|
|
~FontDatabase() = default;
|
|
|
|
struct Private;
|
|
OwnPtr<Private> m_private;
|
|
};
|
|
|
|
}
|