/usr/include/vtk-7.1/vtkPlotBar.h is in libvtk7-dev 7.1.1+dfsg1-2.
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 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkPlotBar.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.
=========================================================================*/
/**
* @class vtkPlotBar
* @brief Class for drawing an XY plot given two columns from a
* vtkTable.
*
*
*
*/
#ifndef vtkPlotBar_h
#define vtkPlotBar_h
#include "vtkChartsCoreModule.h" // For export macro
#include "vtkPlot.h"
#include "vtkSmartPointer.h" // Needed to hold ColorSeries
class vtkContext2D;
class vtkTable;
class vtkPoints2D;
class vtkStdString;
class vtkColorSeries;
class vtkUnsignedCharArray;
class vtkScalarsToColors;
class vtkPlotBarPrivate;
class VTKCHARTSCORE_EXPORT vtkPlotBar : public vtkPlot
{
public:
vtkTypeMacro(vtkPlotBar, vtkPlot);
virtual void PrintSelf(ostream &os, vtkIndent indent);
/**
* Enum of bar chart oritentation types
*/
enum {
VERTICAL = 0,
HORIZONTAL
};
/**
* Creates a 2D Chart object.
*/
static vtkPlotBar *New();
/**
* Perform any updates to the item that may be necessary before rendering.
*/
virtual void Update();
/**
* Paint event for the XY plot, called whenever the chart needs to be drawn
*/
virtual bool Paint(vtkContext2D *painter);
/**
* Paint legend event for the XY plot, called whenever the legend needs the
* plot items symbol/mark/line drawn. A rect is supplied with the lower left
* corner of the rect (elements 0 and 1) and with width x height (elements 2
* and 3). The plot can choose how to fill the space supplied.
*/
virtual bool PaintLegend(vtkContext2D *painter, const vtkRectf& rect,
int legendIndex);
//@{
/**
* Set the plot color
*/
virtual void SetColor(unsigned char r, unsigned char g, unsigned char b,
unsigned char a);
virtual void SetColor(double r, double g, double b);
virtual void GetColor(double rgb[3]);
//@}
//@{
/**
* Set the width of the line.
*/
vtkSetMacro(Width, float);
//@}
//@{
/**
* Get the width of the line.
*/
vtkGetMacro(Width, float);
//@}
//@{
/**
* Set/get the horizontal offset of the bars.
* Positive values move the bars leftward.
* For HORIZONTAL orientation, offsets bars vertically,
* with a positive value moving bars downward.
*/
vtkSetMacro(Offset, float);
vtkGetMacro(Offset, float);
//@}
//@{
/**
* Set/get the orientation of the bars.
* Valid orientations are VERTICAL (default) and HORIZONTAL.
*/
virtual void SetOrientation(int orientation);
vtkGetMacro(Orientation, int);
//@}
/**
* A helper used by both GetUnscaledBounds and GetBounds(double[4]).
*/
virtual void GetBounds(double bounds[4], bool unscaled);
/**
* Get the bounds for this mapper as (Xmin,Xmax,Ymin,Ymax).
*/
virtual void GetBounds(double bounds[4]);
/**
* Get un-log-scaled bounds for this mapper as (Xmin,Xmax,Ymin,Ymax).
*/
virtual void GetUnscaledInputBounds(double bounds[4]);
/**
* When used to set additional arrays, stacked bars are created.
*/
virtual void SetInputArray(int index, const vtkStdString &name);
/**
* Set the color series to use if this becomes a stacked bar plot.
*/
void SetColorSeries(vtkColorSeries *colorSeries);
/**
* Get the color series used if when this is a stacked bar plot.
*/
vtkColorSeries *GetColorSeries();
//@{
/**
* Specify a lookup table for the mapper to use.
*/
virtual void SetLookupTable(vtkScalarsToColors *lut);
virtual vtkScalarsToColors *GetLookupTable();
//@}
/**
* Create default lookup table. Generally used to create one when none
* is available with the scalar data.
*/
virtual void CreateDefaultLookupTable();
//@{
/**
* Turn on/off flag to control whether scalar data is used to color objects.
*/
vtkSetMacro(ScalarVisibility, bool);
vtkGetMacro(ScalarVisibility, bool);
vtkBooleanMacro(ScalarVisibility, bool);
//@}
//@{
/**
* When ScalarMode is set to UsePointFieldData or UseCellFieldData,
* you can specify which array to use for coloring using these methods.
* The lookup table will decide how to convert vectors to colors.
*/
void SelectColorArray(vtkIdType arrayNum);
void SelectColorArray(const vtkStdString& arrayName);
//@}
/**
* Get the array name to color by.
*/
vtkStdString GetColorArrayName();
/**
* Get the plot labels.
*/
virtual vtkStringArray *GetLabels();
/**
* Set the group name of the bar chart - can be displayed on the X axis.
*/
virtual void SetGroupName(const vtkStdString& name);
/**
* Get the group name of the bar char - can be displayed on the X axis.
*/
virtual vtkStdString GetGroupName();
/**
* Generate and return the tooltip label string for this plot
* The segmentIndex is implemented here.
*/
virtual vtkStdString GetTooltipLabel(const vtkVector2d &plotPos,
vtkIdType seriesIndex,
vtkIdType segmentIndex);
/**
* Select all points in the specified rectangle.
*/
virtual bool SelectPoints(const vtkVector2f& min, const vtkVector2f& max);
/**
* Function to query a plot for the nearest point to the specified coordinate.
* Returns the index of the data series with which the point is associated or
* -1.
*/
virtual vtkIdType GetNearestPoint(const vtkVector2f& point,
const vtkVector2f& tolerance,
vtkVector2f* location);
/**
* Function to query a plot for the nearest point to the specified coordinate.
* Returns the index of the data series with which the point is associated or
* -1.
* If a vtkIdType* is passed, its referent will be set to index of the bar
* segment with which a point is associated, or -1.
*/
virtual vtkIdType GetNearestPoint(const vtkVector2f& point,
const vtkVector2f&,
vtkVector2f* location,
vtkIdType* segmentIndex);
/**
* Get amount of plotted bars.
*/
int GetBarsCount();
/**
* Get the data bounds for this mapper as (Xmin,Xmax).
*/
void GetDataBounds(double bounds[2]);
protected:
vtkPlotBar();
~vtkPlotBar();
/**
* Update the table cache.
*/
bool UpdateTableCache(vtkTable *table);
/**
* Store a well packed set of XY coordinates for this data series.
*/
vtkPoints2D *Points;
float Width;
float Offset;
int Orientation;
/**
* The point cache is marked dirty until it has been initialized.
*/
vtkTimeStamp BuildTime;
/**
* The color series to use if this becomes a stacked bar
*/
vtkSmartPointer<vtkColorSeries> ColorSeries;
//@{
/**
* Lookup Table for coloring bars by scalar value
*/
vtkSmartPointer<vtkScalarsToColors> LookupTable;
vtkSmartPointer<vtkUnsignedCharArray> Colors;
bool ScalarVisibility;
vtkStdString ColorArrayName;
//@}
bool LogX;
bool LogY;
private:
vtkPlotBar(const vtkPlotBar &) VTK_DELETE_FUNCTION;
void operator=(const vtkPlotBar &) VTK_DELETE_FUNCTION;
vtkPlotBarPrivate *Private;
};
#endif //vtkPlotBar_h
|