X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_ModelWidget.cpp;h=939345b517beefd395652896b194802d34b728a9;hb=2ca8be5b9d184c33cbfd78b1259638f340eeb017;hp=c6670f24ae1647f8b8476dd2a088077c72d9833e;hpb=34debd261300370b62fe9097dd90931c6344c9c1;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_ModelWidget.cpp b/src/ModuleBase/ModuleBase_ModelWidget.cpp index c6670f24a..939345b51 100644 --- a/src/ModuleBase/ModuleBase_ModelWidget.cpp +++ b/src/ModuleBase/ModuleBase_ModelWidget.cpp @@ -7,8 +7,10 @@ #include #include #include +#include -#include "Config_WidgetAPI.h" +#include +#include #include @@ -21,6 +23,7 @@ ModuleBase_ModelWidget::ModuleBase_ModelWidget(QObject* theParent, const Config_ myParentId(theParentId) { myIsComputedDefault = false; + myIsObligatory = theData ? theData->getBooleanAttribute(FEATURE_OBLIGATORY, true) : true; myAttributeID = theData ? theData->widgetId() : ""; } @@ -29,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(); @@ -43,6 +56,7 @@ bool ModuleBase_ModelWidget::focusTo() return true; } + void ModuleBase_ModelWidget::updateObject(ObjectPtr theObj) const { Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_UPDATED)); @@ -50,7 +64,7 @@ void ModuleBase_ModelWidget::updateObject(ObjectPtr theObj) const ModelAPI_EventCreator::get()->sendUpdated(theObj, anEvent); } -void ModuleBase_ModelWidget::processFocus(QWidget* theWidget) +void ModuleBase_ModelWidget::enableFocusProcessing(QWidget* theWidget) { theWidget->setFocusPolicy(Qt::StrongFocus); theWidget->installEventFilter(this); @@ -60,11 +74,10 @@ void ModuleBase_ModelWidget::processFocus(QWidget* theWidget) bool ModuleBase_ModelWidget::eventFilter(QObject* theObject, QEvent *theEvent) { QWidget* aWidget = dynamic_cast(theObject); - if (theEvent->type() == QEvent::FocusIn && myFocusInWidgets.contains(aWidget)) { + if (theEvent->type() == QEvent::MouseButtonRelease && + myFocusInWidgets.contains(aWidget)) { emit focusInWidget(this); - return true; - } else { - // pass the event on to the parent class - return QObject::eventFilter(theObject, theEvent); - } + } + // pass the event on to the parent class + return QObject::eventFilter(theObject, theEvent); }