summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGfx/TextAttributes.h
blob: e1f7b4850e5e181e4d0646b291917bc720f81a42 (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
/*
 * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
 * Copyright (c) 2022, Tobias Christiansen <tobyase@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/Optional.h>
#include <LibGfx/Color.h>

namespace Gfx {

struct TextAttributes {
    enum class UnderlineStyle {
        Solid,
        Wavy
    };

    Color color;
    Optional<Color> background_color {};
    bool underline { false };
    bool bold { false };

    Optional<Color> underline_color {};
    UnderlineStyle underline_style { UnderlineStyle::Solid };
};

}