mirror of
https://github.com/Insality/druid.git
synced 2025-06-27 10:27:47 +02:00
59 lines
1.3 KiB
Lua
59 lines
1.3 KiB
Lua
local event = require("event.event")
|
|
|
|
-- Require checkbox component from checkbox example
|
|
local checkbox = require("example.examples.basic.checkbox.checkbox")
|
|
|
|
---@class examples.radio_group: druid.widget
|
|
---@field checkboxes examples.checkbox[]
|
|
---@field state boolean[]
|
|
local M = {}
|
|
|
|
|
|
function M:init()
|
|
self.state = {}
|
|
self.checkboxes = {
|
|
self.druid:new_widget(checkbox, "checkbox_1"),
|
|
self.druid:new_widget(checkbox, "checkbox_2"),
|
|
self.druid:new_widget(checkbox, "checkbox_3")
|
|
}
|
|
|
|
for i = 1, #self.checkboxes do
|
|
self.checkboxes[i].on_state_changed:subscribe(self.on_checkbox_click, self)
|
|
self.state[i] = false
|
|
end
|
|
|
|
self.checkboxes[1]:set_state(true)
|
|
self.state[1] = true
|
|
|
|
self.on_state_changed = event.create()
|
|
end
|
|
|
|
|
|
function M:on_checkbox_click()
|
|
local new_clicked = nil
|
|
for index = 1, #self.checkboxes do
|
|
if self.checkboxes[index]:get_state() ~= self.state[index] then
|
|
new_clicked = index
|
|
break
|
|
end
|
|
end
|
|
|
|
for index = 1, #self.state do
|
|
self.checkboxes[index]:set_state(index == new_clicked)
|
|
self.state[index] = index == new_clicked
|
|
end
|
|
|
|
self.on_state_changed:trigger(new_clicked)
|
|
end
|
|
|
|
|
|
---@param output_log output_list
|
|
function M:on_example_created(output_log)
|
|
self.on_state_changed:subscribe(function(selected)
|
|
output_log:add_log_text("Selected: " .. selected)
|
|
end)
|
|
end
|
|
|
|
|
|
return M
|