summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2025-01-02Remove duplication and typo in documentation of Fl::copy()ManoloFLTK
2024-12-31Document in detail how screen work areas are computed across platforms (#1180)ManoloFLTK
2024-12-28Fluid: Fix file history text.Matthias Melcher
2024-12-27Fluid: Rename Stratgy constants to comply with CMP.Matthias Melcher
Capitalized constants. Added flag to indicate creation by user or file. Removed global variable 'reading_file'.
2024-12-26Fix integer overflow in image interpolation. (#73)Matthias Melcher
Force casting int to long whenever a pixel offset is calculated as offsets can cross the 2GB border for very large images.
2024-12-26Wayland: fix a border case in member function Fl_Wayland_Window_Driver::resize()ManoloFLTK
2024-12-26Fix typo in README.CMake.txtAlbrecht Schlosser
2024-12-22FLUID: Minor fix and docs.Matthias Melcher
2024-12-21FLUID: fix one more warning.Matthias Melcher
2024-12-21FLUID: Remove warnings.Matthias Melcher
2024-12-21FLUID: Improve path handling on Windows.MatthiasWM
2024-12-21FLUID: Improve filename list in main menu.Matthias Melcher
2024-12-19Fix compiler warning [-Wsign-compare]Albrecht Schlosser
2024-12-16Fix Help View find method (#1119)Matthias Melcher
The search function now skips '<...>' blocks more reliably and also finds Unicode HTML entities and UTF-8 encoded characters.
2024-12-16Fix possibly uncleared damage flag of Fl_Pack (#1172).Matthias Melcher
Damage flag `FL_DAMAGE_ALL` is set during Fl_Pack::draw if child is repositioned. If the child is outside the clipping area, if will not redraw and the flag will remain set even after Fl_Pack::draw which is not allowed.
2024-12-15Fix: Crash on macOS if Escape is pressed while Help submenu is open (#1170)ManoloFLTK
2024-12-13Update makesrcdist: fix packaging bugAlbrecht Schlosser
The previous version didn't delete the docs before the source files were packed which resulted in too big release tarballs. Notes: (1) Release 1.4.1 has been updated (files were replaced) so all further downloads are not affected. (2) The git commits on tag release-1.4.1 do not include this commit but this is OK. This will be in the next release. (3) makesrcdist itself is not packed in the source tarballs anyway.
2024-12-12Update CHANGES.txt for release 1.4.1Albrecht Schlosser
2024-12-12Update makesrcdist for releases on GitHub (1.4.1 and higher)Albrecht Schlosser
2024-12-12Put ABI breaking changes under ABI guards (#1139)Albrecht Schlosser
This reverts the improvement of #1139 in the default build which is now only available with FL_ABI_VERSION=10401 or higher. Users that need this improvement need to build with the required ABI version by setting it with configure or CMake.
2024-12-12Fix: Window can be moved while menu is open - cont'd (#1166)ManoloFLTK
2024-12-12Fix: Window can be moved while menu is open (#1166)ManoloFLTK
2024-12-11Fix drawing issue for checkbox buttons with bad box type (#1130)Matthias Melcher
2024-12-10Fix compiler warnings (VS 2019)Albrecht Schlosser
Found with warning level: /W3
2024-12-10Update README.CMake.txt for cross-building and more (#1154)Albrecht Schlosser
- add chapter 2.2.5 : "Other CMake Cache Variables" and document some cache variables and how to access and modify them, - clarify and extend the toolchain-file example, - explain how to find and use the correct fluid executable when cross-compiling
2024-12-10Fix Fl_Menu_Item::measure width calculation (#1164)Matthias Melcher
Fl_Menu_Item::measure did not take the gap between a possible checkbox and the label text into consideration.
2024-12-10fluid: alternative version formatMatthias Melcher
2024-12-10FLUID: command line argument -v shows fltk version at build timeMatthias Melcher
2024-12-09Update more fluid and generated filesAlbrecht Schlosser
... after output of trailing whitespace has been fixed.
2024-12-09Fix inconsistencies with Tab/Backspace handling in menus (#1157)dannye
2024-12-09FLUID: avoid trailing spaces in empty comment lines (#1161)Matthias Melcher
2024-12-09Update Fluid (.fl) files for release 1.4.1Albrecht Schlosser
2024-12-09Bump version numbers for release 1.4.1Albrecht Schlosser
To do: update CHANGES.txt with real info.
2024-12-09Fixes triggering callback for inactive menu items (#1159)Matthias Melcher
The old code would trigger a callback when hovering the mouse of an inactive item and pressing Return.
2024-12-09 Fix: Hang/Infinite loop on submenu with all inactive/invisible items (#1158)ManoloFLTK
2024-12-09Fix: Mouse hover+Enter key selects inactive menu items (#1159)ManoloFLTK
2024-12-09No need to link to libgtk when using package libdecor-0-devManoloFLTK
2024-12-07Update README.Windows.txtAlbrecht Schlosser
- update FLTK version to "1.x" or "1.x.y" - update and verify included links - note that MinGW download links could not be verified - add MSYS2 / MinGW-w64
2024-12-07Giving access to some Fl_Text_Display member variables (#1153)Matthias Melcher
And typos in FLUID source code docs.
2024-12-07Update build instructions in README.Unix.txt (#67)Albrecht Schlosser
These build instructions are as up-to-date as possible although there are still references to FLTK 1.3 (e.g. under NetBSD). Closes #67.
2024-12-06glpuzzle: smoother animation at 72fpsMatthias Melcher
2024-12-06glpuzzle: fixes timer and trackball max speedMatthias Melcher
Using 50fps instead of maximum render speed. Trackball limited to non-head-spinning speeds.
2024-12-06Remove unnecessary friend declarationManoloFLTK
2024-12-05Fix button down state when triggered by shortcut (#1145)dannye
The visual feedback is really important. I was not aware that my patch suppressed that. And for the state values, I find it best to get back to what 1.3 did at this point. `value` is essential for check boxes and radio and toggle buttons. On push buttons, it has really not much of a meaning.
2024-12-05Update bundled libpng to version 1.6.44ManoloFLTK
2024-12-04Improve timer statistics in test/cube demoAlbrecht Schlosser
These timer statistics are useful to see the interaction of OpenGL drawing and FLTK timers (Fl::add_timer + Fl::repeat_timer).
2024-12-04Fixes warning in cube.cxx.Matthias Melcher
2024-12-04FLUID: Fixes more places to clear cached pointers.Matthias Melcher
2024-12-04FLUID: clearing caches browser values (#1152)Matthias Melcher
2024-12-04FLUID: Fixes default settings tab.Matthias Melcher