X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_Tools.h;h=c8d3c6afa7655b63bd716ddafa9d2a5423342172;hb=39da05659a620750e11c2778a45be6f2dcb17308;hp=f78e9b7550a627306754dd9469fbf0aee16f67c5;hpb=1b93f1881c5fec599aa79707f93c84dd9c287bc0;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_Tools.h b/src/ModuleBase/ModuleBase_Tools.h index f78e9b755..c8d3c6afa 100755 --- a/src/ModuleBase/ModuleBase_Tools.h +++ b/src/ModuleBase/ModuleBase_Tools.h @@ -37,6 +37,30 @@ MODULEBASE_EXPORT void adjustMargins(QLayout* theLayout); MODULEBASE_EXPORT void zeroMargins(QWidget* theWidget); MODULEBASE_EXPORT void zeroMargins(QLayout* theLayout); +/* + * Calls the same-named Qt method for the given widget. + * It sets the top-level widget containing this widget to be the active window. + * An active window is a visible top-level window that has the keyboard input focus. + * \param theWidget a widget to be activated + * \param theIndo a debug information + */ +MODULEBASE_EXPORT void activateWindow(QWidget* theWidget, const QString& theInfo = QString()); + +/* + * Calls the same-named Qt method for the given widget. + * Gives the keyboard input focus to this widget (or its focus proxy) if this widget or + * one of its parents is the active window. + * \param theWidget a widget to be activated + * \param theIndo a debug information + */ +MODULEBASE_EXPORT void setFocus(QWidget* theWidget, const QString& theInfo = QString()); + + +//! Sets or removes the shadow effect to the widget +//! \param theWidget a widget to be styled +//! \param isSetEffect if true, the shadow effect is set, overwise cleared +//! \return resulting pixmap +MODULEBASE_EXPORT void setShadowEffect(QWidget* theWidget, const bool isSetEffect); /** * \ingroup GUI @@ -108,7 +132,7 @@ MODULEBASE_EXPORT void checkObjects(const QObjectPtrList& theObjects, bool& hasR /*! Sets the default coeffient into the driver calculated accordingly the shape type. It provides 1.e-4 for a shape withe Edge shape type \param theShape a shape to define the deviation coeffient, -\return double value +\param theDrawer a drawer */ MODULEBASE_EXPORT void setDefaultDeviationCoefficient(const TopoDS_Shape& theShape, const Handle(Prs3d_Drawer)& theDrawer);