From fae4b6ae7e035a78b518049dd521004ecba87cf1 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Wed, 13 Jan 1999 20:55:40 +0000 Subject: Final changes for next beta release - typos and more updated images. git-svn-id: file:///fltk/svn/fltk/trunk@224 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- documentation/basics.html | 6 +++--- documentation/common.html | 8 ++++---- documentation/editor.html | 6 +++--- documentation/enumerations.html | 4 ++-- documentation/filechooser.gif | Bin 8579 -> 18433 bytes documentation/fl_color_chooser.jpg | Bin 9113 -> 12610 bytes documentation/fl_show_colormap.gif | Bin 13024 -> 17470 bytes documentation/forms.html | 6 +++--- documentation/functions.html | 20 ++++++++++---------- documentation/intro.html | 4 ++-- documentation/license.html | 4 ++-- 11 files changed, 29 insertions(+), 29 deletions(-) (limited to 'documentation') diff --git a/documentation/basics.html b/documentation/basics.html index 563179b59..4de221c41 100644 --- a/documentation/basics.html +++ b/documentation/basics.html @@ -113,9 +113,9 @@ window->show(argc, argv); return Fl::run(); - The resulting program will display the window below. You can quit the +The resulting program will display the window below. You can quit the program by closing the window or pressing the ESCape key. -
+

Creating the Widgets

The widgets are created using the C++ new operator; the arguments to the constructors are usually one of the following: @@ -167,4 +167,4 @@ while (Fl::wait()); Fl::run() does not return until all of the windows under FLTK -control are closed (either by the user or your program). \ No newline at end of file +control are closed (either by the user or your program). diff --git a/documentation/common.html b/documentation/common.html index 4a85c4fe2..97284b7d5 100644 --- a/documentation/common.html +++ b/documentation/common.html @@ -134,9 +134,9 @@ button->labelcolor(FL_WHITE);

Box Types

The type Fl_Boxtype stored and returned in Fl_Widget::box() is an enumeration defined in -s.H>: -

-FL_NO_BOX means nothing is drawn at all, so whatever is +<Enumerations.H>: +

+

FL_NO_BOX means nothing is drawn at all, so whatever is already on the screen remains. The FL_..._FRAME types only draw their edges, leaving the center unchanged. In the above diagram the blue color is the area that is not drawn by the box.

@@ -335,4 +335,4 @@ button->shortcut(FL_CTRL + FL_ALT + 'b'); The shortcut value is the key event value (the ASCII value or one of the special keys like FL_Enter) combined with any modifiers -(like shift, alt, and control). \ No newline at end of file +(like shift, alt, and control). diff --git a/documentation/editor.html b/documentation/editor.html index d55616a83..4d18c7b33 100644 --- a/documentation/editor.html +++ b/documentation/editor.html @@ -122,7 +122,7 @@ and "replace all", "replace next", and "cancel" bu are just Fl_Input widgets, the "replace all" and "cancel" buttons are Fl_Button widgets, and the "replace next " button is a Fl_Return_Button widget: -
+

- \ No newline at end of file + diff --git a/documentation/filechooser.gif b/documentation/filechooser.gif index 44a786176..0145a5e80 100644 Binary files a/documentation/filechooser.gif and b/documentation/filechooser.gif differ diff --git a/documentation/fl_color_chooser.jpg b/documentation/fl_color_chooser.jpg index 18cde83be..ce59c156f 100644 Binary files a/documentation/fl_color_chooser.jpg and b/documentation/fl_color_chooser.jpg differ diff --git a/documentation/fl_show_colormap.gif b/documentation/fl_show_colormap.gif index 5ac3f64c7..62f16bfcb 100644 Binary files a/documentation/fl_show_colormap.gif and b/documentation/fl_show_colormap.gif differ diff --git a/documentation/forms.html b/documentation/forms.html index 6fd5282d7..bf4202b5f 100644 --- a/documentation/forms.html +++ b/documentation/forms.html @@ -31,7 +31,7 @@ use the inline functions and instead use "pure" FLTK. This will make it a lot cleaner and make it easier to figure out how to call the FLTK functions. Unfortunately this conversion is harder than expected and even Digital Domain's inhouse code still uses forms.H a lot.

-

Problems you will encounter

+

Problems You Will Encounter

Many parts of XForms use X-specific structures like XEvent in their interface. I did not emulate these! Unfortunately these features (such as the "canvas" widget) are needed by most large @@ -125,7 +125,7 @@ encountered when going from old Forms to XForms: unless "foreground()" was called. FLTK acts like "foreground()" is called all the time. If you really want the fork behavior do "if (fork()) exit(0)" right at the start of your program. -

You Cannot Use IRISGL windows or fl_queue

+

