This file is indexed.

/usr/include/tulip/GlCompositeHierarchyManager.h is in libtulip-dev 4.4.0dfsg2-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
/*
 *
 * This file is part of Tulip (www.tulip-software.org)
 *
 * Authors: David Auber and the Tulip development Team
 * from LaBRI, University of Bordeaux 1 and Inria Bordeaux - Sud Ouest
 *
 * Tulip is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation, either version 3
 * of the License, or (at your option) any later version.
 *
 * Tulip is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU General Public License for more details.
 *
 */
///@cond DOXYGEN_HIDDEN

#ifndef GL_HCVXHULL_H
#define GL_HCVXHULL_H

#include <string>
#include <map>

#include <tulip/DataSet.h>
#include <tulip/Observable.h>
#include <tulip/GlComposite.h>

namespace tlp {

class GlConvexGraphHull;

struct node;
class Color;
class LayoutProperty;
class DoubleProperty;
class SizeProperty;
struct ConvexHullItem;
class GlConvexHull;
class Graph;
class GlLayer;

/**
 * Create a GlComposite item for each and every graph and subgraph.
 * This class observes the graph to update said hierarchy when a subgraph is added or deleted.
 */
class TLP_QT_SCOPE GlCompositeHierarchyManager : private Observable {

public:
  GlCompositeHierarchyManager(Graph* graph, GlLayer* layer, std::string layerName, LayoutProperty* layout, SizeProperty* size,
                              DoubleProperty* rotation, bool visible = false, std::string namingProperty = "name", std::string subCompositeSuffix = " sub-hulls");

  void setGraph(tlp::Graph* graph);
  DataSet getData();
  void setData(const DataSet &dataSet);

  void createComposite();

  void setVisible(bool visible);
  bool isVisible() const;

protected :
  virtual void treatEvents(const  std::vector<Event> &events );
  virtual void treatEvent(const Event&);

private:
  bool _shouldRecreate;
  const tlp::Color getColor();
  int _currentColor;

  /**
   * Create the hierarchy of ConvexHullItem
   */
  void buildComposite(tlp::Graph* current, tlp::GlComposite* composite);

  Graph* _graph;
  GlLayer* _layer;
  GlComposite* _composite;
  LayoutProperty* _layout;
  SizeProperty* _size;
  DoubleProperty* _rotation;
  std::vector<Color> _fillColors;
  std::string _layerName;
  bool _isVisible;
  const std::string _subCompositesSuffix;
  const std::string _nameAttribute;

  const static std::string temporaryPropertyValue;
  /**
   * This map contains the composite that contains the associated graph's hull.
   */
  std::map<tlp::Graph*, std::pair<tlp::GlComposite*, GlConvexGraphHull*> > _graphsComposites;
};

class GlHierarchyMainComposite : public GlComposite {
public:
  GlHierarchyMainComposite(GlCompositeHierarchyManager* manager);
  virtual void setVisible(bool visible);
private:
  GlCompositeHierarchyManager* _manager;
};
}

#endif
///@endcond