summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-10-24Remove test/debug statements from Fl_Table.cxxAlbrecht Schlosser
2023-10-24Wayland: implement scale factor windows as popups - cont'dManoloFLTK
2023-10-23FLUID: Merging changes from generated cxx file back to fl fileMatthias Melcher
2023-10-23FLUID: Fixes two minor bugsMatthias Melcher
* Fl_Grid mixed up gap_ro_ vs. gap_col_ once * Code formatting warning
2023-10-23Remove "double to int conversion" warningsManoloFLTK
2023-10-23Use #ifdef FLTK_USE_SVG instead of #if FLTK_USE_SVGManoloFLTK
2023-10-23Prepare Fl_Wayland_Screen_driver.cxx for removal of Fl_Int_VectorManoloFLTK
2023-10-23Wayland: simpler implementation of transient scale factor windowsManoloFLTK
2023-10-23 Avoid macOS 14 warning message when app is launched from command lineManoloFLTK
2023-10-23FLUID: Fixes completion dialog, early shell read.Matthias Melcher
* when saving the source code from a shell command, the completion dialog is suppressed because the shell window pops up anyway, confirming our action * when reading no project at startup, the user shell commands were read, but the shell main menu was not updated
2023-10-23Wayland: implement transient scale factor windows as popupsManoloFLTK
as discussed in issue #794. Also, fix for macOS the use of the FL_FOCUS event for these transient windows
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: Stops overriding Ctrl-0 shortcut. #802Matthias Melcher
Ctrl-0 is used by FLTK globally to zoom all windows back to 100%, so FLUID should not override that. Loading the previous file is now Ctrl-1 instead of Ctrl-0.
2023-10-23FLUID: Adds grid child positioning via +/- keysMatthias Melcher
2023-10-22Removes Fl_String from documentation as well.Matthias Melcher
2023-10-22FLUID: New layout of Grid tab.Matthias Melcher
2023-10-22Make Fl_String and Fl_Int_Vector private (#789)Albrecht Schlosser
- add CMake option 'OPTION_USE_STD' - add configure option '--enable-use_std' - move FL/Fl_String.H to src/Fl_String.H - move FL/Fl_Int_Vector.H to src/Fl_Int_Vector.H - remove Fl_String from demo program examples/callbacks.cxx - remove Fl_Int_Vector from public header FL/Fl_Table.H - some methods of Fl_Table are no longer inline - add CMake option OPTION_USE_STD to allow std::string in some selected functions and methods Experimental, may be removed before release: - use either Fl_Int_Vector or std::vector in Fl_Table depending on CMake OPTION_USE_STD or configure --enable-use_std Move all fl_filename* functions that use Fl_String to fluid Main changes in fluid: - add fluid_filename.h and .cxx - include "fluid_filename.h" rather than <FL/filename.H> Update fl_input(), fl_password() and test/ask - add maxchar parameter to fl_input() and fl_password() - fl_input_str() and fl_password_str() are optional and return std::string if enabled (FLTK_USE_STD)
2023-10-22FLUID: Moves grid settings into dynamic tabMatthias Melcher
2023-10-22FLUID: Adds remaining Fl_Grid attributesMatthias Melcher
2023-10-22FLUID: removes duplicate codeMatthias Melcher
2023-10-22FLUID: fixes conflictMatthias Melcher
2023-10-22FLUID: more Fl_Grid settingsMatthias Melcher
2023-10-21Remove duplicated code that was commented out, fix includesAlbrecht Schlosser
... and prevent confusing doxygen
2023-10-21Fix compiler warning [-Wreturn-type]Albrecht Schlosser
"control reaches end of non-void function"
2023-10-21Removes dependency on Fl_Preferences::get/set(.., Fl_String, ...)Matthias Melcher
2023-10-21FLUID: grid becomes a bit more interactiveMatthias Melcher
2023-10-21Fix fluid build with configure/make + dependenciesAlbrecht Schlosser
2023-10-21FLUID: adding a subset of Fl_Grid child parameters.Matthias Melcher
2023-10-21 Fix "Keyboard sometimes stops working after Ctrl/+ or Ctrl/-" (#794)ManoloFLTK
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-20Add "#define MAC_OS_VERSION_14_0 140000" to mac.HManoloFLTK
2023-10-20FLUID: docs, testingMatthias Melcher
2023-10-19FLUID typos, comments, superfluous codeMatthias Melcher
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-19FLUID: fixes `override` handling and code duplicationMatthias Melcher
2023-10-19Improve Fl_Grid example codeAlbrecht Schlosser
Add 'grid->end();' although it's redundant in this specific example.
2023-10-19 FLUID now recognizes `override` and `FL_OVERRIDE` keywords (#801)Matthias Melcher
2023-10-19Fix "Keyboard sometimes stops working after Ctrl/+ or Ctrl/-" (#794)ManoloFLTK
2023-10-19 Fix for "Keyboard sometimes stops working after Ctrl/+ or Ctrl/-" (#794)ManoloFLTK
2023-10-18Fix Fl_Tile::set_cursor() which was brokenAlbrecht Schlosser
... since commit 6ba7b49baf11e526d1ed19aef491db2cd120e55e.
2023-10-18Fix trailing whitespaceAlbrecht Schlosser
2023-10-18 launching a binary from the command line hangs on macOS Sonoma (#799)ManoloFLTK
2023-10-17Fix drawing points in complex shape mode with Cairo (#792)ManoloFLTK
2023-10-17 launching a binary from the command line hangs on macOS Sonoma (#799)ManoloFLTK
2023-10-17Update documentation with Fl_Flex and Fl_Grid widgetsAlbrecht Schlosser
2023-10-17Fix Crashes and warnings when Fl_Double_Window is smaller than 1x1 (#798)ManoloFLTK
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
2023-10-16Fix Windows (MSVC) compiler warningsAlbrecht Schlosser
warning C4244: '=': conversion from 'double' to 'time_t', possible loss of data warning C4244: 'return': conversion from 'time_t' to 'long', possible loss of data
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’