Tulip  4.2.0
Better Visualization Through Research
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Groups Pages
GlGraphStaticData.h
1 /*
2  *
3  * This file is part of Tulip (www.tulip-software.org)
4  *
5  * Authors: David Auber and the Tulip development Team
6  * from LaBRI, University of Bordeaux 1 and Inria Bordeaux - Sud Ouest
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_GLGRAPHSTATICDATA_H
22 #define Tulip_GLGRAPHSTATICDATA_H
23 
24 #include <tulip/tulipconf.h>
25 
26 #include <string>
27 
28 namespace tlp {
29 
30 enum EdgeShape {POLYLINESHAPE = 0, BEZIERSHAPE = 4, SPLINESHAPE = 8, CUBICBSPLINE=16};
31 
32 class TLP_GL_SCOPE GlGraphStaticData {
33 
34 public:
35 
36  static const int edgeShapesCount;
37  static int edgeShapeIds[];
38  static std::string labelPositionNames[];
39 
40  static std::string edgeShapeName(int id);
41  static int edgeShapeId(std::string name);
42 
43  static std::string labelPositionName(int id);
44  static int labelPositionId(std::string name);
45 
46 };
47 
48 }
49 
50 #endif // Tulip_GLGRAPHSTATICDATA_H
51 ///@endcond