This file is indexed.

/usr/include/vtkQtChartRepresentation.h is in libvtk5-qt4-dev 5.8.0-17.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
/*=========================================================================

  Program:   Visualization Toolkit
  Module:    vtkQtChartRepresentation.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 (c) Sandia Corporation
 See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
----------------------------------------------------------------------------*/
// .NAME vtkQtChartRepresentation - A representation for displaying a
// vtkTable in a vtkQtChartView
//
// .SECTION Description
//
// This is a specialization of vtkQtTableRepresentation to put the
// data into a vtkQtChartView.

#ifndef __vtkQtChartRepresentation_h
#define __vtkQtChartRepresentation_h

#include "vtkQtTableRepresentation.h"
class vtkIntArray;
class vtkQtChartSeriesOptionsModel;
class vtkQtChartTableSeriesModel;

class QVTK_EXPORT vtkQtChartRepresentation : public vtkQtTableRepresentation
{
public:
  static vtkQtChartRepresentation *New();
  vtkTypeMacro(vtkQtChartRepresentation, vtkQtTableRepresentation);
  void PrintSelf(ostream& os, vtkIndent indent);
  
  // Description:
  // Return the series model for this table representation
  vtkQtChartTableSeriesModel* GetSeriesModel();


  // Description:
  // Get/Set the series options model. By default,
  // vtkQtChartBasicSeriesOptionsModel will be used. The series options model
  // must be changed before the representation is added to a view.
  void SetOptionsModel(vtkQtChartSeriesOptionsModel*);
  vtkQtChartSeriesOptionsModel* GetOptionsModel();

  // Description:
  // Return the number of series.
  // This is equivalent to this->GetSeriesModel()->getNumberOfSeries().
  int GetNumberOfSeries();

  // Description:
  // Return the name of the series.  The returned const char may be null
  // if the series index is out of range.  The returned const char is only
  // valid until the next call to GetSeriesName.
  const char* GetSeriesName(int series);

  // Description:
  // Orients the table as being either columns-as-series or rows-as-series oriented.
  void SetColumnsAsSeries(bool);
  vtkGetMacro(ColumnsAsSeries,int);

protected:
  vtkQtChartRepresentation();
  ~vtkQtChartRepresentation();
  
  // Description:
  // Adds the representation to the view.
  // This is called from vtkView::AddRepresentation().
  bool AddToView(vtkView* view);
  
  // Description:
  // Removes the representation to the view.
  // This is called from vtkView::RemoveRepresentation().
  bool RemoveFromView(vtkView* view);

  bool ColumnsAsSeries;

private:

  class vtkInternal;
  vtkInternal* Internal;

  vtkQtChartRepresentation(const vtkQtChartRepresentation&);  // Not implemented.
  void operator=(const vtkQtChartRepresentation&);  // Not implemented.
};

#endif