glyphs: Add box and filled box

We can use these in buttons as a fast indicator if a particular setting is
enabled/disabled.
This commit is contained in:
June Tate-Gans 2021-05-09 10:30:12 -05:00
parent bfdf8e1190
commit 4eb039bc27

View File

@ -13,6 +13,8 @@ class Glyphs(enum.Enum):
CHEVRON_RIGHT = [(4, 2), (2, 0), (2, 4), (4, 2), (2, 2)] CHEVRON_RIGHT = [(4, 2), (2, 0), (2, 4), (4, 2), (2, 2)]
WRENCH = [(0, 4), (0, 3), (2, 1), (2, 0), (3, 0), (4, 1), (4, 2), (3, 2), WRENCH = [(0, 4), (0, 3), (2, 1), (2, 0), (3, 0), (4, 1), (4, 2), (3, 2),
(1, 4)] (1, 4)]
BOX = [(1, 1), (3, 1), (3, 3), (1, 3), (1, 1)]
FILLED_BOX = [(1, 1), (3, 1), (3, 3), (1, 3), (1, 1), (2, 2)]
BLANK = [] BLANK = []
BOUNDS = (5, 5) BOUNDS = (5, 5)