From 497afccb07164373e0de6639e754d7d691f1926f Mon Sep 17 00:00:00 2001 From: Fabien Costantini Date: Tue, 14 Oct 2008 22:12:25 +0000 Subject: Doxygen pdf man: First version added in documentation/fltk.pdf, old doc removed, images, dox files moved to a new src directory. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6431 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- documentation/Fl_Pack.html | 73 ---------------------------------------------- 1 file changed, 73 deletions(-) delete mode 100644 documentation/Fl_Pack.html (limited to 'documentation/Fl_Pack.html') diff --git a/documentation/Fl_Pack.html b/documentation/Fl_Pack.html deleted file mode 100644 index d646deb6a..000000000 --- a/documentation/Fl_Pack.html +++ /dev/null @@ -1,73 +0,0 @@ - - - Fl_Pack - - - -

class Fl_Pack

-
-

Class Hierarchy

- -

Include Files

- -

Description

- This widget was designed to add the functionality of compressing and -aligning widgets. -

If type() is Fl_Pack::HORIZONTAL all the children are -resized to the height of the Fl_Pack, and are moved next to -each other horizontally. If type() is not Fl_Pack::HORIZONTAL - then the children are resized to the width and are stacked below each -other. Then the Fl_Pack resizes itself to surround the child -widgets.

-

This widget is needed for the Fl_Tabs. - In addition you may want to put the Fl_Pack inside an -Fl_Scroll.

-

Methods

- -

Fl_Pack::Fl_Pack(int x, int y, int w, int -h, const char *label = 0)

- Creates a new Fl_Pack widget using the given position, size, -and label string. The default boxtype is FL_NO_BOX. -

virtual Fl_Pack::~Fl_Pack()

- The destructor also deletes all the children. This allows a -whole tree to be deleted at once, without having to keep a pointer to -all the children in the user code. A kludge has been done so the -Fl_Pack and all of it's children can be automatic (local) -variables, but you must declare the Fl_Packfirst, so -that it is destroyed last. - -

Fl_Boxtype Fl_Pack::box() const -
void Fl_Pack::box(Fl_Boxtype)

- -

Gets or sets the box type for the widget, which identifies a -routine that draws the background of the widget. Only frame -box types may be used with the Fl_Pack widget.

- -

void Fl_Pack::resizable(Fl_Widget *box) -
void Fl_Pack::resizable(Fl_Widget &box) -
Fl_Widget *Fl_Pack::resizable() const

-

The resizable for Fl_Pack is set to NULL by -default.

- -

See also: Fl_Group::resizable()

- -

int Fl_Pack::spacing() const -
void Fl_Pack::spacing(int)

- Gets or sets the number of extra pixels of blank space that are added -between the children. -- cgit v1.2.3