This file is indexed.

/usr/include/tulip/GlAxis.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
//-*-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.
*/
/*
 * GlAxis.h
 *
 *  Created on: 5 févr. 2009
 *      Author: antoine
 */

#ifndef GLAXIS_H_
#define GLAXIS_H_

#include <tulip/GlComposite.h>

const float DEFAULT_GRAD_WIDTH = 6.;

const float MAGIG_FACTOR = (1. / (1.3));

namespace tlp {

/**
 * \brief A base class to draw an axis with graduations
 *
 * This class allow to render an axis with graduations. This class is there for code factorisation
 * and should not be used directly. Use derivated classes instead : GlQuantitativeAxis for a numerical
 * graduated axis and GlNominativeAxis for a string graduated axis
 */
class TLP_GL_SCOPE GlAxis : public GlComposite {

public :

	enum AxisOrientation {HORIZONTAL_AXIS, VERTICAL_AXIS};

	enum LabelPosition {LEFT_OR_BELOW, RIGHT_OR_ABOVE};

	/**
	 * GlAxis constructor
	 *
	 * \param axisName the name of the axis
	 * \axisBaseCoord the base coord of the axis (if the axis is horizontal, it is the the left end, if vertical it is the down end)
	 * \axisLength the length of the axis
	 * \axisOrientation the orientation of the axis, 2 possible values (HORIZONTAL_AXIS or VERTICAL_AXIS)
	 * \axisColor the color of the axis
	 */
	GlAxis(const std::string &axisName, const Coord &axisBaseCoord, const float axisLength,
		   const AxisOrientation &axisOrientation, const Color &axisColor);

	/**
	 * GlAxis destructor
	 */
	virtual ~GlAxis();

	/**
	 * Method which returns the base coordinates of the axis
	 */
	Coord getAxisBaseCoord() const {return axisBaseCoord;}
	/**
	 * Method which returns the length of the axis
	 */
	float getAxisLength() const {return axisLength;}
	/**
	 * Method which returns the name of the axis
	 */
	std::string getAxisName() const {return axisName;}
	/**
	 * Method which returns the orientation of the axis
	 */
	AxisOrientation getAxisOrientation() const {return axisOrientation;}
	/**
	 * Method which returns the width of the axis graduations
	 */
	float getAxisGradsWidth() const {return axisGradsWidth;}
	/**
	 * Method which returns the distance between the axis graduations
	 */
	float getSpaceBetweenAxisGrads() const {return spaceBetweenAxisGrads;}
	/**
	 * Method which returns the axis graduations labels height
	 */
	float getLabelHeight() const {return labelHeight;}

	/**
	 * Method which returns the max axis graduations labels width
	 */
	float getMaxLabelWidth() const {return maxGraduationLabelWidth;}

	/**
	 * Method which returns the color of the axis
	 */
	Color getAxisColor() const {return axisColor;}

	/**
	 * Method to set the axis name
	 */
	void setAxisName(const std::string &axisName) {this->axisName = axisName;}
	/**
	 * Method to set the axis length
	 */
	void setAxisLength(const float axisLength) {this->axisLength = axisLength;}
	/**
	 * Method to set the axis color
	 */
	void setAxisColor(const Color &axisColor) {this->axisColor = axisColor;}
	/**
	 * Methods to set the axis graduations Width
	 */
	void setAxisGradsWidth(const float axisGradsWidth) {this->axisGradsWidth = axisGradsWidth;}

	/**
	 * Methods to set the max caption width
	 */
	void setMaxCaptionWidth(const float maxCaptionWidth) {this->maxCaptionWidth = maxCaptionWidth;}

	/**
	 * Method to update the axis drawing. It has to be called when one (ore more) of the setters methods above has been used
	 * This method erase the whole axis drawing and redraw the axis line and the caption (if any)
	 * The axis graduations have to be reset by calling setAxisGraduations
	 */
	virtual void updateAxis();

	/**
	 * Method to set the axis graduations. No need to call updateAxis after calling this method.
	 *
	 * \param axisGradsLabels the labels of the graduations, they will be equally spaced on the axis
	 * \param axisGradsLabelsPosition the relative position of the axis graduations label. Two possible values : LEFT_OR_BELOW (if the axis is horizontal, labels will be on the left of the axis, otherwise below) or RIGHT_OR_ABOVE
	 *
	 */
	void setAxisGraduations(const std::vector<std::string> &axisGradsLabels,
						    const LabelPosition &axisGradsLabelsPosition = LEFT_OR_BELOW);

	/**
	 * Method which adds a caption to the axis. No need to call updateAxis after calling this method.
	 *
	 * \param captionPos the relative position of the caption. Two possible values : LEFT_OR_BELOW (if the axis is vertical, caption will be below of the axis, otherwise on the left) or RIGHT_OR_ABOVE
	 * \param captionHeight the caption text height
	 * \param captionFrame if true the caption will be framed
	 * \param maxCaptionWidth fill this parameter if you want to restrain the caption width
	 * \param captionOffset fill this parameter if you want to fix the offset between the axis and the caption
	 * \param caption if this parameter is filled, use this value as caption text, otherwise the caption text will be the axis name
	 */
	void addCaption(const LabelPosition &captionPos, const float captionHeight, const bool captionFrame = false,
					const float maxCaptionWidth = 0, const float captionOffset = 0, const std::string caption = "");



	void translate(const Coord &c);

private :

	void buildAxisLine();


protected :

	void computeBoundingBox();
	virtual Coord computeCaptionCenter();
	virtual void computeCaptionSize(float height);
	void addAxisCaption(const Coord &captionLabelCenter, const bool captionFrame);

	std::string axisName;
	Coord axisBaseCoord;
	float axisLength;
	AxisOrientation axisOrientation;
	Color axisColor;
	float axisGradsWidth;
	float spaceBetweenAxisGrads;
	float captionWidth;
	float captionHeight;
	bool captionFrame;
	std::string captionText;
	float labelHeight;
	float captionOffset;
	GlComposite *axisLinesComposite;
	GlComposite *captionComposite;
	GlComposite *gradsComposite;
	bool captionSet;
	LabelPosition captionPosition;
	float maxCaptionWidth;
	float maxGraduationLabelWidth;
};

}

#endif /* GLAXIS_H_ */