FLTK logo

Article #1582: FLTK 1.4.x Weekly Snapshot, r12861

FLTK matrix user chat room
(using Element browser app)   FLTK gitter user chat room   GitHub FLTK Project   FLTK News RSS Feed  
  FLTK Apps      FLTK Library      Forums      Links     Login 
 Home  |  Articles & FAQs  |  Bugs & Features  |  Documentation  |  Download  |  Screenshots  ]
 

Return to Articles | Show Comments | Submit Comment ]

Article #1582: FLTK 1.4.x Weekly Snapshot, r12861

Created at 00:00 Apr 20, 2018 by mike

A new weekly snapshot of FLTK 1.4.x (r12861) is now available on the download page:

    http://www.fltk.org/software.php?VERSION=fltk-1.4.x-r12861

Commit Log:

------------------------------------------------------------------------
r12860 | manolo | 2018-04-19 09:51:17 -0400 (Thu, 19 Apr 2018) | 1 line

Fix background color when drawing pixmap data both directly or as an
Fl_Pixmap object.
------------------------------------------------------------------------
r12859 | manolo | 2018-04-19 09:14:37 -0400 (Thu, 19 Apr 2018) | 1 line

Fix handling of bg argument of fl_draw_pixmap(char**, int , int , Fl_Color
bg) during direct drawing of pixmap image data.
------------------------------------------------------------------------
r12858 | manolo | 2018-04-19 06:39:46 -0400 (Thu, 19 Apr 2018) | 1 line

Reorganise access to the value of the GUI scaling factor with public getter
and protected, virtual setter member functions.
------------------------------------------------------------------------
r12857 | manolo | 2018-04-19 04:43:19 -0400 (Thu, 19 Apr 2018) | 2 lines

Documentation: place Doxygen doc next to function implementation

------------------------------------------------------------------------
r12856 | manolo | 2018-04-19 04:29:33 -0400 (Thu, 19 Apr 2018) | 1 line

Documentation: add doc for Fl_Graphics_Driver::cache_size()
------------------------------------------------------------------------
r12855 | manolo | 2018-04-19 03:46:44 -0400 (Thu, 19 Apr 2018) | 1 line

Documentation: simplify example code for Fl_Image::scale()
------------------------------------------------------------------------
r12854 | AlbrechtS | 2018-04-19 03:20:01 -0400 (Thu, 19 Apr 2018) | 4 lines

Fix documentation formatting.

Move image out of 'note'.

------------------------------------------------------------------------
r12853 | greg.ercolano | 2018-04-18 14:28:46 -0400 (Wed, 18 Apr 2018) | 17
lines

Clarified the fl_choice ordering in first example with an image and arrows,
as it's not clear in the text how the code order is reversed on-screen.

Also, the whole 'three musketeers' thing with the case values not matching
the numeric button names has always been confusing:

     case 0: .. // One
     case 1: .. // Two (default)
     case 2: .. // Three

Changed that so it's a Zero/One/Two example instead.

     case 0: .. // "Zero"
     case 1: .. // "One" (default)
     case 2: .. // "Two"


------------------------------------------------------------------------
r12852 | manolo | 2018-04-18 11:36:45 -0400 (Wed, 18 Apr 2018) | 1 line

Add comments: "Implementation note about how Fl_Pixmap objects get printed
under Windows"
------------------------------------------------------------------------
r12851 | manolo | 2018-04-18 11:03:51 -0400 (Wed, 18 Apr 2018) | 1 line

Simplify the implementation of printing of Fl_Pixmap images under Windows.
------------------------------------------------------------------------
r12850 | manolo | 2018-04-18 10:41:54 -0400 (Wed, 18 Apr 2018) | 1 line

Fix crash in test/device after scale-GUI + Fl_Printer + Fl_Image_Surface
------------------------------------------------------------------------
r12849 | AlbrechtS | 2018-04-18 09:20:15 -0400 (Wed, 18 Apr 2018) | 2 lines

