This file is indexed.

/usr/include/tulip/GraphPropertiesSelectionWidget.h is in libtulip-qt4-dev 3.1.2-2.3ubuntu3.

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
//-*-c++-*-
/**
 Authors: David Auber, Patrick Mary, Morgan Mathiaut
 from the LaBRI Visualization Team
 Email : auber@tulip-software.org
 Last modification : 13/03/2009 
 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.
*/
/*
 * GraphPropertySelectionWidget.h
 *
 *  Created on: 4 févr. 2009
 *      Author: antoine
 */

#ifndef GRAPHPROPERTYSELECTIONWIDGET_H_
#define GRAPHPROPERTYSELECTIONWIDGET_H_

#include <tulip/AbstractProperty.h>

#include "StringListSelectionWidget.h"

namespace tlp {

/** \brief A widget which allows the user to select a subset of graph properties
 *
 *  This widget allows the user to select a subset of graph properties. The properties
 *  to select can be filtered according to their datatypes.
 */
class TLP_QT_SCOPE GraphPropertiesSelectionWidget : public StringListSelectionWidget {

public :

	/**
	 * Default Constructor (usefull for qt designer)
	 */
	GraphPropertiesSelectionWidget(QWidget *parent = 0);

	/**
	 *  Constructor which creates a GraphPropertiesSelectionWidget for a given graph
	 *
	 *  \param graph The graph on which we want to select properties
	 *  \param propertiesType To select properties with particular datatypes, fill a vector of string with the wanted datatypes name and passed it as parameter of this constructor. The datatypes name must be the same as those returned by the getTypename method of the PropertyInterface class (e.g. "int", "double", "string"). If the vector is empty, there is no restriction on property datatypes.
	 *  \param includeViewProperties If true, the view properties (e.g. "viewLabel", "viewMetric") will be selectable
	 */
	GraphPropertiesSelectionWidget(Graph *graph, const std::vector<std::string> &propertiesTypes = std::vector<std::string>(), const bool includeViewProperties = false, QWidget *parent = 0);

	/**
	 * Method to set the widget parameters
	 *
	 * \param graph The graph on which we want to select properties
	 * \param propertiesType To select properties with particular datatypes, fill a vector of string with the wanted datatypes name and passed it as parameter of this constructor. The datatypes name must be the same as those returned by the getTypename method of the PropertyInterface class (e.g. "int", "double", "string"). If the vector is empty, there is no restriction on property datatypes.
	 * \param includeViewProperties If true, the view properties (e.g. "viewLabel", "viewMetric") will be selectable
	 */
	void setWidgetParameters(Graph *graph, const std::vector<std::string> &propertiesTypes = std::vector<std::string>(), const bool includeViewProperties = false);

	/**
	 * Method to set the input graph properties list
	 * If there is datatypes restriction, the types of properties are checked before inserting them in the input list
	 * \param inputPropertiesList A vector containing input properties names
	 */
	void setInputPropertiesList(std::vector<std::string> &inputPropertiesList);

	/**
	 * Method to set the output graph properties list
	 * If there is datatypes restriction, the types of properties are checked before inserting them in the output list
	 * \param outputPropertiesList A vector containing output properties names
	 */
	void setOutputPropertiesList(std::vector<std::string> &outputPropertiesList);

	/**
	 * Method which returns the names of the graph properties selected by the user
	 */
	std::vector<std::string> getSelectedProperties() const;


	/**
	 *  Method which clears the content of the input list and the output list
	 */
	void clearLists();

private :

	void initWidget();
	bool propertySelectable(const std::string &propertyName);

	Graph *graph;
	std::vector<std::string> propertiesTypes;
	bool includeViewProperties;

};

}

#endif /* GRAPHPROPERTYSELECTIONWIDGET_H_ */