From 6a4714ce12d546c8131389853fe5593555c73b77 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Sat, 29 Sep 2001 14:38:59 +0000 Subject: Fl_FileXYZ -> Fl_File_XYZ Fl_HelpXYZ -> Fl_Help_XYZ Fl_File_Chooser now supports directory choosing. Added fl_dir_chooser() function. Now set FLTK_DOCDIR env var in test/demo. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1612 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- documentation/Fl_FileBrowser.html | 76 ----------------- documentation/Fl_FileChooser.gif | Bin 10760 -> 0 bytes documentation/Fl_FileChooser.html | 162 ------------------------------------- documentation/Fl_FileIcon.html | 153 ----------------------------------- documentation/Fl_File_Browser.html | 76 +++++++++++++++++ documentation/Fl_File_Chooser.gif | Bin 0 -> 10760 bytes documentation/Fl_File_Chooser.html | 162 +++++++++++++++++++++++++++++++++++++ documentation/Fl_File_Icon.html | 153 +++++++++++++++++++++++++++++++++++ documentation/Fl_HelpDialog.gif | Bin 12984 -> 0 bytes documentation/Fl_HelpDialog.html | 89 -------------------- documentation/Fl_HelpView.html | 130 ----------------------------- documentation/Fl_Help_Dialog.gif | Bin 0 -> 12984 bytes documentation/Fl_Help_Dialog.html | 77 ++++++++++++++++++ documentation/Fl_Help_View.html | 123 ++++++++++++++++++++++++++++ documentation/fltk.book | 10 +-- documentation/widgets.html | 20 ++--- 16 files changed, 606 insertions(+), 625 deletions(-) delete mode 100644 documentation/Fl_FileBrowser.html delete mode 100644 documentation/Fl_FileChooser.gif delete mode 100644 documentation/Fl_FileChooser.html delete mode 100644 documentation/Fl_FileIcon.html create mode 100644 documentation/Fl_File_Browser.html create mode 100644 documentation/Fl_File_Chooser.gif create mode 100644 documentation/Fl_File_Chooser.html create mode 100644 documentation/Fl_File_Icon.html delete mode 100644 documentation/Fl_HelpDialog.gif delete mode 100644 documentation/Fl_HelpDialog.html delete mode 100644 documentation/Fl_HelpView.html create mode 100644 documentation/Fl_Help_Dialog.gif create mode 100644 documentation/Fl_Help_Dialog.html create mode 100644 documentation/Fl_Help_View.html (limited to 'documentation') diff --git a/documentation/Fl_FileBrowser.html b/documentation/Fl_FileBrowser.html deleted file mode 100644 index 2c9e1da00..000000000 --- a/documentation/Fl_FileBrowser.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - -

class Fl_FileBrowser

- -
- -

Class Hierarchy

- - - -

Include Files

- - - -

Description

- -

The Fl_FileBrowser widget displays a list of filenames, -optionally with file-specific icons. - -

Methods

- - - -

Fl_FileBrowser(int xx, int yy, int ww, int hh, const char *l = 0)

- -

The constructor creates the Fl_FileBrowser widget at the specified -position and size. - -

~Fl_FileBrowser()

- -

The destructor destroys the widget and frees all memory that has been -allocated. - -

void iconsize(uchar s)
-uchar iconsize() const

- -

Sets or gets the size of the icons. The default size is 20 pixels. - -

void filter(const char *pattern)
-const char *filter() const

- -

Sets or gets the filename filter. The pattern matching uses the -filename_match() function in FLTK. - -

void filetype(int type)
-int filetype() const

- -

Sets or gets the file browser type, FILES or -DIRECTORIES. When set to FILES, both -files and directories are shown. Otherwise only directories are -shown. - -

int load(const char *directory)

- -

Loads the specified directory into the browser. If icons have been -loaded then the correct icon is associated with each file in the list. - - - diff --git a/documentation/Fl_FileChooser.gif b/documentation/Fl_FileChooser.gif deleted file mode 100644 index 5a72f625a..000000000 Binary files a/documentation/Fl_FileChooser.gif and /dev/null differ diff --git a/documentation/Fl_FileChooser.html b/documentation/Fl_FileChooser.html deleted file mode 100644 index 13846c34d..000000000 --- a/documentation/Fl_FileChooser.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - -

class Fl_FileChooser

