#include <vtkQtChartSeriesSelection.h>
Definition at line 59 of file vtkQtChartSeriesSelection.h.
Public Types | |
| enum | SelectionType { NoSelection = 0, SeriesSelection, PointSelection } |
Public Member Functions | |
| vtkQtChartSeriesSelection () | |
| vtkQtChartSeriesSelection (const vtkQtChartSeriesSelection &other) | |
| ~vtkQtChartSeriesSelection () | |
| bool | isEmpty () const |
| Gets whether or not the selection is empty. | |
| SelectionType | getType () const |
| Gets the selection type. | |
| bool | clear () |
| Clears the selection lists. | |
| vtkQtChartSeriesSelection & | operator= (const vtkQtChartSeriesSelection &other) |
Series Selection Methods | |
| const vtkQtChartIndexRangeList & | getSeries () const |
| Gets the list of selected series ranges. | |
| bool | setSeries (const vtkQtChartIndexRangeList &series) |
| Sets the list of selected series ranges. | |
| bool | setSeries (const vtkQtChartIndexRange &series) |
| Sets the list of selected series ranges. | |
| bool | addSeries (const vtkQtChartIndexRangeList &series) |
| Adds the list of series ranges to the selection. | |
| bool | addSeries (const vtkQtChartIndexRange &series) |
| Adds the series index range to the selection. | |
| bool | subtractSeries (const vtkQtChartIndexRangeList &series) |
| Subtracts the list of series ranges from the selection. | |
| bool | subtractSeries (const vtkQtChartIndexRange &series) |
| Subtracts the series index range from the selection. | |
| bool | xorSeries (const vtkQtChartIndexRangeList &series) |
| Selects unique series from the given list and the selection. | |
| bool | xorSeries (const vtkQtChartIndexRange &series) |
| Selects unique series from the given range and the selection. | |
| void | limitSeries (int minimum, int maximum) |
| Trims the selected series to the given bounds. | |
Point Selection Methods | |
| const QList < vtkQtChartSeriesSelectionItem > & | getPoints () const |
| Gets the list of selected point ranges. | |
| bool | setPoints (const QList< vtkQtChartSeriesSelectionItem > &points) |
| Sets the list of selected point ranges. | |
| bool | addPoints (const QList< vtkQtChartSeriesSelectionItem > &points) |
| Adds the list of point ranges to the selection. | |
| bool | subtractPoints (const QList< vtkQtChartSeriesSelectionItem > &points) |
| Subtracts the list of point ranges from the selection. | |
| bool | subtractPoints (const vtkQtChartIndexRange &series) |
| Subtracts all the selected points in the given series from the selection. | |
| bool | xorPoints (const QList< vtkQtChartSeriesSelectionItem > &points) |
| Selects unique points from the given list and the selection. | |
| QList< int > | getPointSeries () const |
| Gets the list of series that have selected points. | |
| void | limitPoints (int series, int minimum, int maximum) |
| Trims the selected point indexes for the given series. | |
| NoSelection | No selection is made. |
| SeriesSelection | The selection contains series indexes. |
| PointSelection | The selection contains point indexes. |
Definition at line 62 of file vtkQtChartSeriesSelection.h.
| vtkQtChartSeriesSelection::vtkQtChartSeriesSelection | ( | ) |
| vtkQtChartSeriesSelection::vtkQtChartSeriesSelection | ( | const vtkQtChartSeriesSelection & | other | ) |
| vtkQtChartSeriesSelection::~vtkQtChartSeriesSelection | ( | ) | [inline] |
Definition at line 72 of file vtkQtChartSeriesSelection.h.
| bool vtkQtChartSeriesSelection::isEmpty | ( | ) | const |
Gets whether or not the selection is empty.
| SelectionType vtkQtChartSeriesSelection::getType | ( | ) | const |
Gets the selection type.
| bool vtkQtChartSeriesSelection::clear | ( | ) |
Clears the selection lists.
| const vtkQtChartIndexRangeList& vtkQtChartSeriesSelection::getSeries | ( | ) | const |
Gets the list of selected series ranges.
| bool vtkQtChartSeriesSelection::setSeries | ( | const vtkQtChartIndexRangeList & | series | ) |
Sets the list of selected series ranges.
| series | The new list of selected series ranges. |
| bool vtkQtChartSeriesSelection::setSeries | ( | const vtkQtChartIndexRange & | series | ) |
Sets the list of selected series ranges.
| series | The series index range to select. |
| bool vtkQtChartSeriesSelection::addSeries | ( | const vtkQtChartIndexRangeList & | series | ) |
Adds the list of series ranges to the selection.
| series | The list of selected series ranges to add. |
| bool vtkQtChartSeriesSelection::addSeries | ( | const vtkQtChartIndexRange & | series | ) |
Adds the series index range to the selection.
| series | The series index range to add. |
| bool vtkQtChartSeriesSelection::subtractSeries | ( | const vtkQtChartIndexRangeList & | series | ) |
Subtracts the list of series ranges from the selection.
| series | The list of selected series ranges to subtract. |
| bool vtkQtChartSeriesSelection::subtractSeries | ( | const vtkQtChartIndexRange & | series | ) |
Subtracts the series index range from the selection.
| series | The series index range to subtract. |
| bool vtkQtChartSeriesSelection::xorSeries | ( | const vtkQtChartIndexRangeList & | series | ) |
Selects unique series from the given list and the selection.
| series | The list of series ranges. |
| bool vtkQtChartSeriesSelection::xorSeries | ( | const vtkQtChartIndexRange & | series | ) |
Selects unique series from the given range and the selection.
| series | The series index range. |
| void vtkQtChartSeriesSelection::limitSeries | ( | int | minimum, | |
| int | maximum | |||
| ) |
Trims the selected series to the given bounds.
| minimum | The minimum series index. | |
| maximum | The maximum series index. |
| const QList<vtkQtChartSeriesSelectionItem>& vtkQtChartSeriesSelection::getPoints | ( | ) | const |
Gets the list of selected point ranges.
| bool vtkQtChartSeriesSelection::setPoints | ( | const QList< vtkQtChartSeriesSelectionItem > & | points | ) |
Sets the list of selected point ranges.
| points | The new list of selected point ranges. |
| bool vtkQtChartSeriesSelection::addPoints | ( | const QList< vtkQtChartSeriesSelectionItem > & | points | ) |
Adds the list of point ranges to the selection.
| points | The list of selected point ranges to add. |
| bool vtkQtChartSeriesSelection::subtractPoints | ( | const QList< vtkQtChartSeriesSelectionItem > & | points | ) |
Subtracts the list of point ranges from the selection.
| points | The list of selected point ranges to subtract. |
| bool vtkQtChartSeriesSelection::subtractPoints | ( | const vtkQtChartIndexRange & | series | ) |
Subtracts all the selected points in the given series from the selection.
| series | The list of series ranges to subtract. |
| bool vtkQtChartSeriesSelection::xorPoints | ( | const QList< vtkQtChartSeriesSelectionItem > & | points | ) |
Selects unique points from the given list and the selection.
| points | The list of point ranges. |
| QList<int> vtkQtChartSeriesSelection::getPointSeries | ( | ) | const |
Gets the list of series that have selected points.
| void vtkQtChartSeriesSelection::limitPoints | ( | int | series, | |
| int | minimum, | |||
| int | maximum | |||
| ) |
Trims the selected point indexes for the given series.
| series | The series index. | |
| minimum | The minimum point index. | |
| maximum | The maximum point index. |
| vtkQtChartSeriesSelection& vtkQtChartSeriesSelection::operator= | ( | const vtkQtChartSeriesSelection & | other | ) |
1.5.6