Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / XGUI / XGUI_Tools.h
1 #ifndef XGUI_Tools_H
2 #define XGUI_Tools_H
3
4 #include "XGUI.h"
5 #include <QString>
6 #include <QRect>
7
8 #include <ModelAPI_Feature.h>
9
10 #include <memory>
11
12 /*!
13  \brief Return directory part of the file path.
14
15  If the file path does not include directory part (the file is in the
16  current directory), null string is returned.
17
18  \param path file path
19  \param abs if true (default) \a path parameter is treated as absolute file path
20  \return directory part of the file path
21  */
22 namespace XGUI_Tools {
23 QString XGUI_EXPORT dir(const QString& path, bool isAbs = true);
24
25 /*!
26  \brief Return file name part of the file path.
27
28  \param path file path
29  \param withExt if true (default) complete file name (with all
30  extension except the last) is returned, otherwise only base name
31  is returned
32  \return file name part of the file path
33  */
34 QString XGUI_EXPORT file(const QString& path, bool withExt = true);
35
36 /*!
37  \brief Return extension part of the file path.
38
39  \param path file path
40  \param full if true complete extension (all extensions, dot separated)
41  is returned, otherwise (default) only last extension is returned
42  \return extension part of the file path 
43  */
44 QString XGUI_EXPORT extension(const QString& path, bool full = false);
45
46 /*!
47  \brief Add a slash (platform-specific) to the end of \a path
48  if it is not already there.
49  \param path directory path
50  \return modified path (with slash added to the end)
51  */
52 QString XGUI_EXPORT addSlash(const QString& path);
53
54 /*! 
55  Creates a rect with TopLeft = ( min(x1,x2), min(y1,y2) )
56  and BottomRight = ( TopLeft + (x2-x1)(y2-y1) )    
57  */
58 QRect XGUI_EXPORT makeRect(const int x1, const int y1, const int x2, const int y2);
59
60 /// The model concerning tools
61
62 /*!
63  Returns true if the feature is a model object
64  \param theFeature a feature
65  */
66 bool XGUI_EXPORT isModelObject(FeaturePtr theFeature);
67
68 /*!
69  Returns the string presentation of the given feature
70  \param theFeature a feature
71  */
72 std::string XGUI_EXPORT featureInfo(FeaturePtr theFeature);
73 }
74
75 #endif