Tulip  4.6.1
Better Visualization Through Research
 All Classes Namespaces 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 //Declare tulip type compatible with QVariant
67 Q_DECLARE_METATYPE(tlp::DataSet)
68 
69 Q_DECLARE_METATYPE(tlp::DoubleProperty*)
70 Q_DECLARE_METATYPE(tlp::DoubleVectorProperty*)
71 Q_DECLARE_METATYPE(std::vector<double>)
72 
73 Q_DECLARE_METATYPE(tlp::Color)
74 Q_DECLARE_METATYPE(tlp::ColorProperty*)
75 Q_DECLARE_METATYPE(tlp::ColorVectorProperty*)
76 Q_DECLARE_METATYPE(std::vector<tlp::Color>)
77 
78 Q_DECLARE_METATYPE(tlp::Size)
79 Q_DECLARE_METATYPE(tlp::SizeProperty*)
80 Q_DECLARE_METATYPE(tlp::SizeVectorProperty*)
81 Q_DECLARE_METATYPE(std::vector<tlp::Size>)
82 
83 Q_DECLARE_METATYPE(std::string)
84 Q_DECLARE_METATYPE(tlp::StringProperty*)
85 Q_DECLARE_METATYPE(tlp::StringVectorProperty*)
86 Q_DECLARE_METATYPE(std::vector<std::string>)
87 
88 //Q_DECLARE_METATYPE(tlp::Coord)
89 Q_DECLARE_METATYPE(tlp::LayoutProperty*)
90 Q_DECLARE_METATYPE(tlp::CoordVectorProperty*)
91 //Q_DECLARE_METATYPE(std::vector<tlp::Coord>)
92 
93 Q_DECLARE_METATYPE(tlp::Graph*)
94 Q_DECLARE_METATYPE(tlp::GraphProperty*)
95 
96 Q_DECLARE_METATYPE(tlp::IntegerProperty*)
97 Q_DECLARE_METATYPE(tlp::IntegerVectorProperty*)
98 Q_DECLARE_METATYPE(std::vector<int>)
99 
100 Q_DECLARE_METATYPE(tlp::BooleanProperty*)
101 Q_DECLARE_METATYPE(tlp::BooleanVectorProperty*)
102 //Q_DECLARE_METATYPE(std::vector<bool>)
103 Q_DECLARE_METATYPE(QVector<bool>)
104 
105 Q_DECLARE_METATYPE(std::set<tlp::edge>)
106 
107 Q_DECLARE_METATYPE(tlp::NumericProperty*)
108 
109 Q_DECLARE_METATYPE(tlp::PropertyInterface*)
110 
111 Q_DECLARE_METATYPE(tlp::ColorScale)
112 
113 Q_DECLARE_METATYPE(tlp::StringCollection)
114 
115 Q_DECLARE_METATYPE(TulipFileDescriptor)
116 
117 Q_DECLARE_METATYPE(tlp::NodeShape::NodeShapes)
118 Q_DECLARE_METATYPE(tlp::EdgeShape::EdgeShapes)
119 Q_DECLARE_METATYPE(tlp::EdgeExtremityShape::EdgeExtremityShapes)
120 
121 Q_DECLARE_METATYPE(tlp::LabelPosition::LabelPositions)
122 Q_DECLARE_METATYPE(tlp::TulipFont)
123 
124 Q_DECLARE_METATYPE(QStringList)
125 
126 namespace tlp {
127 class TLP_QT_SCOPE TulipMetaTypes {
128  TulipMetaTypes() {}
129 
130  template<typename T>
131  inline static QVariant typedVariant(tlp::DataType *dm) {
132  T result;
133 
134  if (dm)
135  result = *((T*)dm->value);
136 
137  return QVariant::fromValue<T>(result);
138  }
139 
140 public:
141  static tlp::DataType *qVariantToDataType(const QVariant &);
142  static QVariant dataTypeToQvariant(tlp::DataType *,const std::string& paramName);
143 };
144 
145 class TLP_QT_SCOPE QStringListType: public TypeInterface<QStringList> {
146 public:
147  static void write(std::ostream&, const RealType&);
148  static bool read(std::istream&, RealType&);
149  FORWARD_STRING_METHODS(QStringListType)
150 };
151 
152 class TLP_QT_SCOPE QStringType: public TypeInterface<QString> {
153 public:
154  static void write(std::ostream&, const RealType&);
155  static bool read(std::istream&, RealType&);
156  static std::string toString(const RealType &);
157  static bool fromString(RealType &, const std::string &);
158 };
159 
160 extern void initQTypeSerializers();
161 
162 }
163 
164 #endif // TULIPMETATYPES_H
165 ///@endcond
Describes a value of any type.
Definition: DataSet.h:56
A container that can store data from any type.
Definition: DataSet.h:165
void * value
The actual pointer to the element's data.
Definition: DataSet.h:73