2001-11-27 02:50:30 +03:00
|
|
|
<HTML>
|
|
|
|
<BODY>
|
|
|
|
|
|
|
|
<H1 ALIGN="RIGHT">G - Migrating Code from FLTK 1.0.x</H1>
|
|
|
|
|
|
|
|
<P>This appendix describes the differences between the FLTK
|
|
|
|
1.0.x and FLTK 1.1.x functions and classes.</P>
|
|
|
|
|
2002-03-25 21:30:16 +03:00
|
|
|
<H2>Color Values</H2>
|
|
|
|
|
|
|
|
<P>Color values are now stored in a 32-bit unsigned integer
|
|
|
|
instead of the unsigned character in 1.0.x. This allows for the
|
|
|
|
specification of 24-bit RGB values or 8-bit FLTK color indices.
|
|
|
|
|
|
|
|
<H2>Cut and Paste Support</H2>
|
|
|
|
|
|
|
|
<P>The FLTK clipboard is now broken into two parts - a local
|
|
|
|
selection value and a cut-and-paste value. This allows FLTK to
|
|
|
|
support things like highlighting and replacing text that was
|
|
|
|
previously cut or copied, which makes FLTK applications behave
|
|
|
|
like traditional GUI applications.
|
|
|
|
|
|
|
|
<H2>File Chooser</H2>
|
2001-11-27 02:50:30 +03:00
|
|
|
|
|
|
|
<P>The file chooser in FLTK 1.1.x is significantly different
|
|
|
|
than the one supplied with FLTK 1.0.x. Any code that directly
|
2002-03-25 21:30:16 +03:00
|
|
|
references the old <TT>FCB</TT> class or members will need
|
|
|
|
to be ported to the new <A
|
|
|
|
HREF="Fl_File_Chooser.html"><TT>Fl_File_Chooser</TT></A>
|
|
|
|
class.</P>
|
|
|
|
|
2002-03-26 00:08:42 +03:00
|
|
|
<H2>Function Names</H2>
|
|
|
|
|
|
|
|
<P>Some function names have changed from FLTK 1.0.x to 1.1.x in
|
|
|
|
order to avoid name space collisions. The following table shows
|
|
|
|
the old and new function names:</P>
|
|
|
|
|
|
|
|
<CENTER><TABLE WIDTH="80%" BORDER="1">
|
|
|
|
<TR>
|
|
|
|
<TH>Old 1.0.x Name</TH>
|
|
|
|
<TH>New 1.1.x Name</TH>
|
|
|
|
</TR>
|
|
|
|
<TR>
|
|
|
|
<TD>contrast()</TD>
|
|
|
|
<TD>fl_contrast()</TD>
|
|
|
|
</TR>
|
|
|
|
<TR>
|
|
|
|
<TD>down()</TD>
|
|
|
|
<TD>fl_down()</TD>
|
|
|
|
</TR>
|
|
|
|
<TR>
|
|
|
|
<TD>filename_absolute()</TD>
|
|
|
|
<TD>fl_filename_absolute()</TD>
|
|
|
|
</TR>
|
|
|
|
<TR>
|
|
|
|
<TD>filename_expand()</TD>
|
|
|
|
<TD>fl_filename_expand()</TD>
|
|
|
|
</TR>
|
|
|
|
<TR>
|
|
|
|
<TD>filename_ext()</TD>
|
|
|
|
<TD>fl_filename_ext()</TD>
|
|
|
|
</TR>
|
|
|
|
<TR>
|
|
|
|
<TD>filename_isdir()</TD>
|
|
|
|
<TD>fl_filename_isdir()</TD>
|
|
|
|
</TR>
|
|
|
|
<TR>
|
|
|
|
<TD>filename_list()</TD>
|
|
|
|
<TD>fl_filename_list()</TD>
|
|
|
|
</TR>
|
|
|
|
<TR>
|
|
|
|
<TD>filename_match()</TD>
|
|
|
|
<TD>fl_filename_match()</TD>
|
|
|
|
</TR>
|
|
|
|
<TR>
|
|
|
|
<TD>filename_name()</TD>
|
|
|
|
<TD>fl_filename_name()</TD>
|
|
|
|
</TR>
|
|
|
|
<TR>
|
|
|
|
<TD>filename_relative()</TD>
|
|
|
|
<TD>fl_filename_relative()</TD>
|
|
|
|
</TR>
|
|
|
|
<TR>
|
|
|
|
<TD>frame()</TD>
|
|
|
|
<TD>fl_frame()</TD>
|
|
|
|
</TR>
|
|
|
|
<TR>
|
|
|
|
<TD>inactive()</TD>
|
|
|
|
<TD>fl_inactive()</TD>
|
|
|
|
</TR>
|
2002-05-02 15:11:01 +04:00
|
|
|
<TR>
|
|
|
|
<TD>numericsort()</TD>
|
|
|
|
<TD>fl_numericsort()</TD>
|
|
|
|
</TR>
|
2002-03-26 00:08:42 +03:00
|
|
|
</TABLE></CENTER>
|
|
|
|
|
2002-03-25 21:30:16 +03:00
|
|
|
<H2>Image Support</H2>
|
|
|
|
|
|
|
|
<P>Image support in FLTK has been significantly revamped in
|
|
|
|
1.1.x. The <A HREF="Fl_Image.html"><TT>Fl_Image</TT></A> class
|
|
|
|
is now a proper base class, with the core image drawing
|
|
|
|
functionality in the <A
|
|
|
|
HREF="Fl_Bitmap.html"><TT>Fl_Bitmap</TT></A>, <A
|
2002-03-27 15:40:59 +03:00
|
|
|
HREF="Fl_Pixmap.html"><TT>Fl_Pixmap</TT></A>, and <A
|
2002-03-25 21:30:16 +03:00
|
|
|
HREF="Fl_RGB_Image.html"><TT>Fl_RGB_Image</TT></A> classes.
|
|
|
|
|
|
|
|
<P>BMP, GIF, JPEG, PNG, XBM, and XPM image files can now be
|
|
|
|
loaded using the appropriate image classes, and the <A
|
|
|
|
HREF="Fl_Shared_Image.html"><TT>Fl_Shared_Image</TT></A> class
|
|
|
|
can be used to cache images in memory.
|
2001-11-27 02:50:30 +03:00
|
|
|
|
2002-03-25 21:30:16 +03:00
|
|
|
<P>Image labels are no longer provided as an add-on label type.
|
|
|
|
If you use the old <TT>label()</TT> methods on an image, the
|
|
|
|
widget's <TT>image()</TT> method is called to set the image
|
|
|
|
as the label.
|
2001-11-27 02:50:30 +03:00
|
|
|
|
2002-04-26 14:33:03 +04:00
|
|
|
<P>Image labels in menu items must still use the old labeltype
|
|
|
|
mechanism to preserve source compatibility.
|
|
|
|
|
2001-11-27 02:50:30 +03:00
|
|
|
</BODY>
|
|
|
|
</HTML>
|