├── .gitignore ├── .project ├── LICENSE ├── Makefile ├── README.md └── src ├── .gitignore ├── Makefile ├── examples ├── .gitignore ├── Makefile ├── hello.go └── text.go ├── fltk.cxx ├── fltk.go ├── fltk.h ├── group.go ├── input.go ├── layoutcalc.go ├── texteditor.go ├── widget.go └── window.go /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | *~ 3 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zot/go-fltk/HEAD/.project -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zot/go-fltk/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zot/go-fltk/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zot/go-fltk/HEAD/README.md -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zot/go-fltk/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zot/go-fltk/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/examples/.gitignore: -------------------------------------------------------------------------------- 1 | hello 2 | text 3 | -------------------------------------------------------------------------------- /src/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zot/go-fltk/HEAD/src/examples/Makefile -------------------------------------------------------------------------------- /src/examples/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zot/go-fltk/HEAD/src/examples/hello.go -------------------------------------------------------------------------------- /src/examples/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zot/go-fltk/HEAD/src/examples/text.go -------------------------------------------------------------------------------- /src/fltk.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zot/go-fltk/HEAD/src/fltk.cxx -------------------------------------------------------------------------------- /src/fltk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zot/go-fltk/HEAD/src/fltk.go -------------------------------------------------------------------------------- /src/fltk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zot/go-fltk/HEAD/src/fltk.h -------------------------------------------------------------------------------- /src/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zot/go-fltk/HEAD/src/group.go -------------------------------------------------------------------------------- /src/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zot/go-fltk/HEAD/src/input.go -------------------------------------------------------------------------------- /src/layoutcalc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zot/go-fltk/HEAD/src/layoutcalc.go -------------------------------------------------------------------------------- /src/texteditor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zot/go-fltk/HEAD/src/texteditor.go -------------------------------------------------------------------------------- /src/widget.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zot/go-fltk/HEAD/src/widget.go -------------------------------------------------------------------------------- /src/window.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zot/go-fltk/HEAD/src/window.go --------------------------------------------------------------------------------