comparison readme.txt @ 2532:457c91634881

Added dw_window_compare() to check if two window handles refer to the same object. Most platforms just compare the pointer or handle, but Android uses IsSameObject().
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Tue, 11 May 2021 05:00:07 +0000
parents e57765c7a437
children dbd15c13f5bb
comparison
equal deleted inserted replaced
2531:f45ebd96ebe5 2532:457c91634881
81 Added dw_render_redraw() function to trigger a DW_SIGNAL_EXPOSE 81 Added dw_render_redraw() function to trigger a DW_SIGNAL_EXPOSE
82 event on render widgets allowing drawing to happen in the 82 event on render widgets allowing drawing to happen in the
83 callback. GTK4 and GTK3 with Wayland require drawing to be 83 callback. GTK4 and GTK3 with Wayland require drawing to be
84 done in the callback, necessitating a dw_render_redraw() or 84 done in the callback, necessitating a dw_render_redraw() or
85 dw_flush() call. dw_flush() may cause multiple draw passes. 85 dw_flush() call. dw_flush() may cause multiple draw passes.
86 Added new function dw_window_compare() to check if two window handles
87 reference the same object. Necessary in the Android port since
88 handles passed to callbacks are local references, so they don't
89 match the handles saved during window creation.
86 Added support for dw_window_set_font() with a NULL font parameter. 90 Added support for dw_window_set_font() with a NULL font parameter.
87 This resets the font used on the widget to the default font. 91 This resets the font used on the widget to the default font.
88 Fixed GTK warnings on GTK3 caused by using Pango style font syntax. 92 Fixed GTK warnings on GTK3 caused by using Pango style font syntax.
89 Fixed GTK3 leaks when setting fonts or colors on a widget repeatedly. 93 Fixed GTK3 leaks when setting fonts or colors on a widget repeatedly.
90 Fixed incorrect reporting of word wrap support on Windows. 94 Fixed incorrect reporting of word wrap support on Windows.