diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-04-14 02:43:48 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-04-14 02:43:48 +0000 |
| commit | 8e3cdc0ac1556f510e936b0e154c6ce513ec3604 (patch) | |
| tree | 0c0f1bb0d2d46639e7324950e2a8a01d2ac2ffb3 /documentation | |
| parent | dc355ebb5477bd3c4374658d3db2a935ae3fb935 (diff) | |
Propagate events from the tooltip window to the widget we are tooltipping
for...
Add "tooltips" resource for default state of tooltips.
Fix another tooltip cycling problem.
Fix default help and argument processing (didn't have the right min
chars for matching, and didn't list new options)
Update docos to list new tooltip resource and list of standard arguments.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2079 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'documentation')
| -rw-r--r-- | documentation/Fl.html | 81 | ||||
| -rw-r--r-- | documentation/osissues.html | 3 |
2 files changed, 67 insertions, 17 deletions
diff --git a/documentation/Fl.html b/documentation/Fl.html index 3cefeda3f..7b4e6f5c3 100644 --- a/documentation/Fl.html +++ b/documentation/Fl.html @@ -278,26 +278,73 @@ than <tt>argc</tt>. <P>All switches except -bg2 may be abbreviated one letter and case is ignored: <UL> -<LI><tt>-display host:n.n</tt> The X display to use (ignored under -WIN32). </LI> -<LI><tt>-geometry WxH+X+Y</tt> The window position and size will be -modified according the the standard X geometry string. </LI> -<LI><tt>-name string</tt> Fl_Window::xclass(string) will be done to -the window, possibly changing its icon. </LI> -<LI><tt>-title string</tt> Fl_Window::label(string) will be done to -the window, changing both its title and the icontitle. </LI> -<LI><tt>-iconic</tt> Fl_Window::iconize() will be done to the window. </LI> -<LI><tt>-bg color</tt> XParseColor is used to lookup the passed color -and then Fl::background() is done. Under WIN32 only color names of -the form "#xxxxxx" are understood. </LI> -<LI><tt>-bg2 color</tt> XParseColor is used to lookup the passed color -and then Fl::background2() is done. </LI> -<LI><tt>-fg color</tt> XParseColor is used to lookup the passed color -and then Fl::foreground() is done. </LI> + + <LI><TT>-bg color</TT> or <TT>-background color</TT> + + <P>Sets the background color using <A + HREF="#Fl.background"><TT>Fl::background()</TT></A>.</LI> + + <LI><TT>-bg2 color</TT> or <TT>-background2 color</TT> + + <P>Sets the secondary background color using <A + HREF="#Fl.background2"><TT>Fl::background2()</TT></A>.</LI> + + <LI><TT>-display host:n.n</TT> + + <P>Sets the X display to use; this option is silently + ignored under WIN32 and MacOS.</LI> + + <LI><TT>-dnd</TT> and <TT>-nodnd</TT> + + <P>Enables or disables drag and drop text operations + using <A + HREF="#Fl.dnd_text_ops"><TT>Fl::dnd_text_ops()</TT></A>.</LI> + + <LI><TT>-fg color</TT> or <TT>-foreground color</TT> + + <P>Sets the foreground color using <A + HREF="#Fl.foreground"><TT>Fl::foreground()</TT></A>.</LI> + + <LI><TT>-geometry WxH+X+Y</TT> + + <P>Sets the initial window position and size according + the the standard X geometry string.</LI> + + <LI><TT>-iconic</TT> + + <P>Iconifies the window using <A + HREF="Fl_Window.html#Fl_Window.iconize"><TT>Fl_Window::iconize()</TT></A>.</LI> + + <LI><TT>-kbd</TT> and <TT>-nokbd</TT> + + <P>Enables or disables visible keyboard focus for + non-text widgets using <A + HREF="#Fl.visible_focus"><TT>Fl::visible_focus()</TT></A>.</LI> + + <LI><TT>-name string</TT> + + <P>Sets the window class using <A + HREF="Fl_Window.html#Fl_Window.xclass"><TT>Fl_Window::xclass()</TT></A>.</LI> + + <LI><TT>-scheme string</TT> + + <P>Sets the widget scheme using <A + HREF="#Fl.scheme"><TT>Fl::scheme()</TT></A>.</LI> + + <LI><TT>-title string</TT> + + <P>Sets the window title using <A + HREF="Fl_Window.html#Fl_Window.label"><TT>Fl_Window::label()</TT></A>.</LI> + + <LI><TT>-tooltips</TT> and <TT>-notooltips</TT> + + <P>Enables or disables tooltips using <A + HREF="Fl_Tooltip.html#Fl_Tooltip.enable"><TT>Fl_Tooltip::enable()</TT></A>.</LI> + </UL> <P>The second form of <tt>Fl::args()</tt> is useful if your program does -not have command line switches of its own. It parses all the switches, +not have command line switches of its own. It parses all the switches, and if any are not recognized it calls <tt>Fl::abort(Fl::help)</tt>. <P>A usage string is displayed if <tt>Fl::args()</tt> detects an invalid diff --git a/documentation/osissues.html b/documentation/osissues.html index 29217d06d..2836b21a5 100644 --- a/documentation/osissues.html +++ b/documentation/osissues.html @@ -393,6 +393,9 @@ resources: <LI><TT>Text.background</TT> - The default background color for text fields (color). + <LI><TT>tooltips</TT> - The default setting for + tooltips (boolean). + <LI><TT>visibleFocus</TT> - The default setting for visible keyboard focus on non-text widgets (boolean). |
