summaryrefslogtreecommitdiff
path: root/fluid
AgeCommit message (Collapse)Author
2023-10-16Fix compiler warning (C++11 standard)Albrecht Schlosser
Warning: override controls (override/final) only available with ‘-std=c++11’ or ‘-std=gnu++11’
2023-10-13Fix trailing whitespace and dependenciesAlbrecht Schlosser
2023-10-13FLUID: allow mousewheel events on coordinate inputMatthias Melcher
MACOS: make sure that even small mouse wheel deltas count at least as 1 unit
2023-10-12FLUID: Settings dialog is now resizableMatthias Melcher
2023-10-11FLUID: adds better zoom iconMatthias Melcher
2023-10-06Removes stray files.Matthias Melcher
2023-10-06FLUID: typoMatthias Melcher
2023-09-27Update dependenciesAlbrecht Schlosser
2023-09-27FLUID: fixing settings dialog updateMatthias Melcher
2023-09-27FLUID: minor fixesMatthias Melcher
2023-09-26FLUID: adds greatly enhanced Shell Commands (#774)Matthias Melcher
The user can add an arbitrary number of highly configurable shell commands through the setting panel. The commands can be saved as user preferences, inside the .fl file, or exported to an external file. Shell scripts can be limited to individual platforms, can have shortcut keys, etc. . * documentation will follow * support to call `fltk-config` will follow
2023-09-26FLUID: Typos in docsMatthias Melcher
2023-09-26FLUID: Fixes regression #777Matthias Melcher
Wrote wrong path in #inlude statement under certain conditions. Also removed 'snap' tag if not needed.
2023-09-22Update dependenciesAlbrecht Schlosser
2023-09-12Fix Visual Studio shared library buildAlbrecht Schlosser
Todo: fluid-shared can't (yet) be built agains the shared fltk lib because of some linker errors. Needs investigation. Note: fluid-shared is basically a test program to demonstrate linking against the shared FLTK libs but doesn't work yet using VS (MSVC). This is no problem for the functionality.
2023-09-07FLUID: Fixes visibility of Compact buttonMatthias Melcher
2023-09-05Fixes warning on unused variable.Matthias Melcher
2023-09-05FLUID: increases readabilityMatthias Melcher
- removed some direct filename manipulation - central place to generate file names and paths - fixes command line filename override if no actual batch command is given
2023-09-03Adds compact buttons feature to create keypads.Matthias Melcher
See test/buttons for an example.
2023-08-29FLUID: fixes resizing of preferences panelMatthias Melcher
2023-08-29FLUID: minor fixesMatthias Melcher
2023-08-29FLUID: adds missing include for other platformsMatthias Melcher
2023-08-29FLUID: separate SourceView panel into its own fileMatthias Melcher
hereby removing almost 200 lines of unrelated code form fluid.cxx and making the location of the panel code more obvious. Needs a make depend on Linux.
2023-08-29FLUID: code cleanup, redundancies, typosMatthias Melcher
2023-08-29FLUID: simplifies filename handlingMatthias Melcher
2023-08-29FLUID: simplified worker handlingMatthias Melcher
2023-08-26FLUID: fixes file path calculation bugMatthias Melcher
2023-08-26Fixes a bunch of typos in comments.Matthias Melcher
2023-08-15FLUID fix: sets initial size range for windowsMatthias Melcher
2023-08-12Another occurrence of bad escape sequence.Matthias Melcher
2023-08-12#765: Replaces uncommon escape sequence.Matthias Melcher
Missing return value in docs.
2023-08-10Improve docs of Fl::hide_all_windows()Albrecht Schlosser
+ update fluid dependencies No code changes.
2023-08-08FLUID: i18n panel redraw fixMatthias Melcher
2023-07-22FLUID: shell code cleanupMatthias Melcher
2023-07-22Adds default shortcut to Fl_Shortcut_Button.Matthias Melcher
2023-07-21FLUID: updates templates and predefined commentsMatthias Melcher
2023-07-20FLUID improves positioning and sizing new widgetsMatthias Melcher
Better default sizes for text based widgets and menu managers Better Menu refresh on custom text heights Smarter positioning of menu bars and groups inside tabs Fixes wrong include guard
2023-07-19Fix missing (new) source file in fluid and dependenciesAlbrecht Schlosser
New file: Fl_Button_Type.cxx
2023-07-19FLUID: layout preset no longer forces text font selectionMatthias Melcher
2023-07-19FLUID: RTTI improvements, 'is_a90' now const, apply RTTIMatthias Melcher
2023-07-19FLUID: Fixes override attribute, cleanupMatthias Melcher
2023-07-19FLUID: emulated RTTI for all typesMatthias Melcher
Complete type hierarchy in Fl_Types doc Window now derives correctly from Group Menu Items now correctly (functionally in FLUID) derived form Button Menu Buttons have a better hierarchy Fixing two possible crash bugs where Input_Choice was assumed to be a Menu_ Hoping I have not degraded the original code!
2023-07-19FLUID fixes wrong type IDs and more cleanupMatthias Melcher
2023-07-18FLUID: text fixesMatthias Melcher
2023-07-18FLUID correct inheritance, formatting, factory floor cleaningMatthias Melcher
2023-07-17FLUID: restores g++98 compatibilityMatthias Melcher
I want enum classes, sigh.
2023-07-17FLUID: better initial sizes for buttons and windowsMatthias Melcher
2023-07-17FLUID: emulating RTTI and fixing type dependencies (Buttons)Matthias Melcher
2023-07-17FLUID: using symbols instead of integersMatthias Melcher
2023-07-17FLUID: fix window visibility across project file updateMatthias Melcher