iup-stack/iup/srclua5/elem/flattree.lua

42 lines
1.3 KiB
Lua
Raw Normal View History

2023-02-20 16:44:45 +00:00
------------------------------------------------------------------------------
-- Tree class
------------------------------------------------------------------------------
local ctrl = {
nick = "flattree",
parent = iup.WIDGET,
subdir = "elem",
funcname = "FlatTree",
creation = "",
callback = {
-- selection_cb = "nn",
-- multiselection_cb = "nn", -- fake definition to be replaced by treefuncs module
-- multiunselection_cb = "nn", -- fake definition to be replaced by treefuncs module
-- branchopen_cb = "n",
-- branchclose_cb = "n",
-- executeleaf_cb = "n",
-- executebranch_cb = "n",
-- noderemoved_cb = "s", -- fake definition to be replaced by treefuncs module
-- rename_cb = "ns",
-- showrename_cb = "n",
-- rightclick_cb = "n",
-- dragdrop_cb = "nnnn",
-- togglevalue_cb = "nn",
},
-- extrafuncs = 1,
}
ctrl.SetNodeAttributes = iup.TreeSetNodeAttributes
ctrl.SetAncestorsAttributes = iup.TreeSetAncestorsAttributes
ctrl.SetDescendantsAttributes = iup.TreeSetDescendantsAttributes
ctrl.AddNodes = iup.TreeAddNodes
ctrl.GetId = iup.TreeGetId
ctrl.GetUserId = iup.TreeGetUserId
ctrl.SetUserId = iup.TreeSetUserId
function ctrl.createElement(class, param)
return iup.FlatTree()
end
iup.RegisterWidget(ctrl)
iup.SetClass(ctrl, "iupWidget")