This file is indexed.

/usr/include/qwtplot3d/qwt3d_colorlegend.h is in libqwtplot3d-qt5-dev 0.2.7+svn191-10.1.

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
#ifndef __PLANE_H__
#define __PLANE_H__

#include "qwt3d_global.h"
#include "qwt3d_drawable.h"
#include "qwt3d_axis.h"
#include "qwt3d_color.h"

namespace Qwt3D
{

//! A flat color legend
/**
	The class visualizes a ColorVector together with a scale (axis)  and a caption. ColorLegends are vertical 
	or horizontal
*/
class QWT3D_EXPORT ColorLegend : public Drawable
{

public:
	
	//! Possible anchor points for caption and axis
	enum SCALEPOSITION
	{
		Top,      //!< scale on top
    Bottom,   //!< scale on bottom
		Left,     //!< scale left
		Right     //!< scale right
	};
	
	//! Orientation of the legend
	enum ORIENTATION
	{
    BottomTop, //!< Positionate the legend vertically, the lowest color index is on the bottom
		LeftRight  //!< Positionate the legend horizontally, the lowest color index is on left side
	};

	ColorLegend(); //!< Standard constructor

	void draw(); //!< Draws the object. You should not use this explicitely - the function is called by updateGL().
	
	void setRelPosition(Qwt3D::Tuple relMin, Qwt3D::Tuple relMax); //!< Sets the relative position of the legend inside widget
	void setOrientation(ORIENTATION, SCALEPOSITION); //!< Sets legend orientation and scale position
	void setLimits(double start, double stop); //!< Sets the limit of the scale.
	void setMajors(int); //!< Sets scale major tics.
	void setMinors(int); //!< Sets scale minor tics.
	void drawScale(bool val) { showaxis_ = val; } //!< Sets whether a scale will be drawn.
	void drawNumbers(bool val) { axis_.setNumbers(val); } //!< Sets whether the scale will have scale numbers.
	void setAutoScale(bool val); //!< Sets, whether the axis is autoscaled or not.
  void setScale(Qwt3D::Scale *scale); //!< Sets another scale
  void setScale(Qwt3D::SCALETYPE); //!< Sets one of the predefined scale types

	void setTitleString(QString const& s); //!< Sets the legends caption string.
	
	//! Sets the legends caption font.
	void setTitleFont(QString const& family, int pointSize, int weight = QFont::Normal, bool italic = false); 

	Qwt3D::ColorVector colors; //!< The color vector

private:
	
	Qwt3D::Label caption_;
	Qwt3D::ParallelEpiped geometry() const { return pe_;}
	void setGeometryInternal();

	Qwt3D::ParallelEpiped pe_;
	Qwt3D::Tuple relMin_, relMax_;
	Qwt3D::Axis axis_;
	SCALEPOSITION axisposition_;
	ORIENTATION orientation_;

	bool showaxis_;
};

} // ns

#endif