/usr/include/vtkQtChartSeriesOptionsModelCollection.h is in libvtk5-qt4-dev 5.8.0-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkQtChartSeriesOptionsModelCollection.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/*-------------------------------------------------------------------------
Copyright 2008 Sandia Corporation.
Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
the U.S. Government retains certain rights in this software.
-------------------------------------------------------------------------*/
#ifndef __vtkQtChartSeriesOptionsModelCollection_h
#define __vtkQtChartSeriesOptionsModelCollection_h
#include "vtkQtChartSeriesOptionsModel.h"
/// \class vtkQtChartSeriesOptionsModelCollection
/// \brief
/// The vtkQtChartSeriesOptionsModelCollection class is used to combine
/// chart series options models.
///
/// The collection maps the overall series index to the model
/// specific series index. This is analogous to vtkQtChartSeriesModelCollection
/// except that it keeps track of vtkQtChartSeriesOptionsModel instead of
/// vtkQtChartSeriesModel.
class VTKQTCHART_EXPORT vtkQtChartSeriesOptionsModelCollection :
public vtkQtChartSeriesOptionsModel
{
Q_OBJECT
public:
typedef vtkQtChartSeriesOptionsModel Superclass;
/// \brief
/// Creates a chart series options model.
/// \param param The parent object.
vtkQtChartSeriesOptionsModelCollection(QObject* parent=0);
virtual ~vtkQtChartSeriesOptionsModelCollection();
/// \name vtkQtChartSeriesOptionsModel Methods
//@{
/// \brief
/// Gets the number of options.
virtual int getNumberOfOptions() const;
/// \brief
/// Gets the options for a particular series.
/// \param series The series index
/// \return
/// The options for the series at the given index.
virtual vtkQtChartSeriesOptions* getOptions(int series) const;
/// \brief
/// Gets the index for the given series options.
/// \param options The series options object.
/// \return
/// The index for the given series options.
virtual int getOptionsIndex(vtkQtChartSeriesOptions *options) const;
//@}
/// \brief
/// Adds a series model to the collection.
/// \param model The series model to add.
void addSeriesOptionsModel(vtkQtChartSeriesOptionsModel *model);
/// \brief
/// Removes a series model from the collection.
/// \param model The series model to remove.
void removeSeriesOptionsModel(vtkQtChartSeriesOptionsModel* model);
/// \brief
/// Gets the number of series models in the collection.
/// \return
/// The number of series models in the collection.
int getNumberOfSeriesOptionsModels() const;
/// \brief
/// Gets the series model at the specified index.
/// \param index The series model index.
/// \return
/// A pointer to the series model.
vtkQtChartSeriesOptionsModel* getSeriesOptionsModel(int index) const;
/// \brief
/// Maps an index from a series model to an index in the collection.
/// \param model The series model, must be a member of the model collection
/// \param index A series index from the given series model
/// \return
/// A series index in the series model collection.
/// Returns 0 if model is not in collection.
int mapSeriesIndexToCollectionIndex(
vtkQtChartSeriesOptionsModel* model, int index) const;
public slots:
/// \brief
/// Resets the model.
virtual void reset();
protected slots:
/// \brief
/// Called when a series is about to be inserted into a model.
///
/// This method uses the signal sender to determine which model has
/// changed. It then maps the model series indexes to collection
/// series indexes and re-emits the signal.
///
/// \param first The first model series index.
/// \param last The last model series index.
void onOptionsAboutToBeInserted(int first, int last);
/// \brief
/// Called when a series is inserted into a model.
/// \param first The first model series index.
/// \param last The last model series index.
void onOptionsInserted(int first, int last);
/// \brief
/// Called when a series is about to be removed from a model.
/// \param first The first model series index.
/// \param last The last model series index.
void onOptionsAboutToBeRemoved(int first, int last);
/// \brief
/// Called when a series is removed from a model.
/// \param first The first model series index.
/// \param last The last model series index.
void onOptionsRemoved(int first, int last);
private:
/// \brief
/// Gets the series model for the given index.
/// \param series The collection series index. Used to return the
/// model series index.
/// \return
/// A pointer to the series model.
vtkQtChartSeriesOptionsModel *modelForSeries(int &series) const;
/// \brief
/// Gets the first series in the given model.
/// \param model The series model.
/// \return
/// The first series in the given model.
int seriesForModel(vtkQtChartSeriesOptionsModel *model) const;
private:
QList<vtkQtChartSeriesOptionsModel*> Models; ///< Stores the models.
private:
vtkQtChartSeriesOptionsModelCollection(const
vtkQtChartSeriesOptionsModelCollection&);
void operator=(
const vtkQtChartSeriesOptionsModelCollection&);
};
#endif
|