diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 1998-12-29 14:21:17 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 1998-12-29 14:21:17 +0000 |
| commit | 87dd7f0d23eba5c09e71ec6efeb34c6844f5e95f (patch) | |
| tree | ecd25b3fbecdd2d1c6abf106d0c94ac2b1e9926e /documentation/Fl_End.html | |
| parent | 20adb6834b22523e9d1fecdb7bb8a117f7b6179a (diff) | |
Revised documentation files.
git-svn-id: file:///fltk/svn/fltk/trunk@177 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'documentation/Fl_End.html')
| -rw-r--r-- | documentation/Fl_End.html | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/documentation/Fl_End.html b/documentation/Fl_End.html new file mode 100644 index 000000000..7c21a8db2 --- /dev/null +++ b/documentation/Fl_End.html @@ -0,0 +1,51 @@ +<html> +<body> + +<hr break> + +<h2><a name="Fl_End">class Fl_End</a></h2> + +<hr> + +<h3>Class Hierarchy</h3> + +<ul><pre> +<a href="#Fl_Group">Fl_Group</a>----<b>Fl_End</b> +</pre></ul> + +<h3>Include Files</h3> + +<ul><pre> +#include <FL/Fl_Group.H> +</pre></ul> + +<h3>Description</h3> + +This is a dummy class that allows you to end a group in a constructor list of a class: + +<ul><pre>class MyClass { + Fl_Group group; + Fl_Button button_in_group; + Fl_End end; + Fl_Button button_outside_group; + MyClass(); +}; +MyClass::MyClass() : + group(10,10,100,100), + button_in_group(20,20,60,30), + end(), + button_outside_group(10,120,60,30) +{}</pre></ul> + +<h3>Methods</h3> + +<ul> + <li><a href="#Fl_End.Fl_End">Fl_End</a> +</ul> + +<h4><a name="Fl_End.Fl_End">Fl_End::Fl_End</a></h4> + +The constructor does <tt>Fl_Group::current()->end()</tt>. + +</body> +</html> |
