Tulip  4.9.0
Better Visualization Through Research
 All Classes Files Functions Variables Enumerations Enumerator Properties Groups Pages
TulipMetaTypes.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
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 TULIPMETATYPES_H
22 #define TULIPMETATYPES_H
23 
24 #include <QVector>
25 #include <QStringList>
26 #include <QVariant>
27 
28 #include <tulip/DataSet.h>
29 #include <tulip/Graph.h>
30 #include <tulip/Color.h>
31 #include <tulip/Coord.h>
32 #include <tulip/Size.h>
33 #include <tulip/BooleanProperty.h>
34 #include <tulip/DoubleProperty.h>
35 #include <tulip/ColorProperty.h>
36 #include <tulip/SizeProperty.h>
37 #include <tulip/StringProperty.h>
38 #include <tulip/LayoutProperty.h>
39 #include <tulip/GraphProperty.h>
40 #include <tulip/IntegerProperty.h>
41 #include <tulip/ColorScale.h>
42 #include <tulip/GlGraphStaticData.h>
43 #include <tulip/GlLabel.h>
44 #include <tulip/TulipFont.h>
45 #include <tulip/StringCollection.h>
46 #include <tulip/TulipViewSettings.h>
47 
48 // Helper class for filesystem types handling
49 struct TulipFileDescriptor {
50  enum FileType {File,Directory};
51 
52  TulipFileDescriptor() {}
53  TulipFileDescriptor(const QString& absolutePath,FileType fileType, bool existing = true):absolutePath(absolutePath),type(fileType),mustExist(existing) {}
54  TulipFileDescriptor(const TulipFileDescriptor& d) {
55  absolutePath = d.absolutePath;
56  type = d.type;
57  mustExist = d.mustExist;
58  }
59  QString absolutePath;
60  FileType type;
61  // indicate if the file or dir must exist
62  bool mustExist;
63  QString fileFilterPattern;
64 };
65 
66 struct TextureFile {
67  QString texturePath;
68  TextureFile() {}
69  TextureFile(const QString &texturePath) : texturePath(texturePath) {}
70 };
71 
72 struct TulipFontAwesomeIcon {
73 
74  TulipFontAwesomeIcon() {}
75 
76  TulipFontAwesomeIcon(const QString &iconName) : iconName(iconName) {}
77 
78  QString iconName;
79 
80 };
81 
82 //Declare tulip type compatible with QVariant
83 Q_DECLARE_METATYPE(tlp::DataSet)
84 
85 Q_DECLARE_METATYPE(tlp::DoubleProperty*)
86 Q_DECLARE_METATYPE(tlp::DoubleVectorProperty*)
87 Q_DECLARE_METATYPE(std::vector<double>)
88 
89 Q_DECLARE_METATYPE(tlp::Color)
90 Q_DECLARE_METATYPE(tlp::ColorProperty*)
91 Q_DECLARE_METATYPE(tlp::ColorVectorProperty*)
92 Q_DECLARE_METATYPE(std::vector<tlp::Color>)
93 
94 Q_DECLARE_METATYPE(tlp::Size)
95 Q_DECLARE_METATYPE(tlp::SizeProperty*)
96 Q_DECLARE_METATYPE(tlp::SizeVectorProperty*)
97 Q_DECLARE_METATYPE(std::vector<tlp::Size>)
98 
99 Q_DECLARE_METATYPE(std::string)
100 Q_DECLARE_METATYPE(tlp::StringProperty*)
101 Q_DECLARE_METATYPE(tlp::StringVectorProperty*)
102 Q_DECLARE_METATYPE(std::vector<std::string>)
103 
104 //Q_DECLARE_METATYPE(tlp::Coord)
105 Q_DECLARE_METATYPE(tlp::LayoutProperty*)
106 Q_DECLARE_METATYPE(tlp::CoordVectorProperty*)
107 //Q_DECLARE_METATYPE(std::vector<tlp::Coord>)
108 
109 Q_DECLARE_METATYPE(tlp::Graph*)
110 Q_DECLARE_METATYPE(tlp::GraphProperty*)
111 
112 Q_DECLARE_METATYPE(tlp::IntegerProperty*)
113 Q_DECLARE_METATYPE(tlp::IntegerVectorProperty*)
114 Q_DECLARE_METATYPE(std::vector<int>)
115 
116 Q_DECLARE_METATYPE(tlp::BooleanProperty*)
117 Q_DECLARE_METATYPE(tlp::BooleanVectorProperty*)
118 //Q_DECLARE_METATYPE(std::vector<bool>)
119 Q_DECLARE_METATYPE(QVector<bool>)
120 
121 Q_DECLARE_METATYPE(std::set<tlp::edge>)
122 
123 Q_DECLARE_METATYPE(tlp::NumericProperty*)
124 
125 Q_DECLARE_METATYPE(tlp::PropertyInterface*)
126 
127 Q_DECLARE_METATYPE(tlp::ColorScale)
128 
129 Q_DECLARE_METATYPE(tlp::StringCollection)
130 
131 Q_DECLARE_METATYPE(TextureFile)
132 Q_DECLARE_METATYPE(TulipFileDescriptor)
133 Q_DECLARE_METATYPE(TulipFontAwesomeIcon)
134 
135 Q_DECLARE_METATYPE(tlp::NodeShape::NodeShapes)
136 Q_DECLARE_METATYPE(tlp::EdgeShape::EdgeShapes)
137 Q_DECLARE_METATYPE(tlp::EdgeExtremityShape::EdgeExtremityShapes)
138 
139 Q_DECLARE_METATYPE(tlp::LabelPosition::LabelPositions)
140 Q_DECLARE_METATYPE(tlp::TulipFont)
141 
142 Q_DECLARE_METATYPE(QStringList)
143 
144 namespace tlp {
145 class TLP_QT_SCOPE TulipMetaTypes {
146  TulipMetaTypes() {}
147 
148  template<typename T>
149  inline static QVariant typedVariant(tlp::DataType *dm) {
150  T result;
151 
152  if (dm)
153  result = *((T*)dm->value);
154 
155  return QVariant::fromValue<T>(result);
156  }
157 
158 public:
159  static tlp::DataType *qVariantToDataType(const QVariant &);
160  static QVariant dataTypeToQvariant(tlp::DataType *,const std::string& paramName);
161 };
162 
163 class TLP_QT_SCOPE QStringListType: public TypeInterface<QStringList> {
164 public:
165  static void write(std::ostream&, const RealType&);
166  static bool read(std::istream&, RealType&);
167  FORWARD_STRING_METHODS(QStringListType)
168 };
169 
170 class TLP_QT_SCOPE QStringType: public TypeInterface<QString> {
171 public:
172  static void write(std::ostream&, const RealType&);
173  static bool read(std::istream&, RealType&);
174  static std::string toString(const RealType &);
175  static bool fromString(RealType &, const std::string &);
176 };
177 
178 extern void initQTypeSerializers();
179 
180 }
181 
182 #endif // TULIPMETATYPES_H
183 ///@endcond
Describes a value of any type.
Definition: DataSet.h:57
A container that can store data from any type.
Definition: DataSet.h:172
void * value
The actual pointer to the element's data.
Definition: DataSet.h:74