X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_ModelWidget.cpp;h=939345b517beefd395652896b194802d34b728a9;hb=2ca8be5b9d184c33cbfd78b1259638f340eeb017;hp=86a8a8e0f1eb4a36b796a2889457c7763e224cf4;hpb=625280d2a73437339d19053ee7d0712ae976ef3e;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_ModelWidget.cpp b/src/ModuleBase/ModuleBase_ModelWidget.cpp index 86a8a8e0f..939345b51 100644 --- a/src/ModuleBase/ModuleBase_ModelWidget.cpp +++ b/src/ModuleBase/ModuleBase_ModelWidget.cpp @@ -7,18 +7,23 @@ #include #include #include +#include -#include "Config_WidgetAPI.h" +#include +#include #include +#include #include -ModuleBase_ModelWidget::ModuleBase_ModelWidget(QObject* theParent, - const Config_WidgetAPI* theData, - const std::string& theParentId) - : QObject(theParent), myHasDefaultValue(false), myParentId(theParentId) +ModuleBase_ModelWidget::ModuleBase_ModelWidget(QObject* theParent, const Config_WidgetAPI* theData, + const std::string& theParentId) + : QObject(theParent), + myParentId(theParentId) { + myIsComputedDefault = false; + myIsObligatory = theData ? theData->getBooleanAttribute(FEATURE_OBLIGATORY, true) : true; myAttributeID = theData ? theData->widgetId() : ""; } @@ -27,6 +32,16 @@ bool ModuleBase_ModelWidget::isInitialized(ObjectPtr theObject) const return theObject->data()->attribute(attributeID())->isInitialized(); } +void ModuleBase_ModelWidget::enableFocusProcessing() +{ + QList aMyControls = getControls(); + foreach(QWidget* eachControl, aMyControls) { + if(!myFocusInWidgets.contains(eachControl)) { + enableFocusProcessing(eachControl); + } + } +} + bool ModuleBase_ModelWidget::focusTo() { QList aControls = getControls(); @@ -48,3 +63,21 @@ void ModuleBase_ModelWidget::updateObject(ObjectPtr theObj) const static Events_ID anEvent = Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY); ModelAPI_EventCreator::get()->sendUpdated(theObj, anEvent); } + +void ModuleBase_ModelWidget::enableFocusProcessing(QWidget* theWidget) +{ + theWidget->setFocusPolicy(Qt::StrongFocus); + theWidget->installEventFilter(this); + myFocusInWidgets.append(theWidget); +} + +bool ModuleBase_ModelWidget::eventFilter(QObject* theObject, QEvent *theEvent) +{ + QWidget* aWidget = dynamic_cast(theObject); + if (theEvent->type() == QEvent::MouseButtonRelease && + myFocusInWidgets.contains(aWidget)) { + emit focusInWidget(this); + } + // pass the event on to the parent class + return QObject::eventFilter(theObject, theEvent); +}