Tulip  5.3.0
Large graphs analysis and drawing
GlyphManager.h
1 /*
2  *
3  * This file is part of Tulip (http://tulip.labri.fr)
4  *
5  * Authors: David Auber and the Tulip development Team
6  * from LaBRI, University of Bordeaux
7  *
8  * Tulip is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation, either version 3
11  * of the License, or (at your option) any later version.
12  *
13  * Tulip is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16  * See the GNU General Public License for more details.
17  *
18  */
19 ///@cond DOXYGEN_HIDDEN
20 
21 #ifndef Tulip_GLYPHMANAGER_H
22 #define Tulip_GLYPHMANAGER_H
23 
24 #ifndef DOXYGEN_NOTFOR_DEVEL
25 
26 //#include <string>
27 
28 #include <tulip/tulipconf.h>
29 #include <tulip/Glyph.h>
30 #include <tulip/MutableContainer.h>
31 
32 namespace tlp {
33 
34 class GlGraphInputData;
35 class Graph;
36 
37 /** \ brief Singleton class use to store Glyphs plugins
38  * This class is a singleton use to sore Glyphs plugins
39  */
40 class TLP_GL_SCOPE GlyphManager {
41 
42 public:
43  /**
44  * Return the singleton (if the singleton doesn't exist this function create it)
45  */
46  static GlyphManager &getInst() {
47  return inst;
48  }
49 
50  /**
51  * Return the name of glyph with given id
52  */
53  std::string glyphName(int id);
54  /**
55  * Return the id if glyph with given name
56  */
57  int glyphId(const std::string &name, bool warnIfNotFound = true);
58  /**
59  * Load glyphs plugins
60  */
61  void loadGlyphPlugins();
62 
63  /**
64  * Create the glyph list and store it in glyphs parameter
65  */
66  void initGlyphList(Graph **graph, GlGraphInputData *glGraphInputData,
67  MutableContainer<Glyph *> &glyphs);
68  /**
69  * Clear the glyph list
70  */
71  void clearGlyphList(Graph **graph, GlGraphInputData *glGraphInputData,
72  MutableContainer<Glyph *> &glyphs);
73 
74 private:
75  GlyphManager();
76 
77  static std::list<std::string> glyphList;
78 
79  static GlyphManager inst;
80 };
81 } // namespace tlp
82 
83 #endif // DOXYGEN_NOTFOR_DEVEL
84 
85 #endif // Tulip_GLYPHMANAGER_H
86 ///@endcond