summaryrefslogtreecommitdiff
path: root/src/Fl_Grid.cxx
AgeCommit message (Collapse)Author
44 hourswipmaxim nikonov
2 dayswi[maxim nikonov
2025-06-05Fix several compiler warnings [-Wextra-semi]Albrecht Schlosser
Example: warning: extra ‘;’ after in-class function definition [-Wextra-semi] Also: replace 'FL_OVERRIDE' with 'override' in all modified files
2025-02-21Bump version numbers to 1.4.2Albrecht Schlosser
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-11-14Fix dependencies and whitespace issuesAlbrecht Schlosser
2023-10-23FLUID: Fixes two minor bugsMatthias Melcher
* Fl_Grid mixed up gap_ro_ vs. gap_col_ once * Code formatting warning
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-22FLUID: removes duplicate codeMatthias Melcher
2023-10-22FLUID: more Fl_Grid settingsMatthias Melcher
2023-10-21Fix compiler warning [-Wreturn-type]Albrecht Schlosser
"control reaches end of non-void function"
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-20Fix ctrl/+/- in cube demoAlbrecht Schlosser
- Fl_Grid: force layout() on resize() - needed for GL subwindows - test/cube.cxx: - use end() in constructor of class cube_box - ensure not to change the current group when adding a button
2023-10-19Check that a widget is a child of its Fl_Grid parentAlbrecht Schlosser
... when assigning it to a cell. This is required for consistency.
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