| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-04-27 | X11: simpler code to capture window decoration under xfce | ManoloFLTK | |
| 2024-04-26 | X11: fix capture of window decoration under xfce | ManoloFLTK | |
| 2024-04-25 | Fix problem in window titlebar capture under X11. | ManoloFLTK | |
| 2024-03-18 | Replace setenv() with putenv() on old systems (+937) | Albrecht Schlosser | |
| Add system check for setenv() function in configure and CMake. | |||
| 2024-03-16 | Fix memory leak in Fl_X11_Screen_Driver.cxx (#934) | Albrecht Schlosser | |
| Fl_X11_Screen_Driver::set_spot() did not free the list of missing fonts returned by XCreateFontSet(). This commit also initializes some variables and reformats code, but the only notable change is to call XFreeStringList(missing_list) if missing_list is not NULL. | |||
| 2024-02-11 | KDE+X11 keyboard stops working after menu display (#904) | ManoloFLTK | |
| 2024-01-29 | Fix cached GL context on all platforms (#737) | Matthias Melcher | |
| 2023-12-21 | Fix a typo, trailing whitespace, and dependencies | Albrecht Schlosser | |
| 2023-12-19 | Procedure to instruct FLTK to use given X11 connexion (#149) | ManoloFLTK | |
| 2023-12-01 | Fixes name conflict in X11 GL swap_interval | Matthias Melcher | |
| 2023-11-30 | Fixes anonymous union intialisation for C++98 | Matthias Melcher | |
| 2023-11-28 | Adds OpenGL swap_interval for Wayland and X11. | Matthias Melcher | |
| 2023-11-26 | Adds GL swap control for X11 | Matthias Melcher | |
| 2023-11-05 | Add Fl_Window::maximize() and Fl_Window::un_maximize() | ManoloFLTK | |
| 2023-10-30 | Minor simplification in Fl_X11_Window_Driver::flush_double(int) | ManoloFLTK | |
| 2023-10-07 | Fix STR 3458: "GLUT compatibility mode segfaults" | Albrecht Schlosser | |
| ... "when there's no current window". Silently ignore GLUT function calls that need a current window if the current window is NULL, return 0 from functions that return an 'int'. Check if window is shown in Fl_X11_Gl_Window_Driver::swap_buffers(). This would issue "XRequest.nnn: GLXBadDrawable 0x0" on X11 otherwise. Note: the chosen implementation to ignore GLUT calls silently appears to be compatible with GLUT (3.7) whereas FreeGLUT 3.0 would issue error messages and exit. The latter could be implemented as well but would be much more work. | |||
| 2023-04-23 | Replace internal fl_create_offscreen() calls by new Fl_Image_Surface | ManoloFLTK | |
| 2023-04-21 | Fl_Window_Driver::destroy_double_buffer() does not need overrides | ManoloFLTK | |
| 2023-04-14 | Remove duplication of Pango standard font names | ManoloFLTK | |
| And move each array of standard font names to appropriate font-related source file | |||
| 2023-02-14 | Rename class Fl_Display_Cairo_Graphics_Driver to Fl_X11_Cairo_Graphics_Driver | ManoloFLTK | |
| 2023-01-13 | Fix for "Rename Fl_X* Fl_Window::i private class member" (#223) | ManoloFLTK | |
| 2023-01-12 | Remove useless #include directives | ManoloFLTK | |
| 2023-01-09 | Virtual member Fl_Window_Driver::makeWindow() now returns void | ManoloFLTK | |
| 2022-12-30 | Use `FL_OVERRIDE` for all overridden virtual methods (#611) | Matthias Melcher | |
| FL_OVERRIDE is defined as `override` for C++11 and higher FL_OVERRIDE is defined as `override` for VisualC 2015 and newer Don't interfere with Fl_Widget::override() | |||
| 2022-12-10 | Defer opening the display as much as possible (#586) | Matthias Melcher | |
| 2022-11-30 | Remove small files fl_XXX_gl_platform_init.cxx | ManoloFLTK | |
| The single-function content of these files is moved to Fl_XXX_Gl_Window_Driver.cxx. | |||
| 2022-11-11 | Remove redundant doxygen docs of fl_beep() | Albrecht Schlosser | |
| Also add a comment to all platform driver implementations. | |||
| 2022-11-07 | Delete src/drivers/X11/Fl_X11_System_Driver.* | ManoloFLTK | |
| 2022-11-07 | Create class Fl_Unix_Screen_Driver used by X11 and Wayland platforms | ManoloFLTK | |
| 2022-10-23 | Make Fl::display(const char *) active also for the Wayland platform. | ManoloFLTK | |
| 2022-10-16 | Fix "Fl::focus() changes Fl_Group::current() to null" (#515) | Albrecht Schlosser | |
| This issue is caused by setting `Fl_Group::current(0);` in Fl_Window::show(), i.e. in Fl_X::make_xid(..) in an attempt to fix a "very common user bug: forgot end()". As long as this is done, this commit fixes the issue. For details see GitHub issue #515. | |||
| 2022-10-02 | Clean use of virtual GLContext Fl_Gl_Window_Driver::create_gl_context(). | ManoloFLTK | |
| 2022-09-27 | Remove use of class Fl_Window_Driver inside libfltk_gl | ManoloFLTK | |
| 2022-09-23 | GL3 support under X11: ask for compatibility profile if possible. | ManoloFLTK | |
| 2022-09-01 | Simplify Fl_Window_Driver::screen_num() member functions. | ManoloFLTK | |
| 2022-09-01 | Restore building with --disable-xft | ManoloFLTK | |
| 2022-08-29 | Make hybrid Wayland/X11 platform. | ManoloFLTK | |
| 2022-08-20 | Remove FL_EXPORT qualifier from platform-specific class declarations. | ManoloFLTK | |
| 2022-07-16 | Remove empty line | Albrecht Schlosser | |
| 2022-07-16 | beep: use maximum loudness for error, otherwise system-default | Leon Winter | |
| 2022-07-16 | Let beep use system default settings | Leon Winter | |
| Please note that the parameter 'percent' of XBell(3). Given the value of 100, the system defined setting (normally specified via xset) is ignored and the percent of 100 is used instead. When calling the bell from fltk with FL_BEEP_DEFAULT I would expect to get the default (system specified) percent setting. | |||
| 2022-07-09 | Fix non-xft build referencing fl_get_font_xfld() (#461) | Albrecht Schlosser | |
| This is only one part of issue 461 which describes two build errors on "Raspberry Pi4 bullseye". It turned out that the build didn't find Xft. | |||
| 2022-06-19 | Move input method support to Fl_Screen_Driver from Fl_Graphics_Driver | ManoloFLTK | |
| 2022-05-07 | Change protection levels in classes Fl_XXX_Gl_Window_Driver | ManoloFLTK | |
| 2022-05-05 | Move struct shape_data_type inside Fl_XXX_Window_Driver. | ManoloFLTK | |
| 2022-04-12 | Modify test/cairo_test.cxx to show roles of OPTION_CAIRO and OPTION_CAIROEXT. | ManoloFLTK | |
| Also make clear that these options require, for now, Fl_Double_Window to work cross-platform. | |||
| 2022-04-07 | Rename remaining FLTK_USE_CAIRO to FLTK_HAVE_CAIROEXT | Albrecht Schlosser | |
| Thanks to Manolo for finding this. | |||
| 2022-04-07 | Fix build w/o Xft | Albrecht Schlosser | |
| 2022-03-21 | Fix for issue #418 : some warnings about unused functions. | ManoloFLTK | |
| 2022-03-21 | Issue #359 RFE: access the MacOS windowid . | ManoloFLTK | |
