summaryrefslogtreecommitdiff
path: root/FL/Fl_Grid.H
AgeCommit message (Collapse)Author
3 dayswipmaxim nikonov
2025-10-31Fix MSVC Level 4 warnings (#1126)MatthiasWM
2025-07-08Replace 'FL_OVERRIDE' with 'override' in public headersAlbrecht Schlosser
... except FL/fl_attr.h where FL_OVERRIDE is #define'd
2025-02-21Bump version numbers to 1.4.2Albrecht Schlosser
2024-12-09Bump version numbers for release 1.4.1Albrecht Schlosser
To do: update CHANGES.txt with real info.
2024-03-18Add more public accessor methods to Fl_Grid (#937)Albrecht Schlosser
Some of these accessor methods should be private so they can't be used by user code but - due to compiler issues - they must be public for HP-UX 11.11 (for details see GitHub Issue #937).
2023-12-09Fl_Grid: Added show_grid(1) screenshotGreg Ercolano
2023-11-12Fix missing FL_EXPORT of class Fl_GridAlbrecht Schlosser
Thanks to Andre for finding this and sending a patch via mail.
2023-11-05FLUID: Adds undo for all grid operations.Matthias Melcher
2023-11-05FLUID: Adds transient cells to Fl_GridMatthias Melcher
This allows multiple widgets to occupy a single cell which is needed when moving cells across the grid interactively.
2023-10-23FLUID: Positioning grid cells intuitively.Matthias Melcher
User can now drag widgets from the toolbox into the grid or use the context menu to add them into the corresponding cell. If no position is indicated, now children are added at the first free cell.
2023-10-23FLUID: Adds grid child positioning via +/- keysMatthias Melcher
2023-10-22FLUID: more Fl_Grid settingsMatthias Melcher
2023-10-21FLUID: grid becomes a bit more interactiveMatthias Melcher
2023-10-21FLUID: adding a subset of Fl_Grid child parameters.Matthias Melcher
2023-10-20FLUID: basic Fl_Grid supportMatthias Melcher
* no settings for children yet * ne good interactive editing for children
2023-10-19Improve Fl_Grid example codeAlbrecht Schlosser
Add 'grid->end();' although it's redundant in this specific example.
2023-10-16Add Fl_Grid widget and test and demo programsAlbrecht Schlosser
- FL/Fl_Grid.H: header file - src/Fl_Grid.cxx: implementation - examples/grid-simple.cxx: simple example program - test/cube.cxx: use Fl_Grid for layout - test/grid_alignment.cxx: test cell alignment and other functions - test/grid_buttons.cxx: demo program as discussed in fltk.general - test/grid_login.cxx: like test/flex_login.cxx but with Fl_Grid - test/flex_login.cxx: modified to match test/grid_login.cxx