├── .editorconfig ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── analysis_options.yaml ├── bin └── flfn_serve.dart ├── doc └── dds-2016-lightning-talk.pdf ├── example ├── cairo.cpp ├── cairo_image_surface.cpp ├── callback.cpp ├── choice.cpp ├── dnd.cpp ├── draw_x.cpp ├── hello_world.cpp ├── image.cpp ├── image.png ├── inline_image.cpp ├── opengl.cpp ├── opengles.cpp ├── text_highlight.cpp └── xpm.cpp ├── ext ├── classes │ ├── Box.yaml │ ├── Button.yaml │ ├── CairoWindow.yaml │ ├── Choice.yaml │ ├── DoubleWindow.yaml │ ├── GlWindow.yaml │ ├── Group.yaml │ ├── Input.yaml │ ├── Menu.yaml │ ├── TextBuffer.yaml │ ├── TextDisplay.yaml │ ├── TextEditor.yaml │ ├── Widget.yaml │ └── Window.yaml ├── functions │ ├── color.yaml │ ├── core.yaml │ ├── draw.yaml │ └── event.yaml └── src │ ├── classes │ ├── Menu.cpp │ ├── TextDisplay.cpp │ └── Widget.cpp │ ├── common.cpp │ ├── common.hpp │ ├── custom.cpp │ ├── custom.hpp │ ├── main.cpp │ └── wrappers │ ├── Fl_Cairo_Window_Wrapper.cpp │ ├── Fl_Cairo_Window_Wrapper.hpp │ ├── Fl_Text_Buffer_Wrapper.cpp │ ├── Fl_Text_Buffer_Wrapper.hpp │ ├── Fl_Text_Display_Wrapper.cpp │ ├── Fl_Text_Display_Wrapper.hpp │ ├── Fl_Text_Editor_Wrapper.cpp │ └── Fl_Text_Editor_Wrapper.hpp ├── lib ├── enums.dart ├── flfn.dart ├── fltk.dart ├── hvif.dart └── src │ ├── box.dart │ ├── button.dart │ ├── cairo_surface.dart │ ├── cairo_window.dart │ ├── choice.dart │ ├── double_window.dart │ ├── enums │ ├── align.dart │ ├── boxtype.dart │ ├── color.dart │ ├── event.dart │ ├── font.dart │ ├── glmode.dart │ ├── labeltype.dart │ ├── option.dart │ ├── shortcut.dart │ └── when.dart │ ├── fl │ ├── color.dart │ ├── core.dart │ ├── draw.dart │ ├── event.dart │ └── xpm.dart │ ├── flfn │ ├── app.dart │ ├── box.dart │ ├── button.dart │ ├── run.dart │ ├── widget.dart │ ├── window.dart │ └── wm.dart │ ├── gl_window.dart │ ├── group.dart │ ├── hvif │ ├── hvif.dart │ ├── path.dart │ ├── shape.dart │ ├── style.dart │ ├── transformer.dart │ └── utils.dart │ ├── input.dart │ ├── menu.dart │ ├── text_buffer.dart │ ├── text_display.dart │ ├── text_editor.dart │ ├── utils │ └── cairo.dart │ ├── widget.dart │ └── window.dart ├── pubspec.yaml ├── tar └── fltk-1.3.3-source.tar.gz ├── test ├── classic │ ├── cairo.dart │ ├── cairo_surface.dart │ ├── callback.dart │ ├── callback_stream.dart │ ├── choice.dart │ ├── dartpad.dart │ ├── dnd.dart │ ├── draw_x.dart │ ├── fltk.hvif │ ├── hello_world.dart │ ├── hvif.dart │ ├── image.dart │ ├── opengl.dart │ ├── shaders │ │ ├── default.frag │ │ ├── hsv_deform.frag │ │ ├── hsv_linear.frag │ │ ├── mandelbrot.frag │ │ └── path_tracer.frag │ ├── shadertoy.dart │ ├── sketchpad.dart │ ├── text_highlight.dart │ └── xpm.dart └── flfn │ ├── callback.dart │ └── hello_world.dart └── tool ├── codegen ├── generate.dart ├── settings.yaml └── templates │ ├── classes │ ├── header.mustache │ └── source.mustache │ ├── functions │ ├── header.mustache │ └── source.mustache │ └── wrappers │ ├── header.mustache │ └── source.mustache ├── compile-ext.sh └── pre-commit.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /bin/flfn_serve.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/bin/flfn_serve.dart -------------------------------------------------------------------------------- /doc/dds-2016-lightning-talk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/doc/dds-2016-lightning-talk.pdf -------------------------------------------------------------------------------- /example/cairo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/example/cairo.cpp -------------------------------------------------------------------------------- /example/cairo_image_surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/example/cairo_image_surface.cpp -------------------------------------------------------------------------------- /example/callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/example/callback.cpp -------------------------------------------------------------------------------- /example/choice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/example/choice.cpp -------------------------------------------------------------------------------- /example/dnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/example/dnd.cpp -------------------------------------------------------------------------------- /example/draw_x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/example/draw_x.cpp -------------------------------------------------------------------------------- /example/hello_world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/example/hello_world.cpp -------------------------------------------------------------------------------- /example/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/example/image.cpp -------------------------------------------------------------------------------- /example/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/example/image.png -------------------------------------------------------------------------------- /example/inline_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/example/inline_image.cpp -------------------------------------------------------------------------------- /example/opengl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/example/opengl.cpp -------------------------------------------------------------------------------- /example/opengles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/example/opengles.cpp -------------------------------------------------------------------------------- /example/text_highlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/example/text_highlight.cpp -------------------------------------------------------------------------------- /example/xpm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/example/xpm.cpp -------------------------------------------------------------------------------- /ext/classes/Box.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/classes/Box.yaml -------------------------------------------------------------------------------- /ext/classes/Button.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/classes/Button.yaml -------------------------------------------------------------------------------- /ext/classes/CairoWindow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/classes/CairoWindow.yaml -------------------------------------------------------------------------------- /ext/classes/Choice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/classes/Choice.yaml -------------------------------------------------------------------------------- /ext/classes/DoubleWindow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/classes/DoubleWindow.yaml -------------------------------------------------------------------------------- /ext/classes/GlWindow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/classes/GlWindow.yaml -------------------------------------------------------------------------------- /ext/classes/Group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/classes/Group.yaml -------------------------------------------------------------------------------- /ext/classes/Input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/classes/Input.yaml -------------------------------------------------------------------------------- /ext/classes/Menu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/classes/Menu.yaml -------------------------------------------------------------------------------- /ext/classes/TextBuffer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/classes/TextBuffer.yaml -------------------------------------------------------------------------------- /ext/classes/TextDisplay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/classes/TextDisplay.yaml -------------------------------------------------------------------------------- /ext/classes/TextEditor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/classes/TextEditor.yaml -------------------------------------------------------------------------------- /ext/classes/Widget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/classes/Widget.yaml -------------------------------------------------------------------------------- /ext/classes/Window.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/classes/Window.yaml -------------------------------------------------------------------------------- /ext/functions/color.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/functions/color.yaml -------------------------------------------------------------------------------- /ext/functions/core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/functions/core.yaml -------------------------------------------------------------------------------- /ext/functions/draw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/functions/draw.yaml -------------------------------------------------------------------------------- /ext/functions/event.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/functions/event.yaml -------------------------------------------------------------------------------- /ext/src/classes/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/src/classes/Menu.cpp -------------------------------------------------------------------------------- /ext/src/classes/TextDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/src/classes/TextDisplay.cpp -------------------------------------------------------------------------------- /ext/src/classes/Widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/src/classes/Widget.cpp -------------------------------------------------------------------------------- /ext/src/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/src/common.cpp -------------------------------------------------------------------------------- /ext/src/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/src/common.hpp -------------------------------------------------------------------------------- /ext/src/custom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/src/custom.cpp -------------------------------------------------------------------------------- /ext/src/custom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/src/custom.hpp -------------------------------------------------------------------------------- /ext/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/src/main.cpp -------------------------------------------------------------------------------- /ext/src/wrappers/Fl_Cairo_Window_Wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/src/wrappers/Fl_Cairo_Window_Wrapper.cpp -------------------------------------------------------------------------------- /ext/src/wrappers/Fl_Cairo_Window_Wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/src/wrappers/Fl_Cairo_Window_Wrapper.hpp -------------------------------------------------------------------------------- /ext/src/wrappers/Fl_Text_Buffer_Wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/src/wrappers/Fl_Text_Buffer_Wrapper.cpp -------------------------------------------------------------------------------- /ext/src/wrappers/Fl_Text_Buffer_Wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/src/wrappers/Fl_Text_Buffer_Wrapper.hpp -------------------------------------------------------------------------------- /ext/src/wrappers/Fl_Text_Display_Wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/src/wrappers/Fl_Text_Display_Wrapper.cpp -------------------------------------------------------------------------------- /ext/src/wrappers/Fl_Text_Display_Wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/src/wrappers/Fl_Text_Display_Wrapper.hpp -------------------------------------------------------------------------------- /ext/src/wrappers/Fl_Text_Editor_Wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/src/wrappers/Fl_Text_Editor_Wrapper.cpp -------------------------------------------------------------------------------- /ext/src/wrappers/Fl_Text_Editor_Wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/ext/src/wrappers/Fl_Text_Editor_Wrapper.hpp -------------------------------------------------------------------------------- /lib/enums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/enums.dart -------------------------------------------------------------------------------- /lib/flfn.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/flfn.dart -------------------------------------------------------------------------------- /lib/fltk.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/fltk.dart -------------------------------------------------------------------------------- /lib/hvif.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/hvif.dart -------------------------------------------------------------------------------- /lib/src/box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/box.dart -------------------------------------------------------------------------------- /lib/src/button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/button.dart -------------------------------------------------------------------------------- /lib/src/cairo_surface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/cairo_surface.dart -------------------------------------------------------------------------------- /lib/src/cairo_window.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/cairo_window.dart -------------------------------------------------------------------------------- /lib/src/choice.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/choice.dart -------------------------------------------------------------------------------- /lib/src/double_window.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/double_window.dart -------------------------------------------------------------------------------- /lib/src/enums/align.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/enums/align.dart -------------------------------------------------------------------------------- /lib/src/enums/boxtype.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/enums/boxtype.dart -------------------------------------------------------------------------------- /lib/src/enums/color.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/enums/color.dart -------------------------------------------------------------------------------- /lib/src/enums/event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/enums/event.dart -------------------------------------------------------------------------------- /lib/src/enums/font.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/enums/font.dart -------------------------------------------------------------------------------- /lib/src/enums/glmode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/enums/glmode.dart -------------------------------------------------------------------------------- /lib/src/enums/labeltype.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/enums/labeltype.dart -------------------------------------------------------------------------------- /lib/src/enums/option.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/enums/option.dart -------------------------------------------------------------------------------- /lib/src/enums/shortcut.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/enums/shortcut.dart -------------------------------------------------------------------------------- /lib/src/enums/when.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/enums/when.dart -------------------------------------------------------------------------------- /lib/src/fl/color.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/fl/color.dart -------------------------------------------------------------------------------- /lib/src/fl/core.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/fl/core.dart -------------------------------------------------------------------------------- /lib/src/fl/draw.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/fl/draw.dart -------------------------------------------------------------------------------- /lib/src/fl/event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/fl/event.dart -------------------------------------------------------------------------------- /lib/src/fl/xpm.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/fl/xpm.dart -------------------------------------------------------------------------------- /lib/src/flfn/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/flfn/app.dart -------------------------------------------------------------------------------- /lib/src/flfn/box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/flfn/box.dart -------------------------------------------------------------------------------- /lib/src/flfn/button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/flfn/button.dart -------------------------------------------------------------------------------- /lib/src/flfn/run.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/flfn/run.dart -------------------------------------------------------------------------------- /lib/src/flfn/widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/flfn/widget.dart -------------------------------------------------------------------------------- /lib/src/flfn/window.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/flfn/window.dart -------------------------------------------------------------------------------- /lib/src/flfn/wm.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/flfn/wm.dart -------------------------------------------------------------------------------- /lib/src/gl_window.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/gl_window.dart -------------------------------------------------------------------------------- /lib/src/group.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/group.dart -------------------------------------------------------------------------------- /lib/src/hvif/hvif.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/hvif/hvif.dart -------------------------------------------------------------------------------- /lib/src/hvif/path.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/hvif/path.dart -------------------------------------------------------------------------------- /lib/src/hvif/shape.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/hvif/shape.dart -------------------------------------------------------------------------------- /lib/src/hvif/style.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/hvif/style.dart -------------------------------------------------------------------------------- /lib/src/hvif/transformer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/hvif/transformer.dart -------------------------------------------------------------------------------- /lib/src/hvif/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/hvif/utils.dart -------------------------------------------------------------------------------- /lib/src/input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/input.dart -------------------------------------------------------------------------------- /lib/src/menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/menu.dart -------------------------------------------------------------------------------- /lib/src/text_buffer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/text_buffer.dart -------------------------------------------------------------------------------- /lib/src/text_display.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/text_display.dart -------------------------------------------------------------------------------- /lib/src/text_editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/text_editor.dart -------------------------------------------------------------------------------- /lib/src/utils/cairo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/utils/cairo.dart -------------------------------------------------------------------------------- /lib/src/widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/widget.dart -------------------------------------------------------------------------------- /lib/src/window.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/lib/src/window.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /tar/fltk-1.3.3-source.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/tar/fltk-1.3.3-source.tar.gz -------------------------------------------------------------------------------- /test/classic/cairo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/test/classic/cairo.dart -------------------------------------------------------------------------------- /test/classic/cairo_surface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/test/classic/cairo_surface.dart -------------------------------------------------------------------------------- /test/classic/callback.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/test/classic/callback.dart -------------------------------------------------------------------------------- /test/classic/callback_stream.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/test/classic/callback_stream.dart -------------------------------------------------------------------------------- /test/classic/choice.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/test/classic/choice.dart -------------------------------------------------------------------------------- /test/classic/dartpad.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/test/classic/dartpad.dart -------------------------------------------------------------------------------- /test/classic/dnd.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/test/classic/dnd.dart -------------------------------------------------------------------------------- /test/classic/draw_x.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/test/classic/draw_x.dart -------------------------------------------------------------------------------- /test/classic/fltk.hvif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/test/classic/fltk.hvif -------------------------------------------------------------------------------- /test/classic/hello_world.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/test/classic/hello_world.dart -------------------------------------------------------------------------------- /test/classic/hvif.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/test/classic/hvif.dart -------------------------------------------------------------------------------- /test/classic/image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/test/classic/image.dart -------------------------------------------------------------------------------- /test/classic/opengl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/test/classic/opengl.dart -------------------------------------------------------------------------------- /test/classic/shaders/default.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/test/classic/shaders/default.frag -------------------------------------------------------------------------------- /test/classic/shaders/hsv_deform.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/test/classic/shaders/hsv_deform.frag -------------------------------------------------------------------------------- /test/classic/shaders/hsv_linear.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/test/classic/shaders/hsv_linear.frag -------------------------------------------------------------------------------- /test/classic/shaders/mandelbrot.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/test/classic/shaders/mandelbrot.frag -------------------------------------------------------------------------------- /test/classic/shaders/path_tracer.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/test/classic/shaders/path_tracer.frag -------------------------------------------------------------------------------- /test/classic/shadertoy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/test/classic/shadertoy.dart -------------------------------------------------------------------------------- /test/classic/sketchpad.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/test/classic/sketchpad.dart -------------------------------------------------------------------------------- /test/classic/text_highlight.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/test/classic/text_highlight.dart -------------------------------------------------------------------------------- /test/classic/xpm.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/test/classic/xpm.dart -------------------------------------------------------------------------------- /test/flfn/callback.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/test/flfn/callback.dart -------------------------------------------------------------------------------- /test/flfn/hello_world.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/test/flfn/hello_world.dart -------------------------------------------------------------------------------- /tool/codegen/generate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/tool/codegen/generate.dart -------------------------------------------------------------------------------- /tool/codegen/settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/tool/codegen/settings.yaml -------------------------------------------------------------------------------- /tool/codegen/templates/classes/header.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/tool/codegen/templates/classes/header.mustache -------------------------------------------------------------------------------- /tool/codegen/templates/classes/source.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/tool/codegen/templates/classes/source.mustache -------------------------------------------------------------------------------- /tool/codegen/templates/functions/header.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/tool/codegen/templates/functions/header.mustache -------------------------------------------------------------------------------- /tool/codegen/templates/functions/source.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/tool/codegen/templates/functions/source.mustache -------------------------------------------------------------------------------- /tool/codegen/templates/wrappers/header.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/tool/codegen/templates/wrappers/header.mustache -------------------------------------------------------------------------------- /tool/codegen/templates/wrappers/source.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/tool/codegen/templates/wrappers/source.mustache -------------------------------------------------------------------------------- /tool/compile-ext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/tool/compile-ext.sh -------------------------------------------------------------------------------- /tool/pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bergwerf/fltk-dart/HEAD/tool/pre-commit.sh --------------------------------------------------------------------------------