├── .gitignore ├── LICENSE ├── README.md ├── Setup.hs ├── fltkhs-demos.cabal ├── src └── Examples │ ├── PopenShim.H │ ├── PopenShim.c │ ├── arc.hs │ ├── bitmap.hs │ ├── boxtype.hs │ ├── browser.hs │ ├── clock.hs │ ├── doublebuffer.hs │ ├── fd-example.hs │ ├── howto-drag-and-drop.hs │ ├── make-tree.hs │ ├── nativefilechooser-simple-app.hs │ ├── pack.hs │ ├── table-as-container.hs │ ├── table-simple.hs │ ├── table-sort.hs │ ├── table-spreadsheet-with-keyboard-nav.hs │ ├── textdisplay-with-colors.hs │ ├── texteditor-simple.hs │ ├── threads.hs │ ├── tile.hs │ └── tree-simple.hs └── stack.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | .\#* 2 | ./ 3 | *~ 4 | dist/* 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deech/fltkhs-demos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deech/fltkhs-demos/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deech/fltkhs-demos/HEAD/Setup.hs -------------------------------------------------------------------------------- /fltkhs-demos.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deech/fltkhs-demos/HEAD/fltkhs-demos.cabal -------------------------------------------------------------------------------- /src/Examples/PopenShim.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deech/fltkhs-demos/HEAD/src/Examples/PopenShim.H -------------------------------------------------------------------------------- /src/Examples/PopenShim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deech/fltkhs-demos/HEAD/src/Examples/PopenShim.c -------------------------------------------------------------------------------- /src/Examples/arc.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deech/fltkhs-demos/HEAD/src/Examples/arc.hs -------------------------------------------------------------------------------- /src/Examples/bitmap.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deech/fltkhs-demos/HEAD/src/Examples/bitmap.hs -------------------------------------------------------------------------------- /src/Examples/boxtype.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deech/fltkhs-demos/HEAD/src/Examples/boxtype.hs -------------------------------------------------------------------------------- /src/Examples/browser.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deech/fltkhs-demos/HEAD/src/Examples/browser.hs -------------------------------------------------------------------------------- /src/Examples/clock.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deech/fltkhs-demos/HEAD/src/Examples/clock.hs -------------------------------------------------------------------------------- /src/Examples/doublebuffer.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deech/fltkhs-demos/HEAD/src/Examples/doublebuffer.hs -------------------------------------------------------------------------------- /src/Examples/fd-example.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deech/fltkhs-demos/HEAD/src/Examples/fd-example.hs -------------------------------------------------------------------------------- /src/Examples/howto-drag-and-drop.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deech/fltkhs-demos/HEAD/src/Examples/howto-drag-and-drop.hs -------------------------------------------------------------------------------- /src/Examples/make-tree.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deech/fltkhs-demos/HEAD/src/Examples/make-tree.hs -------------------------------------------------------------------------------- /src/Examples/nativefilechooser-simple-app.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deech/fltkhs-demos/HEAD/src/Examples/nativefilechooser-simple-app.hs -------------------------------------------------------------------------------- /src/Examples/pack.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deech/fltkhs-demos/HEAD/src/Examples/pack.hs -------------------------------------------------------------------------------- /src/Examples/table-as-container.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deech/fltkhs-demos/HEAD/src/Examples/table-as-container.hs -------------------------------------------------------------------------------- /src/Examples/table-simple.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deech/fltkhs-demos/HEAD/src/Examples/table-simple.hs -------------------------------------------------------------------------------- /src/Examples/table-sort.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deech/fltkhs-demos/HEAD/src/Examples/table-sort.hs -------------------------------------------------------------------------------- /src/Examples/table-spreadsheet-with-keyboard-nav.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deech/fltkhs-demos/HEAD/src/Examples/table-spreadsheet-with-keyboard-nav.hs -------------------------------------------------------------------------------- /src/Examples/textdisplay-with-colors.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deech/fltkhs-demos/HEAD/src/Examples/textdisplay-with-colors.hs -------------------------------------------------------------------------------- /src/Examples/texteditor-simple.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deech/fltkhs-demos/HEAD/src/Examples/texteditor-simple.hs -------------------------------------------------------------------------------- /src/Examples/threads.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deech/fltkhs-demos/HEAD/src/Examples/threads.hs -------------------------------------------------------------------------------- /src/Examples/tile.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deech/fltkhs-demos/HEAD/src/Examples/tile.hs -------------------------------------------------------------------------------- /src/Examples/tree-simple.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deech/fltkhs-demos/HEAD/src/Examples/tree-simple.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deech/fltkhs-demos/HEAD/stack.yaml --------------------------------------------------------------------------------