ManoloFLTK
a638d90e00
Add missing closing parenthesis.
2022-05-10 16:56:25 +02:00
ManoloFLTK
b6e0122926
Fix for issue #441 : Some minor regressions with borderless+fullscreen (Wayland).
2022-05-10 16:52:46 +02:00
ManoloFLTK
ad27da578a
Avoid glpuzzle crash when resizing while puzzle is spinning - cont'd.
2022-05-09 19:56:17 +02:00
ManoloFLTK
48ca0e3b50
Avoid glpuzzle crash when resizing while puzzle is spinning.
2022-05-09 14:07:02 +02:00
ManoloFLTK
20c50312fc
Cleaner declaration of public function fl_wl_cairo().
2022-05-09 09:41:50 +02:00
ManoloFLTK
c02fba6bb9
Slight simplification of Fl_Wayland_Graphics_Driver::create_shm_buffer().
2022-05-07 18:08:07 +02:00
ManoloFLTK
1d64b78554
Change protection levels in classes Fl_XXX_Gl_Window_Driver
2022-05-07 15:16:29 +02:00
ManoloFLTK
d4472e5e53
Remove useless typedef declaration.
2022-05-06 09:52:52 +02:00
ManoloFLTK
217120c281
Move struct shape_data_type inside Fl_XXX_Window_Driver.
2022-05-05 18:57:07 +02:00
ManoloFLTK
170a9d8e1f
Approximate result of pango_font_metrics_get_height() for Pango < 1.44
2022-05-05 12:20:24 +02:00
ManoloFLTK
af91083a7f
Fl_Cairo_Graphics_Driver: simpler code with early calls to cairo_surface_destroy().
...
Add also replacement for pango_font_metrics_get_height() which requires Pango 1.44
2022-05-05 11:34:10 +02:00
ManoloFLTK
e02ee7d5f1
Add check against null pointer occurrence reported with Gmsh (Issue #434 ).
2022-05-05 10:21:50 +02:00
ManoloFLTK
7d5d2af547
Cairo: reduce vertical offset for text position needed by Fl_Text_Display.
2022-05-04 08:28:12 +02:00
ManoloFLTK
a6e2940792
Remove one-pixel top and left borders of shaped windows.
2022-05-03 11:49:38 +02:00
ManoloFLTK
9082c44cd0
Issue #438 : Wayland: Text drawing different from Xft version - cont'd.
2022-05-02 19:40:43 +02:00
ManoloFLTK
049cef17f7
Set line height as computed by Pango.
2022-05-02 12:41:20 +02:00
ManoloFLTK
85cf597765
Keep the PangoLayout member private in class Fl_Cairo_Graphics_Driver.
2022-05-02 11:05:23 +02:00
ManoloFLTK
71dedbc886
Issue #438 : Wayland: Text drawing different from Xft version - cont'd.
2022-05-01 09:44:20 +02:00
ManoloFLTK
cf1c8b1125
Fix for issue #438 : Wayland: Text drawing different from Xft version - cont'd.
2022-04-30 16:37:28 +02:00
ManoloFLTK
5341f0e45e
Add explanatory comments about text size and vertical position.
2022-04-29 16:34:47 +02:00
ManoloFLTK
1b513d3f00
Fix for issue #438 : Wayland: Textdrawing different from Xft version.
2022-04-29 13:10:40 +02:00
ManoloFLTK
a8da590d11
Fix for issue #434 : Segfaults on macOS.
2022-04-29 09:38:27 +02:00
ManoloFLTK
4618fa9053
Create member function Fl_Cairo_Graphics_Driver::set_cairo()- cont'd.
2022-04-25 10:29:57 +02:00
ManoloFLTK
8808d11578
Create member function Fl_Cairo_Graphics_Driver::set_cairo().
2022-04-25 10:22:23 +02:00
ManoloFLTK
285e8e843a
Create Fl_Cairo_Graphics_Driver::handle_dummy_cairo(cairo_t *cr).
2022-04-23 16:15:05 +02:00
ManoloFLTK
8e21120f75
Restore use of CMake OPTION_USE_SYSTEM_LIBDECOR
2022-04-22 08:00:00 +02:00
ManoloFLTK
9367bb5108
Avoid code duplication using os_create_anonymous_file() from libdecor.
2022-04-21 07:38:51 +02:00
ManoloFLTK
24885b3810
Minor improvement of get_prog_name().
2022-04-21 07:06:18 +02:00
Albrecht Schlosser
804c48515d
Improve docs of Fl_Image and related classes ( #431 )
...
Clarifications as discussed since April 15, 2022 07:00 UTC (see GitHub
issue #431 ).
2022-04-20 17:26:33 +02:00
ManoloFLTK
c1d0783df9
Document how to set window icons under Wayland - cont'd.
2022-04-15 11:05:19 +02:00
ManoloFLTK
827f91110b
Remove unimplemented window icon-related member functions and variables.
...
Wayland uses .desktop files to set window icons.
2022-04-15 08:31:32 +02:00
Albrecht Schlosser
8bcfb88679
Fix documentation typo
...
Fix missing opening quote. (#431 cont'd)
2022-04-15 02:16:06 +02:00
Albrecht Schlosser
114dbc9c81
Clarify documentation of Fl_Image::copy() and more ( #431 )
...
- emphasize that Fl_Image::copy(W, H) creates an image with
w() == data_w() == W and h() == data_h() == H
- clarify some more docs of Fl_Image methods (ensure that data_w()
and data_h() are used where appropriate rather than w() and h()
- improve wording, examples, and formatting of related docs.
Closes #431
2022-04-15 02:01:33 +02:00
ManoloFLTK
d83d89679b
Fix for issue #429 : Segfault with Ctrl+/- with current git version
2022-04-14 11:07:56 +02:00
Albrecht Schlosser
10537b7143
Make Fl_Image::copy() 'const', including all derived classes
...
Copying an image does not (and must not) change the original object,
hence copy() should always be 'const'.
This is *necessary* if the given Fl_Image object is 'const'.
2022-04-13 16:50:30 +02:00
ManoloFLTK
e25758582e
Fix for issue #427 - continued.
2022-04-13 09:30:31 +02:00
ManoloFLTK
bfae813c4e
Fix for issue #427 : Problems with data_w, data_h, w, h of Fl_Image.
2022-04-12 15:06:21 +02:00
ManoloFLTK
fad867a5d3
Modify test/cairo_test.cxx to show roles of OPTION_CAIRO and OPTION_CAIROEXT.
...
Also make clear that these options require, for now, Fl_Double_Window to work cross-platform.
2022-04-12 09:20:34 +02:00
ManoloFLTK
0d59e32b84
Fix for issue #426 - cont'd.
2022-04-10 15:09:25 +02:00
ManoloFLTK
223bf6309b
Fix for issue #426 : "configure --enable-cairoext" flips display upside down
2022-04-08 16:22:22 +02:00
Albrecht Schlosser
385f0d5b4d
Rename remaining FLTK_USE_CAIRO to FLTK_HAVE_CAIROEXT
...
Thanks to Manolo for finding this.
2022-04-07 15:14:30 +02:00
ManoloFLTK
21428bad10
Undo most of f6a93eb that was a bad move.
2022-04-07 11:31:12 +02:00
Albrecht Schlosser
dacf243889
Fix build w/o Xft
2022-04-07 03:40:43 +02:00
ManoloFLTK
d1bffee04a
Remove useless instructions.
2022-04-06 13:25:54 +02:00
ManoloFLTK
f6a93eb060
Remove warnings: comparison of integer expressions of different signedness [-Wsign-compare]
2022-04-06 13:25:17 +02:00
ManoloFLTK
6a30f63fe4
Fix for "Fl_Native_File_Chooser_GTK does not respect PREVIEW option" in fltk.general.
2022-04-05 09:19:26 +02:00
ManoloFLTK
2ee27e39db
Catch also Fl_Posix_System_Driver after rename stat -> flstat in Fl_System_Driver
2022-04-04 08:30:43 +02:00
Albrecht Schlosser
9a7af11108
Silence compiler warnings [-Wunused-but-set-variable]
2022-04-03 22:30:59 +02:00
Albrecht Schlosser
717a7d266b
Remove '#include <sys/stat.h>' from FL/platform_types.h
...
- Add this include statement only where needed.
- Rename Fl_System_Driver::stat() to flstat().
This fixes an issue when using some (!) MinGW 64-bit build systems
that obviously '#define stat _stat64' or similar. This would
result in compiler problems if 'stat()' is a member function of
Fl_System_Driver.
2022-04-03 22:01:41 +02:00
ManoloFLTK
9aba7c9db0
Fl_Wayland_Window_Driver::scroll() when GUI scaling >= 2.
2022-04-01 14:52:47 +02:00