- -
- -

Class Hierarchy

- - - -

Include Files

- - - -

Description

- -

The Fl_FileChooser widget displays a standard file selection -dialog that supports various selection modes. - -

Fl_FileChooser widget
- -

Methods

- - - -

Fl_FileChooser(const char *pathname, const char *pattern, -int type, const char *title)

- -

The constructor creates the Fl_FileChooser dialog pictured -above. The pathname argument can be a directory name or a -complete file name (in which case the corresponding file is highlighted -in the list and in the filename input field.) - -

The pattern argument can be a NULL string or -"*" to list all files. See the FLTK documentation on -filename_match() for other kinds of patterns. - -

The type argument can be one of the following: - -

- -

The title argument is used to set the title bar text for the -Fl_FileChooser window. - -

~Fl_FileChooser()

- -

Destroys the widget and frees all memory used by it. - -

void color(Fl_Color c)
-Fl_Color color()

- -

Sets or gets the background color of the FileBrowser list. - -

int count()

- -

Returns the number of selected files. - -

void directory(const char *pathname)
-const char *directory()

- -

Sets or gets the current directory. - -

void filter(const char *pattern)
-const char *filter()

- -

Sets or gets the current filename filter pattern. - -

void hide()

- -

Hides the Fl_FileChooser window. - -

void iconsize(uchar s)
-uchar iconsize()

- -

Sets or gets the size of the icons in the FileBrowser. By -default the icon size is set to 1.5 times the textsize(). - -

void label(const char *l)
-const char *label()

- -

Sets or gets the title bar text for the Fl_FileChooser. - -

void rescan()

- -

Reloads the current directory in the FileBrowser. - -

void show()

- -

Shows the Fl_FileChooser window. - -

void textcolor(Fl_Color c)
-Fl_Color textcolor()

- -

Sets or gets the current FileBrowser text color. - -

void textfont(uchar f)
-uchar textfont()

- -

Sets or gets the current FileBrowser text font. - -

void textsize(uchar s)
-uchar textsize()

- -

Sets or gets the current FileBrowser text size. - -

void type(int t)
-int type()

- -

Sets or gets the current type of Fl_FileChooser. - -

const char *value(const char *pathname)
-const char *value(int file)
-const char *value()

- -

Sets or gets the current value of the selected file. - -

int visible()

- -

Returns 1 if the Fl_FileChooser window is visible. - -


- - - - diff --git a/documentation/Fl_FileIcon.html b/documentation/Fl_FileIcon.html deleted file mode 100644 index 51c80f68c..000000000 --- a/documentation/Fl_FileIcon.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - -

class Fl_FileIcon

- -
- -

Class Hierarchy

- - - -

Include Files

- - - -

Description

- -

The Fl_FileIcon class manages icon images that can be -used as labels in other widgets and as icons in the FileBrowser -widget. - -

Methods

- - - -

Fl_FileIcon()

- -

The constructor creates a new Fl_FileIcon with the specified -information. - -

~Fl_FileIcon()

- -

The destructor destroys the icon and frees all memory that has been -allocated for it. - -

short *add(short d)

- -

Adds a keyword value to the icon array, returning a pointer to it. - -

short *add_color(short c)

- -

Adds a color value to the icon array, returning a pointer to it. - -

short *add_vertex(int x, int y)
-short *add_vertex(float x, float y)

- -

Adds a vertex value to the icon array, returning a pointer to it. -The integer version accepts coordinates from 0 to 10000, while the -floating point version goes from 0.0 to 1.0. The origin (0.0) is in -the lower-lefthand corner of the icon. - -

void clear()

- -

Clears all icon data from the icon. - -

void draw(int x, int y, int w, int h, Fl_Color ic, int active = 1)

- -

Draws the icon in the indicated area. - -

static Fl_FileIcon *find(const char *filename, int filetype = ANY);

- -

Finds an icon that matches the given filename and file type. - -

static Fl_FileIcon *first()

- -

Returns a pointer to the first icon in the list. - -

void label(Fl_Widget *w)

- -

Applies the icon to the widget, registering the Fl_FileIcon -label type as needed. - -

static void labeltype(const Fl_Label *o, int x, int y, int w, int h, Fl_Align a)

- -

The labeltype function for icons. - -

void load(const char *f)

- -

