pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/x11/fltk13
Module Name: pkgsrc
Committed By: markd
Date: Tue Jul 21 21:36:41 UTC 2015
Modified Files:
pkgsrc/x11/fltk13: Makefile PLIST distinfo
pkgsrc/x11/fltk13/patches: patch-FL_Fl_Widget.H patch-ab patch-ae
patch-ag patch-test_Makefile
Added Files:
pkgsrc/x11/fltk13/patches: patch-FL_Enumerations.H patch-src_Fl.cxx
patch-src_Fl_cocoa.mm patch-src_Fl_grab.cxx patch-src_Fl_x.cxx
patch-src_xutf8_imKStoUCS.c
Removed Files:
pkgsrc/x11/fltk13/patches: patch-fluid_Fl__Type.h
Log Message:
Update fltk13 to 1.3.3
New features and extensions
- New class Fl_Copy_Surface allows copying graphical data to the
clipboard in a cross-platform way
- Support for pasting graphical data from the clipboard to a widget.
- New class Fl_Image_Surface allows drawing into an Fl_Image object.
- Methods Fl::add_clipboard_notify() and Fl::remove_clipboard_notify()
to get notifications whenever the clipboard changes
- New method Fl_Window::wait_for_expose()
- New bilinear scaling method for RGB images
- New method Fl_Widget::top_window()
- New method Fl_Widget::top_window_offset()
- New Fl_Tree_Item methods label_x(), label_y(), label_w(), label_h().
- New methods Fl::enable_im() and Fl::disable_im() to enable/disable
system Input Methods (IM).
- New methods Fl::add_system_handler() and Fl::remove_system_handler()
to intercept low level system events.
- New FLTK scheme "gleam"
- New method Fl::is_scheme() to compare the current scheme name.
- New method to set custom icons for windows
see Fl_Window::icon() for more info.
- New method to set any custom cursor, based on a Fl_RGB_Image object.
Also changed fallback cursors to use this method, so that fallback
cursors are handled in a platform independent manner
- New ability to convert Fl_Pixmap to Fl_RGB_Image
- Support for full screen windows over multiple monitors.
- New optional line numbers in Fl_Text_Display and options to control
line numbers and word wrapping (on/off) in example test/editor.cxx.
- On Linux/Unix, class Fl_Native_File_Chooser uses file dialogs from
the Gnome environment (provided by the libgtk dynamic library) if
available, and falls back to Fl_File_Chooser if not
Use option Fl::OPTION_FNFC_USES_GTK to enable/disable this feature.
- New support for the Mac OS text input system that deals with character
composition and input of languages with large character sets (e.g.
Chinese and Japanese). This implementation has been reported to work
well for Chinese. Superficial testing suggests it's also operational
for Japanese. In-depth testing remains needed though.
Other improvements
- Many CMake improvements
- Some autoconf, configure improvements.
- Removed 1024 bytes constraint in labels and browser lines
- Mac OS version of Fl_Native_File_Chooser: when using filters in a
save file dialog, the output file extension gets changed when the
user modifies the output file type.
- Many Mac OS X improvements related to Fl_Sys_Menu_Bar.
- Improved Mac OS X keyboard handling of special keys or combinations.
- General Mac OS X improvements, incl. high resolution (Retina)
displays, and support up to Mac OS X 10.10.
- Documentation improvements and clarifications.
- Printing support improvements, including GL windows.
- Many improvements related to Fl_Tree (some of them only as ABI
breaking features, see below).
- Some static data has been made 'const' to improve memory usage
with shared libraries.
- Don't grab navkeys with modifiers (CTRL, ALT), as the application
may want them
- Check compiler support of -fvisibility, -fvisibility-inlines-hidden,
and use it, if available. Reduces shared library size.
- Drag'n'drop behaves better now: if text is dropped in the widget it
comes from, then it works like cut and paste.
- Other improvements of DND handling when dragging text from other
applications, e.g. Firefox and Thunderbird.
- Windows message WM_QUIT is processed like SIGTERM, i.e. as a
request to terminate the program.
- Fluid no longer closes the code window when hitting ESC (STR #2997).
- Improved Fl_Widget::when() handling in Fl_Tabs
- Improved support for more recent compilers (clang and gcc) that
issue more warnings, and fixed some 32-/64-bit compilation issues.
- Added method Fl_Window::clear_modal_states() to make it possible
to remove the modal or non-modal state from a window
Bug fixes
- Fixed word selection dragging in text input
- Fixed crash if Fl_Window::flush() called while window not shown()
- Fixed segfault in fl_set_fonts_xft.cxx when loading fonts not named
as expected
- Fixed a memory leak in font loading/allocation
- Fixed OS X fl_read_image() and Fl_Paged_Device::print_window_part()
when using a Retina display.
- Fixed MinGW build if configure didn't find strcasecmp()
- Fixed access of protected member under Linux/Unix
- Fixed various Mac specific OpenGL issues
- Fixed PostScript printing with non-english locale
- Fixed a regression in Fl_File_Chooser since FLTK 1.1.8: the
Enter key now selects the file again.
- Fixed a bug in Fl_Native_File_Chooser (Windows) for some file name
input filters
- Fixed out-of-bounds memory access in Fl_Text_Display
To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 pkgsrc/x11/fltk13/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/x11/fltk13/PLIST
cvs rdiff -u -r1.5 -r1.6 pkgsrc/x11/fltk13/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/x11/fltk13/patches/patch-FL_Enumerations.H \
pkgsrc/x11/fltk13/patches/patch-src_Fl.cxx \
pkgsrc/x11/fltk13/patches/patch-src_Fl_cocoa.mm \
pkgsrc/x11/fltk13/patches/patch-src_Fl_grab.cxx \
pkgsrc/x11/fltk13/patches/patch-src_Fl_x.cxx \
pkgsrc/x11/fltk13/patches/patch-src_xutf8_imKStoUCS.c
cvs rdiff -u -r1.1 -r1.2 pkgsrc/x11/fltk13/patches/patch-FL_Fl_Widget.H
cvs rdiff -u -r1.1.1.1 -r1.2 pkgsrc/x11/fltk13/patches/patch-ab \
pkgsrc/x11/fltk13/patches/patch-ae pkgsrc/x11/fltk13/patches/patch-ag
cvs rdiff -u -r1.1 -r0 pkgsrc/x11/fltk13/patches/patch-fluid_Fl__Type.h
cvs rdiff -u -r1.2 -r1.3 pkgsrc/x11/fltk13/patches/patch-test_Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Home |
Main Index |
Thread Index |
Old Index