Salome HOME
Merge branch 'master' of newgeom:newgeom.git
[modules/shaper.git] / src / ModuleBase / ModuleBase_ModelWidget.cpp
index 178eb5d6316cf0db2bb2cf77c712614f498f7a0c..939345b517beefd395652896b194802d34b728a9 100644 (file)
@@ -6,14 +6,24 @@
 
 #include <ModelAPI_Data.h>
 #include <ModelAPI_Attribute.h>
+#include <ModelAPI_Events.h>
+#include <ModelAPI_Session.h>
 
-#include "Config_WidgetAPI.h"
+#include <Config_Keywords.h>
+#include <Config_WidgetAPI.h>
 
+#include <Events_Loop.h>
+
+#include <QEvent>
 #include <QWidget>
 
-ModuleBase_ModelWidget::ModuleBase_ModelWidget(QObject* theParent, const Config_WidgetAPI* theData)
- : QObject(theParent), myHasDefaultValue(false)
+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() : "";
 }
 
@@ -22,6 +32,16 @@ bool ModuleBase_ModelWidget::isInitialized(ObjectPtr theObject) const
   return theObject->data()->attribute(attributeID())->isInitialized();
 }
 
+void ModuleBase_ModelWidget::enableFocusProcessing()
+{
+  QList<QWidget*> aMyControls = getControls();
+  foreach(QWidget*  eachControl, aMyControls) {
+    if(!myFocusInWidgets.contains(eachControl)) {
+      enableFocusProcessing(eachControl);
+    }
+  }
+}
+
 bool ModuleBase_ModelWidget::focusTo()
 {
   QList<QWidget*> aControls = getControls();
@@ -36,7 +56,28 @@ bool ModuleBase_ModelWidget::focusTo()
   return true;
 }
 
-std::string ModuleBase_ModelWidget::attributeID() const
+
+void ModuleBase_ModelWidget::updateObject(ObjectPtr theObj) const
+{
+  Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_UPDATED));
+  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)
 {
-  return myAttributeID;
+  QWidget* aWidget = dynamic_cast<QWidget*>(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);
 }