Loads the specified icon image. The format is deduced from the filename. - -

void load_fti(const char *fti)

- -

Loads an SGI icon file. - -

static void load_system_icons(void)

- -

Loads all system-defined icons. This call is useful when using the -FileChooser widget and should be used when the application -starts: - -

- -

void load_xpm(const char *xpm)

- -

Loads an XPM icon file. - -

const char *pattern()

- -

Returns the filename matching pattern for the icon. - -

int size()

- -

Returns the number of words of data used by the icon. - -

int type()

- -

Returns the filetype associated with the icon, which can be one of the -following: - -

- -

short *value()

- -

Returns the data array for the icon. - - - diff --git a/documentation/Fl_File_Browser.html b/documentation/Fl_File_Browser.html new file mode 100644 index 000000000..6b8cbadc2 --- /dev/null +++ b/documentation/Fl_File_Browser.html @@ -0,0 +1,76 @@ + + + + +

class Fl_File_Browser

+ +
+ +

Class Hierarchy

+ + + +

Include Files

+ + + +

Description

+ +

The Fl_File_Browser widget displays a list of filenames, +optionally with file-specific icons. + +

Methods

+ + + +

Fl_File_Browser(int xx, int yy, int ww, int hh, const char *l = 0)

+ +

The constructor creates the Fl_File_Browser widget at the specified +position and size. + +

~Fl_File_Browser()

+ +

The destructor destroys the widget and frees all memory that has been +allocated. + +

void iconsize(uchar s)
+uchar iconsize() const

+ +

Sets or gets the size of the icons. The default size is 20 pixels. + +

void filter(const char *pattern)
+const char *filter() const

+ +

Sets or gets the filename filter. The pattern matching uses the +filename_match() function in FLTK. + +

void filetype(int type)
+int filetype() const

+ +

Sets or gets the file browser type, FILES or +DIRECTORIES. When set to FILES, both +files and directories are shown. Otherwise only directories are +shown. + +

int load(const char *directory)

+ +

Loads the specified directory into the browser. If icons have been +loaded then the correct icon is associated with each file in the list. + + + diff --git a/documentation/Fl_File_Chooser.gif b/documentation/Fl_File_Chooser.gif new file mode 100644 index 000000000..5a72f625a Binary files /dev/null and b/documentation/Fl_File_Chooser.gif differ diff --git a/documentation/Fl_File_Chooser.html b/documentation/Fl_File_Chooser.html new file mode 100644 index 000000000..9a2d4a4e7 --- /dev/null +++ b/documentation/Fl_File_Chooser.html @@ -0,0 +1,162 @@ + + + + +

class Fl_File_Chooser

+ +
+ +

Class Hierarchy

+ + + +

Include Files

+ + + +

Description

+ +

The Fl_File_Chooser widget displays a standard file selection +dialog that supports various selection modes. + +

Fl_File_Chooser widget
+ +

Methods

+ + + +

Fl_File_Chooser(const char *pathname, const char *pattern, +int type, const char *title)

+ +

The constructor creates the Fl_File_Chooser dialog pictured +above. The pathname argument can be a directory name or a +complete file name (in which case the corresponding file is highlighted +in the list and in the filename input field.) + +

The pattern argument can be a NULL string or +"*" to list all files. See the FLTK documentation on +filename_match() for other kinds of patterns. + +

The type argument can be one of the following: + +

+ +

The title argument is used to set the title bar text for the +Fl_File_Chooser window. + +

~Fl_File_Chooser()

+ +

Destroys the widget and frees all memory used by it. + +

void color(Fl_Color c)
+Fl_Color color()

+ +

Sets or gets the background color of the Fl_File_Browser list. + +

int count()

+ +

Returns the number of selected files. + +

void directory(const char *pathname)
+const char *directory()

+ +

Sets or gets the current directory. + +

void filter(const char *pattern)
+const char *filter()

+ +

Sets or gets the current filename filter pattern. + +

void hide()

+ +

Hides the Fl_File_Chooser window. + +

void iconsize(uchar s)
+uchar iconsize()

+ +

Sets or gets the size of the icons in the Fl_File_Browser. By +default the icon size is set to 1.5 times the textsize(). + +

void label(const char *l)
+const char *label()

+ +

Sets or gets the title bar text for the Fl_File_Chooser. + +

void rescan()

+ +

