8 #include <boost/shared_ptr.hpp>
11 class ModelAPI_Feature;
13 \brief Return directory part of the file path.
15 If the file path does not include directory part (the file is in the
16 current directory), null string is returned.
19 \param abs if true (default) \a path parameter is treated as absolute file path
20 \return directory part of the file path
22 QString XGUI_EXPORT dir(const QString& path, bool isAbs = true);
25 \brief Return file name part of the file path.
28 \param withExt if true (default) complete file name (with all
29 extension except the last) is returned, otherwise only base name
31 \return file name part of the file path
33 QString XGUI_EXPORT file(const QString& path, bool withExt = true);
36 \brief Return extension part of the file path.
39 \param full if true complete extension (all extensions, dot separated)
40 is returned, otherwise (default) only last extension is returned
41 \return extension part of the file path
43 QString XGUI_EXPORT extension(const QString& path, bool full = false);
46 \brief Add a slash (platform-specific) to the end of \a path
47 if it is not already there.
48 \param path directory path
49 \return modified path (with slash added to the end)
51 QString XGUI_EXPORT addSlash(const QString& path);
54 Creates a rect with TopLeft = ( min(x1,x2), min(y1,y2) )
55 and BottomRight = ( TopLeft + (x2-x1)(y2-y1) )
57 QRect XGUI_EXPORT makeRect(const int x1, const int y1, const int x2, const int y2);
60 Returns the string presentation of the given feature
61 \param theFeature a feature
63 std::string XGUI_EXPORT featureInfo(boost::shared_ptr<ModelAPI_Feature> theFeature);