summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES20
1 files changed, 10 insertions, 10 deletions
diff --git a/CHANGES b/CHANGES
index e8ca42d24..5a667d166 100644
--- a/CHANGES
+++ b/CHANGES
@@ -2,10 +2,10 @@ CHANGES IN FLTK 1.3.3 RELEASED: Oct XX 2014
New features and extensions
- - New class Fl_Copy_Surface allowing to copy graphical data to the
+ - New class Fl_Copy_Surface allows copying graphical data to the
clipboard in a cross-platform way (STR #3058).
- Support for pasting graphical data from the clipboard to a widget.
- - New class Fl_Image_Surface allowing to draw into an Fl_Image object.
+ - 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 (STR #2636).
- New method Fl_Window::wait_for_expose() (STR #3124, STR #3129).
@@ -28,9 +28,9 @@ CHANGES IN FLTK 1.3.3 RELEASED: Oct XX 2014
- 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 of
- the Gnome environment (provided by the libgtk dynamic library), if
- available, and falls back to Fl_File_Chooser, if not (STR #3088).
+ - 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 (STR #3088).
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.
@@ -76,8 +76,8 @@ CHANGES IN FLTK 1.3.3 RELEASED: Oct XX 2014
- Fixed word selection dragging in text input (STR #3014).
- Fixed border padding for special cases (STR #3061, Windows only).
- - Fixed crash if Fl_Window::flush() was called, but window was not
- shown() (STR #3028).
+ - Fixed crash if Fl_Window::flush() called while window not shown()
+ (STR #3028).
- Fixed segfault in fl_set_fonts_xft.cxx when loading fonts not named
as expected (STR #2976).
- Fixed a memory leak in font loading/allocation (STR #3069).
@@ -95,16 +95,16 @@ CHANGES IN FLTK 1.3.3 RELEASED: Oct XX 2014
1.3.3 ABI FEATURES
- To enable the following ABI features, put
+ To enable the following ABI features, put:
#define FLTK_ABI_VERSION 10303
- at the top of your FL/Enumerations.H and rebuild FLTK and your app.
+ ..at the top of your FL/Enumerations.H and rebuild FLTK and your app.
- Added Fl_Window::shape(const Fl_Image*) to create arbitrarily-shaped
windows
- Made Fl_Help_View::handle() public and Fl_Help_View::draw() protected
to enable inheritance and for consistency (STR #2834).
Note: both methods were private.
- - Made Fl_Scroll::recalc_scrollbars() protected, so that it can be used
+ - Made Fl_Scroll::recalc_scrollbars() protected so that it can be used
in derived widgets to calculate scrollbar visibility and positions.
- Added Fl_Table::tab_cell_nav() for controlling Tab key navigation of table
- Added Fl_Tree::get_selected_items(), returns the selected items as an array