summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2025-01-08Make draw to image and draw to clipboard behave equally in X11 and WaylandManoloFLTK
2024-12-31Document in detail how screen work areas are computed across platforms (#1180)ManoloFLTK
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-21FLUID: Improve path handling on Windows.MatthiasWM
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-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-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-09Fix inconsistencies with Tab/Backspace handling in menus (#1157)dannye
2024-12-09Update Fluid (.fl) files for release 1.4.1Albrecht Schlosser
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-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-03Documentation only: add details about fl_override_scale() and clip.ManoloFLTK
2024-12-03Fix Drawing bugs on Windows at very large scales (#1144) - cont'dManoloFLTK
2024-12-03Clarify use of Fl_Tabs::clieant_area()Matthias Melcher
2024-12-02Add comment linking source code to related information in issue #1149ManoloFLTK
2024-12-02Fix: Drawing bugs on Windows at very large scales (#1144)ManoloFLTK
2024-12-02Document that function fl_scroll() doesn't work OK with non integral scaling ↵ManoloFLTK
factors and explain how to get correct results.
2024-12-02Fix Fl_Scroll with real *_BOX draws over scrollbars at non-default scales ↵ManoloFLTK
(#1149)
2024-11-28Fix changed flag for radio buttons (#1146)dannye
2024-11-27Restore pixmap drawing under X11-noCairo broken by 0952d59ManoloFLTK
2024-11-27Restore building with configure --disable-print (#1147)ManoloFLTK
2024-11-25 Fix: Graphical glitches on 101 DPI screen (#1138)ManoloFLTK
2024-11-25Windows: Fix rescale bug while window is fullscreendannye
Possible via the Win+Shift+Left/Right keyboard shortcuts
2024-11-25Windows: Fix rescale bug while window is maximizeddannye
2024-11-24Fix compiler warning (g++ 14) [-Wstringop-overflow]Albrecht Schlosser
New compiler warning detected by g++ 14.2.0 building with CMake in Release mode. This *temporary* fix suppresses the warning but uses even larger fixed size buffers. Todo: these nasty warnings caused by using fixed buffer sizes should be removed by using std::string in FLTK 1.5.0.
2024-11-20 Fix: Can't control scale of Fl_Copy_Surface dimensions on Linux (#1135)ManoloFLTK
2024-11-20Fix fl_draw_image sometimes crashes when window is scaled - cont'd (#1134)ManoloFLTK
2024-11-20Fix fl_draw_image sometimes crashes when window is scaled - cont'd (#1134)ManoloFLTK
2024-11-19 Fix fl_draw_image sometimes crashes when window is scaled (#1134)ManoloFLTK
2024-11-18Fix: Fullscreen regression between release-1.4.0rc2 and release-1.4.0rc3 on ↵ManoloFLTK
macOS( #1129)
2024-11-18Fix: Rounding issues with Fl_RGB_Image::draw() + window scaling (#1128)ManoloFLTK
2024-11-17Finish release 1.4.0Albrecht Schlosser
1) Improve and clarify documentation: - update, reformat, and reorder parts of CREDITS.txt - make sure that documentation appears in doxygen docs - add '\since 1.4.0' to documentation of new methods and functions - remove doxygen's '\brief' where not required (we're using JAVADOC_AUTOBRIEF = YES) - clarify screen scaling, scaling factor, and related stuff - add more info about backwards compatibility for X11 specific code 2) Update dependencies
2024-11-15Fixes Alt-modifier handling in Fl_Shorcut_Button on macOSMatthias Melcher
2024-11-13Fix Cairo: Rounding issues with Fl_RGB_Image::draw() + Fl_Copy_Surface (#1124)ManoloFLTK
2024-11-12Windows: Fix flicker/animation when transitioning from fullscreen to maximizeddannye
2024-11-12 Fix for Windows and X11: Rounding issues with Fl_RGB_Image::draw() (#1120)ManoloFLTK
2024-11-12 Fix Keyboard shortcut (alt + letter) does not work in input widget-Windows ↵ManoloFLTK
(#1122)
2024-11-09Revert gtk+ specific "chevron style" arrow drawing (#1117)Albrecht Schlosser
After comparison with older versions I realized that the gtk+ specific "chevron style" was previously used *exclusively* in Fl_Scrollbar. Unfortunately I had picked this style as template for all arrows. GitHub Issue #1117 requested to add an option for users to change the arrow style but after my investigation I decided to use the "old style" (triangles) for all schemes (except "oxy" that has its own drawing methods). **IF** it turned out that we need the gtk specific drawing for scrollbars we could easily reactivate the "chevron style" by adding yet another arrow type - but I hope this is not necessary.
2024-11-09Fix Windows: fullscreen_off does not correctly preserve window size (#1116)ManoloFLTK
2024-11-09Wayland: protect against rounding errors in copy_region()ManoloFLTK