Reloads the current directory in the Fl_File_Browser. + +

void show()

+ +

Shows the Fl_File_Chooser window. + +

void textcolor(Fl_Color c)
+Fl_Color textcolor()

+ +

Sets or gets the current Fl_File_Browser text color. + +

void textfont(uchar f)
+uchar textfont()

+ +

Sets or gets the current Fl_File_Browser text font. + +

void textsize(uchar s)
+uchar textsize()

+ +

Sets or gets the current Fl_File_Browser text size. + +

void type(int t)
+int type()

+ +

Sets or gets the current type of Fl_File_Chooser. + +

const char *value(const char *pathname)
+const char *value(int file)
+const char *value()

+ +

Sets or gets the current value of the selected file. + +

int visible()

+ +

Returns 1 if the Fl_File_Chooser window is visible. + +


+ + + + diff --git a/documentation/Fl_File_Icon.html b/documentation/Fl_File_Icon.html new file mode 100644 index 000000000..0536161e2 --- /dev/null +++ b/documentation/Fl_File_Icon.html @@ -0,0 +1,153 @@ + + + + +

class Fl_File_Icon

+ +
+ +

Class Hierarchy

+ + + +

Include Files

+ + + +

Description

+ +

The Fl_File_Icon class manages icon images that can be +used as labels in other widgets and as icons in the FileBrowser +widget. + +

Methods

+ + + +

Fl_File_Icon()

+ +

The constructor creates a new Fl_File_Icon with the specified +information. + +

~Fl_File_Icon()

+ +

The destructor destroys the icon and frees all memory that has been +allocated for it. + +

short *add(short d)

+ +

Adds a keyword value to the icon array, returning a pointer to it. + +

short *add_color(short c)

+ +

Adds a color value to the icon array, returning a pointer to it. + +

short *add_vertex(int x, int y)
+short *add_vertex(float x, float y)

+ +

Adds a vertex value to the icon array, returning a pointer to it. +The integer version accepts coordinates from 0 to 10000, while the +floating point version goes from 0.0 to 1.0. The origin (0.0) is in +the lower-lefthand corner of the icon. + +

void clear()

+ +

Clears all icon data from the icon. + +

void draw(int x, int y, int w, int h, Fl_Color ic, int active = 1)

+ +

Draws the icon in the indicated area. + +

static Fl_File_Icon *find(const char *filename, int filetype = ANY);

+ +

Finds an icon that matches the given filename and file type. + +

static Fl_File_Icon *first()

+ +

Returns a pointer to the first icon in the list. + +

void label(Fl_Widget *w)

+ +

Applies the icon to the widget, registering the Fl_File_Icon +label type as needed. + +

static void labeltype(const Fl_Label *o, int x, int y, int w, int h, Fl_Align a)

+ +

The labeltype function for icons. + +

void load(const char *f)

+ +

Loads the specified icon image. The format is deduced from the filename. + +

void load_fti(const char *fti)

+ +

Loads an SGI icon file. + +

static void load_system_icons(void)

+ +

Loads all system-defined icons. This call is useful when using the +FileChooser widget and should be used when the application +starts: + +

+ +

void load_xpm(const char *xpm)

+ +

Loads an XPM icon file. + +

const char *pattern()

+ +

Returns the filename matching pattern for the icon. + +

int size()

+ +

Returns the number of words of data used by the icon. + +

int type()

+ +

Returns the filetype associated with the icon, which can be one of the +following: + +

+ +

short *value()

+ +

Returns the data array for the icon. + + + diff --git a/documentation/Fl_HelpDialog.gif b/documentation/Fl_HelpDialog.gif deleted file mode 100644 index e0f3cbfa8..000000000 Binary files a/documentation/Fl_HelpDialog.gif and /dev/null differ diff --git a/documentation/Fl_HelpDialog.html b/documentation/Fl_HelpDialog.html deleted file mode 100644 index 5fd28c7e6..000000000 --- a/documentation/Fl_HelpDialog.html +++ /dev/null @@ -1,89 +0,0 @@ - - - HelpDialog - ESP Widget Set for FLTK - - - Widget Set Home Page - Widget Set Documentation - Download Widget Set - ESP Home Page - FLTK Home Page - - - - - - -

class HelpDialog

- -
- -

Class Hierarchy

- - - -

Include Files

- - - -

