├── LICENCE ├── Makefile ├── README.md ├── data ├── icofont.ttf ├── roboto-bold.ttf ├── roboto-regular.ttf └── robotomono-regular.ttf └── src ├── alfi.c ├── animation.c ├── animation.h ├── attribute.c ├── attribute.h ├── fons.c ├── fons.h ├── gridfmt.c ├── gridfmt.h ├── history.c ├── history.h ├── list.c ├── list.h ├── navi-resolve ├── navi.c ├── nvg.c ├── nvg.h ├── nvg_gl.c ├── nvg_gl.h ├── parser.c ├── parser.h ├── pool.c ├── pool.h ├── render.c ├── render.h ├── resource.c ├── resource.h ├── stb_image.h ├── stb_truetype.h ├── style.c ├── style.h ├── url.c ├── url.h ├── view.c ├── view.h ├── widget.c └── widget.h /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/LICENCE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/README.md -------------------------------------------------------------------------------- /data/icofont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/data/icofont.ttf -------------------------------------------------------------------------------- /data/roboto-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/data/roboto-bold.ttf -------------------------------------------------------------------------------- /data/roboto-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/data/roboto-regular.ttf -------------------------------------------------------------------------------- /data/robotomono-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/data/robotomono-regular.ttf -------------------------------------------------------------------------------- /src/alfi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/alfi.c -------------------------------------------------------------------------------- /src/animation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/animation.c -------------------------------------------------------------------------------- /src/animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/animation.h -------------------------------------------------------------------------------- /src/attribute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/attribute.c -------------------------------------------------------------------------------- /src/attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/attribute.h -------------------------------------------------------------------------------- /src/fons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/fons.c -------------------------------------------------------------------------------- /src/fons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/fons.h -------------------------------------------------------------------------------- /src/gridfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/gridfmt.c -------------------------------------------------------------------------------- /src/gridfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/gridfmt.h -------------------------------------------------------------------------------- /src/history.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/history.c -------------------------------------------------------------------------------- /src/history.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/history.h -------------------------------------------------------------------------------- /src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/list.c -------------------------------------------------------------------------------- /src/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/list.h -------------------------------------------------------------------------------- /src/navi-resolve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/navi-resolve -------------------------------------------------------------------------------- /src/navi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/navi.c -------------------------------------------------------------------------------- /src/nvg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/nvg.c -------------------------------------------------------------------------------- /src/nvg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/nvg.h -------------------------------------------------------------------------------- /src/nvg_gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/nvg_gl.c -------------------------------------------------------------------------------- /src/nvg_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/nvg_gl.h -------------------------------------------------------------------------------- /src/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/parser.c -------------------------------------------------------------------------------- /src/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/parser.h -------------------------------------------------------------------------------- /src/pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/pool.c -------------------------------------------------------------------------------- /src/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/pool.h -------------------------------------------------------------------------------- /src/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/render.c -------------------------------------------------------------------------------- /src/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/render.h -------------------------------------------------------------------------------- /src/resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/resource.c -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/resource.h -------------------------------------------------------------------------------- /src/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/stb_image.h -------------------------------------------------------------------------------- /src/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/stb_truetype.h -------------------------------------------------------------------------------- /src/style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/style.c -------------------------------------------------------------------------------- /src/style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/style.h -------------------------------------------------------------------------------- /src/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/url.c -------------------------------------------------------------------------------- /src/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/url.h -------------------------------------------------------------------------------- /src/view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/view.c -------------------------------------------------------------------------------- /src/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/view.h -------------------------------------------------------------------------------- /src/widget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/widget.c -------------------------------------------------------------------------------- /src/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezze/alfi/HEAD/src/widget.h --------------------------------------------------------------------------------