btui/Lua/test.lua

45 lines
1.2 KiB
Lua

local btui = require("btui")
btui(function(bt)
local key = nil
local x, y = 0, 0
while key ~= "q" and key ~= "Ctrl-c" do
if key == "?" then
bt:withdisabled(function()
io.write("OK? ")
io.flush()
io.read()
end)
elseif key == "Ctrl-z" then
bt:suspend()
end
bt:clear()
bt:move(x, y)
bt:withbg(.8,.95,.2, function()
bt:withfg(0,0,0, function()
bt:print(" Pressed: ", key, " ")
end)
end)
local title = "Lua BTUI Demo"
bt:withattributes("bold", "underline", function()
bt:withfg(100,200,255, function()
bt:move(math.floor((bt:width()-#title)/2), 0)
bt:print(title)
end)
end)
local s = ("Size: (%dx%d)"):format(bt:width(), bt:height())
bt:move(bt:width()-#s, bt:height()-1)
bt:print(s)
local mouse_x, mouse_y
key, mouse_x, mouse_y = bt:getkey()
if mouse_x then x, y = mouse_x, mouse_y end
end
if key == "Ctrl-c" then
error("Interrupt received!")
end
end)