├── .gitignore ├── ANNOUNCEMENT ├── CHANGES ├── CHANGES_1.0 ├── CHANGES_1.1 ├── CMake ├── FLTK-Functions.cmake ├── FLTKConfig.cmake.in ├── MacOSXBundleInfo.plist.in ├── UseFLTK.cmake.in ├── cmake_uninstall.cmake.in ├── export.cmake ├── install-symlinks.cmake.in ├── install.cmake ├── macros.cmake ├── options.cmake ├── posixScandir.cxx ├── resources.cmake ├── setup.cmake └── variables.cmake ├── CMakeLists.txt ├── COPYING ├── CREDITS ├── DartConfig.cmake ├── FL ├── Enumerations.H ├── Fl.H ├── Fl_Adjuster.H ├── Fl_BMP_Image.H ├── Fl_Bitmap.H ├── Fl_Box.H ├── Fl_Browser.H ├── Fl_Browser_.H ├── Fl_Button.H ├── Fl_Cairo.H ├── Fl_Cairo_Window.H ├── Fl_Chart.H ├── Fl_Check_Browser.H ├── Fl_Check_Button.H ├── Fl_Choice.H ├── Fl_Clock.H ├── Fl_Color_Chooser.H ├── Fl_Copy_Surface.H ├── Fl_Counter.H ├── Fl_Device.H ├── Fl_Dial.H ├── Fl_Double_Window.H ├── Fl_Export.H ├── Fl_File_Browser.H ├── Fl_File_Chooser.H ├── Fl_File_Icon.H ├── Fl_File_Input.H ├── Fl_Fill_Dial.H ├── Fl_Fill_Slider.H ├── Fl_Float_Input.H ├── Fl_FormsBitmap.H ├── Fl_FormsPixmap.H ├── Fl_Free.H ├── Fl_GIF_Image.H ├── Fl_Gl_Window.H ├── Fl_Group.H ├── Fl_Help_Dialog.H ├── Fl_Help_View.H ├── Fl_Hold_Browser.H ├── Fl_Hor_Fill_Slider.H ├── Fl_Hor_Nice_Slider.H ├── Fl_Hor_Slider.H ├── Fl_Hor_Value_Slider.H ├── Fl_Image.H ├── Fl_Image_Surface.H ├── Fl_Input.H ├── Fl_Input_.H ├── Fl_Input_Choice.H ├── Fl_Int_Input.H ├── Fl_JPEG_Image.H ├── Fl_Light_Button.H ├── Fl_Line_Dial.H ├── Fl_Menu.H ├── Fl_Menu_.H ├── Fl_Menu_Bar.H ├── Fl_Menu_Button.H ├── Fl_Menu_Item.H ├── Fl_Menu_Window.H ├── Fl_Multi_Browser.H ├── Fl_Multi_Label.H ├── Fl_Multiline_Input.H ├── Fl_Multiline_Output.H ├── Fl_Native_File_Chooser.H ├── Fl_Nice_Slider.H ├── Fl_Object.H ├── Fl_Output.H ├── Fl_Overlay_Window.H ├── Fl_PNG_Image.H ├── Fl_PNM_Image.H ├── Fl_Pack.H ├── Fl_Paged_Device.H ├── Fl_Pixmap.H ├── Fl_Plugin.H ├── Fl_Positioner.H ├── Fl_PostScript.H ├── Fl_Preferences.H ├── Fl_Printer.H ├── Fl_Progress.H ├── Fl_RGB_Image.H ├── Fl_Radio_Button.H ├── Fl_Radio_Light_Button.H ├── Fl_Radio_Round_Button.H ├── Fl_Repeat_Button.H ├── Fl_Return_Button.H ├── Fl_Roller.H ├── Fl_Round_Button.H ├── Fl_Round_Clock.H ├── Fl_Scroll.H ├── Fl_Scrollbar.H ├── Fl_Secret_Input.H ├── Fl_Select_Browser.H ├── Fl_Shared_Image.H ├── Fl_Simple_Counter.H ├── Fl_Single_Window.H ├── Fl_Slider.H ├── Fl_Spinner.H ├── Fl_Sys_Menu_Bar.H ├── Fl_Table.H ├── Fl_Table_Row.H ├── Fl_Tabs.H ├── Fl_Text_Buffer.H ├── Fl_Text_Display.H ├── Fl_Text_Editor.H ├── Fl_Tile.H ├── Fl_Tiled_Image.H ├── Fl_Timer.H ├── Fl_Toggle_Button.H ├── Fl_Toggle_Light_Button.H ├── Fl_Toggle_Round_Button.H ├── Fl_Tooltip.H ├── Fl_Tree.H ├── Fl_Tree_Item.H ├── Fl_Tree_Item_Array.H ├── Fl_Tree_Prefs.H ├── Fl_Valuator.H ├── Fl_Value_Input.H ├── Fl_Value_Output.H ├── Fl_Value_Slider.H ├── Fl_Widget.H ├── Fl_Window.H ├── Fl_Wizard.H ├── Fl_XBM_Image.H ├── Fl_XPM_Image.H ├── Makefile.in ├── README.Xcode ├── dirent.h ├── filename.H ├── fl_ask.H ├── fl_draw.H ├── fl_message.H ├── fl_show_colormap.H ├── fl_show_input.H ├── fl_types.h ├── fl_utf8.h ├── forms.H ├── gl.h ├── gl2opengl.h ├── gl_draw.H ├── glu.h ├── glut.H ├── mac.H ├── math.h ├── names.h ├── win32.H └── x.H ├── GL └── glut.h ├── Makefile ├── README ├── README.CMake.txt ├── README.Cairo.txt ├── README.MSWindows.txt ├── README.OSX.txt ├── README.Unix.txt ├── README.abi-version.txt ├── VERSION ├── abi-version.cmake.in ├── abi-version.ide ├── abi-version.in ├── autogen.sh ├── cairo ├── CMakeLists.txt ├── Fl_Cairo.cxx ├── Makefile └── makedepend ├── configh.cmake.in ├── configh.in ├── configure.in ├── documentation ├── CMakeLists.txt ├── Doxyfile.in ├── Makefile ├── README ├── make_pdf └── src │ ├── FL.png │ ├── FL200.png │ ├── Fl_Check_Button.png │ ├── Fl_File_Chooser.jpg │ ├── Fl_File_Input.png │ ├── Fl_Help_Dialog.png │ ├── Fl_Light_Button.png │ ├── Fl_Native_File_Chooser.png │ ├── Fl_Return_Button.png │ ├── Fl_Roller.png │ ├── Fl_Round_Button.png │ ├── Fl_Scroll.png │ ├── Fl_Spinner.png │ ├── Fl_Tile.png │ ├── Fl_Tree_Item-dimensions.png │ ├── Fl_Value_Input.png │ ├── Fl_Value_Output.png │ ├── adjuster1.png │ ├── advanced.dox │ ├── basics.dox │ ├── blocks.man │ ├── boxtypes.png │ ├── buttons.png │ ├── charts.png │ ├── checkers.man │ ├── choice.png │ ├── clock.png │ ├── common.dox │ ├── counter.png │ ├── cubeview.png │ ├── development.dox │ ├── dial.png │ ├── drawing.dox │ ├── editor-linenumbers.png │ ├── editor-replace.png │ ├── editor.dox │ ├── editor.png │ ├── enumerations.dox │ ├── events.dox │ ├── examples.dox │ ├── faq.dox │ ├── fl_alert.png │ ├── fl_ask.png │ ├── fl_choice.png │ ├── fl_choice_one.png │ ├── fl_choice_three.png │ ├── fl_choice_two.png │ ├── fl_color_chooser.jpg │ ├── fl_input.png │ ├── fl_message.png │ ├── fl_password.png │ ├── fl_show_colormap.png │ ├── fltk-book.tex.in │ ├── fltk-colormap.png │ ├── fltk-config.man │ ├── fltk.man │ ├── fluid-catgets.png │ ├── fluid-edit-global-fltk-settings.png │ ├── fluid-edit-gui-settings.png │ ├── fluid-edit-proj-settings.png │ ├── fluid-gettext.png │ ├── fluid-layout-grid-and-size-settings.png │ ├── fluid-org.png │ ├── fluid-org.xcf │ ├── fluid.dox │ ├── fluid.man │ ├── fluid1.png │ ├── fluid2.png │ ├── fluid3-cxx.png │ ├── fluid3-gui.png │ ├── fluid3-style.png │ ├── fluid4.png │ ├── fluid_widget_cxx.png │ ├── fluid_widget_gui.png │ ├── fluid_widget_style.png │ ├── forms.dox │ ├── glut.dox │ ├── hello_cxx.png │ ├── html_footer │ ├── index.dox │ ├── input_choice.jpg │ ├── intro.dox │ ├── license.dox │ ├── menu.png │ ├── menu_button.png │ ├── menubar.png │ ├── migration_1_1.dox │ ├── migration_1_3.dox │ ├── opengl.dox │ ├── osissues.dox │ ├── positioner.png │ ├── preface.dox │ ├── resizebox1.png │ ├── resizebox2.png │ ├── round_clock.png │ ├── scrollbar.png │ ├── slider.png │ ├── subclassing.dox │ ├── sudoku.man │ ├── symbols.png │ ├── table-as-container.png │ ├── table-dimensions.png │ ├── table-simple.png │ ├── tabs.png │ ├── tabs_default.png │ ├── tabs_selection.png │ ├── tabs_uniform.png │ ├── text.png │ ├── tiny.png │ ├── tooltip-options.png │ ├── tree-dimensions.png │ ├── tree-elements.png │ ├── tree-simple.png │ ├── unicode.dox │ ├── valuators.png │ └── value_slider.png ├── examples ├── Makefile ├── Makefile.FLTK ├── OpenGL3-glut-test.cxx ├── OpenGL3test.cxx ├── README.examples ├── clipboard.cxx ├── fltk-versions.cxx ├── howto-add_fd-and-popen.cxx ├── howto-browser-with-icons.cxx ├── howto-drag-and-drop.cxx ├── howto-parse-args.cxx ├── howto-text-over-image-button.cxx ├── menubar-add.cxx ├── nativefilechooser-simple-app.cxx ├── progress-simple.cxx ├── shapedwindow.cxx ├── table-as-container.cxx ├── table-simple.cxx ├── table-sort.cxx ├── table-spreadsheet-with-keyboard-nav.cxx ├── table-spreadsheet.cxx ├── table-with-keynav.cxx ├── tabs-simple.cxx ├── textdisplay-with-colors.cxx ├── texteditor-simple.cxx ├── tree-as-container.cxx ├── tree-custom-draw-items.cxx ├── tree-custom-sort.cxx ├── tree-of-tables.cxx ├── tree-simple.cxx └── wizard-simple.cxx ├── fltk-config.in ├── fltk.list.in ├── fltk.spec.in ├── fltk.xpm ├── fluid ├── CMakeLists.txt ├── CodeEditor.cxx ├── CodeEditor.h ├── ExternalCodeEditor_UNIX.cxx ├── ExternalCodeEditor_UNIX.h ├── ExternalCodeEditor_WIN32.cxx ├── ExternalCodeEditor_WIN32.h ├── Fl_Function_Type.cxx ├── Fl_Group_Type.cxx ├── Fl_Menu_Type.cxx ├── Fl_Type.cxx ├── Fl_Type.h ├── Fl_Widget_Type.cxx ├── Fl_Widget_Type.h ├── Fl_Window_Type.cxx ├── Fluid_Image.cxx ├── Fluid_Image.h ├── Makefile ├── Shortcut_Button.h ├── about_panel.cxx ├── about_panel.fl ├── about_panel.h ├── align_widget.cxx ├── alignment_panel.cxx ├── alignment_panel.fl ├── alignment_panel.h ├── code.cxx ├── comments.h ├── factory.cxx ├── file.cxx ├── fluid.app │ └── Contents │ │ ├── Info.plist │ │ ├── PkgInfo │ │ └── Resources │ │ └── fluid.icns ├── fluid.cxx ├── fluid.desktop ├── fluid.xml ├── function_panel.cxx ├── function_panel.fl ├── function_panel.h ├── icons │ ├── fluid-128.png │ ├── fluid-16.png │ ├── fluid-16i.png │ ├── fluid-256.png │ ├── fluid-32.png │ ├── fluid-32.xpm │ ├── fluid-32i.png │ ├── fluid-48.png │ ├── fluid-64.png │ ├── fluid-96.xpm │ ├── fluid.ico │ └── fluid.xcf_gz ├── makedepend ├── pixmaps │ ├── flAdjuster.xpm │ ├── flBox.xpm │ ├── flBrowser.xpm │ ├── flButton.xpm │ ├── flCheckBrowser.xpm │ ├── flCheckButton.xpm │ ├── flChoice.xpm │ ├── flClass.xpm │ ├── flClock.xpm │ ├── flCode.xpm │ ├── flCodeBlock.xpm │ ├── flComment.xpm │ ├── flCounter.xpm │ ├── flData.xpm │ ├── flDeclaration.xpm │ ├── flDeclarationBlock.xpm │ ├── flDial.xpm │ ├── flFileBrowser.xpm │ ├── flFileInput.xpm │ ├── flFunction.xpm │ ├── flGroup.xpm │ ├── flHelp.xpm │ ├── flInput.xpm │ ├── flLightButton.xpm │ ├── flMenuButton.xpm │ ├── flMenubar.xpm │ ├── flMenuitem.xpm │ ├── flOutput.xpm │ ├── flPack.xpm │ ├── flProgress.xpm │ ├── flRepeatButton.xpm │ ├── flReturnButton.xpm │ ├── flRoller.xpm │ ├── flRoundButton.xpm │ ├── flScroll.xpm │ ├── flScrollBar.xpm │ ├── flSlider.xpm │ ├── flSpinner.xpm │ ├── flSubmenu.xpm │ ├── flTable.xpm │ ├── flTabs.xpm │ ├── flTextDisplay.xpm │ ├── flTextEdit.xpm │ ├── flTile.xpm │ ├── flTree.xpm │ ├── flValueInput.xpm │ ├── flValueOutput.xpm │ ├── flValueSlider.xpm │ ├── flWidgetClass.xpm │ ├── flWindow.xpm │ ├── flWizard.xpm │ ├── lock.xpm │ ├── print_color.xpm │ ├── print_gray.xpm │ └── protected.xpm ├── print_panel.cxx ├── print_panel.fl ├── print_panel.h ├── template_panel.cxx ├── template_panel.fl ├── template_panel.h ├── undo.cxx ├── undo.h ├── widget_panel.cxx ├── widget_panel.fl └── widget_panel.h ├── forms.h ├── ide ├── README.IDE ├── VisualC2008 │ ├── CubeView.vcproj │ ├── adjuster.vcproj │ ├── arc.vcproj │ ├── ask.vcproj │ ├── bitmap.vcproj │ ├── blocks.vcproj │ ├── boxtype.vcproj │ ├── browser.vcproj │ ├── button.vcproj │ ├── buttons.vcproj │ ├── cairo_test.vcproj │ ├── cfluid.cmd │ ├── checkers.vcproj │ ├── clock.vcproj │ ├── colbrowser.vcproj │ ├── color_chooser.vcproj │ ├── config.h │ ├── cube.vcproj │ ├── cursor.vcproj │ ├── curve.vcproj │ ├── demo.vcproj │ ├── device.vcproj │ ├── doublebuffer.vcproj │ ├── editor.vcproj │ ├── fast_slow.vcproj │ ├── file_chooser.vcproj │ ├── fltk.lib.vcproj │ ├── fltk.sln │ ├── fltkdll.vcproj │ ├── fltkforms.vcproj │ ├── fltkgl.vcproj │ ├── fltkimages.vcproj │ ├── fluid.vcproj │ ├── fonts.vcproj │ ├── forms.vcproj │ ├── fractals.vcproj │ ├── fullscreen.vcproj │ ├── gl_overlay.vcproj │ ├── glpuzzle.vcproj │ ├── hello.vcproj │ ├── help.vcproj │ ├── iconize.vcproj │ ├── image.vcproj │ ├── inactive.vcproj │ ├── input.vcproj │ ├── input_choice.vcproj │ ├── jpeg.vcproj │ ├── keyboard.vcproj │ ├── label.vcproj │ ├── libpng.vcproj │ ├── line_style.vcproj │ ├── mandelbrot.vcproj │ ├── menubar.vcproj │ ├── message.vcproj │ ├── minimum.vcproj │ ├── native-filechooser.vcproj │ ├── navigation.vcproj │ ├── output.vcproj │ ├── overlay.vcproj │ ├── pack.vcproj │ ├── pixmap.vcproj │ ├── pixmap_browser.vcproj │ ├── preferences.vcproj │ ├── radio.vcproj │ ├── resize.vcproj │ ├── resizebox.vcproj │ ├── rotated_text.vcproj │ ├── scroll.vcproj │ ├── shape.vcproj │ ├── subwindow.vcproj │ ├── sudoku.vcproj │ ├── symbols.vcproj │ ├── table.vcproj │ ├── tabs.vcproj │ ├── threads.vcproj │ ├── tile.vcproj │ ├── tiled_image.vcproj │ ├── tree.vcproj │ ├── unittests.vcproj │ ├── utf8.vcproj │ ├── valuators.vcproj │ └── zlib.vcproj ├── VisualC2010 │ ├── CubeView.vcxproj │ ├── adjuster.vcxproj │ ├── arc.vcxproj │ ├── ask.vcxproj │ ├── bitmap.vcxproj │ ├── blocks.vcxproj │ ├── boxtype.vcxproj │ ├── browser.vcxproj │ ├── button.vcxproj │ ├── buttons.vcxproj │ ├── cairo_test.vcxproj │ ├── cfluid.cmd │ ├── checkers.vcxproj │ ├── clock.vcxproj │ ├── colbrowser.vcxproj │ ├── color_chooser.vcxproj │ ├── config.h │ ├── cube.vcxproj │ ├── cursor.vcxproj │ ├── curve.vcxproj │ ├── demo.vcxproj │ ├── device.vcxproj │ ├── doublebuffer.vcxproj │ ├── editor.vcxproj │ ├── fast_slow.vcxproj │ ├── file_chooser.vcxproj │ ├── fltk.lib.vcxproj │ ├── fltk.lib.vcxproj.filters │ ├── fltk.sln │ ├── fltkdll.vcxproj │ ├── fltkforms.vcxproj │ ├── fltkgl.vcxproj │ ├── fltkimages.vcxproj │ ├── fluid.vcxproj │ ├── fonts.vcxproj │ ├── forms.vcxproj │ ├── fractals.vcxproj │ ├── fullscreen.vcxproj │ ├── gl_overlay.vcxproj │ ├── glpuzzle.vcxproj │ ├── hello.vcxproj │ ├── help.vcxproj │ ├── iconize.vcxproj │ ├── image.vcxproj │ ├── inactive.vcxproj │ ├── input.vcxproj │ ├── input_choice.vcxproj │ ├── jpeg.vcxproj │ ├── keyboard.vcxproj │ ├── label.vcxproj │ ├── libpng.vcxproj │ ├── line_style.vcxproj │ ├── mandelbrot.vcxproj │ ├── menubar.vcxproj │ ├── message.vcxproj │ ├── minimum.vcxproj │ ├── native-filechooser.vcxproj │ ├── navigation.vcxproj │ ├── output.vcxproj │ ├── overlay.vcxproj │ ├── pack.vcxproj │ ├── pixmap.vcxproj │ ├── pixmap_browser.vcxproj │ ├── preferences.vcxproj │ ├── radio.vcxproj │ ├── resize.vcxproj │ ├── resizebox.vcxproj │ ├── rotated_text.vcxproj │ ├── scroll.vcxproj │ ├── shape.vcxproj │ ├── subwindow.vcxproj │ ├── sudoku.vcxproj │ ├── symbols.vcxproj │ ├── table.vcxproj │ ├── tabs.vcxproj │ ├── threads.vcxproj │ ├── tile.vcxproj │ ├── tiled_image.vcxproj │ ├── tree.vcxproj │ ├── unittests.vcxproj │ ├── utf8.vcxproj │ ├── valuators.vcxproj │ └── zlib.vcxproj ├── VisualC6 │ ├── CubeView.dsp │ ├── Demo.dsp │ ├── Fluid.dsp │ ├── adjuster.dsp │ ├── arc.dsp │ ├── ask.dsp │ ├── bitmap.dsp │ ├── blocks.dsp │ ├── boxtype.dsp │ ├── browser.dsp │ ├── button.dsp │ ├── buttons.dsp │ ├── checkers.dsp │ ├── clock.dsp │ ├── colbrowser.dsp │ ├── color_chooser.dsp │ ├── config.h │ ├── cube.dsp │ ├── cursor.dsp │ ├── curve.dsp │ ├── device.dsp │ ├── doublebuffer.dsp │ ├── editor.dsp │ ├── fast_slow.dsp │ ├── file_chooser.dsp │ ├── fltk.dsp │ ├── fltk.dsw │ ├── fltk_forms.dsp │ ├── fltk_formsdll.dsp │ ├── fltk_gl.dsp │ ├── fltk_gldll.dsp │ ├── fltk_images.dsp │ ├── fltk_imagesdll.dsp │ ├── fltk_jpeg.dsp │ ├── fltk_jpegdll.dsp │ ├── fltk_png.dsp │ ├── fltk_pngdll.dsp │ ├── fltk_zlib.dsp │ ├── fltk_zlibdll.dsp │ ├── fltkdll.dsp │ ├── fonts.dsp │ ├── forms.dsp │ ├── fractals.dsp │ ├── fullscreen.dsp │ ├── gl_overlay.dsp │ ├── glpuzzle.dsp │ ├── hello.dsp │ ├── help.dsp │ ├── iconize.dsp │ ├── image.dsp │ ├── inactive.dsp │ ├── input.dsp │ ├── input_choice.dsp │ ├── keyboard.dsp │ ├── label.dsp │ ├── line_style.dsp │ ├── list_visuals.dsp │ ├── mandelbrot.dsp │ ├── menubar.dsp │ ├── message.dsp │ ├── minimum.dsp │ ├── native-filechooser.dsp │ ├── navigation.dsp │ ├── output.dsp │ ├── overlay.dsp │ ├── pack.dsp │ ├── pixmap.dsp │ ├── pixmap_browser.dsp │ ├── preferences.dsp │ ├── radio.dsp │ ├── resize.dsp │ ├── resizebox.dsp │ ├── rotated_text.dsp │ ├── scroll.dsp │ ├── shape.dsp │ ├── subwindow.dsp │ ├── sudoku.dsp │ ├── symbols.dsp │ ├── table.dsp │ ├── tabs.dsp │ ├── threads.dsp │ ├── tile.dsp │ ├── tiled_image.dsp │ ├── tree.dsp │ ├── utf8.dsp │ └── valuators.dsp └── Xcode4 │ ├── FLTK.xcodeproj │ └── project.pbxproj │ ├── Project Templates │ └── FLTK Application │ │ └── FLTK 1.3 │ │ ├── English.lproj │ │ └── InfoPlist.strings │ │ ├── ___PROJECTNAMEASIDENTIFIER___-Info.plist │ │ ├── ___PROJECTNAME___.xcodeproj │ │ ├── TemplateInfo.plist │ │ └── project.pbxproj │ │ ├── main.cpp │ │ ├── main.h │ │ └── ui.fl │ ├── Resources │ ├── English.lproj │ │ └── Localizable.strings │ ├── French.lproj │ │ └── Localizable.strings │ ├── German.lproj │ │ └── Localizable.strings │ ├── Italian.lproj │ │ └── Localizable.strings │ └── Spanish.lproj │ │ └── Localizable.strings │ ├── config.h │ ├── fltk.pch │ ├── fluid.pbfilespec │ ├── icons │ └── fluid.icns │ └── plists │ ├── CubeView-Info.plist │ ├── Demo-Info.plist │ ├── Fluid-Info.plist │ ├── adjuster-Info.plist │ ├── animated-Info.plist │ ├── arc-Info.plist │ ├── ask-Info.plist │ ├── bitmap-Info.plist │ ├── blocks-Info.plist │ ├── boxtype-Info.plist │ ├── browser-Info.plist │ ├── button-Info.plist │ ├── buttons-Info.plist │ ├── checkers-Info.plist │ ├── clock-Info.plist │ ├── colbrowser-Info.plist │ ├── color_chooser-Info.plist │ ├── cube-Info.plist │ ├── cursor-Info.plist │ ├── curve-Info.plist │ ├── device-Info.plist │ ├── doublebuffer-Info.plist │ ├── editor-Info.plist │ ├── fast_slow-Info.plist │ ├── file_chooser-Info.plist │ ├── fltk-Info.plist │ ├── fltk_forms-Info.plist │ ├── fltk_gl-Info.plist │ ├── fltk_images-Info.plist │ ├── fltk_jpeg-Info.plist │ ├── fltk_png-Info.plist │ ├── fltk_zlib-Info.plist │ ├── fonts-Info.plist │ ├── forms-Info.plist │ ├── fractals-Info.plist │ ├── fullscreen-Info.plist │ ├── gl_overlay-Info.plist │ ├── glpuzzle-Info.plist │ ├── hello-Info.plist │ ├── help-Info.plist │ ├── iconize-Info.plist │ ├── image-Info.plist │ ├── inactive-Info.plist │ ├── input-Info.plist │ ├── input_choice-Info.plist │ ├── keyboard-Info.plist │ ├── label-Info.plist │ ├── line_style-Info.plist │ ├── list_visuals-Info.plist │ ├── mandelbrot-Info.plist │ ├── menubar-Info.plist │ ├── message-Info.plist │ ├── minimum-Info.plist │ ├── native-filechooser-Info.plist │ ├── navigation-Info.plist │ ├── output-Info.plist │ ├── overlay-Info.plist │ ├── pack-Info.plist │ ├── pixmap-Info.plist │ ├── pixmap_browser-Info.plist │ ├── preferences-Info.plist │ ├── radio-Info.plist │ ├── resize-Info.plist │ ├── resizebox-Info.plist │ ├── rotated_text-Info.plist │ ├── scroll-Info.plist │ ├── shape-Info.plist │ ├── subwindow-Info.plist │ ├── sudoku-Info.plist │ ├── symbols-Info.plist │ ├── table-Info.plist │ ├── tabs-Info.plist │ ├── threads-Info.plist │ ├── tile-Info.plist │ ├── tiled_image-Info.plist │ ├── tree-Info.plist │ ├── utf8-Info.plist │ ├── valuators-Info.plist │ └── zlib-Info.plist ├── install-sh ├── jpeg ├── CMakeLists.txt ├── Makefile ├── README ├── change.log ├── coderules.txt ├── filelist.txt ├── install.txt ├── jaricom.c ├── jcapimin.c ├── jcapistd.c ├── jcarith.c ├── jccoefct.c ├── jccolor.c ├── jcdctmgr.c ├── jchuff.c ├── jcinit.c ├── jcmainct.c ├── jcmarker.c ├── jcmaster.c ├── jcomapi.c ├── jconfig.h ├── jconfig.txt ├── jcparam.c ├── jcprepct.c ├── jcsample.c ├── jctrans.c ├── jdapimin.c ├── jdapistd.c ├── jdarith.c ├── jdatadst.c ├── jdatasrc.c ├── jdcoefct.c ├── jdcolor.c ├── jdct.h ├── jddctmgr.c ├── jdhuff.c ├── jdinput.c ├── jdmainct.c ├── jdmarker.c ├── jdmaster.c ├── jdmerge.c ├── jdpostct.c ├── jdsample.c ├── jdtrans.c ├── jerror.c ├── jerror.h ├── jfdctflt.c ├── jfdctfst.c ├── jfdctint.c ├── jidctflt.c ├── jidctfst.c ├── jidctint.c ├── jinclude.h ├── jmemmgr.c ├── jmemnobs.c ├── jmemsys.h ├── jmorecfg.h ├── jpegint.h ├── jpeglib.h ├── jquant1.c ├── jquant2.c ├── jutils.c ├── jversion.h ├── libjpeg.txt ├── makedepend ├── structure.txt ├── usage.txt └── wizard.txt ├── lib └── README ├── mac_endianness.h ├── makeinclude.in ├── makesrcdist ├── misc ├── MacRoman_utf-8.png ├── MacRoman_utf-8.txt ├── README ├── config.guess ├── config.sub ├── cp1252.html ├── cp1252.png ├── cp1252.txt ├── cp1252_utf-8.html ├── cp1252_utf-8.txt ├── doxystar.cxx ├── iso-8859-1.txt └── iso-8859-1_utf-8.txt ├── png ├── ANNOUNCE ├── CHANGES ├── CMakeLists.txt ├── INSTALL ├── LICENSE ├── Makefile ├── README ├── TODO ├── libpng-manual.txt ├── libpng.3 ├── libpngpf.3 ├── makedepend ├── png.5 ├── png.c ├── png.h ├── pngconf.h ├── pngdebug.h ├── pngerror.c ├── pngget.c ├── pnginfo.h ├── pnglibconf.h ├── pngmem.c ├── pngpread.c ├── pngpriv.h ├── pngread.c ├── pngrio.c ├── pngrtran.c ├── pngrutil.c ├── pngset.c ├── pngstruct.h ├── pngtrans.c ├── pngwio.c ├── pngwrite.c ├── pngwtran.c └── pngwutil.c ├── src ├── CMakeLists.txt ├── Fl.cxx ├── Fl_Adjuster.cxx ├── Fl_BMP_Image.cxx ├── Fl_Bitmap.cxx ├── Fl_Box.cxx ├── Fl_Browser.cxx ├── Fl_Browser_.cxx ├── Fl_Browser_load.cxx ├── Fl_Button.cxx ├── Fl_Chart.cxx ├── Fl_Check_Browser.cxx ├── Fl_Check_Button.cxx ├── Fl_Choice.cxx ├── Fl_Clock.cxx ├── Fl_Color_Chooser.cxx ├── Fl_Copy_Surface.cxx ├── Fl_Counter.cxx ├── Fl_Device.cxx ├── Fl_Dial.cxx ├── Fl_Double_Window.cxx ├── Fl_File_Browser.cxx ├── Fl_File_Chooser.cxx ├── Fl_File_Chooser.fl ├── Fl_File_Chooser2.cxx ├── Fl_File_Icon.cxx ├── Fl_File_Icon2.cxx ├── Fl_File_Input.cxx ├── Fl_Font.H ├── Fl_GDI_Printer.cxx ├── Fl_GIF_Image.cxx ├── Fl_Gl_Choice.H ├── Fl_Gl_Choice.cxx ├── Fl_Gl_Device_Plugin.cxx ├── Fl_Gl_Overlay.cxx ├── Fl_Gl_Window.cxx ├── Fl_Group.cxx ├── Fl_Help_Dialog.cxx ├── Fl_Help_Dialog.fl ├── Fl_Help_Dialog_Dox.cxx ├── Fl_Help_View.cxx ├── Fl_Image.cxx ├── Fl_Image_Surface.cxx ├── Fl_Input.cxx ├── Fl_Input_.cxx ├── Fl_JPEG_Image.cxx ├── Fl_Light_Button.cxx ├── Fl_Menu.cxx ├── Fl_Menu_.cxx ├── Fl_Menu_Bar.cxx ├── Fl_Menu_Button.cxx ├── Fl_Menu_Window.cxx ├── Fl_Menu_add.cxx ├── Fl_Menu_global.cxx ├── Fl_Multi_Label.cxx ├── Fl_Native_File_Chooser.cxx ├── Fl_Native_File_Chooser_FLTK.cxx ├── Fl_Native_File_Chooser_GTK.cxx ├── Fl_Native_File_Chooser_MAC.mm ├── Fl_Native_File_Chooser_WIN32.cxx ├── Fl_Native_File_Chooser_common.cxx ├── Fl_Overlay_Window.cxx ├── Fl_PNG_Image.cxx ├── Fl_PNM_Image.cxx ├── Fl_Pack.cxx ├── Fl_Paged_Device.cxx ├── Fl_Pixmap.cxx ├── Fl_Positioner.cxx ├── Fl_PostScript.cxx ├── Fl_Preferences.cxx ├── Fl_Printer.cxx ├── Fl_Progress.cxx ├── Fl_Quartz_Printer.mm ├── Fl_Repeat_Button.cxx ├── Fl_Return_Button.cxx ├── Fl_Roller.cxx ├── Fl_Round_Button.cxx ├── Fl_Scroll.cxx ├── Fl_Scrollbar.cxx ├── Fl_Shared_Image.cxx ├── Fl_Single_Window.cxx ├── Fl_Slider.cxx ├── Fl_Sys_Menu_Bar.mm ├── Fl_Table.cxx ├── Fl_Table_Row.cxx ├── Fl_Tabs.cxx ├── Fl_Text_Buffer.cxx ├── Fl_Text_Display.cxx ├── Fl_Text_Editor.cxx ├── Fl_Tile.cxx ├── Fl_Tiled_Image.cxx ├── Fl_Tooltip.cxx ├── Fl_Tree.cxx ├── Fl_Tree_Item.cxx ├── Fl_Tree_Item_Array.cxx ├── Fl_Tree_Prefs.cxx ├── Fl_Valuator.cxx ├── Fl_Value_Input.cxx ├── Fl_Value_Output.cxx ├── Fl_Value_Slider.cxx ├── Fl_Widget.cxx ├── Fl_Window.cxx ├── Fl_Window_fullscreen.cxx ├── Fl_Window_hotspot.cxx ├── Fl_Window_iconize.cxx ├── Fl_Window_shape.cxx ├── Fl_Wizard.cxx ├── Fl_XBM_Image.cxx ├── Fl_XColor.H ├── Fl_XPM_Image.cxx ├── Fl_abort.cxx ├── Fl_add_idle.cxx ├── Fl_arg.cxx ├── Fl_cocoa.mm ├── Fl_compose.cxx ├── Fl_display.cxx ├── Fl_get_key.cxx ├── Fl_get_key_mac.cxx ├── Fl_get_key_win32.cxx ├── Fl_get_system_colors.cxx ├── Fl_grab.cxx ├── Fl_lock.cxx ├── Fl_own_colormap.cxx ├── Fl_visual.cxx ├── Fl_win32.cxx ├── Fl_x.cxx ├── Makefile ├── Xutf8.h ├── allfiles.xbm ├── cgdebug.h ├── cmap.cxx ├── d1.xbm ├── d1_mask.xbm ├── dump_compose.c ├── ew.xbm ├── ew_mask.xbm ├── fastarrow.h ├── filename_absolute.cxx ├── filename_expand.cxx ├── filename_ext.cxx ├── filename_isdir.cxx ├── filename_list.cxx ├── filename_match.cxx ├── filename_setext.cxx ├── fl_arc.cxx ├── fl_arci.cxx ├── fl_ask.cxx ├── fl_boxtype.cxx ├── fl_call_main.c ├── fl_cmap.h ├── fl_color.cxx ├── fl_color_mac.cxx ├── fl_color_win32.cxx ├── fl_cursor.cxx ├── fl_cursor_help.xpm ├── fl_cursor_nesw.xpm ├── fl_cursor_none.xpm ├── fl_cursor_nwse.xpm ├── fl_cursor_wait.xpm ├── fl_curve.cxx ├── fl_diamond_box.cxx ├── fl_dnd.cxx ├── fl_dnd_win32.cxx ├── fl_dnd_x.cxx ├── fl_draw.cxx ├── fl_draw_image.cxx ├── fl_draw_image_mac.cxx ├── fl_draw_image_win32.cxx ├── fl_draw_pixmap.cxx ├── fl_encoding_latin1.cxx ├── fl_encoding_mac_roman.cxx ├── fl_engraved_label.cxx ├── fl_file_dir.cxx ├── fl_font.cxx ├── fl_font_mac.cxx ├── fl_font_win32.cxx ├── fl_font_x.cxx ├── fl_font_xft.cxx ├── fl_gleam.cxx ├── fl_gtk.cxx ├── fl_images_core.cxx ├── fl_labeltype.cxx ├── fl_line_style.cxx ├── fl_open_uri.cxx ├── fl_oval_box.cxx ├── fl_overlay.cxx ├── fl_overlay_visual.cxx ├── fl_plastic.cxx ├── fl_read_image.cxx ├── fl_read_image_mac.cxx ├── fl_read_image_win32.cxx ├── fl_rect.cxx ├── fl_round_box.cxx ├── fl_rounded_box.cxx ├── fl_scroll_area.cxx ├── fl_set_font.cxx ├── fl_set_fonts.cxx ├── fl_set_fonts_mac.cxx ├── fl_set_fonts_win32.cxx ├── fl_set_fonts_x.cxx ├── fl_set_fonts_xft.cxx ├── fl_shadow_box.cxx ├── fl_shortcut.cxx ├── fl_show_colormap.cxx ├── fl_symbols.cxx ├── fl_utf.c ├── fl_utf8.cxx ├── fl_vertex.cxx ├── flstring.c ├── flstring.h ├── forms_bitmap.cxx ├── forms_compatability.cxx ├── forms_free.cxx ├── forms_fselect.cxx ├── forms_pixmap.cxx ├── forms_timer.cxx ├── freeglut_geometry.cxx ├── freeglut_stroke_mono_roman.cxx ├── freeglut_stroke_roman.cxx ├── freeglut_teapot.cxx ├── freeglut_teapot_data.h ├── gl_draw.cxx ├── gl_start.cxx ├── glut_compatability.cxx ├── glut_font.cxx ├── makedepend ├── mediumarrow.h ├── new.xbm ├── ns.xbm ├── ns_mask.xbm ├── numericsort.c ├── print_panel.cxx ├── print_panel.h ├── ps_image.cxx ├── scandir.c ├── scandir_posix.c ├── scandir_win32.c ├── screen_xywh.cxx ├── slowarrow.h ├── tile.xpm ├── up.xbm ├── vsnprintf.c └── xutf8 │ ├── COPYING │ ├── README │ ├── Ximint.h │ ├── Xlibint.h │ ├── case.c │ ├── fl_wcwidth.c │ ├── headers │ ├── case.h │ ├── case_tbl.txt │ ├── dingbats_.h │ ├── spacing.h │ ├── spacing_tbl.txt │ ├── symbol_.h │ └── tbl.txt │ ├── imKStoUCS.c │ ├── is_right2left.c │ ├── is_spacing.c │ ├── keysym2Ucs.c │ ├── lcUniConv │ ├── 8bit_tab_to_h.c │ ├── COPYRIGHT │ ├── README │ ├── armscii_8.h │ ├── ascii.h │ ├── big5.h │ ├── big5_emacs.h │ ├── cjk_tab_to_h.c │ ├── cp1133.h │ ├── cp1251.h │ ├── cp1255.h │ ├── cp1256.h │ ├── cp936ext.h │ ├── gb2312.h │ ├── gbk_tab_to_h.c │ ├── georgian_academy.h │ ├── georgian_ps.h │ ├── iso8859_1.h │ ├── iso8859_10.h │ ├── iso8859_11.h │ ├── iso8859_13.h │ ├── iso8859_14.h │ ├── iso8859_15.h │ ├── iso8859_16.h │ ├── iso8859_2.h │ ├── iso8859_3.h │ ├── iso8859_4.h │ ├── iso8859_5.h │ ├── iso8859_6.h │ ├── iso8859_7.h │ ├── iso8859_8.h │ ├── iso8859_9.h │ ├── iso8859_9e.h │ ├── jisx0201.h │ ├── jisx0208.h │ ├── jisx0212.h │ ├── koi8_c.h │ ├── koi8_r.h │ ├── koi8_u.h │ ├── ksc5601.h │ ├── mulelao.h │ ├── tatar_cyr.h │ ├── tcvn.h │ ├── tis620.h │ ├── ucs2be.h │ ├── utf8.h │ └── viscii.h │ ├── mk_wcwidth.c │ ├── test.c │ ├── test2.c │ ├── ucs2fontmap.c │ ├── ucs2fontmap.c.mini │ ├── utf8Input.c │ ├── utf8Utils.c │ ├── utf8Wrap.c │ └── utils │ ├── INSTALL │ ├── Makefile │ ├── README │ ├── case.sh │ ├── conv_gen.c │ ├── convert_map.c │ ├── create_table.c │ ├── euc_tw.c │ ├── non_spacing.sh │ └── tbl_gen.sh ├── test ├── CMakeLists.txt ├── CubeMain.cxx ├── CubeView.cxx ├── CubeView.h ├── CubeViewUI.fl ├── Makefile ├── README ├── adjuster.cxx ├── animated.cxx ├── arc.cxx ├── ask.cxx ├── bitmap.cxx ├── blocks.app │ └── Contents │ │ ├── Info.plist │ │ ├── PkgInfo │ │ └── Resources │ │ └── blocks.icns ├── blocks.cxx ├── boxtype.cxx ├── browser.cxx ├── button.cxx ├── buttons.cxx ├── cairo_test.cxx ├── checkers.app │ └── Contents │ │ ├── Info.plist │ │ ├── PkgInfo │ │ └── Resources │ │ └── checkers.icns ├── checkers.cxx ├── clock.cxx ├── colbrowser.cxx ├── color_chooser.cxx ├── connect.cxx ├── cube.cxx ├── cursor.cxx ├── curve.cxx ├── demo.cxx ├── demo.menu ├── desktop │ ├── blocks-128.png │ ├── blocks-32.png │ ├── blocks.desktop │ ├── checkers-128.png │ ├── checkers-32.png │ ├── checkers.desktop │ ├── sudoku-128.png │ ├── sudoku-32.png │ └── sudoku.desktop ├── device.cxx ├── doublebuffer.cxx ├── editor.cxx ├── fast_slow.fl ├── file_chooser.cxx ├── fonts.cxx ├── forms.cxx ├── fractals.cxx ├── fracviewer.cxx ├── fracviewer.h ├── fromdos.c ├── fullscreen.cxx ├── gl_overlay.cxx ├── glpuzzle.cxx ├── hello.cxx ├── help-test.html ├── help.cxx ├── icon.cxx ├── iconize.cxx ├── image.cxx ├── inactive.fl ├── input.cxx ├── input_choice.cxx ├── keyboard.cxx ├── keyboard.h ├── keyboard_ui.fl ├── label.cxx ├── line_style.cxx ├── list_visuals.cxx ├── makedepend ├── mandelbrot.cxx ├── mandelbrot.h ├── mandelbrot_ui.fl ├── menubar.cxx ├── message.cxx ├── minimum.cxx ├── native-filechooser.cxx ├── navigation.cxx ├── offscreen.cxx ├── output.cxx ├── overlay.cxx ├── pack.cxx ├── pixmap.cxx ├── pixmap_browser.cxx ├── pixmaps │ ├── black_1.xbm │ ├── black_2.xbm │ ├── black_3.xbm │ ├── black_4.xbm │ ├── blackking_1.xbm │ ├── blackking_2.xbm │ ├── blackking_3.xbm │ ├── blackking_4.xbm │ ├── blast.xpm │ ├── block.xcf_gz │ ├── blue.xpm │ ├── blue_bomb.xpm │ ├── cyan.xpm │ ├── cyan_bomb.xpm │ ├── gray.xpm │ ├── gray_bomb.xpm │ ├── green.xpm │ ├── green_bomb.xpm │ ├── magenta.xpm │ ├── magenta_bomb.xpm │ ├── porsche.xpm │ ├── porsche1.xpm │ ├── red.xpm │ ├── red_bomb.xpm │ ├── srs.xbm │ ├── sudoku.xbm │ ├── tile.xpm │ ├── white_1.xbm │ ├── white_2.xbm │ ├── white_3.xbm │ ├── white_4.xbm │ ├── whiteking_1.xbm │ ├── whiteking_2.xbm │ ├── whiteking_3.xbm │ ├── whiteking_4.xbm │ ├── yellow.xpm │ └── yellow_bomb.xpm ├── preferences.fl ├── radio.fl ├── resize.fl ├── resizebox.cxx ├── rgb.txt ├── rotated_text.cxx ├── scroll.cxx ├── shape.cxx ├── subwindow.cxx ├── sudoku.app │ └── Contents │ │ ├── Info.plist │ │ ├── PkgInfo │ │ └── Resources │ │ └── sudoku.icns ├── sudoku.cxx ├── sudoku.ico ├── sudoku.rc ├── sudokurc.h ├── symbols.cxx ├── table.cxx ├── tabs.fl ├── threads.cxx ├── threads.h ├── tile.cxx ├── tiled_image.cxx ├── trackball.c ├── trackball.h ├── tree.fl ├── twowin.cxx ├── unittest_about.cxx ├── unittest_circles.cxx ├── unittest_images.cxx ├── unittest_lines.cxx ├── unittest_points.cxx ├── unittest_rects.cxx ├── unittest_schemes.cxx ├── unittest_scrollbarsize.cxx ├── unittest_symbol.cxx ├── unittest_text.cxx ├── unittest_viewport.cxx ├── unittests.cxx ├── utf8.cxx ├── valuators.fl └── windowfocus.cxx └── zlib ├── CMakeLists.txt ├── ChangeLog ├── FAQ ├── INDEX ├── Makefile ├── README ├── adler32.c ├── compress.c ├── crc32.c ├── crc32.h ├── deflate.c ├── deflate.h ├── gzclose.c ├── gzguts.h ├── gzlib.c ├── gzread.c ├── gzwrite.c ├── infback.c ├── inffast.c ├── inffast.h ├── inffixed.h ├── inflate.c ├── inflate.h ├── inftrees.c ├── inftrees.h ├── makedepend ├── trees.c ├── trees.h ├── uncompr.c ├── zconf.h ├── zlib.3 ├── zlib.h ├── zutil.c └── zutil.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/.gitignore -------------------------------------------------------------------------------- /ANNOUNCEMENT: -------------------------------------------------------------------------------- 1 | The initial FLTK 1.3 is based on the final 1.1.8. 2 | 3 | -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/CHANGES -------------------------------------------------------------------------------- /CHANGES_1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/CHANGES_1.0 -------------------------------------------------------------------------------- /CHANGES_1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/CHANGES_1.1 -------------------------------------------------------------------------------- /CMake/FLTK-Functions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/CMake/FLTK-Functions.cmake -------------------------------------------------------------------------------- /CMake/FLTKConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/CMake/FLTKConfig.cmake.in -------------------------------------------------------------------------------- /CMake/UseFLTK.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/CMake/UseFLTK.cmake.in -------------------------------------------------------------------------------- /CMake/export.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/CMake/export.cmake -------------------------------------------------------------------------------- /CMake/install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/CMake/install.cmake -------------------------------------------------------------------------------- /CMake/macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/CMake/macros.cmake -------------------------------------------------------------------------------- /CMake/options.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/CMake/options.cmake -------------------------------------------------------------------------------- /CMake/posixScandir.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/CMake/posixScandir.cxx -------------------------------------------------------------------------------- /CMake/resources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/CMake/resources.cmake -------------------------------------------------------------------------------- /CMake/setup.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/CMake/setup.cmake -------------------------------------------------------------------------------- /CMake/variables.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/CMake/variables.cmake -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/COPYING -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/CREDITS -------------------------------------------------------------------------------- /DartConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/DartConfig.cmake -------------------------------------------------------------------------------- /FL/Enumerations.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Enumerations.H -------------------------------------------------------------------------------- /FL/Fl.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl.H -------------------------------------------------------------------------------- /FL/Fl_Adjuster.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Adjuster.H -------------------------------------------------------------------------------- /FL/Fl_BMP_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_BMP_Image.H -------------------------------------------------------------------------------- /FL/Fl_Bitmap.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Bitmap.H -------------------------------------------------------------------------------- /FL/Fl_Box.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Box.H -------------------------------------------------------------------------------- /FL/Fl_Browser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Browser.H -------------------------------------------------------------------------------- /FL/Fl_Browser_.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Browser_.H -------------------------------------------------------------------------------- /FL/Fl_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Button.H -------------------------------------------------------------------------------- /FL/Fl_Cairo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Cairo.H -------------------------------------------------------------------------------- /FL/Fl_Cairo_Window.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Cairo_Window.H -------------------------------------------------------------------------------- /FL/Fl_Chart.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Chart.H -------------------------------------------------------------------------------- /FL/Fl_Check_Browser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Check_Browser.H -------------------------------------------------------------------------------- /FL/Fl_Check_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Check_Button.H -------------------------------------------------------------------------------- /FL/Fl_Choice.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Choice.H -------------------------------------------------------------------------------- /FL/Fl_Clock.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Clock.H -------------------------------------------------------------------------------- /FL/Fl_Color_Chooser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Color_Chooser.H -------------------------------------------------------------------------------- /FL/Fl_Copy_Surface.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Copy_Surface.H -------------------------------------------------------------------------------- /FL/Fl_Counter.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Counter.H -------------------------------------------------------------------------------- /FL/Fl_Device.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Device.H -------------------------------------------------------------------------------- /FL/Fl_Dial.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Dial.H -------------------------------------------------------------------------------- /FL/Fl_Double_Window.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Double_Window.H -------------------------------------------------------------------------------- /FL/Fl_Export.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Export.H -------------------------------------------------------------------------------- /FL/Fl_File_Browser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_File_Browser.H -------------------------------------------------------------------------------- /FL/Fl_File_Chooser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_File_Chooser.H -------------------------------------------------------------------------------- /FL/Fl_File_Icon.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_File_Icon.H -------------------------------------------------------------------------------- /FL/Fl_File_Input.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_File_Input.H -------------------------------------------------------------------------------- /FL/Fl_Fill_Dial.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Fill_Dial.H -------------------------------------------------------------------------------- /FL/Fl_Fill_Slider.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Fill_Slider.H -------------------------------------------------------------------------------- /FL/Fl_Float_Input.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Float_Input.H -------------------------------------------------------------------------------- /FL/Fl_FormsBitmap.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_FormsBitmap.H -------------------------------------------------------------------------------- /FL/Fl_FormsPixmap.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_FormsPixmap.H -------------------------------------------------------------------------------- /FL/Fl_Free.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Free.H -------------------------------------------------------------------------------- /FL/Fl_GIF_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_GIF_Image.H -------------------------------------------------------------------------------- /FL/Fl_Gl_Window.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Gl_Window.H -------------------------------------------------------------------------------- /FL/Fl_Group.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Group.H -------------------------------------------------------------------------------- /FL/Fl_Help_Dialog.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Help_Dialog.H -------------------------------------------------------------------------------- /FL/Fl_Help_View.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Help_View.H -------------------------------------------------------------------------------- /FL/Fl_Hold_Browser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Hold_Browser.H -------------------------------------------------------------------------------- /FL/Fl_Hor_Fill_Slider.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Hor_Fill_Slider.H -------------------------------------------------------------------------------- /FL/Fl_Hor_Nice_Slider.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Hor_Nice_Slider.H -------------------------------------------------------------------------------- /FL/Fl_Hor_Slider.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Hor_Slider.H -------------------------------------------------------------------------------- /FL/Fl_Hor_Value_Slider.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Hor_Value_Slider.H -------------------------------------------------------------------------------- /FL/Fl_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Image.H -------------------------------------------------------------------------------- /FL/Fl_Image_Surface.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Image_Surface.H -------------------------------------------------------------------------------- /FL/Fl_Input.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Input.H -------------------------------------------------------------------------------- /FL/Fl_Input_.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Input_.H -------------------------------------------------------------------------------- /FL/Fl_Input_Choice.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Input_Choice.H -------------------------------------------------------------------------------- /FL/Fl_Int_Input.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Int_Input.H -------------------------------------------------------------------------------- /FL/Fl_JPEG_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_JPEG_Image.H -------------------------------------------------------------------------------- /FL/Fl_Light_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Light_Button.H -------------------------------------------------------------------------------- /FL/Fl_Line_Dial.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Line_Dial.H -------------------------------------------------------------------------------- /FL/Fl_Menu.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Menu.H -------------------------------------------------------------------------------- /FL/Fl_Menu_.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Menu_.H -------------------------------------------------------------------------------- /FL/Fl_Menu_Bar.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Menu_Bar.H -------------------------------------------------------------------------------- /FL/Fl_Menu_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Menu_Button.H -------------------------------------------------------------------------------- /FL/Fl_Menu_Item.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Menu_Item.H -------------------------------------------------------------------------------- /FL/Fl_Menu_Window.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Menu_Window.H -------------------------------------------------------------------------------- /FL/Fl_Multi_Browser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Multi_Browser.H -------------------------------------------------------------------------------- /FL/Fl_Multi_Label.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Multi_Label.H -------------------------------------------------------------------------------- /FL/Fl_Multiline_Input.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Multiline_Input.H -------------------------------------------------------------------------------- /FL/Fl_Multiline_Output.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Multiline_Output.H -------------------------------------------------------------------------------- /FL/Fl_Native_File_Chooser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Native_File_Chooser.H -------------------------------------------------------------------------------- /FL/Fl_Nice_Slider.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Nice_Slider.H -------------------------------------------------------------------------------- /FL/Fl_Object.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Object.H -------------------------------------------------------------------------------- /FL/Fl_Output.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Output.H -------------------------------------------------------------------------------- /FL/Fl_Overlay_Window.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Overlay_Window.H -------------------------------------------------------------------------------- /FL/Fl_PNG_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_PNG_Image.H -------------------------------------------------------------------------------- /FL/Fl_PNM_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_PNM_Image.H -------------------------------------------------------------------------------- /FL/Fl_Pack.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Pack.H -------------------------------------------------------------------------------- /FL/Fl_Paged_Device.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Paged_Device.H -------------------------------------------------------------------------------- /FL/Fl_Pixmap.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Pixmap.H -------------------------------------------------------------------------------- /FL/Fl_Plugin.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Plugin.H -------------------------------------------------------------------------------- /FL/Fl_Positioner.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Positioner.H -------------------------------------------------------------------------------- /FL/Fl_PostScript.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_PostScript.H -------------------------------------------------------------------------------- /FL/Fl_Preferences.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Preferences.H -------------------------------------------------------------------------------- /FL/Fl_Printer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Printer.H -------------------------------------------------------------------------------- /FL/Fl_Progress.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Progress.H -------------------------------------------------------------------------------- /FL/Fl_RGB_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_RGB_Image.H -------------------------------------------------------------------------------- /FL/Fl_Radio_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Radio_Button.H -------------------------------------------------------------------------------- /FL/Fl_Radio_Light_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Radio_Light_Button.H -------------------------------------------------------------------------------- /FL/Fl_Radio_Round_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Radio_Round_Button.H -------------------------------------------------------------------------------- /FL/Fl_Repeat_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Repeat_Button.H -------------------------------------------------------------------------------- /FL/Fl_Return_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Return_Button.H -------------------------------------------------------------------------------- /FL/Fl_Roller.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Roller.H -------------------------------------------------------------------------------- /FL/Fl_Round_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Round_Button.H -------------------------------------------------------------------------------- /FL/Fl_Round_Clock.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Round_Clock.H -------------------------------------------------------------------------------- /FL/Fl_Scroll.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Scroll.H -------------------------------------------------------------------------------- /FL/Fl_Scrollbar.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Scrollbar.H -------------------------------------------------------------------------------- /FL/Fl_Secret_Input.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Secret_Input.H -------------------------------------------------------------------------------- /FL/Fl_Select_Browser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Select_Browser.H -------------------------------------------------------------------------------- /FL/Fl_Shared_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Shared_Image.H -------------------------------------------------------------------------------- /FL/Fl_Simple_Counter.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Simple_Counter.H -------------------------------------------------------------------------------- /FL/Fl_Single_Window.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Single_Window.H -------------------------------------------------------------------------------- /FL/Fl_Slider.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Slider.H -------------------------------------------------------------------------------- /FL/Fl_Spinner.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Spinner.H -------------------------------------------------------------------------------- /FL/Fl_Sys_Menu_Bar.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Sys_Menu_Bar.H -------------------------------------------------------------------------------- /FL/Fl_Table.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Table.H -------------------------------------------------------------------------------- /FL/Fl_Table_Row.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Table_Row.H -------------------------------------------------------------------------------- /FL/Fl_Tabs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Tabs.H -------------------------------------------------------------------------------- /FL/Fl_Text_Buffer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Text_Buffer.H -------------------------------------------------------------------------------- /FL/Fl_Text_Display.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Text_Display.H -------------------------------------------------------------------------------- /FL/Fl_Text_Editor.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Text_Editor.H -------------------------------------------------------------------------------- /FL/Fl_Tile.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Tile.H -------------------------------------------------------------------------------- /FL/Fl_Tiled_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Tiled_Image.H -------------------------------------------------------------------------------- /FL/Fl_Timer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Timer.H -------------------------------------------------------------------------------- /FL/Fl_Toggle_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Toggle_Button.H -------------------------------------------------------------------------------- /FL/Fl_Toggle_Light_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Toggle_Light_Button.H -------------------------------------------------------------------------------- /FL/Fl_Toggle_Round_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Toggle_Round_Button.H -------------------------------------------------------------------------------- /FL/Fl_Tooltip.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Tooltip.H -------------------------------------------------------------------------------- /FL/Fl_Tree.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Tree.H -------------------------------------------------------------------------------- /FL/Fl_Tree_Item.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Tree_Item.H -------------------------------------------------------------------------------- /FL/Fl_Tree_Item_Array.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Tree_Item_Array.H -------------------------------------------------------------------------------- /FL/Fl_Tree_Prefs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Tree_Prefs.H -------------------------------------------------------------------------------- /FL/Fl_Valuator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Valuator.H -------------------------------------------------------------------------------- /FL/Fl_Value_Input.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Value_Input.H -------------------------------------------------------------------------------- /FL/Fl_Value_Output.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Value_Output.H -------------------------------------------------------------------------------- /FL/Fl_Value_Slider.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Value_Slider.H -------------------------------------------------------------------------------- /FL/Fl_Widget.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Widget.H -------------------------------------------------------------------------------- /FL/Fl_Window.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Window.H -------------------------------------------------------------------------------- /FL/Fl_Wizard.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_Wizard.H -------------------------------------------------------------------------------- /FL/Fl_XBM_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_XBM_Image.H -------------------------------------------------------------------------------- /FL/Fl_XPM_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Fl_XPM_Image.H -------------------------------------------------------------------------------- /FL/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/Makefile.in -------------------------------------------------------------------------------- /FL/README.Xcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/README.Xcode -------------------------------------------------------------------------------- /FL/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/dirent.h -------------------------------------------------------------------------------- /FL/filename.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/filename.H -------------------------------------------------------------------------------- /FL/fl_ask.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/fl_ask.H -------------------------------------------------------------------------------- /FL/fl_draw.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/fl_draw.H -------------------------------------------------------------------------------- /FL/fl_message.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/fl_message.H -------------------------------------------------------------------------------- /FL/fl_show_colormap.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/fl_show_colormap.H -------------------------------------------------------------------------------- /FL/fl_show_input.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/fl_show_input.H -------------------------------------------------------------------------------- /FL/fl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/fl_types.h -------------------------------------------------------------------------------- /FL/fl_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/fl_utf8.h -------------------------------------------------------------------------------- /FL/forms.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/forms.H -------------------------------------------------------------------------------- /FL/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/gl.h -------------------------------------------------------------------------------- /FL/gl2opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/gl2opengl.h -------------------------------------------------------------------------------- /FL/gl_draw.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/gl_draw.H -------------------------------------------------------------------------------- /FL/glu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/glu.h -------------------------------------------------------------------------------- /FL/glut.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/glut.H -------------------------------------------------------------------------------- /FL/mac.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/mac.H -------------------------------------------------------------------------------- /FL/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/math.h -------------------------------------------------------------------------------- /FL/names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/names.h -------------------------------------------------------------------------------- /FL/win32.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/win32.H -------------------------------------------------------------------------------- /FL/x.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/FL/x.H -------------------------------------------------------------------------------- /GL/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/GL/glut.h -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/README -------------------------------------------------------------------------------- /README.CMake.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/README.CMake.txt -------------------------------------------------------------------------------- /README.Cairo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/README.Cairo.txt -------------------------------------------------------------------------------- /README.MSWindows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/README.MSWindows.txt -------------------------------------------------------------------------------- /README.OSX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/README.OSX.txt -------------------------------------------------------------------------------- /README.Unix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/README.Unix.txt -------------------------------------------------------------------------------- /README.abi-version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/README.abi-version.txt -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.3.4 2 | -------------------------------------------------------------------------------- /abi-version.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/abi-version.cmake.in -------------------------------------------------------------------------------- /abi-version.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/abi-version.ide -------------------------------------------------------------------------------- /abi-version.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/abi-version.in -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/autogen.sh -------------------------------------------------------------------------------- /cairo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/cairo/CMakeLists.txt -------------------------------------------------------------------------------- /cairo/Fl_Cairo.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/cairo/Fl_Cairo.cxx -------------------------------------------------------------------------------- /cairo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/cairo/Makefile -------------------------------------------------------------------------------- /cairo/makedepend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/cairo/makedepend -------------------------------------------------------------------------------- /configh.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/configh.cmake.in -------------------------------------------------------------------------------- /configh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/configh.in -------------------------------------------------------------------------------- /configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/configure.in -------------------------------------------------------------------------------- /documentation/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/documentation/Doxyfile.in -------------------------------------------------------------------------------- /documentation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/documentation/Makefile -------------------------------------------------------------------------------- /documentation/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/documentation/README -------------------------------------------------------------------------------- /documentation/make_pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/documentation/make_pdf -------------------------------------------------------------------------------- /documentation/src/FL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/documentation/src/FL.png -------------------------------------------------------------------------------- /documentation/src/FL200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/documentation/src/FL200.png -------------------------------------------------------------------------------- /documentation/src/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/documentation/src/clock.png -------------------------------------------------------------------------------- /documentation/src/dial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/documentation/src/dial.png -------------------------------------------------------------------------------- /documentation/src/faq.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/documentation/src/faq.dox -------------------------------------------------------------------------------- /documentation/src/fltk.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/documentation/src/fltk.man -------------------------------------------------------------------------------- /documentation/src/fluid.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/documentation/src/fluid.dox -------------------------------------------------------------------------------- /documentation/src/fluid.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/documentation/src/fluid.man -------------------------------------------------------------------------------- /documentation/src/forms.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/documentation/src/forms.dox -------------------------------------------------------------------------------- /documentation/src/glut.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/documentation/src/glut.dox -------------------------------------------------------------------------------- /documentation/src/index.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/documentation/src/index.dox -------------------------------------------------------------------------------- /documentation/src/intro.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/documentation/src/intro.dox -------------------------------------------------------------------------------- /documentation/src/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/documentation/src/menu.png -------------------------------------------------------------------------------- /documentation/src/tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/documentation/src/tabs.png -------------------------------------------------------------------------------- /documentation/src/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/documentation/src/text.png -------------------------------------------------------------------------------- /documentation/src/tiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/documentation/src/tiny.png -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/Makefile.FLTK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/examples/Makefile.FLTK -------------------------------------------------------------------------------- /examples/OpenGL3test.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/examples/OpenGL3test.cxx -------------------------------------------------------------------------------- /examples/README.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/examples/README.examples -------------------------------------------------------------------------------- /examples/clipboard.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/examples/clipboard.cxx -------------------------------------------------------------------------------- /examples/fltk-versions.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/examples/fltk-versions.cxx -------------------------------------------------------------------------------- /examples/menubar-add.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/examples/menubar-add.cxx -------------------------------------------------------------------------------- /examples/shapedwindow.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/examples/shapedwindow.cxx -------------------------------------------------------------------------------- /examples/table-simple.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/examples/table-simple.cxx -------------------------------------------------------------------------------- /examples/table-sort.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/examples/table-sort.cxx -------------------------------------------------------------------------------- /examples/tabs-simple.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/examples/tabs-simple.cxx -------------------------------------------------------------------------------- /examples/tree-of-tables.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/examples/tree-of-tables.cxx -------------------------------------------------------------------------------- /examples/tree-simple.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/examples/tree-simple.cxx -------------------------------------------------------------------------------- /examples/wizard-simple.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/examples/wizard-simple.cxx -------------------------------------------------------------------------------- /fltk-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fltk-config.in -------------------------------------------------------------------------------- /fltk.list.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fltk.list.in -------------------------------------------------------------------------------- /fltk.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fltk.spec.in -------------------------------------------------------------------------------- /fltk.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fltk.xpm -------------------------------------------------------------------------------- /fluid/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/CMakeLists.txt -------------------------------------------------------------------------------- /fluid/CodeEditor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/CodeEditor.cxx -------------------------------------------------------------------------------- /fluid/CodeEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/CodeEditor.h -------------------------------------------------------------------------------- /fluid/Fl_Function_Type.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/Fl_Function_Type.cxx -------------------------------------------------------------------------------- /fluid/Fl_Group_Type.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/Fl_Group_Type.cxx -------------------------------------------------------------------------------- /fluid/Fl_Menu_Type.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/Fl_Menu_Type.cxx -------------------------------------------------------------------------------- /fluid/Fl_Type.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/Fl_Type.cxx -------------------------------------------------------------------------------- /fluid/Fl_Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/Fl_Type.h -------------------------------------------------------------------------------- /fluid/Fl_Widget_Type.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/Fl_Widget_Type.cxx -------------------------------------------------------------------------------- /fluid/Fl_Widget_Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/Fl_Widget_Type.h -------------------------------------------------------------------------------- /fluid/Fl_Window_Type.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/Fl_Window_Type.cxx -------------------------------------------------------------------------------- /fluid/Fluid_Image.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/Fluid_Image.cxx -------------------------------------------------------------------------------- /fluid/Fluid_Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/Fluid_Image.h -------------------------------------------------------------------------------- /fluid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/Makefile -------------------------------------------------------------------------------- /fluid/Shortcut_Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/Shortcut_Button.h -------------------------------------------------------------------------------- /fluid/about_panel.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/about_panel.cxx -------------------------------------------------------------------------------- /fluid/about_panel.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/about_panel.fl -------------------------------------------------------------------------------- /fluid/about_panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/about_panel.h -------------------------------------------------------------------------------- /fluid/align_widget.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/align_widget.cxx -------------------------------------------------------------------------------- /fluid/alignment_panel.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/alignment_panel.cxx -------------------------------------------------------------------------------- /fluid/alignment_panel.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/alignment_panel.fl -------------------------------------------------------------------------------- /fluid/alignment_panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/alignment_panel.h -------------------------------------------------------------------------------- /fluid/code.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/code.cxx -------------------------------------------------------------------------------- /fluid/comments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/comments.h -------------------------------------------------------------------------------- /fluid/factory.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/factory.cxx -------------------------------------------------------------------------------- /fluid/file.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/file.cxx -------------------------------------------------------------------------------- /fluid/fluid.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | FLIDFlid 2 | -------------------------------------------------------------------------------- /fluid/fluid.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/fluid.cxx -------------------------------------------------------------------------------- /fluid/fluid.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/fluid.desktop -------------------------------------------------------------------------------- /fluid/fluid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/fluid.xml -------------------------------------------------------------------------------- /fluid/function_panel.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/function_panel.cxx -------------------------------------------------------------------------------- /fluid/function_panel.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/function_panel.fl -------------------------------------------------------------------------------- /fluid/function_panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/function_panel.h -------------------------------------------------------------------------------- /fluid/icons/fluid-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/icons/fluid-128.png -------------------------------------------------------------------------------- /fluid/icons/fluid-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/icons/fluid-16.png -------------------------------------------------------------------------------- /fluid/icons/fluid-16i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/icons/fluid-16i.png -------------------------------------------------------------------------------- /fluid/icons/fluid-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/icons/fluid-256.png -------------------------------------------------------------------------------- /fluid/icons/fluid-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/icons/fluid-32.png -------------------------------------------------------------------------------- /fluid/icons/fluid-32.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/icons/fluid-32.xpm -------------------------------------------------------------------------------- /fluid/icons/fluid-32i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/icons/fluid-32i.png -------------------------------------------------------------------------------- /fluid/icons/fluid-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/icons/fluid-48.png -------------------------------------------------------------------------------- /fluid/icons/fluid-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/icons/fluid-64.png -------------------------------------------------------------------------------- /fluid/icons/fluid-96.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/icons/fluid-96.xpm -------------------------------------------------------------------------------- /fluid/icons/fluid.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/icons/fluid.ico -------------------------------------------------------------------------------- /fluid/icons/fluid.xcf_gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/icons/fluid.xcf_gz -------------------------------------------------------------------------------- /fluid/makedepend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/makedepend -------------------------------------------------------------------------------- /fluid/pixmaps/flBox.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flBox.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/flBrowser.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flBrowser.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/flButton.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flButton.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/flChoice.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flChoice.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/flClass.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flClass.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/flClock.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flClock.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/flCode.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flCode.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/flComment.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flComment.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/flCounter.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flCounter.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/flData.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flData.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/flDial.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flDial.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/flGroup.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flGroup.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/flHelp.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flHelp.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/flInput.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flInput.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/flMenubar.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flMenubar.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/flOutput.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flOutput.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/flPack.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flPack.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/flRoller.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flRoller.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/flScroll.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flScroll.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/flSlider.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flSlider.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/flSpinner.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flSpinner.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/flSubmenu.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flSubmenu.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/flTable.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flTable.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/flTabs.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flTabs.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/flTile.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flTile.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/flTree.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flTree.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/flWindow.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flWindow.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/flWizard.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/flWizard.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/lock.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/lock.xpm -------------------------------------------------------------------------------- /fluid/pixmaps/protected.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/pixmaps/protected.xpm -------------------------------------------------------------------------------- /fluid/print_panel.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/print_panel.cxx -------------------------------------------------------------------------------- /fluid/print_panel.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/print_panel.fl -------------------------------------------------------------------------------- /fluid/print_panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/print_panel.h -------------------------------------------------------------------------------- /fluid/template_panel.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/template_panel.cxx -------------------------------------------------------------------------------- /fluid/template_panel.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/template_panel.fl -------------------------------------------------------------------------------- /fluid/template_panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/template_panel.h -------------------------------------------------------------------------------- /fluid/undo.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/undo.cxx -------------------------------------------------------------------------------- /fluid/undo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/undo.h -------------------------------------------------------------------------------- /fluid/widget_panel.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/widget_panel.cxx -------------------------------------------------------------------------------- /fluid/widget_panel.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/widget_panel.fl -------------------------------------------------------------------------------- /fluid/widget_panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/fluid/widget_panel.h -------------------------------------------------------------------------------- /forms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/forms.h -------------------------------------------------------------------------------- /ide/README.IDE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/README.IDE -------------------------------------------------------------------------------- /ide/VisualC2008/arc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC2008/arc.vcproj -------------------------------------------------------------------------------- /ide/VisualC2008/ask.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC2008/ask.vcproj -------------------------------------------------------------------------------- /ide/VisualC2008/cfluid.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC2008/cfluid.cmd -------------------------------------------------------------------------------- /ide/VisualC2008/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC2008/config.h -------------------------------------------------------------------------------- /ide/VisualC2008/cube.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC2008/cube.vcproj -------------------------------------------------------------------------------- /ide/VisualC2008/demo.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC2008/demo.vcproj -------------------------------------------------------------------------------- /ide/VisualC2008/fltk.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC2008/fltk.sln -------------------------------------------------------------------------------- /ide/VisualC2008/help.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC2008/help.vcproj -------------------------------------------------------------------------------- /ide/VisualC2008/jpeg.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC2008/jpeg.vcproj -------------------------------------------------------------------------------- /ide/VisualC2008/pack.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC2008/pack.vcproj -------------------------------------------------------------------------------- /ide/VisualC2008/tabs.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC2008/tabs.vcproj -------------------------------------------------------------------------------- /ide/VisualC2008/tile.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC2008/tile.vcproj -------------------------------------------------------------------------------- /ide/VisualC2008/tree.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC2008/tree.vcproj -------------------------------------------------------------------------------- /ide/VisualC2008/utf8.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC2008/utf8.vcproj -------------------------------------------------------------------------------- /ide/VisualC2008/zlib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC2008/zlib.vcproj -------------------------------------------------------------------------------- /ide/VisualC2010/arc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC2010/arc.vcxproj -------------------------------------------------------------------------------- /ide/VisualC2010/ask.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC2010/ask.vcxproj -------------------------------------------------------------------------------- /ide/VisualC2010/cfluid.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC2010/cfluid.cmd -------------------------------------------------------------------------------- /ide/VisualC2010/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC2010/config.h -------------------------------------------------------------------------------- /ide/VisualC2010/fltk.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC2010/fltk.sln -------------------------------------------------------------------------------- /ide/VisualC6/CubeView.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/CubeView.dsp -------------------------------------------------------------------------------- /ide/VisualC6/Demo.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/Demo.dsp -------------------------------------------------------------------------------- /ide/VisualC6/Fluid.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/Fluid.dsp -------------------------------------------------------------------------------- /ide/VisualC6/adjuster.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/adjuster.dsp -------------------------------------------------------------------------------- /ide/VisualC6/arc.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/arc.dsp -------------------------------------------------------------------------------- /ide/VisualC6/ask.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/ask.dsp -------------------------------------------------------------------------------- /ide/VisualC6/bitmap.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/bitmap.dsp -------------------------------------------------------------------------------- /ide/VisualC6/blocks.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/blocks.dsp -------------------------------------------------------------------------------- /ide/VisualC6/boxtype.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/boxtype.dsp -------------------------------------------------------------------------------- /ide/VisualC6/browser.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/browser.dsp -------------------------------------------------------------------------------- /ide/VisualC6/button.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/button.dsp -------------------------------------------------------------------------------- /ide/VisualC6/buttons.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/buttons.dsp -------------------------------------------------------------------------------- /ide/VisualC6/checkers.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/checkers.dsp -------------------------------------------------------------------------------- /ide/VisualC6/clock.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/clock.dsp -------------------------------------------------------------------------------- /ide/VisualC6/colbrowser.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/colbrowser.dsp -------------------------------------------------------------------------------- /ide/VisualC6/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/config.h -------------------------------------------------------------------------------- /ide/VisualC6/cube.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/cube.dsp -------------------------------------------------------------------------------- /ide/VisualC6/cursor.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/cursor.dsp -------------------------------------------------------------------------------- /ide/VisualC6/curve.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/curve.dsp -------------------------------------------------------------------------------- /ide/VisualC6/device.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/device.dsp -------------------------------------------------------------------------------- /ide/VisualC6/editor.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/editor.dsp -------------------------------------------------------------------------------- /ide/VisualC6/fast_slow.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/fast_slow.dsp -------------------------------------------------------------------------------- /ide/VisualC6/fltk.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/fltk.dsp -------------------------------------------------------------------------------- /ide/VisualC6/fltk.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/fltk.dsw -------------------------------------------------------------------------------- /ide/VisualC6/fltk_forms.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/fltk_forms.dsp -------------------------------------------------------------------------------- /ide/VisualC6/fltk_gl.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/fltk_gl.dsp -------------------------------------------------------------------------------- /ide/VisualC6/fltk_gldll.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/fltk_gldll.dsp -------------------------------------------------------------------------------- /ide/VisualC6/fltk_jpeg.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/fltk_jpeg.dsp -------------------------------------------------------------------------------- /ide/VisualC6/fltk_png.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/fltk_png.dsp -------------------------------------------------------------------------------- /ide/VisualC6/fltk_zlib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/fltk_zlib.dsp -------------------------------------------------------------------------------- /ide/VisualC6/fltkdll.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/fltkdll.dsp -------------------------------------------------------------------------------- /ide/VisualC6/fonts.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/fonts.dsp -------------------------------------------------------------------------------- /ide/VisualC6/forms.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/forms.dsp -------------------------------------------------------------------------------- /ide/VisualC6/fractals.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/fractals.dsp -------------------------------------------------------------------------------- /ide/VisualC6/fullscreen.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/fullscreen.dsp -------------------------------------------------------------------------------- /ide/VisualC6/gl_overlay.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/gl_overlay.dsp -------------------------------------------------------------------------------- /ide/VisualC6/glpuzzle.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/glpuzzle.dsp -------------------------------------------------------------------------------- /ide/VisualC6/hello.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/hello.dsp -------------------------------------------------------------------------------- /ide/VisualC6/help.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/help.dsp -------------------------------------------------------------------------------- /ide/VisualC6/iconize.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/iconize.dsp -------------------------------------------------------------------------------- /ide/VisualC6/image.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/image.dsp -------------------------------------------------------------------------------- /ide/VisualC6/inactive.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/inactive.dsp -------------------------------------------------------------------------------- /ide/VisualC6/input.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/input.dsp -------------------------------------------------------------------------------- /ide/VisualC6/keyboard.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/keyboard.dsp -------------------------------------------------------------------------------- /ide/VisualC6/label.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/label.dsp -------------------------------------------------------------------------------- /ide/VisualC6/line_style.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/line_style.dsp -------------------------------------------------------------------------------- /ide/VisualC6/mandelbrot.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/mandelbrot.dsp -------------------------------------------------------------------------------- /ide/VisualC6/menubar.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/menubar.dsp -------------------------------------------------------------------------------- /ide/VisualC6/message.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/message.dsp -------------------------------------------------------------------------------- /ide/VisualC6/minimum.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/minimum.dsp -------------------------------------------------------------------------------- /ide/VisualC6/navigation.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/navigation.dsp -------------------------------------------------------------------------------- /ide/VisualC6/output.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/output.dsp -------------------------------------------------------------------------------- /ide/VisualC6/overlay.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/overlay.dsp -------------------------------------------------------------------------------- /ide/VisualC6/pack.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/pack.dsp -------------------------------------------------------------------------------- /ide/VisualC6/pixmap.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/pixmap.dsp -------------------------------------------------------------------------------- /ide/VisualC6/radio.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/radio.dsp -------------------------------------------------------------------------------- /ide/VisualC6/resize.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/resize.dsp -------------------------------------------------------------------------------- /ide/VisualC6/resizebox.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/resizebox.dsp -------------------------------------------------------------------------------- /ide/VisualC6/scroll.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/scroll.dsp -------------------------------------------------------------------------------- /ide/VisualC6/shape.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/shape.dsp -------------------------------------------------------------------------------- /ide/VisualC6/subwindow.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/subwindow.dsp -------------------------------------------------------------------------------- /ide/VisualC6/sudoku.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/sudoku.dsp -------------------------------------------------------------------------------- /ide/VisualC6/symbols.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/symbols.dsp -------------------------------------------------------------------------------- /ide/VisualC6/table.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/table.dsp -------------------------------------------------------------------------------- /ide/VisualC6/tabs.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/tabs.dsp -------------------------------------------------------------------------------- /ide/VisualC6/threads.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/threads.dsp -------------------------------------------------------------------------------- /ide/VisualC6/tile.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/tile.dsp -------------------------------------------------------------------------------- /ide/VisualC6/tree.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/tree.dsp -------------------------------------------------------------------------------- /ide/VisualC6/utf8.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/utf8.dsp -------------------------------------------------------------------------------- /ide/VisualC6/valuators.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/VisualC6/valuators.dsp -------------------------------------------------------------------------------- /ide/Xcode4/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/Xcode4/config.h -------------------------------------------------------------------------------- /ide/Xcode4/fltk.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/Xcode4/fltk.pch -------------------------------------------------------------------------------- /ide/Xcode4/fluid.pbfilespec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/Xcode4/fluid.pbfilespec -------------------------------------------------------------------------------- /ide/Xcode4/icons/fluid.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/ide/Xcode4/icons/fluid.icns -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/install-sh -------------------------------------------------------------------------------- /jpeg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/CMakeLists.txt -------------------------------------------------------------------------------- /jpeg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/Makefile -------------------------------------------------------------------------------- /jpeg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/README -------------------------------------------------------------------------------- /jpeg/change.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/change.log -------------------------------------------------------------------------------- /jpeg/coderules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/coderules.txt -------------------------------------------------------------------------------- /jpeg/filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/filelist.txt -------------------------------------------------------------------------------- /jpeg/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/install.txt -------------------------------------------------------------------------------- /jpeg/jaricom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jaricom.c -------------------------------------------------------------------------------- /jpeg/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jcapimin.c -------------------------------------------------------------------------------- /jpeg/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jcapistd.c -------------------------------------------------------------------------------- /jpeg/jcarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jcarith.c -------------------------------------------------------------------------------- /jpeg/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jccoefct.c -------------------------------------------------------------------------------- /jpeg/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jccolor.c -------------------------------------------------------------------------------- /jpeg/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jcdctmgr.c -------------------------------------------------------------------------------- /jpeg/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jchuff.c -------------------------------------------------------------------------------- /jpeg/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jcinit.c -------------------------------------------------------------------------------- /jpeg/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jcmainct.c -------------------------------------------------------------------------------- /jpeg/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jcmarker.c -------------------------------------------------------------------------------- /jpeg/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jcmaster.c -------------------------------------------------------------------------------- /jpeg/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jcomapi.c -------------------------------------------------------------------------------- /jpeg/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jconfig.h -------------------------------------------------------------------------------- /jpeg/jconfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jconfig.txt -------------------------------------------------------------------------------- /jpeg/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jcparam.c -------------------------------------------------------------------------------- /jpeg/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jcprepct.c -------------------------------------------------------------------------------- /jpeg/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jcsample.c -------------------------------------------------------------------------------- /jpeg/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jctrans.c -------------------------------------------------------------------------------- /jpeg/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jdapimin.c -------------------------------------------------------------------------------- /jpeg/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jdapistd.c -------------------------------------------------------------------------------- /jpeg/jdarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jdarith.c -------------------------------------------------------------------------------- /jpeg/jdatadst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jdatadst.c -------------------------------------------------------------------------------- /jpeg/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jdatasrc.c -------------------------------------------------------------------------------- /jpeg/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jdcoefct.c -------------------------------------------------------------------------------- /jpeg/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jdcolor.c -------------------------------------------------------------------------------- /jpeg/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jdct.h -------------------------------------------------------------------------------- /jpeg/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jddctmgr.c -------------------------------------------------------------------------------- /jpeg/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jdhuff.c -------------------------------------------------------------------------------- /jpeg/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jdinput.c -------------------------------------------------------------------------------- /jpeg/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jdmainct.c -------------------------------------------------------------------------------- /jpeg/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jdmarker.c -------------------------------------------------------------------------------- /jpeg/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jdmaster.c -------------------------------------------------------------------------------- /jpeg/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jdmerge.c -------------------------------------------------------------------------------- /jpeg/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jdpostct.c -------------------------------------------------------------------------------- /jpeg/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jdsample.c -------------------------------------------------------------------------------- /jpeg/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jdtrans.c -------------------------------------------------------------------------------- /jpeg/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jerror.c -------------------------------------------------------------------------------- /jpeg/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jerror.h -------------------------------------------------------------------------------- /jpeg/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jfdctflt.c -------------------------------------------------------------------------------- /jpeg/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jfdctfst.c -------------------------------------------------------------------------------- /jpeg/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jfdctint.c -------------------------------------------------------------------------------- /jpeg/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jidctflt.c -------------------------------------------------------------------------------- /jpeg/jidctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jidctfst.c -------------------------------------------------------------------------------- /jpeg/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jidctint.c -------------------------------------------------------------------------------- /jpeg/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jinclude.h -------------------------------------------------------------------------------- /jpeg/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jmemmgr.c -------------------------------------------------------------------------------- /jpeg/jmemnobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jmemnobs.c -------------------------------------------------------------------------------- /jpeg/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jmemsys.h -------------------------------------------------------------------------------- /jpeg/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jmorecfg.h -------------------------------------------------------------------------------- /jpeg/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jpegint.h -------------------------------------------------------------------------------- /jpeg/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jpeglib.h -------------------------------------------------------------------------------- /jpeg/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jquant1.c -------------------------------------------------------------------------------- /jpeg/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jquant2.c -------------------------------------------------------------------------------- /jpeg/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jutils.c -------------------------------------------------------------------------------- /jpeg/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/jversion.h -------------------------------------------------------------------------------- /jpeg/libjpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/libjpeg.txt -------------------------------------------------------------------------------- /jpeg/makedepend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/makedepend -------------------------------------------------------------------------------- /jpeg/structure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/structure.txt -------------------------------------------------------------------------------- /jpeg/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/usage.txt -------------------------------------------------------------------------------- /jpeg/wizard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/jpeg/wizard.txt -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/lib/README -------------------------------------------------------------------------------- /mac_endianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/mac_endianness.h -------------------------------------------------------------------------------- /makeinclude.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/makeinclude.in -------------------------------------------------------------------------------- /makesrcdist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/makesrcdist -------------------------------------------------------------------------------- /misc/MacRoman_utf-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/misc/MacRoman_utf-8.png -------------------------------------------------------------------------------- /misc/MacRoman_utf-8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/misc/MacRoman_utf-8.txt -------------------------------------------------------------------------------- /misc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/misc/README -------------------------------------------------------------------------------- /misc/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/misc/config.guess -------------------------------------------------------------------------------- /misc/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/misc/config.sub -------------------------------------------------------------------------------- /misc/cp1252.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/misc/cp1252.html -------------------------------------------------------------------------------- /misc/cp1252.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/misc/cp1252.png -------------------------------------------------------------------------------- /misc/cp1252.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/misc/cp1252.txt -------------------------------------------------------------------------------- /misc/cp1252_utf-8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/misc/cp1252_utf-8.html -------------------------------------------------------------------------------- /misc/cp1252_utf-8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/misc/cp1252_utf-8.txt -------------------------------------------------------------------------------- /misc/doxystar.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/misc/doxystar.cxx -------------------------------------------------------------------------------- /misc/iso-8859-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/misc/iso-8859-1.txt -------------------------------------------------------------------------------- /misc/iso-8859-1_utf-8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/misc/iso-8859-1_utf-8.txt -------------------------------------------------------------------------------- /png/ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/ANNOUNCE -------------------------------------------------------------------------------- /png/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/CHANGES -------------------------------------------------------------------------------- /png/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/CMakeLists.txt -------------------------------------------------------------------------------- /png/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/INSTALL -------------------------------------------------------------------------------- /png/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/LICENSE -------------------------------------------------------------------------------- /png/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/Makefile -------------------------------------------------------------------------------- /png/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/README -------------------------------------------------------------------------------- /png/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/TODO -------------------------------------------------------------------------------- /png/libpng-manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/libpng-manual.txt -------------------------------------------------------------------------------- /png/libpng.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/libpng.3 -------------------------------------------------------------------------------- /png/libpngpf.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/libpngpf.3 -------------------------------------------------------------------------------- /png/makedepend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/makedepend -------------------------------------------------------------------------------- /png/png.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/png.5 -------------------------------------------------------------------------------- /png/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/png.c -------------------------------------------------------------------------------- /png/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/png.h -------------------------------------------------------------------------------- /png/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/pngconf.h -------------------------------------------------------------------------------- /png/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/pngdebug.h -------------------------------------------------------------------------------- /png/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/pngerror.c -------------------------------------------------------------------------------- /png/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/pngget.c -------------------------------------------------------------------------------- /png/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/pnginfo.h -------------------------------------------------------------------------------- /png/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/pnglibconf.h -------------------------------------------------------------------------------- /png/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/pngmem.c -------------------------------------------------------------------------------- /png/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/pngpread.c -------------------------------------------------------------------------------- /png/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/pngpriv.h -------------------------------------------------------------------------------- /png/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/pngread.c -------------------------------------------------------------------------------- /png/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/pngrio.c -------------------------------------------------------------------------------- /png/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/pngrtran.c -------------------------------------------------------------------------------- /png/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/pngrutil.c -------------------------------------------------------------------------------- /png/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/pngset.c -------------------------------------------------------------------------------- /png/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/pngstruct.h -------------------------------------------------------------------------------- /png/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/pngtrans.c -------------------------------------------------------------------------------- /png/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/pngwio.c -------------------------------------------------------------------------------- /png/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/pngwrite.c -------------------------------------------------------------------------------- /png/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/pngwtran.c -------------------------------------------------------------------------------- /png/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/png/pngwutil.c -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Fl.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl.cxx -------------------------------------------------------------------------------- /src/Fl_Adjuster.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Adjuster.cxx -------------------------------------------------------------------------------- /src/Fl_BMP_Image.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_BMP_Image.cxx -------------------------------------------------------------------------------- /src/Fl_Bitmap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Bitmap.cxx -------------------------------------------------------------------------------- /src/Fl_Box.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Box.cxx -------------------------------------------------------------------------------- /src/Fl_Browser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Browser.cxx -------------------------------------------------------------------------------- /src/Fl_Browser_.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Browser_.cxx -------------------------------------------------------------------------------- /src/Fl_Browser_load.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Browser_load.cxx -------------------------------------------------------------------------------- /src/Fl_Button.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Button.cxx -------------------------------------------------------------------------------- /src/Fl_Chart.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Chart.cxx -------------------------------------------------------------------------------- /src/Fl_Check_Browser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Check_Browser.cxx -------------------------------------------------------------------------------- /src/Fl_Check_Button.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Check_Button.cxx -------------------------------------------------------------------------------- /src/Fl_Choice.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Choice.cxx -------------------------------------------------------------------------------- /src/Fl_Clock.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Clock.cxx -------------------------------------------------------------------------------- /src/Fl_Color_Chooser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Color_Chooser.cxx -------------------------------------------------------------------------------- /src/Fl_Copy_Surface.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Copy_Surface.cxx -------------------------------------------------------------------------------- /src/Fl_Counter.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Counter.cxx -------------------------------------------------------------------------------- /src/Fl_Device.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Device.cxx -------------------------------------------------------------------------------- /src/Fl_Dial.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Dial.cxx -------------------------------------------------------------------------------- /src/Fl_Double_Window.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Double_Window.cxx -------------------------------------------------------------------------------- /src/Fl_File_Browser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_File_Browser.cxx -------------------------------------------------------------------------------- /src/Fl_File_Chooser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_File_Chooser.cxx -------------------------------------------------------------------------------- /src/Fl_File_Chooser.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_File_Chooser.fl -------------------------------------------------------------------------------- /src/Fl_File_Chooser2.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_File_Chooser2.cxx -------------------------------------------------------------------------------- /src/Fl_File_Icon.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_File_Icon.cxx -------------------------------------------------------------------------------- /src/Fl_File_Icon2.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_File_Icon2.cxx -------------------------------------------------------------------------------- /src/Fl_File_Input.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_File_Input.cxx -------------------------------------------------------------------------------- /src/Fl_Font.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Font.H -------------------------------------------------------------------------------- /src/Fl_GDI_Printer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_GDI_Printer.cxx -------------------------------------------------------------------------------- /src/Fl_GIF_Image.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_GIF_Image.cxx -------------------------------------------------------------------------------- /src/Fl_Gl_Choice.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Gl_Choice.H -------------------------------------------------------------------------------- /src/Fl_Gl_Choice.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Gl_Choice.cxx -------------------------------------------------------------------------------- /src/Fl_Gl_Device_Plugin.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Gl_Device_Plugin.cxx -------------------------------------------------------------------------------- /src/Fl_Gl_Overlay.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Gl_Overlay.cxx -------------------------------------------------------------------------------- /src/Fl_Gl_Window.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Gl_Window.cxx -------------------------------------------------------------------------------- /src/Fl_Group.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Group.cxx -------------------------------------------------------------------------------- /src/Fl_Help_Dialog.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Help_Dialog.cxx -------------------------------------------------------------------------------- /src/Fl_Help_Dialog.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Help_Dialog.fl -------------------------------------------------------------------------------- /src/Fl_Help_Dialog_Dox.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Help_Dialog_Dox.cxx -------------------------------------------------------------------------------- /src/Fl_Help_View.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Help_View.cxx -------------------------------------------------------------------------------- /src/Fl_Image.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Image.cxx -------------------------------------------------------------------------------- /src/Fl_Image_Surface.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Image_Surface.cxx -------------------------------------------------------------------------------- /src/Fl_Input.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Input.cxx -------------------------------------------------------------------------------- /src/Fl_Input_.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Input_.cxx -------------------------------------------------------------------------------- /src/Fl_JPEG_Image.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_JPEG_Image.cxx -------------------------------------------------------------------------------- /src/Fl_Light_Button.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Light_Button.cxx -------------------------------------------------------------------------------- /src/Fl_Menu.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Menu.cxx -------------------------------------------------------------------------------- /src/Fl_Menu_.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Menu_.cxx -------------------------------------------------------------------------------- /src/Fl_Menu_Bar.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Menu_Bar.cxx -------------------------------------------------------------------------------- /src/Fl_Menu_Button.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Menu_Button.cxx -------------------------------------------------------------------------------- /src/Fl_Menu_Window.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Menu_Window.cxx -------------------------------------------------------------------------------- /src/Fl_Menu_add.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Menu_add.cxx -------------------------------------------------------------------------------- /src/Fl_Menu_global.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Menu_global.cxx -------------------------------------------------------------------------------- /src/Fl_Multi_Label.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Multi_Label.cxx -------------------------------------------------------------------------------- /src/Fl_Overlay_Window.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Overlay_Window.cxx -------------------------------------------------------------------------------- /src/Fl_PNG_Image.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_PNG_Image.cxx -------------------------------------------------------------------------------- /src/Fl_PNM_Image.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_PNM_Image.cxx -------------------------------------------------------------------------------- /src/Fl_Pack.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Pack.cxx -------------------------------------------------------------------------------- /src/Fl_Paged_Device.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Paged_Device.cxx -------------------------------------------------------------------------------- /src/Fl_Pixmap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Pixmap.cxx -------------------------------------------------------------------------------- /src/Fl_Positioner.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Positioner.cxx -------------------------------------------------------------------------------- /src/Fl_PostScript.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_PostScript.cxx -------------------------------------------------------------------------------- /src/Fl_Preferences.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Preferences.cxx -------------------------------------------------------------------------------- /src/Fl_Printer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Printer.cxx -------------------------------------------------------------------------------- /src/Fl_Progress.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Progress.cxx -------------------------------------------------------------------------------- /src/Fl_Quartz_Printer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Quartz_Printer.mm -------------------------------------------------------------------------------- /src/Fl_Repeat_Button.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Repeat_Button.cxx -------------------------------------------------------------------------------- /src/Fl_Return_Button.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Return_Button.cxx -------------------------------------------------------------------------------- /src/Fl_Roller.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Roller.cxx -------------------------------------------------------------------------------- /src/Fl_Round_Button.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Round_Button.cxx -------------------------------------------------------------------------------- /src/Fl_Scroll.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Scroll.cxx -------------------------------------------------------------------------------- /src/Fl_Scrollbar.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Scrollbar.cxx -------------------------------------------------------------------------------- /src/Fl_Shared_Image.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Shared_Image.cxx -------------------------------------------------------------------------------- /src/Fl_Single_Window.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Single_Window.cxx -------------------------------------------------------------------------------- /src/Fl_Slider.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Slider.cxx -------------------------------------------------------------------------------- /src/Fl_Sys_Menu_Bar.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Sys_Menu_Bar.mm -------------------------------------------------------------------------------- /src/Fl_Table.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Table.cxx -------------------------------------------------------------------------------- /src/Fl_Table_Row.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Table_Row.cxx -------------------------------------------------------------------------------- /src/Fl_Tabs.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Tabs.cxx -------------------------------------------------------------------------------- /src/Fl_Text_Buffer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Text_Buffer.cxx -------------------------------------------------------------------------------- /src/Fl_Text_Display.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Text_Display.cxx -------------------------------------------------------------------------------- /src/Fl_Text_Editor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Text_Editor.cxx -------------------------------------------------------------------------------- /src/Fl_Tile.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Tile.cxx -------------------------------------------------------------------------------- /src/Fl_Tiled_Image.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Tiled_Image.cxx -------------------------------------------------------------------------------- /src/Fl_Tooltip.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Tooltip.cxx -------------------------------------------------------------------------------- /src/Fl_Tree.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Tree.cxx -------------------------------------------------------------------------------- /src/Fl_Tree_Item.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Tree_Item.cxx -------------------------------------------------------------------------------- /src/Fl_Tree_Item_Array.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Tree_Item_Array.cxx -------------------------------------------------------------------------------- /src/Fl_Tree_Prefs.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Tree_Prefs.cxx -------------------------------------------------------------------------------- /src/Fl_Valuator.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Valuator.cxx -------------------------------------------------------------------------------- /src/Fl_Value_Input.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Value_Input.cxx -------------------------------------------------------------------------------- /src/Fl_Value_Output.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Value_Output.cxx -------------------------------------------------------------------------------- /src/Fl_Value_Slider.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Value_Slider.cxx -------------------------------------------------------------------------------- /src/Fl_Widget.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Widget.cxx -------------------------------------------------------------------------------- /src/Fl_Window.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Window.cxx -------------------------------------------------------------------------------- /src/Fl_Window_hotspot.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Window_hotspot.cxx -------------------------------------------------------------------------------- /src/Fl_Window_iconize.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Window_iconize.cxx -------------------------------------------------------------------------------- /src/Fl_Window_shape.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Window_shape.cxx -------------------------------------------------------------------------------- /src/Fl_Wizard.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_Wizard.cxx -------------------------------------------------------------------------------- /src/Fl_XBM_Image.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_XBM_Image.cxx -------------------------------------------------------------------------------- /src/Fl_XColor.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_XColor.H -------------------------------------------------------------------------------- /src/Fl_XPM_Image.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_XPM_Image.cxx -------------------------------------------------------------------------------- /src/Fl_abort.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_abort.cxx -------------------------------------------------------------------------------- /src/Fl_add_idle.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_add_idle.cxx -------------------------------------------------------------------------------- /src/Fl_arg.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_arg.cxx -------------------------------------------------------------------------------- /src/Fl_cocoa.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_cocoa.mm -------------------------------------------------------------------------------- /src/Fl_compose.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_compose.cxx -------------------------------------------------------------------------------- /src/Fl_display.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_display.cxx -------------------------------------------------------------------------------- /src/Fl_get_key.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_get_key.cxx -------------------------------------------------------------------------------- /src/Fl_get_key_mac.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_get_key_mac.cxx -------------------------------------------------------------------------------- /src/Fl_get_key_win32.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_get_key_win32.cxx -------------------------------------------------------------------------------- /src/Fl_grab.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_grab.cxx -------------------------------------------------------------------------------- /src/Fl_lock.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_lock.cxx -------------------------------------------------------------------------------- /src/Fl_own_colormap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_own_colormap.cxx -------------------------------------------------------------------------------- /src/Fl_visual.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_visual.cxx -------------------------------------------------------------------------------- /src/Fl_win32.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_win32.cxx -------------------------------------------------------------------------------- /src/Fl_x.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Fl_x.cxx -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Xutf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/Xutf8.h -------------------------------------------------------------------------------- /src/allfiles.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/allfiles.xbm -------------------------------------------------------------------------------- /src/cgdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/cgdebug.h -------------------------------------------------------------------------------- /src/cmap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/cmap.cxx -------------------------------------------------------------------------------- /src/d1.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/d1.xbm -------------------------------------------------------------------------------- /src/d1_mask.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/d1_mask.xbm -------------------------------------------------------------------------------- /src/dump_compose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/dump_compose.c -------------------------------------------------------------------------------- /src/ew.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/ew.xbm -------------------------------------------------------------------------------- /src/ew_mask.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/ew_mask.xbm -------------------------------------------------------------------------------- /src/fastarrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fastarrow.h -------------------------------------------------------------------------------- /src/filename_absolute.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/filename_absolute.cxx -------------------------------------------------------------------------------- /src/filename_expand.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/filename_expand.cxx -------------------------------------------------------------------------------- /src/filename_ext.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/filename_ext.cxx -------------------------------------------------------------------------------- /src/filename_isdir.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/filename_isdir.cxx -------------------------------------------------------------------------------- /src/filename_list.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/filename_list.cxx -------------------------------------------------------------------------------- /src/filename_match.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/filename_match.cxx -------------------------------------------------------------------------------- /src/filename_setext.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/filename_setext.cxx -------------------------------------------------------------------------------- /src/fl_arc.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_arc.cxx -------------------------------------------------------------------------------- /src/fl_arci.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_arci.cxx -------------------------------------------------------------------------------- /src/fl_ask.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_ask.cxx -------------------------------------------------------------------------------- /src/fl_boxtype.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_boxtype.cxx -------------------------------------------------------------------------------- /src/fl_call_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_call_main.c -------------------------------------------------------------------------------- /src/fl_cmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_cmap.h -------------------------------------------------------------------------------- /src/fl_color.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_color.cxx -------------------------------------------------------------------------------- /src/fl_color_mac.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_color_mac.cxx -------------------------------------------------------------------------------- /src/fl_color_win32.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_color_win32.cxx -------------------------------------------------------------------------------- /src/fl_cursor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_cursor.cxx -------------------------------------------------------------------------------- /src/fl_cursor_help.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_cursor_help.xpm -------------------------------------------------------------------------------- /src/fl_cursor_nesw.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_cursor_nesw.xpm -------------------------------------------------------------------------------- /src/fl_cursor_none.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_cursor_none.xpm -------------------------------------------------------------------------------- /src/fl_cursor_nwse.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_cursor_nwse.xpm -------------------------------------------------------------------------------- /src/fl_cursor_wait.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_cursor_wait.xpm -------------------------------------------------------------------------------- /src/fl_curve.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_curve.cxx -------------------------------------------------------------------------------- /src/fl_diamond_box.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_diamond_box.cxx -------------------------------------------------------------------------------- /src/fl_dnd.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_dnd.cxx -------------------------------------------------------------------------------- /src/fl_dnd_win32.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_dnd_win32.cxx -------------------------------------------------------------------------------- /src/fl_dnd_x.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_dnd_x.cxx -------------------------------------------------------------------------------- /src/fl_draw.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_draw.cxx -------------------------------------------------------------------------------- /src/fl_draw_image.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_draw_image.cxx -------------------------------------------------------------------------------- /src/fl_draw_image_mac.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_draw_image_mac.cxx -------------------------------------------------------------------------------- /src/fl_draw_image_win32.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_draw_image_win32.cxx -------------------------------------------------------------------------------- /src/fl_draw_pixmap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_draw_pixmap.cxx -------------------------------------------------------------------------------- /src/fl_encoding_latin1.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_encoding_latin1.cxx -------------------------------------------------------------------------------- /src/fl_engraved_label.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_engraved_label.cxx -------------------------------------------------------------------------------- /src/fl_file_dir.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_file_dir.cxx -------------------------------------------------------------------------------- /src/fl_font.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_font.cxx -------------------------------------------------------------------------------- /src/fl_font_mac.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_font_mac.cxx -------------------------------------------------------------------------------- /src/fl_font_win32.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_font_win32.cxx -------------------------------------------------------------------------------- /src/fl_font_x.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_font_x.cxx -------------------------------------------------------------------------------- /src/fl_font_xft.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_font_xft.cxx -------------------------------------------------------------------------------- /src/fl_gleam.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_gleam.cxx -------------------------------------------------------------------------------- /src/fl_gtk.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_gtk.cxx -------------------------------------------------------------------------------- /src/fl_images_core.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_images_core.cxx -------------------------------------------------------------------------------- /src/fl_labeltype.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_labeltype.cxx -------------------------------------------------------------------------------- /src/fl_line_style.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_line_style.cxx -------------------------------------------------------------------------------- /src/fl_open_uri.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_open_uri.cxx -------------------------------------------------------------------------------- /src/fl_oval_box.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_oval_box.cxx -------------------------------------------------------------------------------- /src/fl_overlay.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_overlay.cxx -------------------------------------------------------------------------------- /src/fl_overlay_visual.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_overlay_visual.cxx -------------------------------------------------------------------------------- /src/fl_plastic.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_plastic.cxx -------------------------------------------------------------------------------- /src/fl_read_image.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_read_image.cxx -------------------------------------------------------------------------------- /src/fl_read_image_mac.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_read_image_mac.cxx -------------------------------------------------------------------------------- /src/fl_read_image_win32.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_read_image_win32.cxx -------------------------------------------------------------------------------- /src/fl_rect.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_rect.cxx -------------------------------------------------------------------------------- /src/fl_round_box.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_round_box.cxx -------------------------------------------------------------------------------- /src/fl_rounded_box.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_rounded_box.cxx -------------------------------------------------------------------------------- /src/fl_scroll_area.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_scroll_area.cxx -------------------------------------------------------------------------------- /src/fl_set_font.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_set_font.cxx -------------------------------------------------------------------------------- /src/fl_set_fonts.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_set_fonts.cxx -------------------------------------------------------------------------------- /src/fl_set_fonts_mac.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_set_fonts_mac.cxx -------------------------------------------------------------------------------- /src/fl_set_fonts_win32.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_set_fonts_win32.cxx -------------------------------------------------------------------------------- /src/fl_set_fonts_x.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_set_fonts_x.cxx -------------------------------------------------------------------------------- /src/fl_set_fonts_xft.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_set_fonts_xft.cxx -------------------------------------------------------------------------------- /src/fl_shadow_box.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_shadow_box.cxx -------------------------------------------------------------------------------- /src/fl_shortcut.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_shortcut.cxx -------------------------------------------------------------------------------- /src/fl_show_colormap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_show_colormap.cxx -------------------------------------------------------------------------------- /src/fl_symbols.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_symbols.cxx -------------------------------------------------------------------------------- /src/fl_utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_utf.c -------------------------------------------------------------------------------- /src/fl_utf8.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_utf8.cxx -------------------------------------------------------------------------------- /src/fl_vertex.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/fl_vertex.cxx -------------------------------------------------------------------------------- /src/flstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/flstring.c -------------------------------------------------------------------------------- /src/flstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/flstring.h -------------------------------------------------------------------------------- /src/forms_bitmap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/forms_bitmap.cxx -------------------------------------------------------------------------------- /src/forms_compatability.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/forms_compatability.cxx -------------------------------------------------------------------------------- /src/forms_free.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/forms_free.cxx -------------------------------------------------------------------------------- /src/forms_fselect.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/forms_fselect.cxx -------------------------------------------------------------------------------- /src/forms_pixmap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/forms_pixmap.cxx -------------------------------------------------------------------------------- /src/forms_timer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/forms_timer.cxx -------------------------------------------------------------------------------- /src/freeglut_geometry.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/freeglut_geometry.cxx -------------------------------------------------------------------------------- /src/freeglut_teapot.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/freeglut_teapot.cxx -------------------------------------------------------------------------------- /src/freeglut_teapot_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/freeglut_teapot_data.h -------------------------------------------------------------------------------- /src/gl_draw.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/gl_draw.cxx -------------------------------------------------------------------------------- /src/gl_start.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/gl_start.cxx -------------------------------------------------------------------------------- /src/glut_compatability.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/glut_compatability.cxx -------------------------------------------------------------------------------- /src/glut_font.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/glut_font.cxx -------------------------------------------------------------------------------- /src/makedepend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/makedepend -------------------------------------------------------------------------------- /src/mediumarrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/mediumarrow.h -------------------------------------------------------------------------------- /src/new.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/new.xbm -------------------------------------------------------------------------------- /src/ns.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/ns.xbm -------------------------------------------------------------------------------- /src/ns_mask.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/ns_mask.xbm -------------------------------------------------------------------------------- /src/numericsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/numericsort.c -------------------------------------------------------------------------------- /src/print_panel.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/print_panel.cxx -------------------------------------------------------------------------------- /src/print_panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/print_panel.h -------------------------------------------------------------------------------- /src/ps_image.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/ps_image.cxx -------------------------------------------------------------------------------- /src/scandir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/scandir.c -------------------------------------------------------------------------------- /src/scandir_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/scandir_posix.c -------------------------------------------------------------------------------- /src/scandir_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/scandir_win32.c -------------------------------------------------------------------------------- /src/screen_xywh.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/screen_xywh.cxx -------------------------------------------------------------------------------- /src/slowarrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/slowarrow.h -------------------------------------------------------------------------------- /src/tile.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/tile.xpm -------------------------------------------------------------------------------- /src/up.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/up.xbm -------------------------------------------------------------------------------- /src/vsnprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/vsnprintf.c -------------------------------------------------------------------------------- /src/xutf8/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/xutf8/COPYING -------------------------------------------------------------------------------- /src/xutf8/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/xutf8/README -------------------------------------------------------------------------------- /src/xutf8/Ximint.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/xutf8/Xlibint.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/xutf8/case.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/xutf8/case.c -------------------------------------------------------------------------------- /src/xutf8/fl_wcwidth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/xutf8/fl_wcwidth.c -------------------------------------------------------------------------------- /src/xutf8/headers/case.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/xutf8/headers/case.h -------------------------------------------------------------------------------- /src/xutf8/headers/spacing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/xutf8/headers/spacing.h -------------------------------------------------------------------------------- /src/xutf8/imKStoUCS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/xutf8/imKStoUCS.c -------------------------------------------------------------------------------- /src/xutf8/is_spacing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/xutf8/is_spacing.c -------------------------------------------------------------------------------- /src/xutf8/keysym2Ucs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/xutf8/keysym2Ucs.c -------------------------------------------------------------------------------- /src/xutf8/mk_wcwidth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/xutf8/mk_wcwidth.c -------------------------------------------------------------------------------- /src/xutf8/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/xutf8/test.c -------------------------------------------------------------------------------- /src/xutf8/test2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/xutf8/test2.c -------------------------------------------------------------------------------- /src/xutf8/ucs2fontmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/xutf8/ucs2fontmap.c -------------------------------------------------------------------------------- /src/xutf8/utf8Input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/xutf8/utf8Input.c -------------------------------------------------------------------------------- /src/xutf8/utf8Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/xutf8/utf8Utils.c -------------------------------------------------------------------------------- /src/xutf8/utf8Wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/xutf8/utf8Wrap.c -------------------------------------------------------------------------------- /src/xutf8/utils/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/xutf8/utils/INSTALL -------------------------------------------------------------------------------- /src/xutf8/utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/xutf8/utils/Makefile -------------------------------------------------------------------------------- /src/xutf8/utils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/xutf8/utils/README -------------------------------------------------------------------------------- /src/xutf8/utils/case.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/xutf8/utils/case.sh -------------------------------------------------------------------------------- /src/xutf8/utils/euc_tw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/src/xutf8/utils/euc_tw.c -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/CubeMain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/CubeMain.cxx -------------------------------------------------------------------------------- /test/CubeView.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/CubeView.cxx -------------------------------------------------------------------------------- /test/CubeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/CubeView.h -------------------------------------------------------------------------------- /test/CubeViewUI.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/CubeViewUI.fl -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/README -------------------------------------------------------------------------------- /test/adjuster.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/adjuster.cxx -------------------------------------------------------------------------------- /test/animated.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/animated.cxx -------------------------------------------------------------------------------- /test/arc.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/arc.cxx -------------------------------------------------------------------------------- /test/ask.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/ask.cxx -------------------------------------------------------------------------------- /test/bitmap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/bitmap.cxx -------------------------------------------------------------------------------- /test/blocks.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | BLKSBlks 2 | -------------------------------------------------------------------------------- /test/blocks.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/blocks.cxx -------------------------------------------------------------------------------- /test/boxtype.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/boxtype.cxx -------------------------------------------------------------------------------- /test/browser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/browser.cxx -------------------------------------------------------------------------------- /test/button.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/button.cxx -------------------------------------------------------------------------------- /test/buttons.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/buttons.cxx -------------------------------------------------------------------------------- /test/cairo_test.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/cairo_test.cxx -------------------------------------------------------------------------------- /test/checkers.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | FLSUFlsu 2 | -------------------------------------------------------------------------------- /test/checkers.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/checkers.cxx -------------------------------------------------------------------------------- /test/clock.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/clock.cxx -------------------------------------------------------------------------------- /test/colbrowser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/colbrowser.cxx -------------------------------------------------------------------------------- /test/color_chooser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/color_chooser.cxx -------------------------------------------------------------------------------- /test/connect.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/connect.cxx -------------------------------------------------------------------------------- /test/cube.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/cube.cxx -------------------------------------------------------------------------------- /test/cursor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/cursor.cxx -------------------------------------------------------------------------------- /test/curve.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/curve.cxx -------------------------------------------------------------------------------- /test/demo.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/demo.cxx -------------------------------------------------------------------------------- /test/demo.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/demo.menu -------------------------------------------------------------------------------- /test/device.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/device.cxx -------------------------------------------------------------------------------- /test/doublebuffer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/doublebuffer.cxx -------------------------------------------------------------------------------- /test/editor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/editor.cxx -------------------------------------------------------------------------------- /test/fast_slow.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/fast_slow.fl -------------------------------------------------------------------------------- /test/file_chooser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/file_chooser.cxx -------------------------------------------------------------------------------- /test/fonts.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/fonts.cxx -------------------------------------------------------------------------------- /test/forms.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/forms.cxx -------------------------------------------------------------------------------- /test/fractals.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/fractals.cxx -------------------------------------------------------------------------------- /test/fracviewer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/fracviewer.cxx -------------------------------------------------------------------------------- /test/fracviewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/fracviewer.h -------------------------------------------------------------------------------- /test/fromdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/fromdos.c -------------------------------------------------------------------------------- /test/fullscreen.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/fullscreen.cxx -------------------------------------------------------------------------------- /test/gl_overlay.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/gl_overlay.cxx -------------------------------------------------------------------------------- /test/glpuzzle.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/glpuzzle.cxx -------------------------------------------------------------------------------- /test/hello.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/hello.cxx -------------------------------------------------------------------------------- /test/help-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/help-test.html -------------------------------------------------------------------------------- /test/help.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/help.cxx -------------------------------------------------------------------------------- /test/icon.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/icon.cxx -------------------------------------------------------------------------------- /test/iconize.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/iconize.cxx -------------------------------------------------------------------------------- /test/image.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/image.cxx -------------------------------------------------------------------------------- /test/inactive.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/inactive.fl -------------------------------------------------------------------------------- /test/input.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/input.cxx -------------------------------------------------------------------------------- /test/input_choice.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/input_choice.cxx -------------------------------------------------------------------------------- /test/keyboard.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/keyboard.cxx -------------------------------------------------------------------------------- /test/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/keyboard.h -------------------------------------------------------------------------------- /test/keyboard_ui.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/keyboard_ui.fl -------------------------------------------------------------------------------- /test/label.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/label.cxx -------------------------------------------------------------------------------- /test/line_style.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/line_style.cxx -------------------------------------------------------------------------------- /test/list_visuals.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/list_visuals.cxx -------------------------------------------------------------------------------- /test/makedepend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/makedepend -------------------------------------------------------------------------------- /test/mandelbrot.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/mandelbrot.cxx -------------------------------------------------------------------------------- /test/mandelbrot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/mandelbrot.h -------------------------------------------------------------------------------- /test/mandelbrot_ui.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/mandelbrot_ui.fl -------------------------------------------------------------------------------- /test/menubar.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/menubar.cxx -------------------------------------------------------------------------------- /test/message.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/message.cxx -------------------------------------------------------------------------------- /test/minimum.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/minimum.cxx -------------------------------------------------------------------------------- /test/navigation.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/navigation.cxx -------------------------------------------------------------------------------- /test/offscreen.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/offscreen.cxx -------------------------------------------------------------------------------- /test/output.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/output.cxx -------------------------------------------------------------------------------- /test/overlay.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/overlay.cxx -------------------------------------------------------------------------------- /test/pack.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/pack.cxx -------------------------------------------------------------------------------- /test/pixmap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/pixmap.cxx -------------------------------------------------------------------------------- /test/pixmap_browser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/pixmap_browser.cxx -------------------------------------------------------------------------------- /test/pixmaps/black_1.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/pixmaps/black_1.xbm -------------------------------------------------------------------------------- /test/pixmaps/black_2.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/pixmaps/black_2.xbm -------------------------------------------------------------------------------- /test/pixmaps/black_3.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/pixmaps/black_3.xbm -------------------------------------------------------------------------------- /test/pixmaps/black_4.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/pixmaps/black_4.xbm -------------------------------------------------------------------------------- /test/pixmaps/blast.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/pixmaps/blast.xpm -------------------------------------------------------------------------------- /test/pixmaps/blue.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/pixmaps/blue.xpm -------------------------------------------------------------------------------- /test/pixmaps/cyan.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/pixmaps/cyan.xpm -------------------------------------------------------------------------------- /test/pixmaps/gray.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/pixmaps/gray.xpm -------------------------------------------------------------------------------- /test/pixmaps/green.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/pixmaps/green.xpm -------------------------------------------------------------------------------- /test/pixmaps/magenta.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/pixmaps/magenta.xpm -------------------------------------------------------------------------------- /test/pixmaps/porsche.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/pixmaps/porsche.xpm -------------------------------------------------------------------------------- /test/pixmaps/red.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/pixmaps/red.xpm -------------------------------------------------------------------------------- /test/pixmaps/srs.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/pixmaps/srs.xbm -------------------------------------------------------------------------------- /test/pixmaps/sudoku.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/pixmaps/sudoku.xbm -------------------------------------------------------------------------------- /test/pixmaps/tile.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/pixmaps/tile.xpm -------------------------------------------------------------------------------- /test/pixmaps/white_1.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/pixmaps/white_1.xbm -------------------------------------------------------------------------------- /test/pixmaps/white_2.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/pixmaps/white_2.xbm -------------------------------------------------------------------------------- /test/pixmaps/white_3.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/pixmaps/white_3.xbm -------------------------------------------------------------------------------- /test/pixmaps/white_4.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/pixmaps/white_4.xbm -------------------------------------------------------------------------------- /test/pixmaps/yellow.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/pixmaps/yellow.xpm -------------------------------------------------------------------------------- /test/preferences.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/preferences.fl -------------------------------------------------------------------------------- /test/radio.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/radio.fl -------------------------------------------------------------------------------- /test/resize.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/resize.fl -------------------------------------------------------------------------------- /test/resizebox.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/resizebox.cxx -------------------------------------------------------------------------------- /test/rgb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/rgb.txt -------------------------------------------------------------------------------- /test/rotated_text.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/rotated_text.cxx -------------------------------------------------------------------------------- /test/scroll.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/scroll.cxx -------------------------------------------------------------------------------- /test/shape.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/shape.cxx -------------------------------------------------------------------------------- /test/subwindow.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/subwindow.cxx -------------------------------------------------------------------------------- /test/sudoku.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | FLSUFlsu 2 | -------------------------------------------------------------------------------- /test/sudoku.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/sudoku.cxx -------------------------------------------------------------------------------- /test/sudoku.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/sudoku.ico -------------------------------------------------------------------------------- /test/sudoku.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/sudoku.rc -------------------------------------------------------------------------------- /test/sudokurc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/sudokurc.h -------------------------------------------------------------------------------- /test/symbols.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/symbols.cxx -------------------------------------------------------------------------------- /test/table.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/table.cxx -------------------------------------------------------------------------------- /test/tabs.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/tabs.fl -------------------------------------------------------------------------------- /test/threads.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/threads.cxx -------------------------------------------------------------------------------- /test/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/threads.h -------------------------------------------------------------------------------- /test/tile.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/tile.cxx -------------------------------------------------------------------------------- /test/tiled_image.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/tiled_image.cxx -------------------------------------------------------------------------------- /test/trackball.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/trackball.c -------------------------------------------------------------------------------- /test/trackball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/trackball.h -------------------------------------------------------------------------------- /test/tree.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/tree.fl -------------------------------------------------------------------------------- /test/twowin.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/twowin.cxx -------------------------------------------------------------------------------- /test/unittest_about.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/unittest_about.cxx -------------------------------------------------------------------------------- /test/unittest_images.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/unittest_images.cxx -------------------------------------------------------------------------------- /test/unittest_lines.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/unittest_lines.cxx -------------------------------------------------------------------------------- /test/unittest_points.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/unittest_points.cxx -------------------------------------------------------------------------------- /test/unittest_rects.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/unittest_rects.cxx -------------------------------------------------------------------------------- /test/unittest_symbol.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/unittest_symbol.cxx -------------------------------------------------------------------------------- /test/unittest_text.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/unittest_text.cxx -------------------------------------------------------------------------------- /test/unittests.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/unittests.cxx -------------------------------------------------------------------------------- /test/utf8.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/utf8.cxx -------------------------------------------------------------------------------- /test/valuators.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/valuators.fl -------------------------------------------------------------------------------- /test/windowfocus.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/test/windowfocus.cxx -------------------------------------------------------------------------------- /zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/ChangeLog -------------------------------------------------------------------------------- /zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/FAQ -------------------------------------------------------------------------------- /zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/INDEX -------------------------------------------------------------------------------- /zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/Makefile -------------------------------------------------------------------------------- /zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/README -------------------------------------------------------------------------------- /zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/adler32.c -------------------------------------------------------------------------------- /zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/compress.c -------------------------------------------------------------------------------- /zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/crc32.c -------------------------------------------------------------------------------- /zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/crc32.h -------------------------------------------------------------------------------- /zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/deflate.c -------------------------------------------------------------------------------- /zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/deflate.h -------------------------------------------------------------------------------- /zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/gzclose.c -------------------------------------------------------------------------------- /zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/gzguts.h -------------------------------------------------------------------------------- /zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/gzlib.c -------------------------------------------------------------------------------- /zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/gzread.c -------------------------------------------------------------------------------- /zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/gzwrite.c -------------------------------------------------------------------------------- /zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/infback.c -------------------------------------------------------------------------------- /zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/inffast.c -------------------------------------------------------------------------------- /zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/inffast.h -------------------------------------------------------------------------------- /zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/inffixed.h -------------------------------------------------------------------------------- /zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/inflate.c -------------------------------------------------------------------------------- /zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/inflate.h -------------------------------------------------------------------------------- /zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/inftrees.c -------------------------------------------------------------------------------- /zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/inftrees.h -------------------------------------------------------------------------------- /zlib/makedepend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/makedepend -------------------------------------------------------------------------------- /zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/trees.c -------------------------------------------------------------------------------- /zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/trees.h -------------------------------------------------------------------------------- /zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/uncompr.c -------------------------------------------------------------------------------- /zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/zconf.h -------------------------------------------------------------------------------- /zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/zlib.3 -------------------------------------------------------------------------------- /zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/zlib.h -------------------------------------------------------------------------------- /zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/zutil.c -------------------------------------------------------------------------------- /zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IngwiePhoenix/FLTK/HEAD/zlib/zutil.h --------------------------------------------------------------------------------