Cleaned up demo shadow drawing

This commit is contained in:
Bruce Hill 2020-04-20 13:53:33 -07:00
parent 0edd7a3ae8
commit e5445010aa
3 changed files with 18 additions and 12 deletions

View File

@ -9,12 +9,15 @@ int main(void)
int x = 1, y = 1;
while (!done) {
const char *title = "BTUI C Demo";
btui_set_attributes(bt, BTUI_BG_BLUE | BTUI_FG_BLACK);
int w = (int)strlen(title);
int center = (bt->width - w) / 2;
btui_fill_box(bt, center-2, 0, w+4, 3);
btui_set_attributes(bt, BTUI_FG_BLUE | BTUI_BG_NORMAL);
btui_draw_shadow(bt, center-2, 0, w+4, 3);
btui_set_attributes(bt, BTUI_BG_BLUE | BTUI_FG_BLACK);
btui_fill_box(bt, center-2, 0, w+4, 3);
btui_move_cursor(bt, center, 1);
btui_printf(bt, "%s", title);
btui_set_attributes(bt, BTUI_NORMAL);

View File

@ -22,12 +22,14 @@ btui(function(bt)
bt:write("Pressed: ", key)
end)
bt:withattributes("bg_blue", "fg_black", function()
local title = "Lua BTUI Demo"
local w = #title
local center = math.floor((bt:width() - w) / 2)
bt:fillbox(center-2, 0, w+4, 3)
local title = "Lua BTUI Demo"
local w = #title
local center = math.floor((bt:width() - w) / 2)
bt:withattributes("fg_blue", "bg_normal", function()
bt:shadow(center-2, 0, w+4, 3)
end)
bt:withattributes("bg_blue", "fg_black", function()
bt:fillbox(center-2, 0, w+4, 3)
bt:move(center, 1)
bt:write(title)
end)

View File

@ -17,12 +17,13 @@ with open_btui() as bt:
bt.move(x, y)
bt.write(f"Pressed: {key}")
with bt.attributes("bg_blue", "fg_black"):
title = "Python bt Demo"
w = len(title)
center = (bt.width - w) // 2
bt.fill_box(center - 2, 0, w + 4, 3)
title = "Python BTUI Demo"
w = len(title)
center = (bt.width - w) // 2
with bt.attributes("fg_blue", "bg_normal"):
bt.draw_shadow(center - 2, 0, w + 4, 3)
with bt.attributes("bg_blue", "fg_black"):
bt.fill_box(center - 2, 0, w + 4, 3)
bt.move(center, 1)
bt.write(title)