blob: e01dab5c3002e9993b56dc2ee22ff6b997041aa4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
------------------------------------------------------------------------------
-- Text class
------------------------------------------------------------------------------
local ctrl = {
nick = "text",
parent = WIDGET,
creation = "-",
callback = {
action = "ns",
caret_cb = "nnn",
valuechanged_cb = "", -- used by many other controls
}
}
function ctrl.createElement(class, arg)
return Text()
end
iupRegisterWidget(ctrl)
iupSetClass(ctrl, "iup widget")
|