22 lines
430 B
Lua
Executable File
22 lines
430 B
Lua
Executable File
require 'iuplua'
|
|
|
|
btn1 = iup.button{title = "Click me!"}
|
|
btn2 = iup.button{title = "and me!"}
|
|
|
|
function btn1:action ()
|
|
iup.Message("Note","I have been clicked!")
|
|
end
|
|
|
|
function btn2:action ()
|
|
iup.Message("Note","Me too!")
|
|
end
|
|
|
|
bbox = iup.hbox {btn1,btn2; gap=4}
|
|
text = iup.multiline{expand = "YES"}
|
|
vbox = iup.vbox{bbox,text}
|
|
dlg = iup.dialog{vbox; title="Simple Dialog",size="QUARTERxQUARTER"}
|
|
|
|
dlg:show()
|
|
|
|
iup.MainLoop()
|