Salome HOME
Issue #2052: Modification of parameters don't work (sketch, extrusion)
[modules/shaper.git] / src / ModuleBase / ModuleBase_IPropertyPanel.cpp
index a3644773e17efe249c1a61ff1f9e9d8898ae0f3b..37230d33de11acb989ba8d4ffec92f417fbf826e 100644 (file)
@@ -9,23 +9,62 @@
 
 #include "ModuleBase_IPropertyPanel.h"
 #include "ModuleBase_ModelWidget.h"
+#include "ModuleBase_ToolBox.h"
 
-ModuleBase_IPropertyPanel::ModuleBase_IPropertyPanel(QWidget* theParent) : QDockWidget(theParent), myIsEditing(false)
+#include <ModelAPI_Validator.h>
+#include <ModelAPI_Session.h>
+
+ModuleBase_IPropertyPanel::ModuleBase_IPropertyPanel(QWidget* theParent)
+ : QDockWidget(theParent), myIsEditing(false)
 {
+}
 
+ModuleBase_ModelWidget* ModuleBase_IPropertyPanel::modelWidget(
+                                          const std::string& theAttributeId) const
+{
+  ModuleBase_ModelWidget* aWidget = 0;
+  QList<ModuleBase_ModelWidget*> aWidgets = modelWidgets();
+  ModelAPI_ValidatorsFactory* aValidators = ModelAPI_Session::get()->validators();
+  for (QList<ModuleBase_ModelWidget*>::const_iterator anIt = aWidgets.begin();
+    anIt != aWidgets.end() && !aWidget; anIt++) {
+    ModuleBase_ModelWidget* aCurrentWidget = *anIt;
+    if (aCurrentWidget->attributeID() == theAttributeId &&
+        aCurrentWidget->canAcceptFocus() &&
+        aValidators->isCase(aCurrentWidget->feature(), aCurrentWidget->attributeID()))
+      aWidget = aCurrentWidget;
+  }
+
+  return aWidget;
 }
 
 ModuleBase_ModelWidget* ModuleBase_IPropertyPanel::findFirstAcceptingValueWidget()
+{
+  return ModuleBase_IPropertyPanel::findFirstAcceptingValueWidget(modelWidgets());
+}
+
+ModuleBase_ModelWidget* ModuleBase_IPropertyPanel::findFirstAcceptingValueWidget(
+                                        const QList<ModuleBase_ModelWidget*>& theWidgets)
 {
   ModuleBase_ModelWidget* aFirstWidget = 0;
 
-  QList<ModuleBase_ModelWidget*> aWidgets = modelWidgets();
+  ModelAPI_ValidatorsFactory* aValidators = ModelAPI_Session::get()->validators();
+
   ModuleBase_ModelWidget* aWgt;
   QList<ModuleBase_ModelWidget*>::const_iterator aWIt;
-  for (aWIt = aWidgets.begin(); aWIt != aWidgets.end() && !aFirstWidget; ++aWIt) {
+  bool isOffToolBox = false;
+  for (aWIt = theWidgets.begin(); aWIt != theWidgets.end() && !aFirstWidget; ++aWIt) {
     aWgt = (*aWIt);
-    if (aWgt->canSetValue())
-      aFirstWidget = aWgt;
+    if (!aValidators->isCase(aWgt->feature(), aWgt->attributeID()))
+      continue; // this attribute is not participated in the current case
+
+    if (!aWgt->canAcceptFocus())
+      continue;
+
+    /// workaround for the same attributes used in different stacked widgets(attribute types)
+    if (ModuleBase_ToolBox::isOffToolBoxParent(aWgt))
+      continue;
+
+    aFirstWidget = aWgt;
   }
   return aFirstWidget;
 }