|
Documentation for OpenFLUID
2.2.0
|
Namespaces | |
| builderext | |
| common | |
| spatial | |
| waresdev | |
Functions | |
| QString | toIniCompatible (const std::string &Str) |
| std::string | fromIniCompatible (const QVariant &Var) |
| std::list< std::string > | toStdStringList (const QStringList &StrList) |
| std::vector< std::string > | toStdStringVector (const QStringList &StrList) |
| std::map< std::string, std::string > | toStdStringMap (const std::map< QString, QString > &StrMap) |
| QDateTime | toQDateTime (const openfluid::core::DateTime &DT) |
| QStringList | toQStringList (const std::vector< std::string > &StrVect) |
| QStringList | toQStringList (const std::set< std::string > &StrSet) |
| QStringList | toQStringList (const std::list< std::string > &StrList) |
| QStringList | toQStringList (const std::set< int > &IntSet) |
| QStringList | convertArgsStringToList (const QString &ArgsStr) |
| QString | escapeXMLEntities (const QString &Str) |
| QString | decodeXMLEntities (const QString &Str) |
| QPoint | toQPoint (const std::string &Str) |
| std::string | fromQPoint (const QPoint &Point) |
| QSize | toQSize (const std::string &Str) |
| std::string | fromQSize (const QSize &Size) |
|
inline |
Converts arguments string to list. It first splits the string using spaces that are not inclosed in quotes, then remove enclosing quotes for each argument if any.
| [in] | ArgsStr | the argument string to convert |
|
inline |
Decodes XML entities to characters
| [in] | Str | the string to decode |
|
inline |
Escapes characters in the given string to be compatible with the XML format.
| [in] | Str | the string to escape |
|
inline |
Transforms the given variable from an INI file managed with QSettings to a string
| [in] | Var | the variable to transform |
|
inline |
Converts a QPoint to a @Point formatted string
| [in] | Point | the QPoint object to convert |
|
inline |
Converts a QSize to a @Size formatted string
| [in] | Size | the Size object to convert |
|
inline |
Transforms the given string to a string compatible with the INI files managed with QSettings.
| [in] | Str | the string to transform |
|
inline |
Transforms an OpenFLUID DateTime to a QDateTime
| [in] | DT | The OpenFLUID DateTime to transform |
|
inline |
Converts a @Point formatted string to a QPoint
| [in] | Str | the @Point formatted string (e.g. "\@Point(-127 53)") |
|
inline |
Converts a @Size formatted string to a QSize
| [in] | Str | the @Size formatted string (e.g. "\@Size(1920 1080)") |
|
inline |
Transforms a std::list of std::string into a QStringList
| [in] | StrList | the std::list of std::string to transform |
|
inline |
Transforms a std::set of int into a QStringList
| [in] | IntSet | the std::set of int to transform |
|
inline |
Transforms a std::set of std::string into a QStringList
| [in] | StrSet | the std::set of std::string to transform |
|
inline |
Transforms a std::vector of std::string into a QStringList
| [in] | StrVect | the std::vector of std::string to transform |
|
inline |
Transforms a QStringList into a std::list of std::string
| [in] | StrList | the QStringList to transform |
|
inline |
Transforms a std::map of QString,QString into a std::map of std::string,std::string
| [in] | StrMap | the map to transform |
|
inline |
Transforms a QStringList into a std::vector of std::string
| [in] | StrList | the QStringList to transform |