summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGfx/Font/FontDatabase.h
blob: 971b6a9e76d2d9134c53cd7100f4375aaabeaaa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
 * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/DeprecatedString.h>
#include <AK/Function.h>
#include <AK/HashMap.h>
#include <AK/OwnPtr.h>
#include <LibGfx/Font/Typeface.h>
#include <LibGfx/Forward.h>

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 Font& window_title_font();

    static DeprecatedString default_font_query();
    static DeprecatedString window_title_font_query();
    static DeprecatedString fixed_width_font_query();

    static DeprecatedString default_fonts_lookup_path();
    static void set_default_font_query(DeprecatedString);
    static void set_window_title_font_query(DeprecatedString);
    static void set_fixed_width_font_query(DeprecatedString);
    static void set_default_fonts_lookup_path(DeprecatedString);

    RefPtr<Gfx::Font> get(DeprecatedFlyString const& family, float point_size, unsigned weight, unsigned width, unsigned slope, Font::AllowInexactSizeMatch = Font::AllowInexactSizeMatch::No);
    RefPtr<Gfx::Font> get(DeprecatedFlyString const& family, DeprecatedFlyString const& variant, float point_size, Font::AllowInexactSizeMatch = Font::AllowInexactSizeMatch::No);
    RefPtr<Gfx::Font> get_by_name(StringView);
    void for_each_font(Function<void(Gfx::Font const&)>);
    void for_each_fixed_width_font(Function<void(Gfx::Font const&)>);

    void for_each_typeface(Function<void(Typeface const&)>);

    void load_all_fonts_from_path(DeprecatedString const&);

private:
    FontDatabase();
    ~FontDatabase() = default;

    RefPtr<Typeface> get_or_create_typeface(DeprecatedString const& family, DeprecatedString const& variant);

    struct Private;
    OwnPtr<Private> m_private;
};

}