This file is indexed.

/usr/include/qgis/qgsstylev2groupselectiondialog.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
/***************************************************************************
    qgsstylev2groupselectiondialog.h
    ---------------------
    begin                : Oct 2015
    copyright            : (C) 2015 by Alessandro Pasotti
    email                : elpaso at itopen dot it

 ***************************************************************************
 *                                                                         *
 *   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 QGSSTYLEV2GROUPSELECTIONDIALOG_H
#define QGSSTYLEV2GROUPSELECTIONDIALOG_H

#include <QDialog>
#include <QStandardItem>
#include "ui_qgsstylev2groupselectiondialogbase.h"


class QgsStyleV2;

class GUI_EXPORT QgsStyleV2GroupSelectionDialog : public QDialog, private Ui::SymbolsV2GroupSelectionDialogBase
{
    Q_OBJECT

  public:
    QgsStyleV2GroupSelectionDialog( QgsStyleV2* style, QWidget *parent = nullptr );
    ~QgsStyleV2GroupSelectionDialog();
    //! Set bold font for item
    void setBold( QStandardItem *item );

  signals:
    //! group with groupName has been selected
    void groupSelected( const QString& groupName );
    //! group with groupName has been deselected
    void groupDeselected( const QString& groupName );
    //! smartgroup with groupName has been selected
    void smartgroupSelected( const QString& groupName );
    //! smart group with groupName has been deselected
    void smartgroupDeselected( const QString& groupName );
    //! all deselected
    void allDeselected();
    //! all selected
    void allSelected();

  private slots:
    void groupTreeSelectionChanged( const QItemSelection& selected, const QItemSelection& deselected );

  private:
    /**
     * @brief build group tree
     * @param parent
     */
    void buildGroupTree( QStandardItem *&parent );
    QgsStyleV2* mStyle;

};

#endif // QGSSTYLEV2GROUPSELECTIONDIALOG_H