Fix links in docos...

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2100 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet 2002-04-19 11:53:40 +00:00
parent c75938c4eb
commit 74942d0537
3 changed files with 13 additions and 5 deletions

View File

@ -110,8 +110,9 @@ state information and global methods for the current application.</P>
<LI><A HREF="#Fl.remove_timeout">remove_timeout</A></LI> <LI><A HREF="#Fl.remove_timeout">remove_timeout</A></LI>
<LI><A HREF="#Fl.repeat_timeout">repeat_timeout</A></LI> <LI><A HREF="#Fl.repeat_timeout">repeat_timeout</A></LI>
<LI><A HREF="#Fl.run">run</A></LI> <LI><A HREF="#Fl.run">run</A></LI>
<LI><A HREF="#Fl.selection_owner">selection_owner</A></LI> <LI><A HREF="#Fl.scheme">scheme</A></LI>
<LI><A HREF="#Fl.selection">selection</A></LI> <LI><A HREF="#Fl.selection">selection</A></LI>
<LI><A HREF="#Fl.selection_owner">selection_owner</A></LI>
<LI><A HREF="#Fl.set_abort">set_abort</A></LI> <LI><A HREF="#Fl.set_abort">set_abort</A></LI>
<LI><A HREF="#Fl.set_atclose">set_atclose</A></LI> <LI><A HREF="#Fl.set_atclose">set_atclose</A></LI>
<LI><A HREF="#Fl.set_boxtype">set_boxtype</A></LI> <LI><A HREF="#Fl.set_boxtype">set_boxtype</A></LI>
@ -971,6 +972,14 @@ repeatedly. When all the windows are closed it returns zero
exit directly for these). A normal program will end <tt>main()</tt> exit directly for these). A normal program will end <tt>main()</tt>
with <tt>return Fl::run();</tt>. with <tt>return Fl::run();</tt>.
<H4><A NAME="Fl.scheme">void scheme(const char *name);
<BR>const char *scheme();</A></H4>
<P>Gets or sets the current widget scheme. Currently only "none"
and "plastic" are recognized, and <TT>NULL</TT> will use the
scheme defined in the <TT>FLTK_SCHEME</TT> environment variable
or the <TT>scheme</TT> resource under X11.
<H4><A NAME="Fl.selection">void selection(Fl_Widget &amp;owner, const char* stuff, int len);</A></H4> <H4><A NAME="Fl.selection">void selection(Fl_Widget &amp;owner, const char* stuff, int len);</A></H4>
<P>Changes the current selection. The block of text is <P>Changes the current selection. The block of text is
@ -978,7 +987,6 @@ copied to an internal buffer by FLTK (be careful if doing this in
response to an <tt>FL_PASTE</tt> as this <I>may</I> be the same buffer response to an <tt>FL_PASTE</tt> as this <I>may</I> be the same buffer
returned by <tt>event_text()</tt>). The <tt>selection_owner()</tt> returned by <tt>event_text()</tt>). The <tt>selection_owner()</tt>
widget is set to the passed owner (possibly sending <tt> widget is set to the passed owner (possibly sending <tt>
FL_SELECTIONCLEAR</tt> to the previous owner).
<H4><A NAME="Fl.selection_owner">Fl_Widget* selection_owner();<BR> <H4><A NAME="Fl.selection_owner">Fl_Widget* selection_owner();<BR>
void selection_owner(Fl_Widget*);</A></H4> void selection_owner(Fl_Widget*);</A></H4>
@ -1046,7 +1054,7 @@ done.
<P>Sets an idle callback. <P>Sets an idle callback.
<P>This method is obsolete - use the <A <P>This method is obsolete - use the <A
HREF="#add_idle"><TT>add_idle()</TT></A> method instead. HREF="#Fl.add_idle"><TT>add_idle()</TT></A> method instead.
<H4><A NAME="Fl.set_labeltype">void set_labeltype(Fl_Labeltype,Fl_Label_Draw_F*,Fl_Label_Measure_F*);<BR> <H4><A NAME="Fl.set_labeltype">void set_labeltype(Fl_Labeltype,Fl_Label_Draw_F*,Fl_Label_Measure_F*);<BR>
void set_labeltype(Fl_Labeltype, Fl_Labeltype from);</A></H4> void set_labeltype(Fl_Labeltype, Fl_Labeltype from);</A></H4>

View File

@ -229,7 +229,7 @@ fixed contents.</P>
<LI><TT>FL_GRAY</TT> (this is the default background color of most widgets)</LI> <LI><TT>FL_GRAY</TT> (this is the default background color of most widgets)</LI>
</UL> </UL>
<P>RGB colors can be set using the <A HREF="enumerations.html#fl_rgb_color"><TT>fl_rgb_color()</TT></A> <P>RGB colors can be set using the <A HREF="functions.html#fl_rgb_color"><TT>fl_rgb_color()</TT></A>
function:</P> function:</P>
<UL><PRE> <UL><PRE>

View File

@ -142,7 +142,7 @@ values. These are mapped to the closest color supported by the
screen, either from one of the 256 colors in the FLTK 1.0.x screen, either from one of the 256 colors in the FLTK 1.0.x
colormap or a direct RGB value on TrueColor screens. You can colormap or a direct RGB value on TrueColor screens. You can
generate 24-bit RGB color values using the <A generate 24-bit RGB color values using the <A
HREF="enumerations.html#fl_rgb_color"><TT>fl_rgb_color()</TT></A> HREF="functions.html#fl_rgb_color"><TT>fl_rgb_color()</TT></A>
function. function.
<H4><A name="fl_color">void fl_color(Fl_Color)</A></H4> <H4><A name="fl_color">void fl_color(Fl_Color)</A></H4>