x11/fltk13: update to fltk-1.3.4
CHANGES IN FLTK 1.3.4 RELEASED: Nov 11 2016
Bug fixes and other improvements
- Fix test/native-filechooser help display artifact (STR #3349).
- MacOS: fix a crash when closing a fullscreen window.
- Accept empty Fl_Pixmap in Fl_RGB_Image c'tor (STR #3348).
- MacOS: fix drawing error when a window containing a hidden subwindow
is changed to fullscreen (error visible with the tabs test program).
- MacOS: fix possible crash when enabling fullscreen in test/scroll.
- Add a snapshot of known STR's and RFE's (KNOWN_BUGS.html).
CHANGES IN FLTK 1.3.4rc3 RELEASED: Oct 31 2016
Bug fixes and other improvements
- Fix string truncation in fluid (STR #2722 continued).
- MacOS: fix a small problem where the Command-Quit menu hotkey
may not work if Fl_Native_File_Chooser is used before any
window is shown.
CHANGES IN FLTK 1.3.4rc2 RELEASED: Oct 24 2016
Bug fixes and other improvements
- Make sure the "File Systems" menu item of Fl_File_Chooser
lists "/" as the first mounted file system (Linux/Unix platform).
- Added line numbers to fluid Edit -> Show Source Code viewer.
- Improved fluid's template handling (STR #3335).
CHANGES IN FLTK 1.3.4rc1 RELEASED: Oct 17 2016
New features and extensions
- Added support for Mac OS 10.11 "El Capitan" and 10.12 "Sierra".
- Added full support of true subwindows to the Mac OS X platform.
Window nesting to any depth is possible. An Fl_Gl_Window window or
subwindow can contain Fl_Window's as subwindows.
- Fluid now supports external editors (STR#3213)
See: Edit -> GUI Settings -> Use external editor
- Added method Fl_Widget::is_label_copied().
- Added methods Fl_Copy_Surface::w(), Fl_Copy_Surface::h(),
and Fl_Copy_Surface::draw_decorated_window().
- Added method Fl_Image_Surface::draw_decorated_window().
- Added method Fl_Shared_Image *Fl_Image_Surface::highres_image()
to draw into a high-resolution bitmap image (Mac OS X only).
- Added support for OpenGL version 3 and later.
- Added method Fl_Mac_App_Menu::custom_application_menu_items()
allowing customization of the application menu (Mac OS X only).
- Added 'fluid -u' command-line switch to upgrade fluid files in
batch mode. This option opens a fluid ('.fl') file and saves it
overwriting the old file with the current syntax and library version
number. Use with care (input file is overwritten unconditionally).
- Added FL_ZOOM_GESTURE gesture for OS X (only). Needs implementation
on other platforms.
- Added FL_ABI_VERSION, FL_API_VERSION, Fl::abi_version(), and
Fl::api_version(). Constants can be used to determine the compiled
FLTK version. Functions can be used to find the linked library version.
- Added Fl::abi_check() method to test if the runtime (linked)
ABI version is correct.
- Added Fl_Image::fail() to test if an image was loaded successfully
to allow for easier error detection when loading images (STR #2873).
- Added line numbers to fluid's source code viewer for New -> Code
New configuration options (ABI version)
- FLTK's ABI version can now be configured with 'configure', CMake, or
by editing a supplied file when using the bundled IDE projects.
See documentation in README.abi-version.txt.
1.3.4 ABI FEATURES
- Added deactivated user icon to Fl_Tree.
- Added Fl_Shared_Image::scale(width, height) which gives a shared
image its own drawing size, independently of the size of the
underlying image. This improves image drawing on high resolution
surfaces such as Laser printers, PDF files, and Apple retina displays.
Other improvements
- Configure now correctly sets HAVE_* variables only if both the
library and the header files were found. The configuration process
is aborted if Xft was requested explicitly with --enable-xft and
Xft was not found. The configuration summary now shows _found_
options as opposed to requested options.
- Improved drawing of rounded box (STR #2943).
- Full support of Apple 'retina' displays for which one drawing unit
corresponds to two pixels.
- The Mac OS X platform no longer uses the deprecated AGL
(Apple GL library) to draw OpenGL data. Instead, it uses standard
Cocoa APIs. This allows FLTK to support drawing GL scenes at high
resolution when an Fl_Gl_Window is mapped to a 'retina' display.
- Added Fl_Gl_Window::pixel_w(), Fl_Gl_Window::pixel_h(), and
Fl_Gl_Window::pixels_per_unit() useful for high resolution OpenGL windows.
- fl_read_image() now captures all pixels within the rectangle
described by its arguments, whether they belong to a GL scene
or not (STR #3142). It also captures subwindows of GL windows.
- Fl::delete_widget() now hides the widget or window immediately
(i.e. when called) - only destruction is delayed as before.
- FLTK header files don't expose X11 definitions in user code any more
unless requested by including FL/x.H explicitly or implicitly.
- The PostScript code output when printing images under Linux/Unix
is now much smaller by using lossless compression techniques.
- The Linux/Unix printer dialog now uses BSD-style printing commands
(lpr/lpq) when SystemV-style commands (lp/lpstat) are not available.
- Drawing alpha-blended images under X11 is now accelerated with
Xrender.
- The font used for the FL_COURIER font family was changed on the Mac OS X
platform from 'Courier New' to 'Courier' because it was too thin.
- Text drawing on the Mac platform supports Unicode 'variation selectors'
in the range [0xFE00-0xFE0F].
- Added a Mac OS implementation of Fl_Window::wait_for_expose() that
became necessary with Mac OS 10.10 "Yosemite".
- Added the libfltk target to the Xcode project producing a static
version of the FLTK library (Mac OS X).
- Restored the possibility to call Fl::set_font() before main() starts.
- Allow using the --enable-x11 configure option on the Mac OS platform
which produces an X11 version of the FLTK library (don't use unless
you know what you're doing).
- FLTK code and fluid-generated code can be used in static initializers.
- Added light gray separator line to fluid's widget browser (STR #2997).
- Improved tooltip behavior for huge tooltips: remove flicker, support
key/mouse dismiss (STR #2650).
- Modifier key names displayed in shortcut labels can now be localized.
See documentation of fl_shortcut_label(). You can set modifier key
names for Ctrl, Alt, Shift, and Meta by assigning global string
pointers to your translated modifier key names.
- Many documentation improvements and fixes.
- Fixed many compiler warnings (STR #2988).
- Fluid now generates code with less compiler warnings (STR #2813).
- Many CMake improvements and fixes. Note: CMake is mostly operating
now, but not yet recommended for production use. Please test and
report issues.
- Updated bundled zlib from 1.2.5 to 1.2.8.
- Updated bundled libjpeg from jpeg-8c to jpeg-9a.
Bug fixes
- Fix potential crash when using keyboard navigation on Fl_Tabs
widget without children (STR #3333).
- Fix potential crash if Fl_Window::icon(NULL) was called to clear
(reset) a window icon. This is now legal and documented behavior.
The same applies to Fl_Window::default_icon().
- Allow widget callback to be NULL, i.e. no callback (STR #2835).
- Fixed Fl_Help_View buffer overflow (STR #3275).
- Fl_Browser now correctly adjusts its scrollbars when the default
text size is changed with textsize(int) (STR #3057).
- Fixed Fl_Text_Display/Fl_Text_Editor slow scrolling, line number
display, wrap mode "hiding" text behind scrollbars, and more
scrollbar handling (alignment) (STR #3272).
- Fixed valgrind warning (uninitialized variable) in Fl_Window.
Visible only with FLTK_ABI_VERSION >= 10303, since FLTK 1.3.3.
- Fixed Windows drag'n'drop not showing insert position if the drop
target is inside the same window or process (STR #3209).
- Fixed undefined reference building shared cairo library (STR #3276).
- Fixed Fl_Browser if text argument to some methods is NULL (STR #3269).
- Fixed missing image release in fluid (STR #2840).
- Fixed out-of-bounds memory access in fluid (STR #3263).
- Fixed trailing white space in fluid .fl files (STR #3239).
- Several box types were not drawn correctly when deactivated.
The background color for deactivated widgets is now correct:
fl_inactive(color()) (STR #2907).
- Fix inconsistent interpretation of ld() in image handling
(STR #3308). This is a minor issue since ld() is usually 0 or
w()*d(). Documentation has been fixed, and ld() handling is now
consistent in Fl_(RGB_)Image and fl_draw_image() and friends. See
documentation of Fl_Image and Fl_RGB_Image for more information.
- Fixed Fl_Pixmap (background) drawing to respect the clip region
(STR #3206).
- Fixed reading .pbm image files: 1 is now interpreted as black,
and images whose width are a multiple of 8 are correctly read.
Note: if you relied on the faulty behavior you may need to fix
your image files.
- Restored window background drawing, particularly the 'plastic'
scheme's background (STR #3059). This was a regression since
FLTK 1.3.0.
- Prevent sending (FL_SHORTCUT) events to inactive widgets (STR #3216).
- Fixed button label clipping (STR #3237).
- Fixed Fl_Menu_::item_pathname() handling of descending submenu
pointers (STR #3177).
- Fl_Text_Display: style buffer colors are no longer manipulated by
fl_contrast() for normal text drawing (fltk.coredev thread started
04/08/15, Subject: "RFC: Fl_Text_Display style buffer color weirdness")
- Fl_Tree::deactivate() now affects draw color of items (must have
ABI 1.3.3 or higher enabled). For icons to draw deactivated,
enable ABI 1.3.4. (test/tree has a 'deactivate tree' button)
- Fl_Tree::find_item() did not find items if the pathname contained
identical strings (STR #3234).
- Fixed possible bad border effect when a set of radio menu items
is located first in its menu (STR #3176): Fl_Menu_Item::set_only()
is deprecated and replaced by Fl_Menu_::set_only(Fl_Menu_item*).
- Restore the correct state of mouse buttons and keyboard modifier keys
after closing a file or printer dialog (STR #3221).
- Fix for deactivate colors issue with Fl_Text_Display/Editor (STR #3219).
- Fixed issue with MSWindows platform where the program kept running
after closing all its windows (STR #3165).
- Fix potential buffer overflow (MSWindows: BEX64 error) and problem with
MSWindows environment variables "HOME"(MinGW) vs. "UserProfile"(DOS)
- Fix issue with MSWindows platform where a window would decrease
in size after each close/open (STR #3167).
- Fix undefined reference XGetUtf8FontAndGlyph (STR #3191).
- Fix potential keyboard hangup (STR #3192).
- Fix for: .xbm images were not previewed (STR #3131).
- Fixed crash on Mac platform when resizing a not yet shown() Fl_Gl_Window.
- Fixed potential Windows GDI leak (STR #3254).
- Fixed Linux/Unix potential program hang when dialog pops up while
a menu is open (STR #3179).
- Fixed a crash when a Unix/Linux program calls take_focus() before any
window has been show()n.
- Fixed an error on the Mac platform when drawing to an Fl_Image_Surface
object without using the Fl_Image_Surface::draw() method.
- Fixed STR #3268 where a fullscreen window could become relocated
behind the menu bar and dock (Mac OS only).
- Fixed STR #3207: ^C not working when numlock or capslock is on.
- Fixed code editor in Fluid (STR #3184).
- Fixed a potential hangup of the Fl::awake() queue under Windows if
a window is resized or moved while the Fl::awake() message is sent
(STR #3143).
- Fixed a regression: restore the possibility to call
fl_draw_image(buf,X,Y,W,H,D,L) with negative D and/or L arguments.
- Fixed overflow in Fl_Valuator::precision(int) to 0...9 (STR #3280).
2018-07-13 06:24:39 +02:00
|
|
|
@comment $NetBSD: PLIST,v 1.5 2018/07/13 04:24:39 dbj Exp $
|
2011-12-01 17:35:12 +01:00
|
|
|
bin/fltk-config
|
|
|
|
bin/fluid
|
x11/fltk13: update to fltk-1.3.4
CHANGES IN FLTK 1.3.4 RELEASED: Nov 11 2016
Bug fixes and other improvements
- Fix test/native-filechooser help display artifact (STR #3349).
- MacOS: fix a crash when closing a fullscreen window.
- Accept empty Fl_Pixmap in Fl_RGB_Image c'tor (STR #3348).
- MacOS: fix drawing error when a window containing a hidden subwindow
is changed to fullscreen (error visible with the tabs test program).
- MacOS: fix possible crash when enabling fullscreen in test/scroll.
- Add a snapshot of known STR's and RFE's (KNOWN_BUGS.html).
CHANGES IN FLTK 1.3.4rc3 RELEASED: Oct 31 2016
Bug fixes and other improvements
- Fix string truncation in fluid (STR #2722 continued).
- MacOS: fix a small problem where the Command-Quit menu hotkey
may not work if Fl_Native_File_Chooser is used before any
window is shown.
CHANGES IN FLTK 1.3.4rc2 RELEASED: Oct 24 2016
Bug fixes and other improvements
- Make sure the "File Systems" menu item of Fl_File_Chooser
lists "/" as the first mounted file system (Linux/Unix platform).
- Added line numbers to fluid Edit -> Show Source Code viewer.
- Improved fluid's template handling (STR #3335).
CHANGES IN FLTK 1.3.4rc1 RELEASED: Oct 17 2016
New features and extensions
- Added support for Mac OS 10.11 "El Capitan" and 10.12 "Sierra".
- Added full support of true subwindows to the Mac OS X platform.
Window nesting to any depth is possible. An Fl_Gl_Window window or
subwindow can contain Fl_Window's as subwindows.
- Fluid now supports external editors (STR#3213)
See: Edit -> GUI Settings -> Use external editor
- Added method Fl_Widget::is_label_copied().
- Added methods Fl_Copy_Surface::w(), Fl_Copy_Surface::h(),
and Fl_Copy_Surface::draw_decorated_window().
- Added method Fl_Image_Surface::draw_decorated_window().
- Added method Fl_Shared_Image *Fl_Image_Surface::highres_image()
to draw into a high-resolution bitmap image (Mac OS X only).
- Added support for OpenGL version 3 and later.
- Added method Fl_Mac_App_Menu::custom_application_menu_items()
allowing customization of the application menu (Mac OS X only).
- Added 'fluid -u' command-line switch to upgrade fluid files in
batch mode. This option opens a fluid ('.fl') file and saves it
overwriting the old file with the current syntax and library version
number. Use with care (input file is overwritten unconditionally).
- Added FL_ZOOM_GESTURE gesture for OS X (only). Needs implementation
on other platforms.
- Added FL_ABI_VERSION, FL_API_VERSION, Fl::abi_version(), and
Fl::api_version(). Constants can be used to determine the compiled
FLTK version. Functions can be used to find the linked library version.
- Added Fl::abi_check() method to test if the runtime (linked)
ABI version is correct.
- Added Fl_Image::fail() to test if an image was loaded successfully
to allow for easier error detection when loading images (STR #2873).
- Added line numbers to fluid's source code viewer for New -> Code
New configuration options (ABI version)
- FLTK's ABI version can now be configured with 'configure', CMake, or
by editing a supplied file when using the bundled IDE projects.
See documentation in README.abi-version.txt.
1.3.4 ABI FEATURES
- Added deactivated user icon to Fl_Tree.
- Added Fl_Shared_Image::scale(width, height) which gives a shared
image its own drawing size, independently of the size of the
underlying image. This improves image drawing on high resolution
surfaces such as Laser printers, PDF files, and Apple retina displays.
Other improvements
- Configure now correctly sets HAVE_* variables only if both the
library and the header files were found. The configuration process
is aborted if Xft was requested explicitly with --enable-xft and
Xft was not found. The configuration summary now shows _found_
options as opposed to requested options.
- Improved drawing of rounded box (STR #2943).
- Full support of Apple 'retina' displays for which one drawing unit
corresponds to two pixels.
- The Mac OS X platform no longer uses the deprecated AGL
(Apple GL library) to draw OpenGL data. Instead, it uses standard
Cocoa APIs. This allows FLTK to support drawing GL scenes at high
resolution when an Fl_Gl_Window is mapped to a 'retina' display.
- Added Fl_Gl_Window::pixel_w(), Fl_Gl_Window::pixel_h(), and
Fl_Gl_Window::pixels_per_unit() useful for high resolution OpenGL windows.
- fl_read_image() now captures all pixels within the rectangle
described by its arguments, whether they belong to a GL scene
or not (STR #3142). It also captures subwindows of GL windows.
- Fl::delete_widget() now hides the widget or window immediately
(i.e. when called) - only destruction is delayed as before.
- FLTK header files don't expose X11 definitions in user code any more
unless requested by including FL/x.H explicitly or implicitly.
- The PostScript code output when printing images under Linux/Unix
is now much smaller by using lossless compression techniques.
- The Linux/Unix printer dialog now uses BSD-style printing commands
(lpr/lpq) when SystemV-style commands (lp/lpstat) are not available.
- Drawing alpha-blended images under X11 is now accelerated with
Xrender.
- The font used for the FL_COURIER font family was changed on the Mac OS X
platform from 'Courier New' to 'Courier' because it was too thin.
- Text drawing on the Mac platform supports Unicode 'variation selectors'
in the range [0xFE00-0xFE0F].
- Added a Mac OS implementation of Fl_Window::wait_for_expose() that
became necessary with Mac OS 10.10 "Yosemite".
- Added the libfltk target to the Xcode project producing a static
version of the FLTK library (Mac OS X).
- Restored the possibility to call Fl::set_font() before main() starts.
- Allow using the --enable-x11 configure option on the Mac OS platform
which produces an X11 version of the FLTK library (don't use unless
you know what you're doing).
- FLTK code and fluid-generated code can be used in static initializers.
- Added light gray separator line to fluid's widget browser (STR #2997).
- Improved tooltip behavior for huge tooltips: remove flicker, support
key/mouse dismiss (STR #2650).
- Modifier key names displayed in shortcut labels can now be localized.
See documentation of fl_shortcut_label(). You can set modifier key
names for Ctrl, Alt, Shift, and Meta by assigning global string
pointers to your translated modifier key names.
- Many documentation improvements and fixes.
- Fixed many compiler warnings (STR #2988).
- Fluid now generates code with less compiler warnings (STR #2813).
- Many CMake improvements and fixes. Note: CMake is mostly operating
now, but not yet recommended for production use. Please test and
report issues.
- Updated bundled zlib from 1.2.5 to 1.2.8.
- Updated bundled libjpeg from jpeg-8c to jpeg-9a.
Bug fixes
- Fix potential crash when using keyboard navigation on Fl_Tabs
widget without children (STR #3333).
- Fix potential crash if Fl_Window::icon(NULL) was called to clear
(reset) a window icon. This is now legal and documented behavior.
The same applies to Fl_Window::default_icon().
- Allow widget callback to be NULL, i.e. no callback (STR #2835).
- Fixed Fl_Help_View buffer overflow (STR #3275).
- Fl_Browser now correctly adjusts its scrollbars when the default
text size is changed with textsize(int) (STR #3057).
- Fixed Fl_Text_Display/Fl_Text_Editor slow scrolling, line number
display, wrap mode "hiding" text behind scrollbars, and more
scrollbar handling (alignment) (STR #3272).
- Fixed valgrind warning (uninitialized variable) in Fl_Window.
Visible only with FLTK_ABI_VERSION >= 10303, since FLTK 1.3.3.
- Fixed Windows drag'n'drop not showing insert position if the drop
target is inside the same window or process (STR #3209).
- Fixed undefined reference building shared cairo library (STR #3276).
- Fixed Fl_Browser if text argument to some methods is NULL (STR #3269).
- Fixed missing image release in fluid (STR #2840).
- Fixed out-of-bounds memory access in fluid (STR #3263).
- Fixed trailing white space in fluid .fl files (STR #3239).
- Several box types were not drawn correctly when deactivated.
The background color for deactivated widgets is now correct:
fl_inactive(color()) (STR #2907).
- Fix inconsistent interpretation of ld() in image handling
(STR #3308). This is a minor issue since ld() is usually 0 or
w()*d(). Documentation has been fixed, and ld() handling is now
consistent in Fl_(RGB_)Image and fl_draw_image() and friends. See
documentation of Fl_Image and Fl_RGB_Image for more information.
- Fixed Fl_Pixmap (background) drawing to respect the clip region
(STR #3206).
- Fixed reading .pbm image files: 1 is now interpreted as black,
and images whose width are a multiple of 8 are correctly read.
Note: if you relied on the faulty behavior you may need to fix
your image files.
- Restored window background drawing, particularly the 'plastic'
scheme's background (STR #3059). This was a regression since
FLTK 1.3.0.
- Prevent sending (FL_SHORTCUT) events to inactive widgets (STR #3216).
- Fixed button label clipping (STR #3237).
- Fixed Fl_Menu_::item_pathname() handling of descending submenu
pointers (STR #3177).
- Fl_Text_Display: style buffer colors are no longer manipulated by
fl_contrast() for normal text drawing (fltk.coredev thread started
04/08/15, Subject: "RFC: Fl_Text_Display style buffer color weirdness")
- Fl_Tree::deactivate() now affects draw color of items (must have
ABI 1.3.3 or higher enabled). For icons to draw deactivated,
enable ABI 1.3.4. (test/tree has a 'deactivate tree' button)
- Fl_Tree::find_item() did not find items if the pathname contained
identical strings (STR #3234).
- Fixed possible bad border effect when a set of radio menu items
is located first in its menu (STR #3176): Fl_Menu_Item::set_only()
is deprecated and replaced by Fl_Menu_::set_only(Fl_Menu_item*).
- Restore the correct state of mouse buttons and keyboard modifier keys
after closing a file or printer dialog (STR #3221).
- Fix for deactivate colors issue with Fl_Text_Display/Editor (STR #3219).
- Fixed issue with MSWindows platform where the program kept running
after closing all its windows (STR #3165).
- Fix potential buffer overflow (MSWindows: BEX64 error) and problem with
MSWindows environment variables "HOME"(MinGW) vs. "UserProfile"(DOS)
- Fix issue with MSWindows platform where a window would decrease
in size after each close/open (STR #3167).
- Fix undefined reference XGetUtf8FontAndGlyph (STR #3191).
- Fix potential keyboard hangup (STR #3192).
- Fix for: .xbm images were not previewed (STR #3131).
- Fixed crash on Mac platform when resizing a not yet shown() Fl_Gl_Window.
- Fixed potential Windows GDI leak (STR #3254).
- Fixed Linux/Unix potential program hang when dialog pops up while
a menu is open (STR #3179).
- Fixed a crash when a Unix/Linux program calls take_focus() before any
window has been show()n.
- Fixed an error on the Mac platform when drawing to an Fl_Image_Surface
object without using the Fl_Image_Surface::draw() method.
- Fixed STR #3268 where a fullscreen window could become relocated
behind the menu bar and dock (Mac OS only).
- Fixed STR #3207: ^C not working when numlock or capslock is on.
- Fixed code editor in Fluid (STR #3184).
- Fixed a potential hangup of the Fl::awake() queue under Windows if
a window is resized or moved while the Fl::awake() message is sent
(STR #3143).
- Fixed a regression: restore the possibility to call
fl_draw_image(buf,X,Y,W,H,D,L) with negative D and/or L arguments.
- Fixed overflow in Fl_Valuator::precision(int) to 0...9 (STR #3280).
2018-07-13 06:24:39 +02:00
|
|
|
include/FL/abi-version.h
|
2011-12-01 17:35:12 +01:00
|
|
|
include/FL/Enumerations.H
|
|
|
|
${PLIST.cs}include/FL/Enumerations.h
|
|
|
|
include/FL/Fl.H
|
|
|
|
${PLIST.cs}include/FL/Fl.h
|
|
|
|
include/FL/Fl_Adjuster.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Adjuster.h
|
|
|
|
include/FL/Fl_BMP_Image.H
|
|
|
|
${PLIST.cs}include/FL/Fl_BMP_Image.h
|
|
|
|
include/FL/Fl_Bitmap.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Bitmap.h
|
|
|
|
include/FL/Fl_Box.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Box.h
|
|
|
|
include/FL/Fl_Browser.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Browser.h
|
|
|
|
include/FL/Fl_Browser_.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Browser_.h
|
|
|
|
include/FL/Fl_Button.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Button.h
|
|
|
|
include/FL/Fl_Cairo.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Cairo.h
|
|
|
|
include/FL/Fl_Cairo_Window.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Cairo_Window.h
|
|
|
|
include/FL/Fl_Chart.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Chart.h
|
|
|
|
include/FL/Fl_Check_Browser.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Check_Browser.h
|
|
|
|
include/FL/Fl_Check_Button.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Check_Button.h
|
|
|
|
include/FL/Fl_Choice.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Choice.h
|
|
|
|
include/FL/Fl_Clock.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Clock.h
|
|
|
|
include/FL/Fl_Color_Chooser.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Color_Chooser.h
|
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
2015-07-21 23:36:41 +02:00
|
|
|
include/FL/Fl_Copy_Surface.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Copy_Surface.h
|
2015-12-29 07:00:28 +01:00
|
|
|
include/FL/Fl_Counter.H
|
2011-12-01 17:35:12 +01:00
|
|
|
${PLIST.cs}include/FL/Fl_Counter.h
|
|
|
|
include/FL/Fl_Device.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Device.h
|
|
|
|
include/FL/Fl_Dial.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Dial.h
|
|
|
|
include/FL/Fl_Double_Window.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Double_Window.h
|
|
|
|
include/FL/Fl_Export.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Export.h
|
|
|
|
include/FL/Fl_File_Browser.H
|
|
|
|
${PLIST.cs}include/FL/Fl_File_Browser.h
|
|
|
|
include/FL/Fl_File_Chooser.H
|
|
|
|
${PLIST.cs}include/FL/Fl_File_Chooser.h
|
|
|
|
include/FL/Fl_File_Icon.H
|
|
|
|
${PLIST.cs}include/FL/Fl_File_Icon.h
|
|
|
|
include/FL/Fl_File_Input.H
|
|
|
|
${PLIST.cs}include/FL/Fl_File_Input.h
|
|
|
|
include/FL/Fl_Fill_Dial.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Fill_Dial.h
|
|
|
|
include/FL/Fl_Fill_Slider.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Fill_Slider.h
|
|
|
|
include/FL/Fl_Float_Input.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Float_Input.h
|
|
|
|
include/FL/Fl_FormsBitmap.H
|
|
|
|
${PLIST.cs}include/FL/Fl_FormsBitmap.h
|
|
|
|
include/FL/Fl_FormsPixmap.H
|
|
|
|
${PLIST.cs}include/FL/Fl_FormsPixmap.h
|
|
|
|
include/FL/Fl_Free.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Free.h
|
|
|
|
include/FL/Fl_GIF_Image.H
|
|
|
|
${PLIST.cs}include/FL/Fl_GIF_Image.h
|
|
|
|
include/FL/Fl_Gl_Window.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Gl_Window.h
|
|
|
|
include/FL/Fl_Group.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Group.h
|
|
|
|
include/FL/Fl_Help_Dialog.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Help_Dialog.h
|
|
|
|
include/FL/Fl_Help_View.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Help_View.h
|
|
|
|
include/FL/Fl_Hold_Browser.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Hold_Browser.h
|
|
|
|
include/FL/Fl_Hor_Fill_Slider.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Hor_Fill_Slider.h
|
|
|
|
include/FL/Fl_Hor_Nice_Slider.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Hor_Nice_Slider.h
|
|
|
|
include/FL/Fl_Hor_Slider.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Hor_Slider.h
|
|
|
|
include/FL/Fl_Hor_Value_Slider.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Hor_Value_Slider.h
|
|
|
|
include/FL/Fl_Image.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Image.h
|
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
2015-07-21 23:36:41 +02:00
|
|
|
include/FL/Fl_Image_Surface.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Image_Surface.h
|
2011-12-01 17:35:12 +01:00
|
|
|
include/FL/Fl_Input.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Input.h
|
|
|
|
include/FL/Fl_Input_.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Input_.h
|
|
|
|
include/FL/Fl_Input_Choice.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Input_Choice.h
|
|
|
|
include/FL/Fl_Int_Input.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Int_Input.h
|
|
|
|
include/FL/Fl_JPEG_Image.H
|
|
|
|
${PLIST.cs}include/FL/Fl_JPEG_Image.h
|
|
|
|
include/FL/Fl_Light_Button.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Light_Button.h
|
|
|
|
include/FL/Fl_Line_Dial.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Line_Dial.h
|
|
|
|
include/FL/Fl_Menu.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Menu.h
|
|
|
|
include/FL/Fl_Menu_.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Menu_.h
|
|
|
|
include/FL/Fl_Menu_Bar.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Menu_Bar.h
|
|
|
|
include/FL/Fl_Menu_Button.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Menu_Button.h
|
|
|
|
include/FL/Fl_Menu_Item.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Menu_Item.h
|
|
|
|
include/FL/Fl_Menu_Window.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Menu_Window.h
|
|
|
|
include/FL/Fl_Multi_Browser.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Multi_Browser.h
|
|
|
|
include/FL/Fl_Multi_Label.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Multi_Label.h
|
|
|
|
include/FL/Fl_Multiline_Input.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Multiline_Input.h
|
|
|
|
include/FL/Fl_Multiline_Output.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Multiline_Output.h
|
|
|
|
include/FL/Fl_Native_File_Chooser.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Native_File_Chooser.h
|
|
|
|
include/FL/Fl_Nice_Slider.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Nice_Slider.h
|
|
|
|
include/FL/Fl_Object.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Object.h
|
|
|
|
include/FL/Fl_Output.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Output.h
|
|
|
|
include/FL/Fl_Overlay_Window.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Overlay_Window.h
|
|
|
|
include/FL/Fl_PNG_Image.H
|
|
|
|
${PLIST.cs}include/FL/Fl_PNG_Image.h
|
|
|
|
include/FL/Fl_PNM_Image.H
|
|
|
|
${PLIST.cs}include/FL/Fl_PNM_Image.h
|
|
|
|
include/FL/Fl_Pack.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Pack.h
|
|
|
|
include/FL/Fl_Paged_Device.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Paged_Device.h
|
|
|
|
include/FL/Fl_Pixmap.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Pixmap.h
|
2012-06-16 05:15:30 +02:00
|
|
|
include/FL/Fl_Plugin.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Plugin.h
|
2011-12-01 17:35:12 +01:00
|
|
|
include/FL/Fl_Positioner.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Positioner.h
|
|
|
|
include/FL/Fl_PostScript.H
|
|
|
|
${PLIST.cs}include/FL/Fl_PostScript.h
|
|
|
|
include/FL/Fl_Preferences.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Preferences.h
|
|
|
|
include/FL/Fl_Printer.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Printer.h
|
|
|
|
include/FL/Fl_Progress.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Progress.h
|
|
|
|
include/FL/Fl_RGB_Image.H
|
|
|
|
${PLIST.cs}include/FL/Fl_RGB_Image.h
|
|
|
|
include/FL/Fl_Radio_Button.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Radio_Button.h
|
|
|
|
include/FL/Fl_Radio_Light_Button.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Radio_Light_Button.h
|
|
|
|
include/FL/Fl_Radio_Round_Button.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Radio_Round_Button.h
|
|
|
|
include/FL/Fl_Repeat_Button.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Repeat_Button.h
|
|
|
|
include/FL/Fl_Return_Button.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Return_Button.h
|
|
|
|
include/FL/Fl_Roller.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Roller.h
|
|
|
|
include/FL/Fl_Round_Button.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Round_Button.h
|
|
|
|
include/FL/Fl_Round_Clock.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Round_Clock.h
|
|
|
|
include/FL/Fl_Scroll.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Scroll.h
|
|
|
|
include/FL/Fl_Scrollbar.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Scrollbar.h
|
|
|
|
include/FL/Fl_Secret_Input.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Secret_Input.h
|
|
|
|
include/FL/Fl_Select_Browser.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Select_Browser.h
|
|
|
|
include/FL/Fl_Shared_Image.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Shared_Image.h
|
|
|
|
include/FL/Fl_Simple_Counter.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Simple_Counter.h
|
|
|
|
include/FL/Fl_Single_Window.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Single_Window.h
|
|
|
|
include/FL/Fl_Slider.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Slider.h
|
|
|
|
include/FL/Fl_Spinner.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Spinner.h
|
|
|
|
include/FL/Fl_Sys_Menu_Bar.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Sys_Menu_Bar.h
|
|
|
|
include/FL/Fl_Table.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Table.h
|
|
|
|
include/FL/Fl_Table_Row.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Table_Row.h
|
|
|
|
include/FL/Fl_Tabs.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Tabs.h
|
|
|
|
include/FL/Fl_Text_Buffer.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Text_Buffer.h
|
|
|
|
include/FL/Fl_Text_Display.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Text_Display.h
|
|
|
|
include/FL/Fl_Text_Editor.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Text_Editor.h
|
|
|
|
include/FL/Fl_Tile.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Tile.h
|
|
|
|
include/FL/Fl_Tiled_Image.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Tiled_Image.h
|
|
|
|
include/FL/Fl_Timer.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Timer.h
|
|
|
|
include/FL/Fl_Toggle_Button.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Toggle_Button.h
|
|
|
|
include/FL/Fl_Toggle_Light_Button.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Toggle_Light_Button.h
|
|
|
|
include/FL/Fl_Toggle_Round_Button.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Toggle_Round_Button.h
|
|
|
|
include/FL/Fl_Tooltip.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Tooltip.h
|
|
|
|
include/FL/Fl_Tree.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Tree.h
|
|
|
|
include/FL/Fl_Tree_Item.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Tree_Item.h
|
|
|
|
include/FL/Fl_Tree_Item_Array.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Tree_Item_Array.h
|
|
|
|
include/FL/Fl_Tree_Prefs.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Tree_Prefs.h
|
|
|
|
include/FL/Fl_Valuator.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Valuator.h
|
|
|
|
include/FL/Fl_Value_Input.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Value_Input.h
|
|
|
|
include/FL/Fl_Value_Output.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Value_Output.h
|
|
|
|
include/FL/Fl_Value_Slider.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Value_Slider.h
|
|
|
|
include/FL/Fl_Widget.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Widget.h
|
|
|
|
include/FL/Fl_Window.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Window.h
|
|
|
|
include/FL/Fl_Wizard.H
|
|
|
|
${PLIST.cs}include/FL/Fl_Wizard.h
|
|
|
|
include/FL/Fl_XBM_Image.H
|
|
|
|
${PLIST.cs}include/FL/Fl_XBM_Image.h
|
|
|
|
include/FL/Fl_XPM_Image.H
|
|
|
|
${PLIST.cs}include/FL/Fl_XPM_Image.h
|
|
|
|
include/FL/dirent.h
|
|
|
|
include/FL/filename.H
|
|
|
|
${PLIST.cs}include/FL/filename.h
|
|
|
|
include/FL/fl_ask.H
|
|
|
|
${PLIST.cs}include/FL/fl_ask.h
|
|
|
|
include/FL/fl_draw.H
|
|
|
|
${PLIST.cs}include/FL/fl_draw.h
|
|
|
|
${PLIST.cs}include/FL/fl_file_chooser.H
|
|
|
|
${PLIST.cs}include/FL/fl_file_chooser.h
|
|
|
|
include/FL/fl_message.H
|
|
|
|
${PLIST.cs}include/FL/fl_message.h
|
|
|
|
include/FL/fl_show_colormap.H
|
|
|
|
${PLIST.cs}include/FL/fl_show_colormap.h
|
|
|
|
include/FL/fl_show_input.H
|
|
|
|
${PLIST.cs}include/FL/fl_show_input.h
|
|
|
|
include/FL/fl_types.h
|
|
|
|
include/FL/fl_utf8.h
|
|
|
|
include/FL/forms.H
|
|
|
|
${PLIST.cs}include/FL/forms.h
|
|
|
|
include/FL/gl.h
|
|
|
|
include/FL/gl2opengl.h
|
|
|
|
include/FL/gl_draw.H
|
|
|
|
${PLIST.cs}include/FL/gl_draw.h
|
|
|
|
include/FL/glu.h
|
|
|
|
include/FL/glut.H
|
|
|
|
${PLIST.cs}include/FL/glut.h
|
|
|
|
include/FL/mac.H
|
|
|
|
${PLIST.cs}include/FL/mac.h
|
|
|
|
include/FL/math.h
|
|
|
|
include/FL/names.h
|
|
|
|
include/FL/win32.H
|
|
|
|
${PLIST.cs}include/FL/win32.h
|
|
|
|
include/FL/x.H
|
|
|
|
${PLIST.cs}include/FL/x.h
|
|
|
|
${PLIST.cs}include/Fl
|
|
|
|
lib/libfltk.la
|
|
|
|
lib/libfltk_forms.la
|
|
|
|
${PLIST.opengl}lib/libfltk_gl.la
|
|
|
|
lib/libfltk_images.la
|
|
|
|
man/man1/fltk-config.1
|
|
|
|
man/man1/fluid.1
|
|
|
|
man/man3/fltk.3
|