Description

- -

The HelpDialog widget displays a standard help dialog window -using the HelpView widget. - -

HelpDialog Window
- -

Methods

- - - -

HelpDialog()

- -

The constructor creates the dialog pictured above. - -

~HelpView()

- -

The destructor destroys the widget and frees all memory that has been -allocated for the current file. - -

void hide()

- -

Hides the HelpDialog window. - -

void load(const char *f)

- -

Loads the specified HTML file into the HelpView widget. -The filename can also contain a target name ("filename.html#target"). - -

void show()

- -

Shows the HelpDialog window. - -

void topline(const char *n)
-void topline(int n)

- -

Sets the top line in the HelpView widget to the named or -numbered line. - -

int visible()

- -

Returns 1 if the HelpDialog window is visible. - - - diff --git a/documentation/Fl_HelpView.html b/documentation/Fl_HelpView.html deleted file mode 100644 index e9e5b8a85..000000000 --- a/documentation/Fl_HelpView.html +++ /dev/null @@ -1,130 +0,0 @@ - - - HelpView - ESP Widget Set for FLTK - - - - - - -

class HelpView

- -
- -

Class Hierarchy

- - - -

Include Files

- - - -

Description

- -

The HelpView widget displays HTML text. Most HTML 2.0 -elements are supported, as well as a primitive implementation of tables. -GIF, JPEG, and PNG images are displayed inline. - -

Methods

- - - -

HelpView(int xx, int yy, int ww, int hh, const char *l = 0)

- -

The constructor creates the HelpView widget at the specified -position and size. - -

~HelpView()

- -

The destructor destroys the widget and frees all memory that has been -allocated for the current file. - -

const char *directory() const

- -

This method returns the current directory (base) path for the file -in the buffer. - -

const char *filename() const

- -

This method returns the current filename for the text in the buffer. - -

void link(HelpFunc *fn)

- -

This method assigns a callback function to use when a link is -followed or a file is loaded (via HelpView::load()) that -requires a different file or path. The callback function receives the -full pathname for the file in question and must return a pathname that -can be opened as a local file. This is used by the -HelpApp widget to support WWW -addresses. - -

int load(const char *f)

- -

This method loads the specified file or URL. - -

int size() const

- -

This method returns the length of the buffer text in pixels. - -

void textcolor(Fl_Color c)
-Fl_Color textcolor() const

- -

The first form sets the default text color. The second returns -the current default text color. - -

void textfont(uchar f)
-uchar textfont() const

- -

The first form sets the default text font. The second returns -the current default text font. - -

void textsize(uchar s)
-uchar textsize() const

- -

The first form sets the default text size. The second returns -the current default text size. - -

const char *title()

- -

This method returns the current document title, or NULL if there -is no title. - -

void topline(const char *n)
-void topline(int)
-int topline() const

- -

The first two forms scroll the text to the indicated position, either -with a named destination or by pixel line. - -

The second form returns the current top line in pixels. - -

void value(const char *v)
-const char *value() const

- -

The first form sets the current buffer to the string provided and -reformats the text. The second form returns the current buffer contents. - - - diff --git a/documentation/Fl_Help_Dialog.gif b/documentation/Fl_Help_Dialog.gif new file mode 100644 index 000000000..e0f3cbfa8 Binary files /dev/null and b/documentation/Fl_Help_Dialog.gif differ diff --git a/documentation/Fl_Help_Dialog.html b/documentation/Fl_Help_Dialog.html new file mode 100644 index 000000000..d344cc0fc --- /dev/null +++ b/documentation/Fl_Help_Dialog.html @@ -0,0 +1,77 @@ + + + + +

class Fl_Help_Dialog

+ +
+ +

Class Hierarchy

+ + + +

Include Files

+ + + +

Description

+ +

The Fl_Help_Dialog widget displays a standard help dialog window +using the Fl_Help_View widget. + +

Fl_Help_Dialog Window
+ +

Methods

+ + + +

Fl_Help_Dialog()

+ +

The constructor creates the dialog pictured above. + +

~Fl_Help_View()

+ +

The destructor destroys the widget and frees all memory that has been +allocated for the current file. + +

void hide()

+ +

Hides the Fl_Help_Dialog window. + +

void load(const char *f)

+ +

Loads the specified HTML file into the Fl_Help_View widget. +The filename can also contain a target name ("filename.html#target"). + +

