cc-mek-scada/graphics/elements/button_push.lua

58 lines
1.7 KiB
Lua
Raw Normal View History

2022-06-08 18:48:17 +00:00
-- Button Graphics Element
local tcd = require("scada-common.tcallbackdsp")
local element = require("graphics.element")
---@class push_button_args
2022-06-08 18:48:17 +00:00
---@field text string button text
---@field callback function function to call on touch
---@field min_width? integer text length + 2 if omitted
---@field active_fg_bg? cpair foreground/background colors when pressed
---@field parent graphics_element
---@field x? integer 1 if omitted
---@field y? integer 1 if omitted
---@field height? integer parent height if omitted
---@field fg_bg cpair foreground/background colors
-- new push button
---@param args push_button_args
local function push_button(args)
2022-06-08 18:48:17 +00:00
local text_width = string.len(args.text)
args.width = math.max(text_width + 2, args.min_width)
-- create new graphics element base object
local e = element.new(args)
local h_pad = math.floor((e.frame.w - text_width) / 2)
local v_pad = math.floor(e.frame.h / 2) + 1
-- write the button text
e.window.setCursorPos(h_pad, v_pad)
e.write(args.text)
-- handle touch
function e.handle_touch(event)
if args.active_fg_bg ~= nil then
-- show as pressed
e.window.setTextColor(args.active_fg_bg.fgd)
e.window.setBackgroundColor(args.active_fg_bg.bkg)
e.window.redraw()
-- show as unpressed in 0.5 seconds
tcd.dispatch(0.5, function ()
e.window.setTextColor(e.fg_bg.fgd)
e.window.setBackgroundColor(e.fg_bg.bkg)
e.window.redraw()
end)
end
-- call the touch callback
args.callback()
end
return e.get()
end
return push_button