You Cannot Use IRISGL Windows or fl_queue

If a Forms (not XForms) program if you wanted your own window for displaying things you would create a IRISGL window and draw in it, periodically calling Forms to check if the user hit buttons on the @@ -197,4 +197,4 @@ fl_font_name(10,"*bookman-demi-r-no*"); fl_font_name(11,"*bookman-light-i-no*"); - \ No newline at end of file + diff --git a/documentation/functions.html b/documentation/functions.html index 815d11dd0..964bcea84 100644 --- a/documentation/functions.html +++ b/documentation/functions.html @@ -10,7 +10,7 @@ Appendix A. The double version takes RGB values in the range 0.0 to 1.0. The uchar version takes RGB values in the range 0 to 255. -
+

fl_color_chooser() pops up a window to let the user pick an arbitrary RGB color. They can pick the hue and saturation in the "hue box" on the left (hold down CTRL to just change the saturation), and @@ -32,22 +32,22 @@ dithering.

access with fl_color() and lets the user pick one of them. It returns the new color index, or the old one if the user types ESC or clicks outside the window. -
+

void fl_message(const char *, ...)

Displays a printf-style message in a pop-up box with an "OK" button, waits for the user to hit the button. The message will wrap to fit the window, or may be many lines by putting \n characters into it. The enter key is a shortcut for the OK button. -
+

void fl_alert(const char *, ...)

Same as fl_message() except for the "!" symbol. -
+

int fl_ask(const char *, ...)

Displays a printf-style message in a pop-up box with an "Yes" and "No" button and waits for the user to hit a button. The return value is 1 if the user hits Yes, 0 if they pick No. The enter key is a shortcut for Yes and ESC is a shortcut for No. -
+

int fl_choice(const char *q, const char *b0, const char *b1, const char *b2, ...)

Shows the message with three buttons below it marked with the strings @@ -56,7 +56,7 @@ which button is hit. ESC is a shortcut for button 0 and the enter key is a shortcut for button 1. Notice the "misordered" position of the buttons. You can hide buttons by passing NULL as their labels. -
+

const char *fl_input(const char *label, const char *deflt = 0, ...)

Pops up a window displaying a string, lets the user edit it, and @@ -64,12 +64,12 @@ return the new value. The cancel button returns NULL. The returned pointer is only valid until the next time fl_input() is called. Due to back-compatability, the arguments to any printf commands in the label are after the default value. -
+

const char *fl_password(const char *label, const char *deflt = 0, ...)

Same as fl_input() except an Fl_Secret_Input field is used. -
+

void fl_message_font(Fl_Font fontid, uchar size)

Change the font and font size used for the messages in all the popups. @@ -84,7 +84,7 @@ choose files from large directories. This file chooser has several unique features, the major one being that the Tab key completes filenames like it does in Emacs or tcsh, and the list always shows all possible completions. -
+

fl_file_chooser() pops up the file chooser, waits for the user to pick a file or Cancel, and then returns a pointer to that filename or NULL if Cancel is chosen. @@ -802,4 +802,4 @@ user can continue (very little calls this now). Fl::fatal must not return, as FLTK is in an unusable state, however your version may be able to use longjmp or an exception to continue, as long as it does not call FLTK again.

- \ No newline at end of file + diff --git a/documentation/intro.html b/documentation/intro.html index 6216c6b47..ffcf35603 100644 --- a/documentation/intro.html +++ b/documentation/intro.html @@ -133,7 +133,7 @@ This will build the library, FLUID tool, and all of the test programs.

To install the library, become root and type "make install". This will copy the "fluid" executable to "bindir", the header files to "includedir", and the library files to "libdir".

-

Building FLTK Under Micrsoft Windows

+

Building FLTK Under Microsoft Windows

There are two ways to build FLTK under Microsoft Windows. The first is to use the Visual C++ 5.0 project files under the "visualc" directory. Just open (or double-click on) the "fltk.dsw" file to get @@ -195,4 +195,4 @@ Please include the FLTK version, operating system & version, and compiler that you are using when describing the bug or problem.

For general support and questions, please use the FLTK mailing list at "fltk@easysw.com".

- \ No newline at end of file + diff --git a/documentation/license.html b/documentation/license.html index ff88ad13b..dcbeb2c90 100644 --- a/documentation/license.html +++ b/documentation/license.html @@ -1,6 +1,6 @@

G - Software License

-

GNU LIBRARY GENERAL PUBLIC LICENSE

+

GNU LIBRARY GENERAL PUBLIC LICENSE

Version 2, June 1991
Copyright (C) 1991 Free Software Foundation, Inc.
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA @@ -373,4 +373,4 @@ FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

END OF TERMS AND CONDITIONS

- \ No newline at end of file + -- cgit v1.2.3