fltk::WindowHolder Class Reference

Inheritance diagram for fltk::WindowHolder:

Inheritance graph
[legend]
Collaboration diagram for fltk::WindowHolder:

Collaboration graph
[legend]
List of all members.

Public Member Functions

 WindowHolder (int, int, int, int, Flags=HALIGN_UNKNOWN)
 WindowHolder (int, int, Flags)
void layout ()
void draw ()
int handle (int)

Detailed Description

This class provides the methods for docking and undocking fltk::ToolWindow.


Constructor & Destructor Documentation

WindowHolder::WindowHolder int  X,
int  Y,
int  W,
int  H,
Flags  a = HALIGN_UNKNOWN
 

See: DockHolder::DockHolder(int, int, int, int, Flags);

WindowHolder::WindowHolder int  W,
int  H,
Flags  a
 

See: DockHolder::DockHolder(int, int, Flags);


Member Function Documentation

void WindowHolder::draw  )  [virtual]
 

Fltk calls this virtual function to draw the widget, after setting up the graphics (current window, xy translation, etc) so that any drawing functions will go into this widget.

User code should not call this! You probably want to call redraw().

The default version calls draw_box() and draw_label(), thus drawing the box() to fill the widget and putting the label() and image() inside it to fill it, unless the align() flags are set to put it outside.

Information on how to write your own version is here.

Reimplemented from fltk::DockHolder.

int WindowHolder::handle int  event  )  [virtual]
 

Calls send() on some or all of the children widgets.

Reimplemented from fltk::Group.

void WindowHolder::layout  )  [virtual]
 

Virtual function to respond to layout_damage(), it should calculate the correct size of this widget and all it's children. This function is called by fltk or by the layout() method in other widgets. User programs should not call it.

A widget is allowed to alter it's own size in a layout() method, to indicate a size that the data will fit in. A parent widget is then expected to rearrange itself to accomodate the new size. This may mean it will move the widget and thus layout() will be called again.

You can look at layout_damage() to find out why this is being called.

The base class redraws the widget and sets layout_damage() to zero.

Reimplemented from fltk::DockHolder.


Tue Jun 27 02:20:24 2006. FLTK Dock is copyright © 2006 by MD. Z. Hossain