MoonFLTK is a Lua binding library for the Fast Light Toolkit (FLTK).
It runs on GNU/Linux and on Windows (MSYS2/MinGW) and requires Lua (>=5.3) and FLTK (>=1.3.3).
Authored by: Stefano Trettel
MIT/X11 license (same as Lua). See LICENSE.
See the Reference Manual.
Setup the build environment as described here, then:
$ git clone https://github.com/stetre/moonfltk
$ cd moonfltk
moonfltk$ make
moonfltk$ make install # or 'sudo make install' (Ubuntu)
-- Script: hello.lua
fl = require("moonfltk")
win = fl.window(340, 180, arg[0])
box = fl.box(20, 40, 300, 100, "Hello, World!");
box:box('up box')
box:labelfont(fl.BOLD + fl.ITALIC)
box:labelsize(36)
box:labeltype('shadow')
win:done() -- 'end' is a keyword in Lua
win:show(arg[0], arg)
return fl.run()
The script can be executed at the shell prompt with the standard Lua interpreter:
$ lua hello.lua
Other examples can be found in the examples/ directory contained in the release package (the examples/fltk subdirectory contains portings to MoonFLTK of most of the examples that come with the FLTK distribution).