This file is indexed.

/usr/include/tulip/GlGraphInputData.h is in libtulip-ogl-dev 3.1.2-2.3ubuntu3.

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
//-*-c++-*-
/**
 Authors: David Auber, Patrick Mary, Morgan Mathiaut
 from the LaBRI Visualization Team
 Email : auber@tulip-software.org
 Last modification : 13/03/2009 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by  
 the Free Software Foundation; either version 2 of the License, or     
 (at your option) any later version.
*/
#ifndef Tulip_GLGRAPHINPUTDATA_H
#define Tulip_GLGRAPHINPUTDATA_H

#include "tulip/tulipconf.h"

#include <tulip/MutableContainer.h>
#include <tulip/LayoutProperty.h>
#include <tulip/DoubleProperty.h>
#include <tulip/StringProperty.h>
#include <tulip/BooleanProperty.h>
#include <tulip/SizeProperty.h>
#include <tulip/IntegerProperty.h>
#include <tulip/ColorProperty.h>

#include "tulip/GlGraphRenderingParameters.h"

namespace tlp {

  class LayoutProperty;
  class DoubleProperty;
  class StringProperty;
  class IntegerProperty;
  class BooleanProperty;
  class SizeProperty;
  class ColorProperty;
  class PropertyManager;
  class Graph;
  class Glyph;

  /**
   * Class use to store inputData of the graph
   */
  class TLP_GL_SCOPE GlGraphInputData {

  public:

    /**
     * Create the inputData with Graph : graph and GlGraphRenderingParameters : parameters
     */
    GlGraphInputData(Graph* graph,GlGraphRenderingParameters* parameters);

    ~GlGraphInputData();

    /**
     * Return the graph of this inputData
     */
    Graph* getGraph() {return graph;}

    /**
     * Reload layoutProperty of the graph
     */
    void reloadLayoutProperty();

    /**
     * Return the layout of this inputData
     */
    LayoutProperty* getLayoutProperty() {
      reloadLayoutProperty();
      return elementLayout;
    }

    /**
     * Reload viewLabel Property of the graph
     */
    void reloadAllProperties();

    /**
     * Set property name for elementColor
     */
    void setElementColorPropName(const std::string &name){
      elementColorPropName=name;
      elementColor = graph->getProperty<ColorProperty>(elementColorPropName);
    }
    /**
     * Get property name for elementColor
     */
    std::string getElementColorPropName(){
      return elementColorPropName;
    }
    /**
     * Set property name for elementLabelColor
     */
    void setElementLabelColorPropName(const std::string &name){
      elementLabelColorPropName=name;
      elementLabelColor = graph->getProperty<ColorProperty>(elementLabelColorPropName);
    }
    /**
     * Get property name for elementLabelColor
     */
    std::string getElementLabelColorPropName(){
      return elementLabelColorPropName;
    }
    /**
     * Set property name for elementSize
     */
    void setElementSizePropName(const std::string &name){
      elementSizePropName=name;
      elementSize = graph->getProperty<SizeProperty>(elementSizePropName);
    }
    /**
     * Get property name for elementSize
     */
    std::string getElementSizePropName(){
      return elementSizePropName;
    }
    /**
     * Set property name for elementLabelPosition
     */
    void setElementLabelPositionPropName(const std::string &name){
      elementLabelPositionPropName=name;
      elementLabelPosition = graph->getProperty<IntegerProperty>(elementLabelPositionPropName);
    }
    /**
     * Get property name for elementLabelPosition
     */
    std::string getElementLabelPositionPropName(){
      return elementLabelPositionPropName;
    }
    /**
     * Set property name for elementShape
     */
    void setElementShapePropName(const std::string &name){
      elementShapePropName=name;
      elementShape = graph->getProperty<IntegerProperty>(elementShapePropName);
    }
    /**
     * Get property name for elementShape
     */
    std::string getElementShapePropName(){
      return elementShapePropName;
    }
    /**
     * Set property name for elementRotation
     */
    void setElementRotationPropName(const std::string &name){
      elementRotationPropName=name;
      elementLabelColor = graph->getProperty<ColorProperty>(elementLabelColorPropName);
    }
    /**
     * Get property name for elementRotation
     */
    std::string getElementRotationPropName(){
      return elementRotationPropName;
    }
    /**
     * Set property name for elementSelected
     */
    void setElementSelectedPropName(const std::string &name){
      elementSelectedPropName=name;
      elementSelected = graph->getProperty<BooleanProperty>(elementSelectedPropName);
    }
    /**
     * Get property name for elementSelected
     */
    std::string getElementSelectedPropName(){
      return elementSelectedPropName;
    }
    /**
     * Set property name for elementLabel
     */
    void setElementLabelPropName(const std::string &name){
      elementLabelPropName=name;
      elementLabel = graph->getProperty<StringProperty>(elementLabelPropName);
    }
    /**
     * Get property name for elementLabel
     */
    std::string getElementLabelPropName(){
      return elementLabelPropName;
    }
    /**
     * Set property name for elementTexture
     */
    void setElementTexturePropName(const std::string &name){
      elementTexturePropName=name;
      elementTexture = graph->getProperty<StringProperty>(elementTexturePropName);
    }
    /**
     * Get property name for elementTexture
     */
    std::string getElementTexturePropName(){
      return elementTexturePropName;
    }
    /**
     * Set property name for elementBorderColor
     */
    void setElementBorderColorPropName(const std::string &name){
      elementBorderColorPropName=name;
      elementBorderColor = graph->getProperty<ColorProperty>(elementBorderColorPropName);
    }
    /**
     * Get property name for elementBorderColor
     */
    std::string getElementBorderColorPropName(){
      return elementBorderColorPropName;
    }
    /**
     * Set property name for elementBorderWidth
     */
    void setElementBorderWidthPropName(const std::string &name){
      elementBorderWidthPropName=name;
      elementBorderWidth = graph->getProperty<DoubleProperty>(elementBorderWidthPropName);
    }
    /**
     * Get property name for elementBorderWidth
     */
    std::string getElementBorderWidthPropName(){
      return elementBorderWidthPropName;
    }
    /**
     * Set property name for elementLayout
     */
    void setElementLayoutPropName(const std::string &name){
      elementLayoutPropName=name;
      reloadLayoutProperty();
    }
    /**
     * Get property name for elementLayout
     */
    std::string getElementLayoutPropName(){
      return elementLayoutPropName;
    }

  protected :

    std::string elementColorPropName;
    std::string elementLabelColorPropName;
    std::string elementSizePropName;
    std::string elementLabelPositionPropName;
    std::string elementShapePropName;
    std::string elementRotationPropName;
    std::string elementSelectedPropName;
    std::string elementLabelPropName;
    std::string elementTexturePropName;
    std::string elementBorderColorPropName;
    std::string elementBorderWidthPropName;
    std::string elementLayoutPropName;

  public:

    ColorProperty    *elementColor;
    ColorProperty    *elementLabelColor;
    SizeProperty     *elementSize;
    IntegerProperty  *elementLabelPosition;
    IntegerProperty  *elementShape;
    DoubleProperty   *elementRotation;
    BooleanProperty  *elementSelected;
    StringProperty   *elementLabel;
    LayoutProperty   *elementLayout;
    StringProperty   *elementTexture;
    ColorProperty    *elementBorderColor;
    DoubleProperty   *elementBorderWidth;

    Graph* graph;

    GlGraphRenderingParameters* parameters;

    MutableContainer<Glyph *> glyphs;

  };
}

#endif