Salome HOME
Merge branch 'Dev_0.6' of newgeom:newgeom into Dev_0.6
[modules/shaper.git] / src / ModuleBase / ModuleBase_Tools.h
1 // File:        ModuleBase_Tools.h
2 // Created:     11 July 2014
3 // Author:      Vitaly Smetannikov
4
5 #ifndef ModuleBase_Tools_H
6 #define ModuleBase_Tools_H
7
8 #include "ModuleBase.h"
9
10 class QWidget;
11 class QLayout;
12
13 namespace ModuleBase_Tools {
14
15 /*
16  * Methods to adjust margins and spacings.
17  */
18 MODULEBASE_EXPORT void adjustMargins(QWidget* theWidget);
19 MODULEBASE_EXPORT void adjustMargins(QLayout* theLayout);
20
21 MODULEBASE_EXPORT void zeroMargins(QWidget* theWidget);
22 MODULEBASE_EXPORT void zeroMargins(QLayout* theLayout);
23
24
25 }
26
27 #endif