mirror of https://github.com/fltk/fltk
Add docos for Fl_File_Input.
Add Fl_Preferences to docos. Update screenshot for file chooser. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2151 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
45f8282135
commit
f58d0e15d7
Binary file not shown.
After Width: | Height: | Size: 3.9 KiB |
|
@ -0,0 +1,57 @@
|
|||
<HTML>
|
||||
<BODY>
|
||||
|
||||
<!-- NEW PAGE -->
|
||||
<H2><A name="Fl_File_Input">class Fl_File_Input</A></H2>
|
||||
|
||||
<HR>
|
||||
|
||||
<H3>Class Hierarchy</H3>
|
||||
|
||||
<UL><PRE>
|
||||
<A href="Fl_Input.html#Fl_Input">Fl_Input</A>
|
||||
|
|
||||
+----<B>Fl_File_Input</B>
|
||||
</PRE></UL>
|
||||
|
||||
<H3>Include Files</H3>
|
||||
|
||||
<UL><PRE>
|
||||
#include <FL/Fl_File_Input.H>
|
||||
</PRE></UL>
|
||||
|
||||
<H3>Description</H3>
|
||||
|
||||
<P>This widget displays a pathname in a text input field. A navigation bar
|
||||
located above the input field allows the user to navigate upward in the
|
||||
directory tree.
|
||||
|
||||
<CENTER><IMG src="Fl_File_Input.gif" ALT="Fl_File_Input widget."></CENTER>
|
||||
|
||||
<H3>Methods</H3>
|
||||
|
||||
<UL>
|
||||
|
||||
<LI><A href="#Fl_File_Input.Fl_File_Input">Fl_File_Input</A></LI>
|
||||
<LI><A href="#Fl_File_Input.~Fl_File_Input">~Fl_File_Input</A></LI>
|
||||
<LI><A href="#Fl_File_Input.down_box">down_box</A></LI>
|
||||
|
||||
</UL>
|
||||
|
||||
<H4><A name="Fl_File_Input.Fl_File_Input">Fl_File_Input::Fl_File_Input(int x, int y, int
|
||||
w, int h, const char *label = 0)</A></H4>
|
||||
|
||||
<P>Creates a new <TT>Fl_File_Input</TT> widget using the given position,
|
||||
size, and label string. The default boxtype is <TT>FL_DOWN_BOX</TT>.
|
||||
|
||||
<H4><A name="Fl_File_Input.~Fl_File_Input">virtual Fl_File_Input::~Fl_File_Input()</A></H4>
|
||||
|
||||
<P>Destroys the widget and any value associated with it.
|
||||
|
||||
<H4><A name="Fl_File_Input.down_box">Fl_Boxtype Fl_File_Input::down_box() const
|
||||
<BR>void Fl_File_Input::down_box(Fl_Boxtype b)</A></H4>
|
||||
|
||||
<P>Gets or sets the box type to use for the navigation bar.
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
|
@ -9,9 +9,9 @@
|
|||
|
|
||||
+----<B>Fl_Input</B>
|
||||
|
|
||||
+----<A href=Fl_Float_Input.html#Fl_Float_Input>Fl_Float_Input</A>, <A href=Fl_Int_Input.html#Fl_Int_Input>Fl_Int_Input</A>,
|
||||
<A href=Fl_Multiline_Input.html#Fl_Multiline_Input>Fl_Multiline_Input</A>, <A href=Fl_Output.html#Fl_Output>Fl_Output</A>,
|
||||
<A href=Fl_Secret_Input.html#Fl_Secret_Input>Fl_Secret_Input</A>
|
||||
+----<A href="Fl_File_Input.html">Fl_File_Input</A>, <A href=Fl_Float_Input.html#Fl_Float_Input>Fl_Float_Input</A>,
|
||||
<A href=Fl_Int_Input.html#Fl_Int_Input>Fl_Int_Input</A>, <A href=Fl_Multiline_Input.html#Fl_Multiline_Input>Fl_Multiline_Input</A>,
|
||||
<A href=Fl_Output.html#Fl_Output>Fl_Output</A>, <A href=Fl_Secret_Input.html#Fl_Secret_Input>Fl_Secret_Input</A>
|
||||
</PRE>
|
||||
</UL>
|
||||
<H3>Include Files</H3>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#
|
||||
# "$Id: Makefile,v 1.9.2.10.2.14 2002/04/28 16:41:16 easysw Exp $"
|
||||
# "$Id: Makefile,v 1.9.2.10.2.15 2002/05/01 00:55:45 easysw Exp $"
|
||||
#
|
||||
# Documentation makefile for the Fast Light Tool Kit (FLTK).
|
||||
#
|
||||
|
@ -73,6 +73,7 @@ HTMLFILES = \
|
|||
Fl_File_Browser.html \
|
||||
Fl_File_Chooser.html \
|
||||
Fl_File_Icon.html \
|
||||
Fl_File_Input.html \
|
||||
Fl_Float_Input.html \
|
||||
Fl_Free.html \
|
||||
Fl_GIF_Image.html \
|
||||
|
@ -102,6 +103,7 @@ HTMLFILES = \
|
|||
Fl_PNG_Image.html \
|
||||
Fl_PNM_Image.html \
|
||||
Fl_Positioner.html \
|
||||
Fl_Preferences.html \
|
||||
Fl_Progress.html \
|
||||
Fl_Repeat_Button.html \
|
||||
Fl_RGB_Image.html \
|
||||
|
@ -158,6 +160,7 @@ IMAGEFILES = \
|
|||
fl_choice.gif \
|
||||
fl_color_chooser.jpg \
|
||||
FL.gif \
|
||||
Fl_File_Input.gif \
|
||||
Fl_Help_Dialog.gif \
|
||||
fl_input.gif \
|
||||
Fl_Light_Button.gif \
|
||||
|
@ -270,5 +273,5 @@ fltk.pdf: $(HTMLFILES) $(IMAGEFILES)
|
|||
$(HTMLDOC) --verbose --batch fltk.book $(MEDIA) -f fltk.pdf
|
||||
|
||||
#
|
||||
# End of "$Id: Makefile,v 1.9.2.10.2.14 2002/04/28 16:41:16 easysw Exp $".
|
||||
# End of "$Id: Makefile,v 1.9.2.10.2.15 2002/05/01 00:55:45 easysw Exp $".
|
||||
#
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 9.2 KiB After Width: | Height: | Size: 20 KiB |
|
@ -1,4 +1,4 @@
|
|||
#HTMLDOC 1.8.19
|
||||
#HTMLDOC 1.8.20
|
||||
-t pdf13 -f fltk.pdf --book --toclevels 2 --no-numbered --toctitle "Table of Contents" --title --titleimage FL.gif --linkstyle underline --size Universal --left 1.00in --right 0.50in --top 0.50in --bottom 0.50in --header .t. --footer h.1 --tocheader .t. --tocfooter ..i --duplex --portrait --color --no-pscommands --no-xrxcomments --compression=9 --jpeg=50 --fontsize 11.0 --fontspacing 1.2 --headingfont Helvetica --bodyfont Times --headfootsize 11.0 --headfootfont Helvetica --charset 8859-1 --links --no-truetype --pagemode outline --pagelayout single --firstpage c1 --pageeffect none --pageduration 10 --effectduration 1.0 --no-encryption --permissions all --owner-password "" --user-password "" --browserwidth 680
|
||||
preface.html
|
||||
intro.html
|
||||
|
@ -31,6 +31,7 @@ Fl_End.html
|
|||
Fl_File_Browser.html
|
||||
Fl_File_Chooser.html
|
||||
Fl_File_Icon.html
|
||||
Fl_File_Input.html
|
||||
Fl_Float_Input.html
|
||||
Fl_Free.html
|
||||
Fl_GIF_Image.html
|
||||
|
@ -60,6 +61,7 @@ Fl_Pixmap.html
|
|||
Fl_PNG_Image.html
|
||||
Fl_PNM_Image.html
|
||||
Fl_Positioner.html
|
||||
Fl_Preferences.html
|
||||
Fl_Progress.html
|
||||
Fl_Repeat_Button.html
|
||||
Fl_RGB_Image.html
|
||||
|
|
|
@ -63,6 +63,7 @@ description of the <TT>fl_</TT> functions, see
|
|||
<A HREF="Fl_PNG_Image.html">Fl_PNG_Image</A><BR>
|
||||
<A HREF="Fl_PNM_Image.html">Fl_PNM_Image</A><BR>
|
||||
<A HREF="Fl_Positioner.html">Fl_Positioner</A><BR>
|
||||
<A HREF="Fl_Preferences.html">Fl_Preferences</A><BR>
|
||||
<A HREF="Fl_Progress.html">Fl_Progress</A><BR>
|
||||
<A HREF="Fl_Repeat_Button.html">Fl_Repeat_Button</A><BR>
|
||||
<A HREF="Fl_Return_Button.html">Fl_Return_Button</A><BR>
|
||||
|
@ -125,6 +126,7 @@ description of the <TT>fl_</TT> functions, see
|
|||
<LI><A HREF="Fl_Tiled_Image.html">Fl_Tiled_Image</A><BR>
|
||||
</UL>
|
||||
<LI><A HREF="Fl_Menu_Item.html#Fl_Menu_Item">Fl_Menu_Item</A>
|
||||
<LI><A HREF="Fl_Preferences.html">Fl_Preferences</A>
|
||||
<LI><A HREF="Fl_Text_Buffer.html">Fl_Text_Buffer</A>
|
||||
<LI><A HREF="Fl_Tooltip.html">Fl_Tooltip</A>
|
||||
<LI><A HREF="Fl_Widget.html#Fl_Widget">Fl_Widget</A>
|
||||
|
|
Loading…
Reference in New Issue