Tulip  4.1.0
Better Visualization Through Research
 All Classes Files Functions Variables Enumerations Enumerator Properties Groups Pages
TlpQtTools.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 
20 #ifndef _TLPQTTOOLS_H
21 #define _TLPQTTOOLS_H
22 
23 #include "tulip/Color.h"
24 #include "tulip/Graph.h"
25 #include "tulip/GlMainWidget.h"
26 #include "tulip/DataSet.h"
27 
28 #include <QtGui/QColor>
29 
30 class QWidget;
31 
32 namespace tlp {
33 
34 TLP_QT_SCOPE bool getColorDialog(const QColor &color,QWidget *parent,const QString &title,QColor &result);
35 
36 inline QColor colorToQColor(const Color& color) {
37  return QColor(color.getR(), color.getG(), color.getB(), color.getA());
38 }
39 inline Color QColorToColor(const QColor& color) {
40  return Color(color.red(), color.green(), color.blue(), color.alpha());
41 }
42 /**
43  * @brief Convert a string from Tulip to QString.
44  **/
45 inline std::string QStringToTlpString(const QString& toConvert) {
46  return std::string(toConvert.toUtf8());
47 }
48 /**
49  * @brief Convert a QString to tulip string.
50  **/
51 inline QString tlpStringToQString(const std::string& toConvert) {
52  return QString::fromUtf8(toConvert.c_str());
53 }
54 
55 /**
56  * @brief Case insensitive comparison of two QStrings
57  **/
58 inline bool QStringCaseCmp(const QString& s1, const QString& s2) {
59  return QString::localeAwareCompare(s1, s2) < 0;
60 }
61 
62 
63 
64 /**
65  * @brief Convert the property type string to a label to display in the GUI.
66  * The property type label is the string to display in the GUI instead of the basic property type string.
67  * By example for a property of type "double" the label displayed in the GUI will be "Metric".
68  **/
69 TLP_QT_SCOPE QString propertyTypeToPropertyTypeLabel(const std::string& typeName);
70 
71 /**
72  * @brief Get the string to display as property type for the given property.
73  * The property type label is the string to display in the GUI instead of the property type string.
74  * By example for a property of type "double" the label displayed in the GUI will be "Metric".
75  **/
76 inline QString propertyInterfaceToPropertyTypeLabel(const tlp::PropertyInterface* const property) {
77  return propertyTypeToPropertyTypeLabel(property->getTypename());
78 }
79 
80 /**
81  * @brief Convert the label of a property type to it's corresponding property type.
82  * The property type label is the string to display in the GUI instead of the property type string.
83  * By example for a property of type "double" the label displayed in the GUI will be "Metric".
84  **/
85 TLP_QT_SCOPE std::string propertyTypeLabelToPropertyType(const QString& typeNameLabel);
86 
87 /**
88  * @brief Gets the name of the package to retrieve for this version of tulip.
89  * The package name uses the Tulip release, platform (windows, unix, ...), architecture (x86, x86_64), and compiler used (GCC, Clang, MSVC) to determine which package this version can use.
90  *
91  * @param pluginName The name of the plugin for which we want the package name.
92  **/
93 TLP_QT_SCOPE QString getPluginPackageName(const QString& pluginName);
94 
95 TLP_QT_SCOPE QString getPluginStagingDirectory();
96 
97 TLP_QT_SCOPE QString getPluginLocalInstallationDir();
98 
99 TLP_QT_SCOPE QGLFramebufferObject *createQGLFramebufferObject(int width, int height, QGLFramebufferObject::Attachment attachment);
100 
101 TLP_QT_SCOPE QString localPluginsPath();
102 
103 /**
104  @brief Sets up environment when creating an executable using Tulip libraries
105  This method performs basic operations when starting a software using Tulip:
106  @list
107  @li It initializes the tulip library
108  @li it checks plugins to be discarded and uninstalls them
109  @li It loads plugins from the application path
110  @endlist
111  */
112 extern TLP_QT_SCOPE void initTulipSoftware(PluginLoader *loader = NULL, bool removeDiscardedPlugins=false);
113 
114 }
115 
116 #endif