This file is indexed.

/usr/include/plotmm/curve.h is in libplotmm-dev 0.1.2-2.

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
/* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
 * Plot Widget Library
 * Copyright (C) 2004   Andy Thaller
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the LGPL
 *****************************************************************************/
/* ported from qwt */

#ifndef PLOTMM_CURVE_H
#define PLOTMM_CURVE_H

#include <vector>

#include "compat.h"
#if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION > 4)
#include <glibmm/objectbase.h>
#else
#include <sigc++/object.h>
#endif

#include <glibmm/arrayhandle.h>
#include <glibmm/ustring.h>

#include <plotmm/symbol.h>
#include <plotmm/doublerect.h>

namespace Gtk {
    class Drawable;
}

namespace PlotMM {

    class Paint;
    class DoubleIntMap;
    
    /*! 
      Curve styles. 
      \sa Curve::set_style
    */
    enum CurveStyleID
    {
	CURVE_NONE,
	CURVE_LINES,
	CURVE_STICKS,
	CURVE_L_STEPS,
	CURVE_C_STEPS,
	CURVE_R_STEPS,
	CURVE_DOTS,
	CurveStyleCnt
    };
    
    /*! 
      Curve options. 
      \sa Curve::set_options
    */
    enum CurveOptions
    {
	CURVE_AUTO = 0,
	CURVE_Y_FX = 1,
	CURVE_X_FY = 2,
	CURVE_INVERTED = 4
    };

    /*! @brief A class which draws curves
     *
     *  This class can be used to display data as a curve in the  x-y plane.
     *  It supports different display styles and symbols.
     *
     *  \par Usage 
     *  <dl><dt>A. Assign curve properties</dt> 
     *      <dd>When a curve is created, it is configured to draw black solid
     *          lines with CURVE_LINES and no symbols. You can change this by
     *          calling Curve::set_pen(), Curve::set_style() and
     *          Curve::set_symbol().</dd> 
     *      <dt>B. Assign or change data.</dt> 
     *      <dd>use one of the provided Curve::set_data() functions. The 
     *          curve's x and y data are assigned by copying from different 
     *          data structures.</dd>
     *      <dt>C. Draw</dt>
     *      <dd>Curve::draw() maps the data into pixel coordinates and paints 
     *          them.  </dd>
     *  </dl>
     *     
     *  \par Example:
     *  see examples/curvdemo
     *
     *  \sa Symbol, DoubleIntMap
     */
    class Curve : public PlotMM::ObjectBase
    {
    public:
	Curve(const Glib::ustring &title = "");
	Curve(const Curve &c);
	virtual ~Curve();

	//! Enable or disable this curve for drawing
	virtual void set_enabled(bool b) { enabled_= b; }
	//! Query if this curve is enabled for drawing
	virtual bool enabled() { return enabled_; }

	const Curve& operator= (const Curve &c);

	// void set_rawData(const double *x, const double *y, int size);
	virtual void set_data(const double *xData, const double *yData, 
			      int size);
	virtual void set_data(const std::vector<double> &xData,
			      const std::vector<double> &yData);
	virtual void set_data(const Glib::ArrayHandle<DoublePoint> &data);
    
	virtual int data_size() const;
	inline double x(int i) const;
	inline double y(int i) const;

	virtual DoubleRect bounding_rect() const;

	inline double min_x_value() const { return bounding_rect().get_x1(); }
	inline double max_x_value() const { return bounding_rect().get_x2(); }
	inline double min_y_value() const { return bounding_rect().get_y1(); }
	inline double max_y_value() const { return bounding_rect().get_y2(); }

	virtual void set_options(CurveOptions t);
	virtual CurveOptions options() const;

	virtual void set_title(const Glib::ustring &title);
	virtual const Glib::ustring &title() const;

	virtual void set_baseline(double ref);
	virtual double baseline() const;

	virtual void set_curve_style(CurveStyleID style, 
				     CurveOptions options = CURVE_AUTO);
	virtual CurveStyleID curve_style() const;
	virtual Glib::RefPtr<Paint> paint() const;

	virtual void set_symbol(const Glib::RefPtr<Symbol> &s);
        virtual Glib::RefPtr<Symbol> symbol() const;
	virtual void draw(const Glib::RefPtr<Gdk::Drawable> &p,
			  const DoubleIntMap &xMap, const DoubleIntMap &yMap,
			  int from = 0, int to = -1);

	//! Signals that this curve has changed in some way or the other
	sigc::signal0<void> signal_curve_changed;

    protected:
	virtual void init(const Glib::ustring &title);
	virtual void copy(const Curve &c);

	virtual void draw_curve_(const Glib::RefPtr<Gdk::Drawable> &p, 
				 int style,
				 const DoubleIntMap &xMap, 
				 const DoubleIntMap &yMap,
				 int from, int to);

	virtual void draw_symbols_(const Glib::RefPtr<Gdk::Drawable> &p,
				   const Glib::RefPtr<Symbol> &,
				   const DoubleIntMap &xMap,
				   const DoubleIntMap &yMap,
				   int from, int to);

	virtual void draw_lines_(const Glib::RefPtr<Gdk::Drawable> &p,
				 const DoubleIntMap &xMap,
				 const DoubleIntMap &yMap,
				 int from, int to);
	virtual void draw_sticks_(const Glib::RefPtr<Gdk::Drawable> &p,
				  const DoubleIntMap &xMap, 
				  const DoubleIntMap &yMap,
				  int from, int to);
	virtual void draw_dots_(const Glib::RefPtr<Gdk::Drawable> &p,
				const DoubleIntMap &xMap,
				const DoubleIntMap &yMap,
				int from, int to);
	virtual void draw_lsteps_(const Glib::RefPtr<Gdk::Drawable> &p,
				  const DoubleIntMap &xMap,
				  const DoubleIntMap &yMap,
				  int from, int to);
	virtual void draw_csteps_(const Glib::RefPtr<Gdk::Drawable> &p,
				  const DoubleIntMap &xMap,
				  const DoubleIntMap &yMap,
				  int from, int to);
	virtual void draw_rsteps_(const Glib::RefPtr<Gdk::Drawable> &p,
				  const DoubleIntMap &xMap,
				  const DoubleIntMap &yMap,
				  int from, int to);
	virtual void close_polyline_(const DoubleIntMap &, 
				     const DoubleIntMap &,
				     std::vector<Gdk::Point> &) const;

	virtual void curve_changed();

	virtual int verify_range(int &i1, int &i2);

    private:
	bool enabled_;
	std::vector<double> x_;
	std::vector<double> y_;

	CurveStyleID cStyle_;
	double baseline_;
	bool fill_;

	Glib::RefPtr<Symbol> symbol_;

	Glib::RefPtr<Paint> paint_;
	Glib::ustring title_;

	CurveOptions options_;
    };

    /*!
      \param i index
      \return x-value at position i
    */
    inline double Curve::x(int i) const 
    { 
	return x_[i]; 
    }
 
    /*!
      \param i index
      \return y-value at position i
    */
    inline double Curve::y(int i) const 
    { 
	return y_[i]; 
    }

}

#endif