deco: new decoration, ‘border’

Kind of like “underline”, but draws a border around the entire
particle.
This commit is contained in:
Daniel Eklöf 2021-10-22 18:08:39 +02:00
parent c9abb6b98f
commit f0782d5124
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
4 changed files with 97 additions and 1 deletions

View file

@ -58,6 +58,7 @@ EXTERN_PARTICLE(ramp);
EXTERN_PARTICLE(string);
EXTERN_DECORATION(background);
EXTERN_DECORATION(border);
EXTERN_DECORATION(stack);
EXTERN_DECORATION(underline);
@ -144,6 +145,7 @@ init(void)
REGISTER_CORE_PARTICLE(string, string);
REGISTER_CORE_DECORATION(background, background);
REGISTER_CORE_DECORATION(border, border);
REGISTER_CORE_DECORATION(stack, stack);
REGISTER_CORE_DECORATION(underline, underline);