summaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Collapse)Author
2022-12-15Rename some Fl_Flex methods for FLTK compliance (#594)Albrecht Schlosser
Change some method names to comply with FLTK style as discussed in fltk.coredev, thread "Fl_Flex method name question". * Rename Fl_Flex::margins(...) to Fl_Flex::margin(...) (use singular form for all margin related methods) * Remove Fl_Flex::setSize() and isSetSize() "backwards compatibility" methods * Rename Fl_Flex::set_size(...) to fixed(...) Note: the latter affects existing (pre-release) fluid (.fl) files: you may want to edit and replace "set_size_tuples" with "fixed_size_tuples"
2022-12-13Fix trailing whitespace and dependenciesAlbrecht Schlosser
2022-12-11Move utf-8 box drawing string into .cxxGreg Ercolano
It was decided today it is ok to use utf-8 strings in source, so consolidating.
2022-12-11Added Unicode Boxes unittest and README-unittests.txtGreg Ercolano
This test helps check for issues with multiline widgets drawing text properly. The README-unittests.txt was added to help developers add new unit tests easily.
2022-12-09New Fl_ICO_Image class to read Windows .ico icon filesManoloFLTK
Many thanks to @darealshinji for contributing all the code for this new FLTK image class (see branch Fl_ICO_Image of https://github.com/darealshinji/fltk).
2022-12-08Fix compilation warning, update dependenciesAlbrecht Schlosser
Warning: variable ā€˜j’ set but not used [-Wunused-but-set-variable]
2022-12-07Minor update to unittest_text to add support for showing the text baseline ↵ian
in testing.
2022-12-05Implement fl_complex_polygon() for OpenGL (#570)Matthias Melcher
2022-11-30Add a unit test for drawing complex shapes (#565)Matthias Melcher
2022-11-25Add i18n to test/preferences (#555)Matthias Melcher
To test the output of FLUID code and demonstrate i18n, preferences emulates GNU gettext.
2022-11-25Add "Oxy" scheme (STR 2675, STR 3477)Albrecht Schlosser
This commit is similar to the patch given in STR 3477, oxy_v5.diff: https://www.fltk.org/strfiles/3477/oxy_v5.diff ... with modifications, and updated to current FLTK code.
2022-11-16Fix whitespace errors and dependenciesAlbrecht Schlosser
(no code changes)
2022-11-11Fix Visual Studio compiler warningsAlbrecht Schlosser
2022-11-08Testing emojis in test/utf8.Matthias Melcher
2022-11-07Removed i18n from test/preferences.flMatthias Melcher
2022-11-06Speed up test/table open timeGreg Ercolano
Only showing table's callbacks after table is initialized. We're only interested in user interaction.
2022-11-06Fixing _define before _include.Matthias Melcher
2022-09-26Replace all calls to sprintf() by calls to snprintf().ManoloFLTK
2022-09-23Updated fltk logo for docs and help_dialog using logo from the website.Greg Ercolano
2022-08-08Improve layout, fix resizing of test/demoAlbrecht Schlosser
Add an invisible box as resizable() to 'demogrp' to avoid bad resizing behavior while the debug terminal is enabled. The old version would disable some buttons including the 'exit' button if the window was resized to a smaller size. Simplify the popup menu (remove strcmp()).
2022-08-08Add option to test Fl_Flex in test/pack.cxxAlbrecht Schlosser
This new feature demonstrates that Fl_Flex can be used (almost) as a drop-in replacement of Fl_Pack. Add missing file to examples/.gitignore.
2022-08-07Fl_Flex: support different margin sizes, improve docsAlbrecht Schlosser
Support different margin sizes on all four edges. Default margin and gap size is now 0 (compatible with Fl_Pack). Doxygen: move the description from the constructor to the class declaration which constitutes a "description". Make some methods virtual and/or 'const'. Clarify demo programs, make them even more "FLTK style".
2022-08-01Add Fl_Flex widget from Karsten Pedersen (issue #255)Albrecht Schlosser
This work is based on the repository and latest commit: https://github.com/osen/FL_Flex.git commit 36e4ed75a00daac825b87e81295818b4650991f5 Author: Karsten Pedersen <...> Date: Fri Apr 23 12:06:16 2021 +0000 Added Fltk (LGPL) license. This widget is similar to Fl_Pack and supports either one row or one column of widgets but has some more features. Test and demo programs are included: test/flex_login.cxx: simple "login window" demo program test/flex_demo.cxx: slightly more complex demo program The original demo programs can still be compiled and built with the new widget provided you '#include <FL/Fl_Flex.H>'. Backwards compatible methods are included (except debug()). The original widget has been modified to match FLTK standards and enhanced in several ways, including: - support box frames - add HORIZONTAL and VERTICAL enum values (as in Fl_Pack) - add horizontal() method (as in Fl_Pack) - use type() rather than internal 'direction' variable - add standard widget constructor (x, y, w, h, label) - add margin and gap accessors rather than hard coding constants - improve test and demo programs - add documentation - replace <vector> with array as required by FLTK CMP - rename camelCase method names, keeping old names for compatibility: - change 'setSize(Fl_Widget*, int)' to 'set_size(Fl_Widget*, int)' - change 'bool isSetSize(Fl_Widget*)' to 'int set_size(Fl_Widget*)' - remove debug() method - add a way to "unset" fixed size: set_size(Fl_Widget *, 0) - add layout() method to force recalculation of children - unify resizeRow() and resizeCol() methods to avoid code duplication - improve widget size calculation.
2022-07-27Configure/make: update dependenciesAlbrecht Schlosser
2022-07-27test/buttons: reorder buttons, remove unnecessary includesAlbrecht Schlosser
Reorder buttons in the expected <tab> order (left to right, top down), make window resizable, and remove unnecessary #include statements.
2022-07-27Add active/inactive button to unittest_schemes.cxxAlbrecht Schlosser
... to test the deactivated status of integrated widgets.
2022-04-12Modify test/cairo_test.cxx to show roles of OPTION_CAIRO and OPTION_CAIROEXT.ManoloFLTK
Also make clear that these options require, for now, Fl_Double_Window to work cross-platform.
2022-04-09Fix build of test/unittests with shared librariesAlbrecht Schlosser
- set variables UNITTEST_LIBS and UNITTEST_LIBS_SHARED appropriately - use these variables in build instructions This includes normal and shared builds with and w/o OpenGL.
2022-04-07Clean up test/.gitignoreAlbrecht Schlosser
- remove no longer used filenames - reorder to separate generated files from executables - add comment on how to create list of generated files
2022-03-22Restore building when HAVE_GL is 0ManoloFLTK
2022-03-21MSVC: use fl_snprintf() rather than snprintf()Albrecht Schlosser
Note that this fix includes "../src/flstring.h" which makes the source file no longer compileable without the full source code, e.g. by using "fltk-config --compile ...". This might be fixed later. (?)
2022-03-03Fix whitespace, update dependencies and fluid filesAlbrecht Schlosser
2022-02-26Fix Visual Studio build warningsAlbrecht Schlosser
2022-02-21Update dependenciesAlbrecht Schlosser
2022-02-21Fix compiler warning [-Wunused-but-set-variable]Albrecht Schlosser
2022-02-19Fix typos and copyrightAlbrecht Schlosser
2022-02-08Account for presence of terminal panel in the size_range() call.ManoloFLTK
2022-02-06OpenGL implementation of all `fl_` "Drawing Fast Shapes" graphics calls (#385)Matthias Melcher
* Fix build system for unites, * Updated unittest to check OpenGL drawing. Making sure that OpenGL drawing is exactly the same as native drawing to make FLTK widget rendering look the same in GL windows. * Make OpenGL optional. * Implemented clipping in OpenGL * unites drawing fast shapes * Fixed CMake * Updating unittest. Added tests for fl_pi and fl_arc (int) Renamed tab to render complex shapes. * Improved OpenGL FLTK drawing emulation. * Fixed GTK ROUND DOWN BOX * Fixing Makefile for unittest * Correctly aligning OpenGL text. * Fixed text alignment in GL windows. Explained the "FLTK over GL " example in Cube. * Overlapping test. * Better GL graphics alignment. * Drawing the focus rect. * Adding Alpha Channel support for GL. * Added FLTK-on-GL documentation.
2022-02-05Minor improvement in Fl_Mac_App_Menu::custom_application_menu_items().ManoloFLTK
2022-01-29More natural shading for Checkers pieces.Matthias Melcher
2022-01-28Checkers pieces scaling.Matthias Melcher
2022-01-28New Checkers pieces created by me from scratch.Matthias Melcher
Remove possible licensing issues. Added vector file.
2022-01-28Remove obsolete image file (#31)Albrecht Schlosser
The checkers pieces are now maintained as .png images, the original (Gimp) image is obsolete.
2022-01-27Background color attribute for Fl_Text_Display. (#378)Matthias Melcher
* Background color attribute for Fl_Text_Display. * Adding attributes. * Avoid clipping horizontal * Fl_Text_Display underlining. * Better line positions * Typos, testing. * Documentation.
2022-01-26#31, HiDPI checkers, animation timingMatthias Melcher
2022-01-26Removed GL Button from test/cubeMatthias Melcher
2022-01-23Remove experimental platforms Android, Pico, SDL (PR #376)Albrecht Schlosser
... as discussed in fltk.coredev: "FLTK 1.4.0 release schedule" https://groups.google.com/g/fltkcoredev/c/PDbHTRpXVh0/m/JqboexZ_AwAJ
2022-01-21Fix compiler warnings [-Wunused-variable]Albrecht Schlosser
... and missing return value [-Wreturn-type]
2022-01-19Fixing and upgrading Fl_Preferences (#374)Matthias Melcher
* Added filename function to Fl_Preferences Static function to get filename before opening. Member to get filename after opening. Bug fixes for memory mapped preferences. * ERROR is a macro on Windows, don't use it * Added Fl_Preferences::dirty(). User can now check if the database will be written when flushed or destroyed. Flush returns a crude error code. * Fl_Preferences::get binary data returns # of bytes read. * Verified group deletion code * Fl_Preferences ignores locale. This will make .prefs files interchangeable between different computers. * Updating the Preferences Mode to ignore locale. * Fixes in docs.
2022-01-16Update fluid files and generated filesAlbrecht Schlosser
fluid/widget_panel.cxx: apply previous fluid fix