This file is indexed.

/usr/include/qwtplot3d/qwt3d_scale.h is in libqwtplot3d-qt5-dev 0.2.7+svn191-10.

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

#include <qstring.h>
#include "qwt3d_types.h"
#include "qwt3d_autoscaler.h"
#include "qwt3d_autoptr.h"

namespace Qwt3D
{

/*! 
The class encapsulates non-visual scales. 
She is utilized by Axis and also collaborates closely with AutoScaler.
A Scale allows control over all aspects of tic generation including 
arbitrary transformations of tic values into corresponding strings. 
The strings contain what eventually will be shown as tic labels.\n
Standard linear and logarithmic scales have been integrated yet into the Axis 
interface. User-defined axes can be derived from Scale, LinearScale et al.
*/
class QWT3D_EXPORT Scale
{
  friend class Axis;
  friend class qwt3d_ptr<Scale>;

  protected:
    Scale();
    virtual ~Scale(){}
    virtual QString ticLabel(unsigned int idx) const;

    virtual void setLimits(double start, double stop); 
    virtual void setMajors(int val) {majorintervals_p=val;} //!< Sets number of major intervals
    virtual void setMinors(int val) {minorintervals_p=val;} //!< Sets number of minor intervals per major interval
    virtual void setMajorLimits(double start, double stop);

    int majors() const {return majorintervals_p;} //!< Returns major intervals
    int minors() const {return minorintervals_p;} //!< Returns minor intervals

    //! Derived classes should return a new heap based object here.  
    virtual Scale* clone() const = 0;
    //! This function should setup the 2 vectors for major and minor positions;
    virtual void calculate() = 0;
    virtual int autoscale(double& a, double& b, double start, double stop, int ivals);

    std::vector<double> majors_p, minors_p; 
    double start_p, stop_p;
    int majorintervals_p, minorintervals_p;
    double mstart_p, mstop_p;
  
  private:
    void destroy() const {delete this;} //!< Used by qwt3d_ptr   
};

//! The standard (1:1) mapping class for axis numbering
class QWT3D_EXPORT LinearScale : public Scale
{
  friend class Axis;
  friend class qwt3d_ptr<Scale>;
protected:
  int autoscale(double& a, double& b, double start, double stop, int ivals);
  //! Returns a new heap based object utilized from qwt3d_ptr
  Scale* clone() const {return new LinearScale(*this);}
  void calculate();
  LinearAutoScaler autoscaler_p;
};

//! log10 scale
class QWT3D_EXPORT LogScale : public Scale
{
  friend class Axis;
  friend class qwt3d_ptr<Scale>;
protected:
  QString ticLabel(unsigned int idx) const;
  void setMinors(int val);
  //! Standard ctor
  LogScale();
  //! Returns a new heap based object utilized from qwt3d_ptr
  Scale* clone() const {return new LogScale;}
  void calculate();
private:
  void setupCounter(double& k, int& step);
};

} // namespace Qwt3D


#endif /* include guarded */