From 6c9f274e7b9f7ebbeb513dc2188014e37bfb50a3 Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Sun, 29 Nov 2009 17:27:57 +0000 Subject: [PATCH] Fixed some typos in examples.html. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@6949 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- documentation/examples.html | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/documentation/examples.html b/documentation/examples.html index 2e7b4a183..0db3e5d67 100644 --- a/documentation/examples.html +++ b/documentation/examples.html @@ -181,7 +181,7 @@ and shows OpenGL text. CubeView shows how to create a UI containing OpenGL with Fluid.

cursor

-The cursor demo show all mouse cursor shapes that come standard +The cursor demo shows all mouse cursor shapes that come standard with FLTK. The fgcolor and bgcolor sliders work only on few systems (some version of Irix for example). @@ -195,7 +195,7 @@ This tool allows quick access to all programs in the test directory. tree can be changed by editing test/demo.menu.

doublebuffer

-The doublebuffer demo show the difference between a single +The doublebuffer demo shows the difference between a single buffered window, which may flicker during a slow redraw, and a double buffered window, which never flickers, but uses twice the amount of RAM. Some modern OS's double buffer all windows automatically @@ -210,7 +210,7 @@ The editor test is almost a full application, showing custom syntax highlighting and dialog creation.

fast_slow

-fast_slow shows how an application can use then when() +fast_slow shows how an application can use the when() setting to receive different kinds of callbacks.

file_chooser

@@ -219,7 +219,7 @@ iterations, trying to find a middle ground between a complex browser and a fast light implementation.

fonts

-fonts show all available text fonts on the host system. +fonts shows all available text fonts on the host system. If your machine still has some pixmap based fonts, the supported sizes will be shown in bold face. Only the first 256 fonts will be listed. @@ -227,13 +227,13 @@ be listed.

forms

forms is an XForms program with very few changes. Search for "fltk" to find all changes necessary to port to fltk. -This demo show the different boxtypes. Note that some +This demo shows the different boxtypes. Note that some boxtypes are not appropriate for some objects.

fractals

fractals shows how to mix OpenGL, Glut and FLTK code. FLTK supports a rather large subset of Glut, so that many Glut -application compile just fine. +applications compile just fine.

fullscreen

This demo shows how to do many of the window manipulations that @@ -252,7 +252,7 @@ The glpuzzle test shows how most Glut source code compiles easily under FLTK.

hello

-hello: Hello, World. Need I say maore? Well, maybe. This +hello: Hello, World. Need I say more? Well, maybe. This tiny demo shows how little is needed to get a functioning application running with FLTK. Quite impressive, I'd say. @@ -298,7 +298,7 @@ the window. The ESC key will not work.

label

Every FLTK widget can have a label attached to it. The label -demo shows alignment, clipping and wrapping of text labels. Labels +demo shows alignment, clipping, and wrapping of text labels. Labels can contain symbols at the start and end of the text, like @FLTK or @circle uh-huh @square. @@ -324,7 +324,7 @@ Among the features are radio buttons, menus taller than the screen, arbitrary sub menu depth, and global shortcuts.

message

-message pops up a few of FLTK's standars message boxes. +message pops up a few of FLTK's standard message boxes.

minimum

The minimum test program verifies that the update regions @@ -342,9 +342,9 @@ multi line mode of the Fl_Output widget. Fonts can be selected from the FLTK standard list of fonts.

overlay

-The overlay test app show how easy an FLTK window can -be layered to display cursor and manipulator style elemnts. This -example derives a new class from Fl_Overly_WIndow and +The overlay test app shows how easy an FLTK window can +be layered to display cursor and manipulator style elements. This +example derives a new class from Fl_Overlay_WIndow and provides a new function to draw custom overlays.

pack

@@ -384,7 +384,7 @@ the given window manager.

scroll

scroll shows how to scroll an area of widgets, one of -them beeing a slow custom drawing. Fl_Scroll uses +them being a slow custom drawing. Fl_Scroll uses clipping and smart window area copying to improve redraw speed. The buttons at the bottom of the window control decoration rendering and updates. @@ -397,7 +397,7 @@ and write that flight simulator you always dreamt of.

subwindow

The subwindow demo tests messaging and drawing between the main window and 'true' sub windows. A sub window is different -to a group by resetting the FLTK coordinate stystem to 0, 0 in the +to a group by resetting the FLTK coordinate system to 0, 0 in the top left corner. On Win32 and X11, subwindows have their own operating system specific handle. @@ -425,7 +425,7 @@ for direct comparison of these two panel management widgets.

threads

FLTK can be used in a multithreading environment. There are some limitations, mostly due to the underlying operating system. -threads show how to use Fl::lock(), +threads shows how to use Fl::lock(), Fl::unlock(), and Fl::awake() in secondary threads to keep FLTK happy. Although locking works on all platforms, this demo is not available on every machine. @@ -438,14 +438,14 @@ To test correct resizing of subwindows, the widget for region

tiled_image

The tiled_image demo uses an image as the background for a window by repeating it over the full size of the widget. -Thw window is resizable and shows how the image gets repeated. +The window is resizable and shows how the image gets repeated.

valuators

valuators shows all of FLTK's nifty widgets to change numeric values.

fluid

-fuid is not only a big test program, but also a very +fluid is not only a big test program, but also a very useful visual UI designer. Many parts of fluid were created using fluid.