casa
$Rev:20696$
|
A PlotPanel is a panel that goes on the bottom of the plot window. More...
#include <PlotPanel.h>
Public Member Functions | |
PlotPanel () | |
virtual | ~PlotPanel () |
virtual vector< PlotWidgetPtr > | widgets () const =0 |
Returns all PlotWidgets currently on the panel. | |
virtual int | addWidget (PlotWidgetPtr widget)=0 |
Adds the given widget to this panel. | |
virtual void | clearWidgets ()=0 |
Clears all widgets on the panel. | |
virtual void | removeWidget (PlotWidgetPtr widget)=0 |
Removes the given widget from this panel. | |
virtual void | removeWidget (int index)=0 |
Removes the widget at the given index from this panel. |
A PlotPanel is a panel that goes on the bottom of the plot window.
A single panel can contain multiple widgets.
Definition at line 161 of file PlotPanel.h.
casa::PlotPanel::PlotPanel | ( | ) | [inline] |
Definition at line 163 of file PlotPanel.h.
virtual casa::PlotPanel::~PlotPanel | ( | ) | [inline, virtual] |
Definition at line 165 of file PlotPanel.h.
virtual int casa::PlotPanel::addWidget | ( | PlotWidgetPtr | widget | ) | [pure virtual] |
Adds the given widget to this panel.
virtual void casa::PlotPanel::clearWidgets | ( | ) | [pure virtual] |
Clears all widgets on the panel.
virtual void casa::PlotPanel::removeWidget | ( | PlotWidgetPtr | widget | ) | [pure virtual] |
Removes the given widget from this panel.
virtual void casa::PlotPanel::removeWidget | ( | int | index | ) | [pure virtual] |
Removes the widget at the given index from this panel.
virtual vector<PlotWidgetPtr> casa::PlotPanel::widgets | ( | ) | const [pure virtual] |
Returns all PlotWidgets currently on the panel.