#include <vtkKWScaleSet.h>
Inheritance diagram for vtkKWScaleSet:
Public Member Functions | |
vtkTypeRevisionMacro (vtkKWScaleSet, vtkKWWidgetSet) | |
void | PrintSelf (ostream &os, vtkIndent indent) |
virtual vtkKWScale * | AddWidget (int id) |
virtual vtkKWScale * | GetWidget (int id) |
Static Public Member Functions | |
vtkKWScaleSet * | New () |
Protected Member Functions | |
vtkKWScaleSet () | |
~vtkKWScaleSet () | |
virtual vtkKWWidget * | AllocateAndCreateWidget () |
A composite widget to conveniently store, allocate, create and pack a set of vtkKWScale. Each vtkKWScale is created, removed or queried based on a unique ID provided by the user (ids are *not* handled by the class since it is likely that they will be defined as enum's or #define by the user for easier retrieval). As a subclass of vtkKWWidgetSet, it inherits methods to set the widgets visibility individually, set the layout parameters, and query each widget. Widgets are packed (gridded) in the order they were added.
Definition at line 37 of file vtkKWScaleSet.h.
|
Definition at line 53 of file vtkKWScaleSet.h. |
|
Definition at line 54 of file vtkKWScaleSet.h. |
|
Reimplemented from vtkKWCompositeWidget. |
|
|
|
Reimplemented from vtkKWWidgetSet. |
|
Add a vtkKWScale to the set. The id has to be unique among the set. Return a pointer to the vtkKWScale, or NULL on error. |
|
Get a vtkKWScale from the set, given its unique id. Return a pointer to the vtkKWScale, or NULL on error. |
|
To be implemented by superclasses. Allocate and create a widget of the right type. Return a pointer to the superclass though. Implements vtkKWWidgetSet. |