| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-03-23 | Fix for issue #419: Wayland: scale/resize issue. | ManoloFLTK | |
| 2022-03-21 | Fix driver definitions of vsnprintf() and vsscanf() | Albrecht Schlosser | |
| These two functions are fully defined in the platform specific driver methods, there's no need to define them in the base class. This quick fix returns 0 from the base class method. The main reason was to avoid a compiler error of MSVC 2010 and earlier, i.e. before MSVC 2012. Todo: int Fl_WinAPI_System_Driver::clocale_sscanf() needs to be fixed because '_vsscanf_l()' (with lower case 'L' for 'locale') does not exist in MSVC 2010 and earlier. It is not clear yet in which version it was added - current MS docs show it in MSVC 2015 and later. | |||
| 2022-03-21 | Fix silly MSVC 2010 parser warnings | Albrecht Schlosser | |
| Code like "void copy(const char */*stuff*/, ...)" would issue the warning "'*/' seen outside comment" which is formally true but ... These warnings don't appear with newer MS compilers, but I fixed them anyway. | |||
| 2022-03-21 | Fix MSVC 2010 warning: using 'this' in initializer list | Albrecht Schlosser | |
| This is a legitimate warning although it probably didn't do any harm. | |||
| 2022-03-21 | Fix MSVC 2010 warning/error: declare variables in C early | Albrecht Schlosser | |
| ... before other code gets executed in a block. The warning or errors generated were MORE than confusing. | |||
| 2022-03-21 | Avoid using same name (p) for distinct members of derived classes - cont'd. | ManoloFLTK | |
| 2022-03-21 | Avoid using same name (p) for distinct members of derived classes. | ManoloFLTK | |
| 2022-03-21 | Rename member Fl_Graphics_Driver::p to xpoint to avoid shadowing. | ManoloFLTK | |
| 2022-03-21 | Fix for issue #418 : some warnings about unused functions. | ManoloFLTK | |
| 2022-03-21 | Issue #359 RFE: access the MacOS windowid . | ManoloFLTK | |
| 2022-03-21 | Fix for issue #416: Fl_Xlib_Graphics_Driver_font_xft.cxx has a libasan error. | ManoloFLTK | |
| 2022-03-21 | Remove unnecessary constructors. | ManoloFLTK | |
| 2022-03-20 | Improve documentation of Fl_Image::copy() | Albrecht Schlosser | |
| Mention the new Fl_Image::release() method to delete all types of images. | |||
| 2022-03-20 | Fix Fl_Tiled_Image::copy(int W, int H) | Albrecht Schlosser | |
| Remove false "optimization" that would return the same pointer if the requested width and height are the same. Note: copy() must always return a new image (this is the expected behavior of copy). Otherwise deleting one of the objects (either the source or the copy) would delete the other one as well. | |||
| 2022-03-20 | Update description of Fl_Graphics_Driver class hierarchy. | ManoloFLTK | |
| 2022-03-20 | Fix typo in comment. | ManoloFLTK | |
| 2022-03-20 | Simpler updateTrackingAreas method of class FLView is enough. | ManoloFLTK | |
| 2022-03-20 | Fix issue #413: Commit 29d9e31 creates memory handling problem under macOS. | ManoloFLTK | |
| 2022-03-19 | Add missing initialization parts of Fl_SVG_Image | Albrecht Schlosser | |
| 2022-03-19 | Restore default YES value for FLWindow releasedWhenClosed property. | ManoloFLTK | |
| 2022-03-18 | Fix for issue #411: send FL_ENTER / FL_LEAVE events to Fl_Window objects. | ManoloFLTK | |
| 2022-03-18 | More detailed doc of how to change the current drawing surface. | ManoloFLTK | |
| 2022-03-17 | Improve handling of custom cursor by Wayland platform. | ManoloFLTK | |
| 2022-03-16 | Add necessary #include <FL/platform.H> directive. | ManoloFLTK | |
| 2022-03-16 | Remove typo in Fl_Wayland_Image_Surface_Driver.H | ManoloFLTK | |
| 2022-03-16 | Add member variable Window Fl_Wayland_Image_Surface_Driver::pre_window. | ManoloFLTK | |
| 2022-03-15 | Fix for issue fltk#410 - continued. | ManoloFLTK | |
| 2022-03-15 | Fix for issue #410 | ManoloFLTK | |
| 2022-03-14 | Move initialisation of X11 and Wayland built-in font names to ↵ | ManoloFLTK | |
| fl_???_platform_init.cxx | |||
| 2022-03-13 | Remove unnecessary #include directives | ManoloFLTK | |
| 2022-03-13 | Separate platform init functions from platform-specific driver files | ManoloFLTK | |
| 2022-03-10 | Document Fl::set_font(Fl_Font, const char *) with platform-specific details. | ManoloFLTK | |
| 2022-03-10 | Fix for issue #404 about Fl::get_key(int). | ManoloFLTK | |
| 2022-03-10 | Begin documenting the Wayland platform, new in FLTK version 1.4 | ManoloFLTK | |
| 2022-03-10 | Restore building for X11 platform + Pango (issue #405). | ManoloFLTK | |
| 2022-03-09 | Add safety check in Fl_Wayland_Window_Driver::label(). | ManoloFLTK | |
| 2022-03-09 | Small doc improvements for Fl_Tree_Item. | Greg Ercolano | |
| 2022-03-09 | Move all font stuff to Fl_Cairo_Graphics_Driver from Fl_Wayland_Graphics_Driver. | ManoloFLTK | |
| 2022-03-09 | Add necessary call to Fl_Cairo_Graphics_Driver::needs_commit_tag(). | ManoloFLTK | |
| 2022-03-08 | Fix doxygen warning | Albrecht Schlosser | |
| 2022-03-08 | Some reformatting and fix else reach in ↵ | ManoloFLTK | |
| Fl_Cairo_Graphics_Driver::transformed_vertex. | |||
| 2022-03-07 | Improve documentation on Fl_Menu_Item's and related methods (#332) | Albrecht Schlosser | |
| See discussion on GitHub Issue #332. Summary: don't change FLTK code but document what to do and not to do. | |||
| 2022-03-07 | Add missing member initialisation in Fl_Cairo_Graphics_Driver constructor. | ManoloFLTK | |
| 2022-03-06 | Complete class Fl_Cairo_Graphics_Driver using Fl_Wayland_Graphics_Driver | ManoloFLTK | |
| 2022-03-05 | Fix MSVC compiler warning | Albrecht Schlosser | |
| warning C4099: 'Fl_Menu_Item': type name first seen using 'struct' now seen using 'class' | |||
| 2022-03-05 | Fix size_range() - continued (issue #392) | Albrecht Schlosser | |
| - fix window size of GL windows as reported for test/glpuzzle.cxx - fix window not resizing on ctrl/+/- (X11 only) Unfortunately the previous commit "optimized" a necessary X11 message away. This is now fixed. Fixes #392. | |||
| 2022-03-05 | Rename Fl_wayland.cxx to fl_wayland_clipboard_dnd.cxx | ManoloFLTK | |
| 2022-03-04 | Add the Wayland platform to FLTK 1.4 | ManoloFLTK | |
| 2022-03-03 | Fix whitespace, update dependencies and fluid files | Albrecht Schlosser | |
| 2022-03-03 | Fix for issue #401. No longer attempt to transiently inactivate the maximize ↵ | ManoloFLTK | |
| button. This inactivation works with some window managers, but not with KDE or xfce. It's probably an issue of these WM rather than of FLTK. | |||
