From 772f94ca1ac8aec25aa4ccc337454cf76c5ea700 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Tue, 27 Nov 2001 02:09:45 +0000 Subject: More docos (many files just copied, so the content isn't right yet...) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1753 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- documentation/Fl.html | 51 +++++ documentation/Fl_Bitmap.html | 51 +++++ documentation/Fl_GIF_Image.html | 51 +++++ documentation/Fl_Image.html | 438 ++++++++++++++++++++++++++----------- documentation/Fl_JPEG_Image.html | 51 +++++ documentation/Fl_PNG_Image.html | 51 +++++ documentation/Fl_PNM_Image.html | 51 +++++ documentation/Fl_Pixmap.html | 51 +++++ documentation/Fl_RGB_Image.html | 51 +++++ documentation/Fl_Shared_Image.html | 51 +++++ documentation/Fl_Text_Buffer.html | 336 ++++++++++++++++++++++++++++ documentation/Fl_Text_Display.html | 336 ++++++++++++++++++++++++++++ documentation/Fl_Text_Editor.html | 336 ++++++++++++++++++++++++++++ documentation/Fl_Tiled_Image.html | 51 +++++ documentation/Fl_XBM_Image.html | 51 +++++ documentation/Fl_XPM_Image.html | 51 +++++ documentation/Makefile | 173 ++++++++------- documentation/fltk.book | 14 +- 18 files changed, 2046 insertions(+), 199 deletions(-) create mode 100644 documentation/Fl.html create mode 100644 documentation/Fl_Bitmap.html create mode 100644 documentation/Fl_GIF_Image.html create mode 100644 documentation/Fl_JPEG_Image.html create mode 100644 documentation/Fl_PNG_Image.html create mode 100644 documentation/Fl_PNM_Image.html create mode 100644 documentation/Fl_Pixmap.html create mode 100644 documentation/Fl_RGB_Image.html create mode 100644 documentation/Fl_Shared_Image.html create mode 100644 documentation/Fl_Text_Buffer.html create mode 100644 documentation/Fl_Text_Display.html create mode 100644 documentation/Fl_Text_Editor.html create mode 100644 documentation/Fl_Tiled_Image.html create mode 100644 documentation/Fl_XBM_Image.html create mode 100644 documentation/Fl_XPM_Image.html (limited to 'documentation') diff --git a/documentation/Fl.html b/documentation/Fl.html new file mode 100644 index 000000000..010fcc73a --- /dev/null +++ b/documentation/Fl.html @@ -0,0 +1,51 @@ + + + + + +

class Fl_Bitmap

+
+ +

Class Hierarchy

+ + + +

Include Files

+ + + +

Description

+ +

The Fl_Bitmap class supports caching and drawing of mono-color +(bitmap) images. Images are drawn using the current color.

+ +

Methods

+ + + +

Fl_Bitmap::Fl_Bitmap(const char *array, int W, int H);
+Fl_Bitmap::Fl_Bitmap(const unsigned char *array, int W, int H);

+ +

The constructors create a new bitmap from the specified bitmap data.

+ +

Fl_Bitmap::~Fl_Bitmap();

+ +

The destructor free all memory and server resources that are used by +the bitmap.

+ + + diff --git a/documentation/Fl_Bitmap.html b/documentation/Fl_Bitmap.html new file mode 100644 index 000000000..010fcc73a --- /dev/null +++ b/documentation/Fl_Bitmap.html @@ -0,0 +1,51 @@ + + + + + +

class Fl_Bitmap

+
+ +

Class Hierarchy

+ + + +

Include Files

+ + + +

Description

+ +

The Fl_Bitmap class supports caching and drawing of mono-color +(bitmap) images. Images are drawn using the current color.

+ +

Methods

+ + + +

Fl_Bitmap::Fl_Bitmap(const char *array, int W, int H);
+Fl_Bitmap::Fl_Bitmap(const unsigned char *array, int W, int H);

+ +

The constructors create a new bitmap from the specified bitmap data.

+ +

Fl_Bitmap::~Fl_Bitmap();

+ +

The destructor free all memory and server resources that are used by +the bitmap.

+ + + diff --git a/documentation/Fl_GIF_Image.html b/documentation/Fl_GIF_Image.html new file mode 100644 index 000000000..010fcc73a --- /dev/null +++ b/documentation/Fl_GIF_Image.html @@ -0,0 +1,51 @@ + + + + + +

class Fl_Bitmap

+
+ +

Class Hierarchy

+ + + +

Include Files

+ + + +

Description

+ +

The Fl_Bitmap class supports caching and drawing of mono-color +(bitmap) images. Images are drawn using the current color.

+ +

Methods

+ + + +

Fl_Bitmap::Fl_Bitmap(const char *array, int W, int H);
+Fl_Bitmap::Fl_Bitmap(const unsigned char *array, int W, int H);

+ +

The constructors create a new bitmap from the specified bitmap data.

+ +

Fl_Bitmap::~Fl_Bitmap();

+ +

The destructor free all memory and server resources that are used by +the bitmap.

+ + + diff --git a/documentation/Fl_Image.html b/documentation/Fl_Image.html index 1287a6113..e0b27db16 100644 --- a/documentation/Fl_Image.html +++ b/documentation/Fl_Image.html @@ -1,142 +1,336 @@ -Fl_Image - -

class Fl_Image

- -This class holds an image, normally used to label a widget. The -subclasses define how the data is interpreted, and usually store -server-side cached versions of the image. All the current types -define pixel arrays, but other types of images, such as vector -graphics, can be defined. + +
+

class Fl_Input

+
+

Class Hierarchy

+ +

Include Files

+ +

Description

+

This is the FLTK text input widget. It displays a single line of text +and lets the user edit it. Normally it is drawn with an inset box and +a white background. The text may contain any characters (even 0), and +will correctly display anything, using ^X notation for unprintable +control characters and \nnn notation for unprintable characters with +the high bit set. It assumes the font can draw any characters in the +ISO-8859-1 character set. -

Methods

+
-

ulong id, mask;
-void _draw(int X, int Y, int W, int H, int cx, int cy);

+ -Subclasses may use these protected members of the base class to -draw a cached pixel array. They must first set id and -mask to the color and transparency offscreen windows, using -system-specific code. Then they can call _draw() to draw -them. + -

int w,h

+ -These members hold the width and height of the image. They are not -correct until measure() is called. These are public instance -variables for back comptability, but you should never set them. + + + + + + + + + + + + + + + + -

virtual void Fl_Image::measure(int W, int H);

+
Mouse button 1Moves the cursor to + this point. Drag selects characters. Double click selects words. + Triple click selects all text. Shift+click extends the selection. + When you select text it is automatically copied to the clipboard. +
Mouse button 2Insert the clipboard at +the point clicked. You can also select a region and replace it with the +clipboard by selecting the region with mouse button 2. +
Mouse button 3Currently acts like button 1.
BackspaceDeletes one character to the left, or +deletes the selected region.
EnterMay cause the callback, see when().
^A or HomeGo to start of line.
^B or LeftMove left
^CCopy the selection to the clipboard
^D or DeleteDeletes one character to the right +or deletes the selected region.
^E or EndGo to the end of line.
^F or RightMove right
^KDelete to the end of line (next \n character) +or deletes a single \n character. These deletions are all concatenated +into the clipboard.
^N or DownMove down (for Fl_Multiline_Input +only, otherwise it moves to the next input field).
^P or UpMove up (for Fl_Multiline_Input only, +otherwise it moves to the previous input field).
^UDelete everything.
^V or ^YPaste the clipboard
^X or ^WCopy the region to the clipboard and +delete it.
^Z or ^_Undo. This is a single-level undo +mechanism, but all adjacent deletions and insertions are concatenated +into a single "undo". Often this will undo a lot more than you +expected.
Shift+moveMove the cursor but also extend the +selection.
RightCtrl or +
Compose
Start +a compose-character +sequence. The next one or two keys typed define the character to +insert (see table that follows.) -Measure how big the image will be if it is drawn inside a W,H -rectangle and put the result into w,h. For most image types this does -nothing and w,h are set by the constructor. This may be used to -initialize the scaling for variable-sized images. +

For instance, to type "á" type [compose][a]['] or [compose]['][a]. -

virtual void Fl_Image::draw(int x,int y,int w,int h, int cx,int -cy);

+

The character "nbsp" (non-breaking space) is typed by using +[compose][space]. -Draw the image so the point cx,cy of the image is at -x,y. The image may be scaled or clipped to fit in the w,h -rectangle, but this is not necessary (although obeying the current -fl_clip value is!). +

The single-character sequences may be followed by a space if +necessary to remove ambiguity. For instance, if you really want to +type "ª~" rather than "ã" you must type [compose][a][space][~]. -

void Fl_Image::draw(int x,int y,int w,int h, Fl_Flags align);

+

The same key may be used to "quote" control characters into the +text. If you need a ^Q character you can get one by typing +[compose][Control+Q]. -This non-virtual function uses measure() and the -align flags to figure out cx,cy and call the normal draw -function. This allows you to center or align any edge of the image -with a bounding box. +

X may have a key on the keyboard +defined as XK_Multi_key. If so this key may be used as well +as the right-hand control key. You can set this up with the program +xmodmap. -

virtual Fl_Image::~Fl_Image();

+

If your keyboard is set to support a foreign language you should +also be able to type "dead key" prefix characters. On X you will +actually be able to see what dead key you typed, and if you then move +the cursor without completing the sequence the accent will remain +inserted. +

-The destructor throws away any server-cached information, but in most -cases does not destroy the local data passed to a constructor. + +
+ + + + + + + + -

class Fl_Bitmap : public Fl_Image

- This object encapsulates the width, height, and bits of an X bitmap -(XBM), and allows you to make an Fl_Widget use a bitmap as a -label, or to just draw the bitmap directly. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Character Composition Table
KeysCharKeysCharKeysCharKeysCharKeysCharKeysChar
spnbsp*°` AÀD -Ð` aàd -ð +
!¡+ -±' AÁ~ NÑ' aá~ nñ +
%¢2²A ^Â` OÒ^ aâ` oò +
#£3³~ AÃ' OÓ~ aã' oó +
$¤'´: AÄ^ OÔ: aä^ oô +
y =¥uµ* AÅ~ OÕ* aå~ oõ +
|¦pA EÆ: OÖa eæ: oö +
&§.·, CÇx×, cç- :÷ +
:¨,¸E `ÈO /Ø` eèo /ø +
c©1¹' EÉ` UÙ' eé` uù +
aªoº^ EÊ' UÚ^ eê' uú +
< <«> >»: EË^ UÛ: eë^ uû +
~¬1 4¼` IÌ: UÜ` iì: uü +
-­1 2½' IÍ' YÝ' ií' yý +
r®3 4¾^ IÎT HÞ^ iît hþ +
_¯?¿: IÏs sß: iï: yÿ +
-

Fl_Bitmap(const char *bits, int W, int H) -
Fl_Bitmap(const uchar *bits, int W, int H)

-Construct using an X bitmap. The bits pointer is simply copied to the -object, so it must point at persistent storage. The two constructors -are provided because various X implementations disagree about the type -of bitmap data. To use an XBM file use: +

Methods

+
+ + +
-

~Fl_Bitmap()

- The destructor will destroy any X pixmap created. It does not do -anything to the bits data. -

void draw(int x, int y, int w, int h, int ox = 0, int oy = 0)

-1 bits are drawn with the current color, 0 bits -are unchanged. -The image is clipped to the destination rectangle: the area -ox,oy,w,h is copied to x,y,w,h. -

void draw(int x, int y)

-Draws the bitmap with the upper-left corner at x,y. This is -the same as doing draw(x,y,this->w,this->h,0,0). - -

class Fl_Pixmap : public Fl_Image

- -This object encapsulates the data from an XPM image, and allows you to -make an Fl_Widget use a pixmap as a label, or to just draw -the pixmap directly. - -

Fl_Pixmap(char *const* data)

- Construct using XPM data. The data pointer is simply copied to the -object, so it must point at persistent storage. To use an XPM file do: +
    -
    -#include <fltk/Fl_Pixmap.h>
    -#include "foo.xpm"
    -...
    -Fl_Pixmap pixmap = new Fl_Pixmap(foo);
    -
    +
  • index
  • +
  • size
  • +
+
+ + + + + +
+
+

Fl_Input::Fl_Input(int x, int y, int w, +int h, const char *label = 0)

+ Creates a new Fl_Input widget using the given position, size, +and label string. The default boxtype is FL_DOWN_BOX. +

virtual Fl_Input::~Fl_Input()

+ Destroys the widget and any value associated with it. +

const char *Fl_Input::value() const +
int Fl_Input::value(const char*) +
int Fl_Input::value(const char*, int)

+ The first form returns the current value, which is a pointer to the +internal buffer and is valid only until the next event is handled. +

The second two forms change the text and set the mark and the point +to the end of it. The string is copied to the internal buffer. Passing +NULL is the same as "". This returns non-zero if the new value is +different than the current one. You can use the second version to +directly set the length if you know it already or want to put nul's in +the text.

+

int Fl_Input::static_value(const +char*) +
int Fl_Input::static_value(const char*, int)

+ Change the text and set the mark and the point to the end of it. The +string is not copied. If the user edits the string it is copied +to the internal buffer then. This can save a great deal of time and +memory if your program is rapidly changing the values of text fields, +but this will only work if the passed string remains unchanged until +either the Fl_Input is destroyed or value() is called +again. +

int Fl_Input::size() const

+ Returns the number of characters in value(). This may be +greater than strlen(value()) if there are nul characters in +it. +

char Fl_Input::index(int) const

+ Same as value()[n], but may be faster in plausible +implementations. No bounds checking is done. +

Fl_When Fl_Widget::when() const +
void Fl_Widget::when(Fl_When)

+ Controls when callbacks are done. The following values are useful, +the default value is FL_WHEN_RELEASE: + -

~Fl_Pixmap()

- The destructor will destroy any X pixmap created. It does not do -anything to the data. - -

void draw(int x, int y, int w, int h, int ox = 0, int oy = 0)

-The image is clipped to the destination rectangle: the area -ox,oy,w,h is copied to x,y,w,h. The current -implementation converts the pixmap to 24-bit RGB data and uses fl_draw_image() to draw it. Thus you -will get dithered colors on an 8 bit screen.

- -

void draw(int x, int y)

- Draws the image with the upper-left corner at x,y. This is -the same as doing draw(x,y,this->w,this->h,0,0). - -

class Fl_RGB_Image

- -This object encapsulates a full-color RGB image, and allows you to -make an Fl_Widget use an image as a label, or to just draw the -image directly. - -

Fl_RGB_Image(const uchar *data, int W, int H, int D = 3, int LD = 0)

- Construct using a pointer to RGB data. W and H are -the size of the image in pixels. D is the delta between pixels -(it may be more than 3 to skip alpha or other data, or negative to flip -the image left/right). LD is the delta between lines (it may -be more than D * W to crop images, or negative to flip the -image vertically). The data pointer is simply copied to the object, so -it must point at persistent storage. -

~Fl_RGB_Image()

- The destructor will destroy any X pixmap created. It does not do -anything to the data. -

void draw(int x, int y, int w, int h, int ox = 0, int oy = 0)

-The image is clipped to the destination rectangle: the area -ox,oy,w,h is copied to x,y,w,h. -

void draw(int x, int y)

- Draws the image with the upper-left corner at x,y. This is -the same as doing draw(x,y,this->w,this->h,0,0). - - +

Fl_Color Fl_Input::textcolor() const +
void Fl_Input::textcolor(Fl_Color)

+ Gets or sets the color of the text in the input field. +

Fl_Font Fl_Input::textfont() const +
void Fl_Input::textfont(Fl_Font)

+ Gets or sets the font of the text in the input field. +

uchar Fl_Input::textsize() const +
void Fl_Input::textsize(uchar)

+ Gets or sets the size of the text in the input field. +

Fl_Color Fl_Input::cursor_color() +const +
void Fl_Input::cursor_color(Fl_Color)

+ Get or set the color of the cursor. This is black by default. + diff --git a/documentation/Fl_JPEG_Image.html b/documentation/Fl_JPEG_Image.html new file mode 100644 index 000000000..010fcc73a --- /dev/null +++ b/documentation/Fl_JPEG_Image.html @@ -0,0 +1,51 @@ + + + + + +

class Fl_Bitmap

+
+ +

Class Hierarchy

+ + + +

Include Files

+ + + +

Description

+ +

The Fl_Bitmap class supports caching and drawing of mono-color +(bitmap) images. Images are drawn using the current color.

+ +

Methods

+ + + +

Fl_Bitmap::Fl_Bitmap(const char *array, int W, int H);
+Fl_Bitmap::Fl_Bitmap(const unsigned char *array, int W, int H);

+ +

The constructors create a new bitmap from the specified bitmap data.

+ +

Fl_Bitmap::~Fl_Bitmap();

+ +

The destructor free all memory and server resources that are used by +the bitmap.

+ + + diff --git a/documentation/Fl_PNG_Image.html b/documentation/Fl_PNG_Image.html new file mode 100644 index 000000000..010fcc73a --- /dev/null +++ b/documentation/Fl_PNG_Image.html @@ -0,0 +1,51 @@ + + + + + +

class Fl_Bitmap

+
+ +

Class Hierarchy

+ + + +

Include Files

+ + + +

Description

+ +

The Fl_Bitmap class supports caching and drawing of mono-color +(bitmap) images. Images are drawn using the current color.

+ +

Methods

+ + + +

Fl_Bitmap::Fl_Bitmap(const char *array, int W, int H);
+Fl_Bitmap::Fl_Bitmap(const unsigned char *array, int W, int H);

+ +

The constructors create a new bitmap from the specified bitmap data.

+ +

Fl_Bitmap::~Fl_Bitmap();

+ +

The destructor free all memory and server resources that are used by +the bitmap.

+ + + diff --git a/documentation/Fl_PNM_Image.html b/documentation/Fl_PNM_Image.html new file mode 100644 index 000000000..010fcc73a --- /dev/null +++ b/documentation/Fl_PNM_Image.html @@ -0,0 +1,51 @@ + + + + + +

class Fl_Bitmap

+
+ +

Class Hierarchy

+ + + +

Include Files

+ + + +

Description

+ +

The Fl_Bitmap class supports caching and drawing of mono-color +(bitmap) images. Images are drawn using the current color.

+ +

Methods

+ + + +

Fl_Bitmap::Fl_Bitmap(const char *array, int W, int H);
+Fl_Bitmap::Fl_Bitmap(const unsigned char *array, int W, int H);

+ +

The constructors create a new bitmap from the specified bitmap data.

+ +

Fl_Bitmap::~Fl_Bitmap();

+ +

The destructor free all memory and server resources that are used by +the bitmap.

+ + + diff --git a/documentation/Fl_Pixmap.html b/documentation/Fl_Pixmap.html new file mode 100644 index 000000000..010fcc73a --- /dev/null +++ b/documentation/Fl_Pixmap.html @@ -0,0 +1,51 @@ + + + + + +

class Fl_Bitmap

+
+ +

Class Hierarchy

+ + + +

Include Files

+ + + +

Description

+ +

The Fl_Bitmap class supports caching and drawing of mono-color +(bitmap) images. Images are drawn using the current color.

+ +

Methods

+ + + +

Fl_Bitmap::Fl_Bitmap(const char *array, int W, int H);
+Fl_Bitmap::Fl_Bitmap(const unsigned char *array, int W, int H);

+ +

The constructors create a new bitmap from the specified bitmap data.

+ +

Fl_Bitmap::~Fl_Bitmap();

+ +

The destructor free all memory and server resources that are used by +the bitmap.

+ + + diff --git a/documentation/Fl_RGB_Image.html b/documentation/Fl_RGB_Image.html new file mode 100644 index 000000000..010fcc73a --- /dev/null +++ b/documentation/Fl_RGB_Image.html @@ -0,0 +1,51 @@ + + + + + +

class Fl_Bitmap

+
+ +

Class Hierarchy

+ + + +

Include Files

+ + + +

Description

+ +

The Fl_Bitmap class supports caching and drawing of mono-color +(bitmap) images. Images are drawn using the current color.

+ +

Methods

+ + + +

Fl_Bitmap::Fl_Bitmap(const char *array, int W, int H);
+Fl_Bitmap::Fl_Bitmap(const unsigned char *array, int W, int H);

+ +

The constructors create a new bitmap from the specified bitmap data.

+ +

Fl_Bitmap::~Fl_Bitmap();

+ +

The destructor free all memory and server resources that are used by +the bitmap.

+ + + diff --git a/documentation/Fl_Shared_Image.html b/documentation/Fl_Shared_Image.html new file mode 100644 index 000000000..010fcc73a --- /dev/null +++ b/documentation/Fl_Shared_Image.html @@ -0,0 +1,51 @@ + + + + + +

class Fl_Bitmap

+
+ +

Class Hierarchy

+ + + +

Include Files

+ + + +

Description

+ +

The Fl_Bitmap class supports caching and drawing of mono-color +(bitmap) images. Images are drawn using the current color.

+ +

Methods

+ + + +

Fl_Bitmap::Fl_Bitmap(const char *array, int W, int H);
+Fl_Bitmap::Fl_Bitmap(const unsigned char *array, int W, int H);

+ +

The constructors create a new bitmap from the specified bitmap data.

+ +

Fl_Bitmap::~Fl_Bitmap();

+ +

The destructor free all memory and server resources that are used by +the bitmap.

+ + + diff --git a/documentation/Fl_Text_Buffer.html b/documentation/Fl_Text_Buffer.html new file mode 100644 index 000000000..e0b27db16 --- /dev/null +++ b/documentation/Fl_Text_Buffer.html @@ -0,0 +1,336 @@ + +
+

class Fl_Input

+
+

Class Hierarchy

+ +

Include Files

+ +

Description

+

This is the FLTK text input widget. It displays a single line of text +and lets the user edit it. Normally it is drawn with an inset box and +a white background. The text may contain any characters (even 0), and +will correctly display anything, using ^X notation for unprintable +control characters and \nnn notation for unprintable characters with +the high bit set. It assumes the font can draw any characters in the +ISO-8859-1 character set. + +

+ + + + + + + + + + + + + + + + + + + + + + + + +
Mouse button 1Moves the cursor to + this point. Drag selects characters. Double click selects words. + Triple click selects all text. Shift+click extends the selection. + When you select text it is automatically copied to the clipboard. +
Mouse button 2Insert the clipboard at +the point clicked. You can also select a region and replace it with the +clipboard by selecting the region with mouse button 2. +
Mouse button 3Currently acts like button 1.
BackspaceDeletes one character to the left, or +deletes the selected region.
EnterMay cause the callback, see when().
^A or HomeGo to start of line.
^B or LeftMove left
^CCopy the selection to the clipboard
^D or DeleteDeletes one character to the right +or deletes the selected region.
^E or EndGo to the end of line.
^F or RightMove right
^KDelete to the end of line (next \n character) +or deletes a single \n character. These deletions are all concatenated +into the clipboard.
^N or DownMove down (for Fl_Multiline_Input +only, otherwise it moves to the next input field).
^P or UpMove up (for Fl_Multiline_Input only, +otherwise it moves to the previous input field).
^UDelete everything.
^V or ^YPaste the clipboard
^X or ^WCopy the region to the clipboard and +delete it.
^Z or ^_Undo. This is a single-level undo +mechanism, but all adjacent deletions and insertions are concatenated +into a single "undo". Often this will undo a lot more than you +expected.
Shift+moveMove the cursor but also extend the +selection.
RightCtrl or +
Compose
Start +a compose-character +sequence. The next one or two keys typed define the character to +insert (see table that follows.) + +

For instance, to type "á" type [compose][a]['] or [compose]['][a]. + +

The character "nbsp" (non-breaking space) is typed by using +[compose][space]. + +

The single-character sequences may be followed by a space if +necessary to remove ambiguity. For instance, if you really want to +type "ª~" rather than "ã" you must type [compose][a][space][~]. + +

The same key may be used to "quote" control characters into the +text. If you need a ^Q character you can get one by typing +[compose][Control+Q]. + +

X may have a key on the keyboard +defined as XK_Multi_key. If so this key may be used as well +as the right-hand control key. You can set this up with the program +xmodmap. + +

If your keyboard is set to support a foreign language you should +also be able to type "dead key" prefix characters. On X you will +actually be able to see what dead key you typed, and if you then move +the cursor without completing the sequence the accent will remain +inserted. +

+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Character Composition Table
KeysCharKeysCharKeysCharKeysCharKeysCharKeysChar
spnbsp*°` AÀD -Ð` aàd -ð +
!¡+ -±' AÁ~ NÑ' aá~ nñ +
%¢2²A ^Â` OÒ^ aâ` oò +
#£3³~ AÃ' OÓ~ aã' oó +
$¤'´: AÄ^ OÔ: aä^ oô +
y =¥uµ* AÅ~ OÕ* aå~ oõ +
|¦pA EÆ: OÖa eæ: oö +
&§.·, CÇx×, cç- :÷ +
:¨,¸E `ÈO /Ø` eèo /ø +
c©1¹' EÉ` UÙ' eé` uù +
aªoº^ EÊ' UÚ^ eê' uú +
< <«> >»: EË^ UÛ: eë^ uû +
~¬1 4¼` IÌ: UÜ` iì: uü +
-­1 2½' IÍ' YÝ' ií' yý +
r®3 4¾^ IÎT HÞ^ iît hþ +
_¯?¿: IÏs sß: iï: yÿ +
+ +

Methods

+
+ + +
+ + + + + + + + + +
+
+

Fl_Input::Fl_Input(int x, int y, int w, +int h, const char *label = 0)

+ Creates a new Fl_Input widget using the given position, size, +and label string. The default boxtype is FL_DOWN_BOX. +

virtual Fl_Input::~Fl_Input()

+ Destroys the widget and any value associated with it. +

const char *Fl_Input::value() const +
int Fl_Input::value(const char*) +
int Fl_Input::value(const char*, int)

+ The first form returns the current value, which is a pointer to the +internal buffer and is valid only until the next event is handled. +

The second two forms change the text and set the mark and the point +to the end of it. The string is copied to the internal buffer. Passing +NULL is the same as "". This returns non-zero if the new value is +different than the current one. You can use the second version to +directly set the length if you know it already or want to put nul's in +the text.

+

int Fl_Input::static_value(const +char*) +
int Fl_Input::static_value(const char*, int)

+ Change the text and set the mark and the point to the end of it. The +string is not copied. If the user edits the string it is copied +to the internal buffer then. This can save a great deal of time and +memory if your program is rapidly changing the values of text fields, +but this will only work if the passed string remains unchanged until +either the Fl_Input is destroyed or value() is called +again. +

int Fl_Input::size() const

+ Returns the number of characters in value(). This may be +greater than strlen(value()) if there are nul characters in +it. +

char Fl_Input::index(int) const

+ Same as value()[n], but may be faster in plausible +implementations. No bounds checking is done. +

Fl_When Fl_Widget::when() const +
void Fl_Widget::when(Fl_When)

+ Controls when callbacks are done. The following values are useful, +the default value is FL_WHEN_RELEASE: + +

Fl_Color Fl_Input::textcolor() const +
void Fl_Input::textcolor(Fl_Color)

+ Gets or sets the color of the text in the input field. +

Fl_Font Fl_Input::textfont() const +
void Fl_Input::textfont(Fl_Font)

+ Gets or sets the font of the text in the input field. +

uchar Fl_Input::textsize() const +
void Fl_Input::textsize(uchar)

+ Gets or sets the size of the text in the input field. +

Fl_Color Fl_Input::cursor_color() +const +
void Fl_Input::cursor_color(Fl_Color)

+ Get or set the color of the cursor. This is black by default. + + diff --git a/documentation/Fl_Text_Display.html b/documentation/Fl_Text_Display.html new file mode 100644 index 000000000..e0b27db16 --- /dev/null +++ b/documentation/Fl_Text_Display.html @@ -0,0 +1,336 @@ + +
+

class Fl_Input

+
+

Class Hierarchy

+ +

Include Files

+ +

Description

+

This is the FLTK text input widget. It displays a single line of text +and lets the user edit it. Normally it is drawn with an inset box and +a white background. The text may contain any characters (even 0), and +will correctly display anything, using ^X notation for unprintable +control characters and \nnn notation for unprintable characters with +the high bit set. It assumes the font can draw any characters in the +ISO-8859-1 character set. + +

+ + + + + + + + + + + + + + + + + + + + + + + + +
Mouse button 1Moves the cursor to + this point. Drag selects characters. Double click selects words. + Triple click selects all text. Shift+click extends the selection. + When you select text it is automatically copied to the clipboard. +
Mouse button 2Insert the clipboard at +the point clicked. You can also select a region and replace it with the +clipboard by selecting the region with mouse button 2. +
Mouse button 3Currently acts like button 1.
BackspaceDeletes one character to the left, or +deletes the selected region.
EnterMay cause the callback, see when().
^A or HomeGo to start of line.
^B or LeftMove left
^CCopy the selection to the clipboard
^D or DeleteDeletes one character to the right +or deletes the selected region.
^E or EndGo to the end of line.
^F or RightMove right
^KDelete to the end of line (next \n character) +or deletes a single \n character. These deletions are all concatenated +into the clipboard.
^N or DownMove down (for Fl_Multiline_Input +only, otherwise it moves to the next input field).
^P or UpMove up (for Fl_Multiline_Input only, +otherwise it moves to the previous input field).
^UDelete everything.
^V or ^YPaste the clipboard
^X or ^WCopy the region to the clipboard and +delete it.
^Z or ^_Undo. This is a single-level undo +mechanism, but all adjacent deletions and insertions are concatenated +into a single "undo". Often this will undo a lot more than you +expected.
Shift+moveMove the cursor but also extend the +selection.
RightCtrl or +
Compose
Start +a compose-character +sequence. The next one or two keys typed define the character to +insert (see table that follows.) + +

For instance, to type "á" type [compose][a]['] or [compose]['][a]. + +

The character "nbsp" (non-breaking space) is typed by using +[compose][space]. + +

The single-character sequences may be followed by a space if +necessary to remove ambiguity. For instance, if you really want to +type "ª~" rather than "ã" you must type [compose][a][space][~]. + +

The same key may be used to "quote" control characters into the +text. If you need a ^Q character you can get one by typing +[compose][Control+Q]. + +

X may have a key on the keyboard +defined as XK_Multi_key. If so this key may be used as well +as the right-hand control key. You can set this up with the program +xmodmap. + +

If your keyboard is set to support a foreign language you should +also be able to type "dead key" prefix characters. On X you will +actually be able to see what dead key you typed, and if you then move +the cursor without completing the sequence the accent will remain +inserted. +

+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Character Composition Table
KeysCharKeysCharKeysCharKeysCharKeysCharKeysChar
spnbsp*°` AÀD -Ð` aàd -ð +
!¡+ -±' AÁ~ NÑ' aá~ nñ +
%¢2²A ^Â` OÒ^ aâ` oò +
#£3³~ AÃ' OÓ~ aã' oó +
$¤'´: AÄ^ OÔ: aä^ oô +
y =¥uµ* AÅ~ OÕ* aå~ oõ +
|¦pA EÆ: OÖa eæ: oö +
&§.·, CÇx×, cç- :÷ +
:¨,¸E `ÈO /Ø` eèo /ø +
c©1¹' EÉ` UÙ' eé` uù +
aªoº^ EÊ' UÚ^ eê' uú +
< <«> >»: EË^ UÛ: eë^ uû +
~¬1 4¼` IÌ: UÜ` iì: uü +
-­1 2½' IÍ' YÝ' ií' yý +
r®3 4¾^ IÎT HÞ^ iît hþ +
_¯?¿: IÏs sß: iï: yÿ +
+ +

Methods

+
+ + +
+ + + + + + + + + +
+
+

Fl_Input::Fl_Input(int x, int y, int w, +int h, const char *label = 0)

+ Creates a new Fl_Input widget using the given position, size, +and label string. The default boxtype is FL_DOWN_BOX. +

virtual Fl_Input::~Fl_Input()

+ Destroys the widget and any value associated with it. +

const char *Fl_Input::value() const +
int Fl_Input::value(const char*) +
int Fl_Input::value(const char*, int)

+ The first form returns the current value, which is a pointer to the +internal buffer and is valid only until the next event is handled. +

The second two forms change the text and set the mark and the point +to the end of it. The string is copied to the internal buffer. Passing +NULL is the same as "". This returns non-zero if the new value is +different than the current one. You can use the second version to +directly set the length if you know it already or want to put nul's in +the text.

+

int Fl_Input::static_value(const +char*) +
int Fl_Input::static_value(const char*, int)

+ Change the text and set the mark and the point to the end of it. The +string is not copied. If the user edits the string it is copied +to the internal buffer then. This can save a great deal of time and +memory if your program is rapidly changing the values of text fields, +but this will only work if the passed string remains unchanged until +either the Fl_Input is destroyed or value() is called +again. +

int Fl_Input::size() const

+ Returns the number of characters in value(). This may be +greater than strlen(value()) if there are nul characters in +it. +

char Fl_Input::index(int) const

+ Same as value()[n], but may be faster in plausible +implementations. No bounds checking is done. +

Fl_When Fl_Widget::when() const +
void Fl_Widget::when(Fl_When)

+ Controls when callbacks are done. The following values are useful, +the default value is FL_WHEN_RELEASE: + +

Fl_Color Fl_Input::textcolor() const +
void Fl_Input::textcolor(Fl_Color)

+ Gets or sets the color of the text in the input field. +

Fl_Font Fl_Input::textfont() const +
void Fl_Input::textfont(Fl_Font)

+ Gets or sets the font of the text in the input field. +

uchar Fl_Input::textsize() const +
void Fl_Input::textsize(uchar)

+ Gets or sets the size of the text in the input field. +

Fl_Color Fl_Input::cursor_color() +const +
void Fl_Input::cursor_color(Fl_Color)

+ Get or set the color of the cursor. This is black by default. + + diff --git a/documentation/Fl_Text_Editor.html b/documentation/Fl_Text_Editor.html new file mode 100644 index 000000000..e0b27db16 --- /dev/null +++ b/documentation/Fl_Text_Editor.html @@ -0,0 +1,336 @@ + +
+

class Fl_Input

+
+

Class Hierarchy

+ +

Include Files

+ +

Description

+

This is the FLTK text input widget. It displays a single line of text +and lets the user edit it. Normally it is drawn with an inset box and +a white background. The text may contain any characters (even 0), and +will correctly display anything, using ^X notation for unprintable +control characters and \nnn notation for unprintable characters with +the high bit set. It assumes the font can draw any characters in the +ISO-8859-1 character set. + +

+ + + + + + + + + + + + + + + + + + + + + + + + +
Mouse button 1Moves the cursor to + this point. Drag selects characters. Double click selects words. + Triple click selects all text. Shift+click extends the selection. + When you select text it is automatically copied to the clipboard. +
Mouse button 2Insert the clipboard at +the point clicked. You can also select a region and replace it with the +clipboard by selecting the region with mouse button 2. +
Mouse button 3Currently acts like button 1.
BackspaceDeletes one character to the left, or +deletes the selected region.
EnterMay cause the callback, see when().
^A or HomeGo to start of line.
^B or LeftMove left
^CCopy the selection to the clipboard
^D or DeleteDeletes one character to the right +or deletes the selected region.
^E or EndGo to the end of line.
^F or RightMove right
^KDelete to the end of line (next \n character) +or deletes a single \n character. These deletions are all concatenated +into the clipboard.
^N or DownMove down (for Fl_Multiline_Input +only, otherwise it moves to the next input field).
^P or UpMove up (for Fl_Multiline_Input only, +otherwise it moves to the previous input field).
^UDelete everything.
^V or ^YPaste the clipboard
^X or ^WCopy the region to the clipboard and +delete it.
^Z or ^_Undo. This is a single-level undo +mechanism, but all adjacent deletions and insertions are concatenated +into a single "undo". Often this will undo a lot more than you +expected.
Shift+moveMove the cursor but also extend the +selection.
RightCtrl or +
Compose
Start +a compose-character +sequence. The next one or two keys typed define the character to +insert (see table that follows.) + +

For instance, to type "á" type [compose][a]['] or [compose]['][a]. + +

The character "nbsp" (non-breaking space) is typed by using +[compose][space]. + +

The single-character sequences may be followed by a space if +necessary to remove ambiguity. For instance, if you really want to +type "ª~" rather than "ã" you must type [compose][a][space][~]. + +

The same key may be used to "quote" control characters into the +text. If you need a ^Q character you can get one by typing +[compose][Control+Q]. + +

X may have a key on the keyboard +defined as XK_Multi_key. If so this key may be used as well +as the right-hand control key. You can set this up with the program +xmodmap. + +

If your keyboard is set to support a foreign language you should +also be able to type "dead key" prefix characters. On X you will +actually be able to see what dead key you typed, and if you then move +the cursor without completing the sequence the accent will remain +inserted. +

+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Character Composition Table
KeysCharKeysCharKeysCharKeysCharKeysCharKeysChar
spnbsp*°` AÀD -Ð` aàd -ð +
!¡+ -±' AÁ~ NÑ' aá~ nñ +
%¢2²A ^Â` OÒ^ aâ` oò +
#£3³~ AÃ' OÓ~ aã' oó +
$¤'´: AÄ^ OÔ: aä^ oô +
y =¥uµ* AÅ~ OÕ* aå~ oõ +
|¦pA EÆ: OÖa eæ: oö +
&§.·, CÇx×, cç- :÷ +
:¨,¸E `ÈO /Ø` eèo /ø +
c©1¹' EÉ` UÙ' eé` uù +
aªoº^ EÊ' UÚ^ eê' uú +
< <«> >»: EË^ UÛ: eë^ uû +
~¬1 4¼` IÌ: UÜ` iì: uü +
-­1 2½' IÍ' YÝ' ií' yý +
r®3 4¾^ IÎT HÞ^ iît hþ +
_¯?¿: IÏs sß: iï: yÿ +
+ +

Methods

+
+ + +
+ + + + + + + + + +
+
+

Fl_Input::Fl_Input(int x, int y, int w, +int h, const char *label = 0)

+ Creates a new Fl_Input widget using the given position, size, +and label string. The default boxtype is FL_DOWN_BOX. +

virtual Fl_Input::~Fl_Input()

+ Destroys the widget and any value associated with it. +

const char *Fl_Input::value() const +
int Fl_Input::value(const char*) +
int Fl_Input::value(const char*, int)

+ The first form returns the current value, which is a pointer to the +internal buffer and is valid only until the next event is handled. +

The second two forms change the text and set the mark and the point +to the end of it. The string is copied to the internal buffer. Passing +NULL is the same as "". This returns non-zero if the new value is +different than the current one. You can use the second version to +directly set the length if you know it already or want to put nul's in +the text.

+

int Fl_Input::static_value(const +char*) +
int Fl_Input::static_value(const char*, int)

+ Change the text and set the mark and the point to the end of it. The +string is not copied. If the user edits the string it is copied +to the internal buffer then. This can save a great deal of time and +memory if your program is rapidly changing the values of text fields, +but this will only work if the passed string remains unchanged until +either the Fl_Input is destroyed or value() is called +again. +

int Fl_Input::size() const

+ Returns the number of characters in value(). This may be +greater than strlen(value()) if there are nul characters in +it. +

char Fl_Input::index(int) const

+ Same as value()[n], but may be faster in plausible +implementations. No bounds checking is done. +

Fl_When Fl_Widget::when() const +
void Fl_Widget::when(Fl_When)

+ Controls when callbacks are done. The following values are useful, +the default value is FL_WHEN_RELEASE: + +

Fl_Color Fl_Input::textcolor() const +
void Fl_Input::textcolor(Fl_Color)

+ Gets or sets the color of the text in the input field. +

Fl_Font Fl_Input::textfont() const +
void Fl_Input::textfont(Fl_Font)

+ Gets or sets the font of the text in the input field. +

uchar Fl_Input::textsize() const +
void Fl_Input::textsize(uchar)

+ Gets or sets the size of the text in the input field. +

Fl_Color Fl_Input::cursor_color() +const +
void Fl_Input::cursor_color(Fl_Color)

+ Get or set the color of the cursor. This is black by default. + + diff --git a/documentation/Fl_Tiled_Image.html b/documentation/Fl_Tiled_Image.html new file mode 100644 index 000000000..010fcc73a --- /dev/null +++ b/documentation/Fl_Tiled_Image.html @@ -0,0 +1,51 @@ + + + + + +

class Fl_Bitmap

+
+ +

Class Hierarchy

+ + + +

Include Files

+ + + +

Description

+ +

The Fl_Bitmap class supports caching and drawing of mono-color +(bitmap) images. Images are drawn using the current color.

+ +

Methods

+ + + +

Fl_Bitmap::Fl_Bitmap(const char *array, int W, int H);
+Fl_Bitmap::Fl_Bitmap(const unsigned char *array, int W, int H);

+ +

The constructors create a new bitmap from the specified bitmap data.

+ +

Fl_Bitmap::~Fl_Bitmap();

+ +

The destructor free all memory and server resources that are used by +the bitmap.

+ + + diff --git a/documentation/Fl_XBM_Image.html b/documentation/Fl_XBM_Image.html new file mode 100644 index 000000000..010fcc73a --- /dev/null +++ b/documentation/Fl_XBM_Image.html @@ -0,0 +1,51 @@ + + + + + +

class Fl_Bitmap

+
+ +

Class Hierarchy

+ + + +

Include Files

+ + + +

Description

+ +

The Fl_Bitmap class supports caching and drawing of mono-color +(bitmap) images. Images are drawn using the current color.

+ +

Methods

+ + + +

Fl_Bitmap::Fl_Bitmap(const char *array, int W, int H);
+Fl_Bitmap::Fl_Bitmap(const unsigned char *array, int W, int H);

+ +

The constructors create a new bitmap from the specified bitmap data.

+ +

Fl_Bitmap::~Fl_Bitmap();

+ +

The destructor free all memory and server resources that are used by +the bitmap.

+ + + diff --git a/documentation/Fl_XPM_Image.html b/documentation/Fl_XPM_Image.html new file mode 100644 index 000000000..010fcc73a --- /dev/null +++ b/documentation/Fl_XPM_Image.html @@ -0,0 +1,51 @@ + + + + + +

class Fl_Bitmap

+
+ +

Class Hierarchy

+ + + +

Include Files

+ + + +

Description

+ +

The Fl_Bitmap class supports caching and drawing of mono-color +(bitmap) images. Images are drawn using the current color.

+ +

Methods

+ + + +

Fl_Bitmap::Fl_Bitmap(const char *array, int W, int H);
+Fl_Bitmap::Fl_Bitmap(const unsigned char *array, int W, int H);

+ +

The constructors create a new bitmap from the specified bitmap data.

+ +

Fl_Bitmap::~Fl_Bitmap();

+ +

The destructor free all memory and server resources that are used by +the bitmap.

+ + + diff --git a/documentation/Makefile b/documentation/Makefile index d8ab502da..1d4b24f08 100644 --- a/documentation/Makefile +++ b/documentation/Makefile @@ -1,5 +1,5 @@ # -# "$Id: Makefile,v 1.9.2.10.2.2 2001/11/19 21:25:35 easysw Exp $" +# "$Id: Makefile,v 1.9.2.10.2.3 2001/11/27 02:09:45 easysw Exp $" # # Documentation makefile for the Fast Light Tool Kit (FLTK). # @@ -40,81 +40,102 @@ MEDIA = --size universal # 7x8.5in (1/2 legal page) with reduced-size fonts #MEDIA = --size 7x8.5in --fontsize 9.0 -# These are the HTML "source" files; the files are formatted in the -# order listed... +# These are the HTML "source" files... HTMLFILES = \ - preface.html \ - intro.html \ - basics.html \ - common.html \ - editor.html \ - drawing.html \ - events.html \ - subclassing.html \ - fluid.html \ - opengl.html \ - widgets.html \ - Fl_Adjuster.html \ - Fl_Box.html \ - Fl_Browser.html \ - Fl_Browser_.html \ - Fl_Button.html \ - Fl_Chart.html \ - Fl_Check_Button.html \ - Fl_Choice.html \ - Fl_Clock.html \ - Fl_Color_Chooser.html \ - Fl_Counter.html \ - Fl_Dial.html \ - Fl_Double_Window.html \ - Fl_End.html \ - Fl_Float_Input.html \ - Fl_Free.html \ - Fl_Gl_Window.html \ - Fl_Group.html \ - Fl_Hold_Browser.html \ - Fl_Input.html \ - Fl_Input_.html \ - Fl_Int_Input.html \ - Fl_Light_Button.html \ - Fl_Menu_.html \ - Fl_Menu_Bar.html \ - Fl_Menu_Button.html \ - Fl_Menu_Item.html \ - Fl_Menu_Window.html \ - Fl_Multi_Browser.html \ - Fl_Multiline_Input.html \ - Fl_Multiline_Output.html \ - Fl_Output.html \ - Fl_Overlay_Window.html \ - Fl_Pack.html \ - Fl_Positioner.html \ - Fl_Repeat_Button.html \ - Fl_Return_Button.html \ - Fl_Roller.html \ - Fl_Round_Button.html \ - Fl_Scroll.html \ - Fl_Scrollbar.html \ - Fl_Secret_Input.html \ - Fl_Select_Browser.html \ - Fl_Single_Window.html \ - Fl_Slider.html \ - Fl_Tabs.html \ - Fl_Tile.html \ - Fl_Timer.html \ - Fl_Valuator.html \ - Fl_Value_Input.html \ - Fl_Value_Output.html \ - Fl_Value_Slider.html \ - Fl_Widget.html \ - Fl_Window.html \ - functions.html \ - enumerations.html \ - glut.html \ - forms.html \ - osissues.html \ - migration.html \ - license.html + basics.html \ + common.html \ + drawing.html \ + editor.html \ + enumerations.html \ + events.html \ + Fl_Adjuster.html \ + Fl_Bitmap.html \ + Fl_Box.html \ + Fl_Browser_.html \ + Fl_Browser.html \ + Fl_Button.html \ + Fl_Chart.html \ + Fl_Check_Button.html \ + Fl_Choice.html \ + Fl_Clock.html \ + Fl_Color_Chooser.html \ + Fl_Counter.html \ + Fl_Dial.html \ + Fl_Double_Window.html \ + Fl_End.html \ + Fl_File_Browser.html \ + Fl_File_Chooser.html \ + Fl_File_Icon.html \ + Fl_Float_Input.html \ + Fl_Free.html \ + Fl_GIF_Image.html \ + Fl_Gl_Window.html \ + Fl_Group.html \ + Fl_Help_Dialog.html \ + Fl_Help_View.html \ + Fl_Hold_Browser.html \ + Fl.html \ + Fl_Image.html \ + Fl_Input_.html \ + Fl_Input.html \ + Fl_Int_Input.html \ + Fl_JPEG_Image.html \ + Fl_Light_Button.html \ + Fl_Menu_Bar.html \ + Fl_Menu_Button.html \ + Fl_Menu_.html \ + Fl_Menu_Item.html \ + Fl_Menu_Window.html \ + Fl_Multi_Browser.html \ + Fl_Multiline_Input.html \ + Fl_Multiline_Output.html \ + Fl_Output.html \ + Fl_Overlay_Window.html \ + Fl_Pack.html \ + Fl_Pixmap.html \ + Fl_PNG_Image.html \ + Fl_PNM_Image.html \ + Fl_Positioner.html \ + Fl_Repeat_Button.html \ + Fl_Return_Button.html \ + Fl_RGB_Image.html \ + Fl_Roller.html \ + Fl_Round_Button.html \ + Fl_Scrollbar.html \ + Fl_Scroll.html \ + Fl_Secret_Input.html \ + Fl_Select_Browser.html \ + Fl_Shared_Image.html \ + Fl_Single_Window.html \ + Fl_Slider.html \ + Fl_Tabs.html \ + Fl_Text_Buffer.html \ + Fl_Text_Display.html \ + Fl_Text_Editor.html \ + Fl_Tiled_Image.html \ + Fl_Tile.html \ + Fl_Timer.html \ + fluid.html \ + Fl_Valuator.html \ + Fl_Value_Input.html \ + Fl_Value_Output.html \ + Fl_Value_Slider.html \ + Fl_Widget.html \ + Fl_Window.html \ + Fl_Wizard.html \ + Fl_XBM_Image.html \ + Fl_XPM_Image.html \ + forms.html \ + functions.html \ + glut.html \ + intro.html \ + license.html \ + migration.html \ + opengl.html \ + osissues.html \ + preface.html \ + subclassing.html \ + widgets.html MANPAGES = fltk.$(CAT3EXT) fluid.$(CAT1EXT) @@ -178,5 +199,5 @@ fltk.pdf: $(HTMLFILES) $(HTMLDOC) -f fltk.pdf --jpeg --compression=9 --duplex --verbose --toclevels 2 --titleimage FL.gif $(HTMLFILES) # -# End of "$Id: Makefile,v 1.9.2.10.2.2 2001/11/19 21:25:35 easysw Exp $". +# End of "$Id: Makefile,v 1.9.2.10.2.3 2001/11/27 02:09:45 easysw Exp $". # diff --git a/documentation/fltk.book b/documentation/fltk.book index 79fc90d23..33ff1c7b5 100644 --- a/documentation/fltk.book +++ b/documentation/fltk.book @@ -1,4 +1,4 @@ -#HTMLDOC 1.8.16 +#HTMLDOC 1.8.17 -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 @@ -11,7 +11,9 @@ subclassing.html fluid.html opengl.html widgets.html +Fl.html Fl_Adjuster.html +Fl_Bitmap.html Fl_Box.html Fl_Browser_.html Fl_Browser.html @@ -30,14 +32,17 @@ Fl_File_Chooser.html Fl_File_Icon.html Fl_Float_Input.html Fl_Free.html +Fl_GIF_Image.html Fl_Gl_Window.html Fl_Group.html Fl_Help_Dialog.html Fl_Help_View.html Fl_Hold_Browser.html +Fl_Image.html Fl_Input.html Fl_Input_.html Fl_Int_Input.html +Fl_JPEG_Image.html Fl_Light_Button.html Fl_Menu_.html Fl_Menu_Bar.html @@ -50,8 +55,12 @@ Fl_Multiline_Output.html Fl_Output.html Fl_Overlay_Window.html Fl_Pack.html +Fl_Pixmap.html +Fl_PNG_Image.html +Fl_PNM_Image.html Fl_Positioner.html Fl_Repeat_Button.html +Fl_RGB_Image.html Fl_Return_Button.html Fl_Roller.html Fl_Round_Button.html @@ -63,6 +72,7 @@ Fl_Single_Window.html Fl_Slider.html Fl_Tabs.html Fl_Tile.html +Fl_Tiled_Image.html Fl_Timer.html Fl_Valuator.html Fl_Value_Input.html @@ -71,6 +81,8 @@ Fl_Value_Slider.html Fl_Widget.html Fl_Window.html Fl_Wizard.html +Fl_XBM_Image.html +Fl_XPM_Image.html functions.html enumerations.html glut.html -- cgit v1.2.3