Fix Fl_Text_Editor overstrike mode (STR #3463).

------------------------------------------------------------------------
r12847 | greg.ercolano | 2018-04-18 05:52:00 -0400 (Wed, 18 Apr 2018) | 2
lines

Docs for fl_choice() clarify argument order, added missing image for one of
the examples.

------------------------------------------------------------------------
r12846 | manolo | 2018-04-17 02:53:28 -0400 (Tue, 17 Apr 2018) | 1 line

Only fix correct indenting of function fl_convert_pixmap()
------------------------------------------------------------------------
r12845 | manolo | 2018-04-16 09:21:54 -0400 (Mon, 16 Apr 2018) | 1 line

Comments only: extend "Implementation note about image drawing" to describe
the mask_bitmap virtual member function.
------------------------------------------------------------------------
r12844 | matt | 2018-04-16 09:06:31 -0400 (Mon, 16 Apr 2018) | 1 line

Getting rid of warning in Xcode 9.3
------------------------------------------------------------------------
r12843 | manolo | 2018-04-16 09:00:29 -0400 (Mon, 16 Apr 2018) | 1 line

Remove virtual member Fl_GraphicsDriver::mask_bitmap(char **) and its
re-implementations.
------------------------------------------------------------------------
r12842 | manolo | 2018-04-16 06:43:28 -0400 (Mon, 16 Apr 2018) | 1 line

Remove Fl_PostScript_Graphics_Driver::mask_bitmap(char **) that is useless.
------------------------------------------------------------------------
r12841 | manolo | 2018-04-16 04:03:16 -0400 (Mon, 16 Apr 2018) | 1 line

Comments only: complete "Implementation note about image drawing" about how
to destroy cached images.
------------------------------------------------------------------------
r12840 | manolo | 2018-04-16 03:59:49 -0400 (Mon, 16 Apr 2018) | 1 line

Add Fl_Android_Graphics_Driver::delete_bitmask() needed to uncache a cached
Fl_Bitmap image.
------------------------------------------------------------------------
r12839 | manolo | 2018-04-16 03:56:52 -0400 (Mon, 16 Apr 2018) | 1 line

Remove useless re-implementation of this virtual member function.
------------------------------------------------------------------------
r12838 | manolo | 2018-04-15 02:44:50 -0400 (Sun, 15 Apr 2018) | 1 line

Comments only: extend the description of how Fl_Graphics_Driver derived
classes support image classes.
------------------------------------------------------------------------
r12837 | manolo | 2018-04-15 01:53:01 -0400 (Sun, 15 Apr 2018) | 1 line

Restore building for X11 with HAVE_XRENDER = 0
------------------------------------------------------------------------
r12836 | manolo | 2018-04-14 11:26:42 -0400 (Sat, 14 Apr 2018) | 1 line

Remove useless 'friend' statements from class Fl_Graphics_Driver
------------------------------------------------------------------------
r12835 | manolo | 2018-04-14 11:10:59 -0400 (Sat, 14 Apr 2018) | 1 line

Comments only: more extensive explanation of how virtual member functions
of Fl_Graphics_Driver can support image drawing.
------------------------------------------------------------------------
r12834 | manolo | 2018-04-14 09:37:47 -0400 (Sat, 14 Apr 2018) | 1 line

Remove Fl_Pixmap::prepare() and Fl_Bitmap::prepare() that were used only
once.
------------------------------------------------------------------------
r12833 | manolo | 2018-04-13 09:22:15 -0400 (Fri, 13 Apr 2018) | 1 line

Homogenise and simplify the API of Fl_Graphics_Driver::cache(image-type *)
virtual member functions.
------------------------------------------------------------------------
r12832 | manolo | 2018-04-13 07:50:20 -0400 (Fri, 13 Apr 2018) | 1 line

Simplify code for image drawing by PostScript graphics driver.
------------------------------------------------------------------------

Download | Home Page | Listing ]


Comments

Submit Comment ]
 
 

Comments are owned by the poster. All other content is copyright 1998-2024 by Bill Spitzak and others. This project is hosted by The FLTK Team. Please report site problems to 'erco@seriss.com'.