This file is indexed.

/usr/include/qgis/qgsdatadefinedsymboldialog.h is in libqgis-dev 2.14.11+dfsg-3+deb9u1.

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

#include "ui_qgsdatadefinedsymboldialogbase.h"
#include <QDialog>

class QgsVectorLayer;
class QComboBox;


/** \ingroup gui
 * \class QgsDataDefinedSymbolDialog
 * \deprecated no longer used and will be removed in QGIS 3.0
 */
class GUI_EXPORT QgsDataDefinedSymbolDialog: public QDialog, private Ui::QgsDataDefinedSymbolDialog
{
    Q_OBJECT
  public:

    struct DataDefinedSymbolEntry
    {
      DataDefinedSymbolEntry( const QString& p, const QString& t, const QString& v, const QString& h ):
          property( p ), title( t ), initialValue( v ), helpText( h ) {}
      QString property;
      QString title;
      QString initialValue;
      QString helpText;
    };

    //! @deprecated will be removed in QGIS 3.0
    Q_DECL_DEPRECATED QgsDataDefinedSymbolDialog( const QList< DataDefinedSymbolEntry >& entries, const QgsVectorLayer* vl, QWidget * parent = nullptr, const Qt::WindowFlags& f = nullptr );
    ~QgsDataDefinedSymbolDialog();

    //! @deprecated will be removed in QGIS 3.0
    Q_DECL_DEPRECATED QMap< QString, QString > dataDefinedProperties() const;

    //common help texts
    //! @deprecated will be removed in QGIS 3.0
    Q_DECL_DEPRECATED static QString doubleHelpText();
    //! @deprecated will be removed in QGIS 3.0
    Q_DECL_DEPRECATED static QString colorHelpText();
    //! @deprecated will be removed in QGIS 3.0
    Q_DECL_DEPRECATED static QString offsetHelpText();
    //! @deprecated will be removed in QGIS 3.0
    Q_DECL_DEPRECATED static QString fileNameHelpText();
    //! @deprecated will be removed in QGIS 3.0
    Q_DECL_DEPRECATED static QString horizontalAnchorHelpText();
    //! @deprecated will be removed in QGIS 3.0
    Q_DECL_DEPRECATED static QString verticalAnchorHelpText();
    //! @deprecated will be removed in QGIS 3.0
    Q_DECL_DEPRECATED static QString gradientTypeHelpText();
    //! @deprecated will be removed in QGIS 3.0
    Q_DECL_DEPRECATED static QString gradientCoordModeHelpText();
    //! @deprecated will be removed in QGIS 3.0
    Q_DECL_DEPRECATED static QString gradientSpreadHelpText();
    //! @deprecated will be removed in QGIS 3.0
    Q_DECL_DEPRECATED static QString boolHelpText();
    //! @deprecated will be removed in QGIS 3.0
    Q_DECL_DEPRECATED static QString lineStyleHelpText();
    //! @deprecated will be removed in QGIS 3.0
    Q_DECL_DEPRECATED static QString joinStyleHelpText();
    //! @deprecated will be removed in QGIS 3.0
    Q_DECL_DEPRECATED static QString capStyleHelpText();
    //! @deprecated will be removed in QGIS 3.0
    Q_DECL_DEPRECATED static QString fillStyleHelpText();

  private:
    const QgsVectorLayer* mVectorLayer;
};

#endif // QGSDATADEFINEDSYMBOLLAYERDIALOG_H