mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-27 03:39:04 +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
Notes:
sideshowbarker
2024-07-18 00:34:07 +09:00
Author: https://github.com/TobyAsE
Commit: ece59948c3
Pull-request: https://github.com/SerenityOS/serenity/pull/12027
Reviewed-by: https://github.com/AtkinsSJ
Reviewed-by: https://github.com/alimpfard
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