void show()

+ +

Shows the Fl_Help_Dialog window. + +

void topline(const char *n)
+void topline(int n)

+ +

Sets the top line in the Fl_Help_View widget to the named or +numbered line. + +

int visible()

+ +

Returns 1 if the Fl_Help_Dialog window is visible. + + + diff --git a/documentation/Fl_Help_View.html b/documentation/Fl_Help_View.html new file mode 100644 index 000000000..fb7a88d75 --- /dev/null +++ b/documentation/Fl_Help_View.html @@ -0,0 +1,123 @@ + + +

class Fl_Help_View

+ +
+ +

Class Hierarchy

+ + + +

Include Files

+ + + +

Description

+ +

The Fl_Help_View widget displays HTML text. Most HTML 2.0 +elements are supported, as well as a primitive implementation of tables. +GIF, JPEG, and PNG images are displayed inline. + +

Methods

+ + + +

Fl_Help_View(int xx, int yy, int ww, int hh, const char *l = 0)

+ +

The constructor creates the Fl_Help_View widget at the specified +position and size. + +

~Fl_Help_View()

+ +

The destructor destroys the widget and frees all memory that has been +allocated for the current file. + +

const char *directory() const

+ +

This method returns the current directory (base) path for the file +in the buffer. + +

const char *filename() const

+ +

This method returns the current filename for the text in the buffer. + +

void link(Fl_Help_Func *fn)

+ +

This method assigns a callback function to use when a link is +followed or a file is loaded (via Fl_Help_View::load()) that +requires a different file or path. The callback function receives the +full pathname for the file in question and must return a pathname that +can be opened as a local file. This is used by the +Fl_Help_App widget to support WWW +addresses. + +

int load(const char *f)

+ +

This method loads the specified file or URL. + +

int size() const

+ +

This method returns the length of the buffer text in pixels. + +

void textcolor(Fl_Color c)
+Fl_Color textcolor() const

+ +

The first form sets the default text color. The second returns +the current default text color. + +

void textfont(uchar f)
+uchar textfont() const

+ +

The first form sets the default text font. The second returns +the current default text font. + +

void textsize(uchar s)
+uchar textsize() const

+ +

The first form sets the default text size. The second returns +the current default text size. + +

const char *title()

+ +

This method returns the current document title, or NULL if there +is no title. + +

void topline(const char *n)
+void topline(int)
+int topline() const

+ +

The first two forms scroll the text to the indicated position, either +with a named destination or by pixel line. + +

The second form returns the current top line in pixels. + +

void value(const char *v)
+const char *value() const

+ +

The first form sets the current buffer to the string provided and +reformats the text. The second form returns the current buffer contents. + + + diff --git a/documentation/fltk.book b/documentation/fltk.book index 394663b64..e8d0dc22c 100644 --- a/documentation/fltk.book +++ b/documentation/fltk.book @@ -25,15 +25,15 @@ Fl_Counter.html Fl_Dial.html Fl_Double_Window.html Fl_End.html -Fl_FileBrowser.html -Fl_FileChooser.html -Fl_FileIcon.html +Fl_File_Browser.html +Fl_File_Chooser.html +Fl_File_Icon.html Fl_Float_Input.html Fl_Free.html Fl_Gl_Window.html Fl_Group.html -Fl_HelpDialog.html -Fl_HelpView.html +Fl_Help_Dialog.html +Fl_Help_View.html Fl_Hold_Browser.html Fl_Input.html Fl_Input_.html diff --git a/documentation/widgets.html b/documentation/widgets.html index 076e579a0..bf4100968 100644 --- a/documentation/widgets.html +++ b/documentation/widgets.html @@ -24,15 +24,15 @@ see Appendix B. Fl_Dial
Fl_Double_Window
Fl_End
-Fl_FileBrowser
-Fl_FileChooser
-Fl_FileIcon
+Fl_File_Browser
+Fl_File_Chooser
+Fl_File_Icon
Fl_Float_Input
Fl_Free
Fl_Gl_Window
Fl_Group
-Fl_HelpDialog
-Fl_HelpView
+Fl_Help_Dialog
+Fl_Help_View
Fl_Hold_Browser
Fl_Input
Fl_Input_
@@ -78,7 +78,7 @@ see Appendix B.