/usr/include/vtkQtChartShapeLocator.h is in libvtk5-qt4-dev 5.10.1+dfsg-2.1build1.
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 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkQtChartShapeLocator.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.
-------------------------------------------------------------------------*/
/// \file vtkQtChartShapeLocator.h
/// \date October 15, 2008
#ifndef _vtkQtChartShapeLocator_h
#define _vtkQtChartShapeLocator_h
#include "vtkQtChartExport.h"
#include <QLinkedList> // Needed for parameter.
#include <QList> // Needed for parameter.
class vtkQtChartShape;
class QPointF;
class QRectF;
/// \class vtkQtChartShapeLocatorNode
/// \brief
/// The vtkQtChartShapeLocatorNode class is used to build a tree of
/// chart shapes.
class VTKQTCHART_EXPORT vtkQtChartShapeLocatorNode
{
public:
/// \brief
/// Constructs a chart shape locator node.
/// \param element The chart shape element to wrap.
vtkQtChartShapeLocatorNode(vtkQtChartShape *element=0);
~vtkQtChartShapeLocatorNode();
/// \brief
/// Gets whether or not the bounding area contains the given point.
/// \param point The position to evaluate.
/// \return
/// True if the bounding area contains the given point.
bool contains(const QPointF &point) const;
/// \brief
/// Gets whether or not the bounding area intersects the given area.
/// \param area The rectangle to evaluate.
/// \return
/// True if the bounding area intersects the given area.
bool intersects(const QRectF &area) const;
/// \brief
/// Gets the bounding rectangle.
/// \return
/// The bounding rectangle.
const QRectF &getBounds() const {return *this->Bounds;}
/// \brief
/// Sets the bounding rectangle.
/// \param bounds The new bounding rectangle.
void setBounds(const QRectF &bounds);
/// \brief
/// Gets the chart shape element.
/// \return
/// A pointer to the chart shape element.
vtkQtChartShape *getElement() const {return this->Element;}
/// \brief
/// Sets the chart shape element.
/// \param element The new chart shape element.
void setElement(vtkQtChartShape *element);
/// \brief
/// Gets the parent node.
/// \return
/// A pointer to the parent node.
vtkQtChartShapeLocatorNode *getParent() const {return this->Parent;}
/// \brief
/// Sets the parent node.
/// \param parent The new parent node.
void setParent(vtkQtChartShapeLocatorNode *parent) {this->Parent = parent;}
/// \brief
/// Gets whether or not the node has children.
/// \return
/// True if the node has children.
bool hasChildren() const {return this->Nodes.size() > 0;}
/// \brief
/// Gets the list of child nodes.
/// \return
/// The list of child nodes.
const QList<vtkQtChartShapeLocatorNode *> &getNodes() const {return this->Nodes;}
/// \brief
/// Gets the list of child nodes.
/// \return
/// The list of child nodes.
QList<vtkQtChartShapeLocatorNode *> &getNodes() {return this->Nodes;}
/// \brief
/// Updates the bounding rectangle.
///
/// The bounding rectangle is the bounds of the element or the
/// bounds of the child nodes.
void updateBounds();
private:
QRectF *Bounds; ///< Stores the bounds.
vtkQtChartShape *Element; ///< Stores the shape.
vtkQtChartShapeLocatorNode *Parent; ///< Stores the parent node.
QList<vtkQtChartShapeLocatorNode *> Nodes; ///< Stores the child nodes.
private:
vtkQtChartShapeLocatorNode(const vtkQtChartShapeLocatorNode &);
vtkQtChartShapeLocatorNode &operator=(const vtkQtChartShapeLocatorNode &);
};
/// \class vtkQtChartShapeLocator
/// \brief
/// The vtkQtChartShapeLocator class is used to locate shapes in a
/// tree structure.
///
/// The tree is built from a table of shapes. The leaf nodes store the
/// shapes and use them for searches. The parent nodes in the tree use
/// the bounding rectangle for searches. The bounding rectangles can
/// be updated if the layout remains unchanged.
class VTKQTCHART_EXPORT vtkQtChartShapeLocator
{
public:
vtkQtChartShapeLocator();
~vtkQtChartShapeLocator();
/// Removes all the tree items.
void clear();
/// \brief
/// Builds a shape tree from the ordered table of shapes.
///
/// The shape pointers are stored by the tree and should not be
/// deleted until the tree has been cleared.
///
/// \param table The ordered table of shapes.
void build(const QList<QList<vtkQtChartShape *> > &table);
/// \brief
/// Builds a shape tree from the list of shapes.
///
/// The list of shapes should be sorted in the x-axis direction
/// before calling this method. The list will be divided into a
/// table and sorted in the y-axis direction before building the
/// tree. The shape pointers are stored by the tree and should not
/// be deleted until the tree has been cleared.
///
/// \param list The list of shapes.
void build(const QList<vtkQtChartShape *> &list);
/// \brief
/// Updates the bounding rectangles in the shape tree.
///
/// The nodes are traversed from last to first. The bounding
/// rectangle of each node is updated using the shape if it is a
/// leaf or the bounds of the children otherwise.
void update();
/// \brief
/// Gets the shapes at the specified point.
/// \param point The point to search.
/// \return
/// The list of shapes at the given point.
QList<vtkQtChartShape *> getItemsAt(const QPointF &point) const;
/// \brief
/// Gets the shapes in the specified rectangle.
/// \param area The rectangle to search.
/// \return
/// The list of shapes in the given rectangle.
QList<vtkQtChartShape *> getItemsIn(const QRectF &area) const;
/// \brief
/// Gets the last node in the tree.
/// \return
/// A pointer to the last node in the tree.
vtkQtChartShapeLocatorNode *getLast();
/// \brief
/// Gets the previous node in the tree.
/// \param node The node to search from.
/// \return
/// A pointer to the previous node in the tree.
vtkQtChartShapeLocatorNode *getPrevious(vtkQtChartShapeLocatorNode *node);
public:
/// \brief
/// Sorts the list of shapes according to the y value.
///
/// The list of shapes is sorted by the y-axis value using a quick
/// sort algorithm. The list is sorted in place.
///
/// \param list The list of shapes to be sorted.
static void sort(QList<vtkQtChartShape *> &list);
private:
/// \brief
/// Builds a shape tree from the ordered table of items.
/// \param table the ordered table of items.
void build(QLinkedList<QLinkedList<vtkQtChartShapeLocatorNode *> > &table);
private:
vtkQtChartShapeLocatorNode *Root; ///< Stores the root node.
private:
vtkQtChartShapeLocator(const vtkQtChartShapeLocator &);
vtkQtChartShapeLocator &operator=(const vtkQtChartShapeLocator &);
};
#endif
|