mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 04:07:35 +00:00
LibGfx: Expand TextAttributes with more information about underlining
This adds a seperate Color to be used for underlines as well as support for different underline styles.
This commit is contained in:
parent
0277118cb4
commit
ece59948c3
1 changed files with 10 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
||||||
|
* Copyright (c) 2022, Tobias Christiansen <tobyase@serenityos.org>
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: BSD-2-Clause
|
* SPDX-License-Identifier: BSD-2-Clause
|
||||||
*/
|
*/
|
||||||
|
@ -12,10 +13,18 @@
|
||||||
namespace Gfx {
|
namespace Gfx {
|
||||||
|
|
||||||
struct TextAttributes {
|
struct TextAttributes {
|
||||||
|
enum class UnderlineStyle {
|
||||||
|
Solid,
|
||||||
|
Wavy
|
||||||
|
};
|
||||||
|
|
||||||
Color color;
|
Color color;
|
||||||
Optional<Color> background_color;
|
Optional<Color> background_color {};
|
||||||
bool underline { false };
|
bool underline { false };
|
||||||
bool bold { false };
|
bool bold { false };
|
||||||
|
|
||||||
|
Optional<Color> underline_color {};
|
||||||
|
UnderlineStyle underline_style { UnderlineStyle::Solid };
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue