Salome HOME
Make XGUI as a shared library
[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 /*!
9  \brief Convert the given parameter to the platform-specific library name.
10
11  The function appends platform-specific prefix (lib) and suffix (.dll/.so)
12  to the library file name.
13  For example, if \a str = "mylib", "libmylib.so" is returned for Linux and
14  mylib.dll for Windows.
15
16  \param str short library name
17  \return full library name
18  */
19 QString XGUI_EXPORT library(const QString& str);
20
21 /*!
22  \brief Return directory part of the file path.
23
24  If the file path does not include directory part (the file is in the
25  current directory), null string is returned.
26
27  \param path file path
28  \param abs if true (default) \a path parameter is treated as absolute file path
29  \return directory part of the file path
30  */
31 QString XGUI_EXPORT dir(const QString& path, bool isAbs = true);
32
33 /*!
34  \brief Return file name part of the file path.
35
36  \param path file path
37  \param withExt if true (default) complete file name (with all
38  extension except the last) is returned, otherwise only base name
39  is returned
40  \return file name part of the file path
41  */
42 QString XGUI_EXPORT file(const QString& path, bool withExt = true);
43
44 /*!
45  \brief Return extension part of the file path.
46
47  \param path file path
48  \param full if true complete extension (all extensions, dot separated)
49  is returned, otherwise (default) only last extension is returned
50  \return extension part of the file path 
51  */
52 QString XGUI_EXPORT extension(const QString& path, bool full = false);
53
54 /*!
55  \brief Add a slash (platform-specific) to the end of \a path
56  if it is not already there.
57  \param path directory path
58  \return modified path (with slash added to the end)
59  */
60 QString XGUI_EXPORT addSlash(const QString& path);
61
62 /*! 
63  Creates a rect with TopLeft = ( min(x1,x2), min(y1,y2) )
64  and BottomRight = ( TopLeft + (x2-x1)(y2-y1) )    
65  */
66 QRect XGUI_EXPORT makeRect(const int x1, const int y1, const int x2, const int y2);
67
68 #endif