This file is indexed.

/usr/include/qgis/qgspainteffectpropertieswidget.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
72
/***************************************************************************
    qgspainteffectpropertieswidget.h
    --------------------------------
    begin                : January 2015
    copyright            : (C) 2015 by Nyall Dawson
    email                : nyall dot dawson at gmail.com
 ***************************************************************************
 *                                                                         *
 *   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.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef QGSPAINTEFFECTPROPERTIESWIDGET_H
#define QGSPAINTEFFECTPROPERTIESWIDGET_H

#include "ui_qgseffectpropertieswidget.h"

class QgsPaintEffect;


/** \ingroup gui
 * \class QgsPaintEffectPropertiesWidget
 * \brief A widget which modifies the properties of a QgsPaintEffect
 *
 * \note Added in version 2.9
 */

class GUI_EXPORT QgsPaintEffectPropertiesWidget : public QWidget, private Ui::EffectPropertiesWidget
{
    Q_OBJECT

  public:

    /** QgsPaintEffectPropertiesWidget constructor
     * @param effect QgsPaintEffect to modify in the widget
     * @param parent parent widget
     */
    QgsPaintEffectPropertiesWidget( QgsPaintEffect* effect, QWidget* parent = nullptr );

  public slots:

    /** Update widget when effect type changes
     */
    void effectTypeChanged();

    /** Emits the changed signal
     */
    void emitSignalChanged();

  signals:

    /** Emitted when paint effect properties changes
     */
    void changed();

    /** Emitted when paint effect type changes
     */
    void changeEffect( QgsPaintEffect* effect );

  private:

    QgsPaintEffect* mEffect;

    void populateEffectTypes();
    void updateEffectWidget( QgsPaintEffect* effect );

};

#endif //QGSPAINTEFFECTPROPERTIESWIDGET_H