]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Provide displaying of steps in data browser
authorvsv <vitaly.smetannikov@opencascade.com>
Tue, 27 Dec 2016 15:01:54 +0000 (18:01 +0300)
committervsv <vitaly.smetannikov@opencascade.com>
Tue, 27 Dec 2016 15:02:09 +0000 (18:02 +0300)
src/CollectionPlugin/CollectionPlugin_WidgetField.cpp
src/Model/Model_ResultField.cpp
src/Model/Model_ResultField.h
src/ModelAPI/ModelAPI_Entity.h
src/ModelAPI/ModelAPI_ResultField.h
src/XGUI/XGUI_DataModel.cpp

index 5c0040a916fcb79fc61d45b9c8d088f41ccff9c4..ebec37630ef80a49cf214bc10e126f9209680f2d 100644 (file)
@@ -759,6 +759,7 @@ void CollectionPlugin_WidgetField::onAddStep()
       }
     }
   }
+  emit valuesChanged();
 }
 
 //**********************************************************************************
@@ -770,8 +771,9 @@ void CollectionPlugin_WidgetField::onRemoveStep()
   removeStepControls();
   myStepSlider->setMaximum(aMax);
 
-  AttributeTablesPtr aTablesAttr = myFeature->data()->tables(CollectionPlugin_Field::VALUES_ID());
-  aTablesAttr->setSize(aTablesAttr->rows(), aTablesAttr->columns(), myDataTblList.size());
+  //AttributeTablesPtr aTablesAttr = myFeature->data()->tables(CollectionPlugin_Field::VALUES_ID());
+  //aTablesAttr->setSize(aTablesAttr->rows(), aTablesAttr->columns(), myDataTblList.size());
+  emit valuesChanged();
 }
 
 //**********************************************************************************
index 0c295fd43b264cfb1e5ef17bc6cf95e05d6e1d13..da8f1773a0e1c6cf5fcd4edccfd868f98daa2b0f 100644 (file)
@@ -5,10 +5,12 @@
 // Author:      Mikhail PONIKAROV
 
 #include <Model_ResultField.h>
-#include <ModelAPI_AttributeSelectionList.h>
 #include <Model_Document.h>
+
 #include <ModelAPI_ResultBody.h>
 #include <ModelAPI_Feature.h>
+#include <ModelAPI_AttributeIntArray.h>
+#include <ModelAPI_AttributeSelectionList.h>
 
 #include <GeomAlgoAPI_CompoundBuilder.h>
 
@@ -19,6 +21,14 @@ Model_ResultField::Model_ResultField(std::shared_ptr<ModelAPI_Data> theOwnerData
   myOwnerData = theOwnerData;
 }
 
+Model_ResultField::~Model_ResultField()
+{
+  while(mySteps.size() > 0) {
+    delete mySteps.back();
+    mySteps.pop_back();
+  }
+}
+
 void Model_ResultField::colorConfigInfo(std::string& theSection, std::string& theName,
                                        std::string& theDefault)
 {
@@ -70,6 +80,57 @@ std::shared_ptr<GeomAPI_Shape> Model_ResultField::shape()
         aResult = GeomAlgoAPI_CompoundBuilder::compound(aSubs);
       }
     }
+    updateSteps();
   }
   return aResult;
 }
+
+void Model_ResultField::updateSteps()
+{
+  // Update Array of steps
+  int aNbSteps = stepsSize();
+  if (mySteps.size() != aNbSteps) {
+    while(mySteps.size() > aNbSteps) {
+      delete mySteps.back();
+      mySteps.pop_back();
+    }
+    while(mySteps.size() < aNbSteps) {
+      mySteps.push_back(new Model_ResultField::Model_FieldStep(this, mySteps.size()));
+    }
+  }
+}
+
+int Model_ResultField::stepsSize() const
+{
+  if (myOwnerData) {
+    AttributeIntArrayPtr aArray = myOwnerData->intArray("stamps");
+    if (aArray.get()) {
+      return aArray->size();
+    }
+  }
+  return 0;
+}
+
+std::string Model_ResultField::textLine(int theLine) const
+{
+  if (myOwnerData) {
+    AttributeIntArrayPtr aArray = myOwnerData->intArray("stamps");
+    if (aArray.get()) {
+      if (theLine < aArray->size()) {
+        std::ostringstream aStream;
+        aStream << aArray->value(theLine);
+        return aStream.str();
+      }
+    }
+  }
+  return "";
+}
+
+
+ModelAPI_ResultField::ModelAPI_FieldStep* Model_ResultField::step(int theId) const
+{
+  if (theId < mySteps.size()) {
+    return mySteps[theId];
+  }
+  return NULL;
+}
index b8954287e7e1f5cde41db91c47e1efc22114a2d5..315484297c90d9c5cd4fc7baccac46e402b6f20c 100644 (file)
@@ -9,6 +9,7 @@
 
 #include "Model.h"
 #include <ModelAPI_ResultField.h>
+#include <vector>
 
 /**\class Model_ResultField
  * \ingroup DataModel
@@ -21,6 +22,21 @@ class Model_ResultField : public ModelAPI_ResultField
   std::shared_ptr<ModelAPI_Data> myOwnerData;  ///< data of owner of this result
 public:
 
+  class Model_FieldStep : public ModelAPI_ResultField::ModelAPI_FieldStep
+  {
+  public:
+    Model_FieldStep(ModelAPI_ResultField* theParent, int theId) 
+      : myParent(theParent), myId(theId) {};
+
+    virtual ModelAPI_ResultField* field() const { return myParent; }
+
+    virtual int id() const { return myId; }
+
+  private:
+    ModelAPI_ResultField* myParent;
+    int myId;
+  };
+
   /// Retuns the parameters of color definition in the resources config manager
   MODEL_EXPORT virtual void colorConfigInfo(std::string& theSection, std::string& theName,
                                             std::string& theDefault);
@@ -28,14 +44,30 @@ public:
   /// Returns the compound of selected entities
   MODEL_EXPORT virtual std::shared_ptr<GeomAPI_Shape> shape();
 
+  /// Returns number of steps
+  MODEL_EXPORT virtual int stepsSize() const;
+
+  /// Returns a text line by its number
+  /// \param theLine a number of line
+  MODEL_EXPORT virtual std::string textLine(int theLine) const;
+
+  /// Returns step object
+  /// \param theId an id of the object
+  MODEL_EXPORT virtual ModelAPI_ResultField::ModelAPI_FieldStep* step(int theId) const;
+
   /// Removes the stored builders
-  MODEL_EXPORT virtual ~Model_ResultField() {}
+  MODEL_EXPORT virtual ~Model_ResultField();
 
 protected:
   /// Makes a body on the given feature data
   Model_ResultField(std::shared_ptr<ModelAPI_Data> theOwnerData);
 
   friend class Model_Objects;
+
+private:
+  void updateSteps();
+
+  std::vector<ModelAPI_FieldStep*> mySteps;
 };
 
 #endif
index 5f97f6edd6bd92dbe34083cacbf130e7e896f683..e66c6f1c5ec3d261a84204aebcdc70ce45632aa7 100644 (file)
@@ -7,6 +7,8 @@
 #ifndef ModelAPI_Entity_H_
 #define ModelAPI_Entity_H_
 
+#include <memory>
+
 /**\class ModelAPI_Entity
  * \ingroup DataModel
  * \brief Represents a common parent class for Objects and documents.
@@ -20,4 +22,7 @@ public:
   virtual void emptyFunction() const {}
 };
 
+typedef std::shared_ptr<ModelAPI_Entity> EntityPtr;
+
+
 #endif
\ No newline at end of file
index 65888b55592cbbe7a0b1caad9eb80cb7edc91349..1d4105b81de4da66f2a579231303c33b1b50c1a1 100644 (file)
 class ModelAPI_ResultField : public ModelAPI_Result
 {
 public:
+
+  class ModelAPI_FieldStep : public ModelAPI_Entity
+  {
+  public:
+    virtual ModelAPI_ResultField* field() const = 0;
+
+    virtual int id() const = 0;
+  };
+
   MODELAPI_EXPORT virtual ~ModelAPI_ResultField();
   /// Returns the group identifier of this result
   MODELAPI_EXPORT virtual std::string groupName();
@@ -39,9 +48,20 @@ public:
     return RESULT_GROUP_COLOR;
   }
 
+  /// Returns number of steps
+  virtual int stepsSize() const = 0;
+
+  /// Returns a text line by its number
+  /// \param theLine a number of line
+  virtual std::string textLine(int theLine) const = 0;
+
+  /// Returns step object
+  /// \param theId an id of the object
+  virtual ModelAPI_FieldStep* step(int theId) const = 0;
 };
 
 //! Pointer on feature object
 typedef std::shared_ptr<ModelAPI_ResultField> ResultFieldPtr;
+typedef std::shared_ptr<ModelAPI_ResultField::ModelAPI_FieldStep> FieldStepPtr;
 
 #endif
index 35ffdc34db0c641999677dd1245ad24aa86fa7a8..ccc24dfb5a63cfc8751745e70d4154564b02954b 100644 (file)
@@ -16,6 +16,7 @@
 #include <ModelAPI_Feature.h>
 #include <ModelAPI_CompositeFeature.h>
 #include <ModelAPI_ResultCompSolid.h>
+#include <ModelAPI_ResultField.h>
 #include <ModelAPI_Tools.h>
 
 #include <Config_FeatureMessage.h>
@@ -36,6 +37,7 @@
 #define SELECTABLE_COLOR QColor(80, 80, 80)
 #define DISABLED_COLOR QColor(200, 200, 200)
 
+
 ResultPartPtr getPartResult(ModelAPI_Object* theObj)
 {
   ModelAPI_Feature* aFeature = dynamic_cast<ModelAPI_Feature*>(theObj);
@@ -251,9 +253,18 @@ void XGUI_DataModel::processEvent(const std::shared_ptr<Events_Message>& theMess
     for (aIt = aObjects.begin(); aIt != aObjects.end(); ++aIt) {
       ObjectPtr aObject = (*aIt);
       if (aObject->data()->isValid()) {
-        QModelIndex aIndex = objectIndex(aObject);
-        if (aIndex.isValid()) {
-          emit dataChanged(aIndex, aIndex);
+        FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObject);
+        if (aFeature.get() && aFeature->firstResult().get()
+          && (aFeature->firstResult()->groupName() == ModelAPI_ResultField::group())) {
+            ResultFieldPtr aResult = 
+              std::dynamic_pointer_cast<ModelAPI_ResultField>(aFeature->firstResult());
+            QModelIndex aIndex = objectIndex(aResult);
+            removeRows(0, aResult->stepsSize(), aIndex);
+        } else {
+          QModelIndex aIndex = objectIndex(aObject);
+          if (aIndex.isValid()) {
+            emit dataChanged(aIndex, aIndex);
+          }
         }
       } else {
         rebuildDataTree();
@@ -322,7 +333,10 @@ ObjectPtr XGUI_DataModel::object(const QModelIndex& theIndex) const
 {
   if (theIndex.internalId() == 0) // this is a folder
     return ObjectPtr();
-  ModelAPI_Object* aObj = (ModelAPI_Object*)theIndex.internalPointer();
+  ModelAPI_Object* aObj = 
+    dynamic_cast<ModelAPI_Object*>((ModelAPI_Entity*)theIndex.internalPointer());
+  if (!aObj)
+    return ObjectPtr();
   if (getSubDocument(aObj)) // the selected index is a folder of sub-document
     return ObjectPtr();
 
@@ -437,30 +451,47 @@ QVariant XGUI_DataModel::data(const QModelIndex& theIndex, int theRole) const
         }
       }
     } else {
-      ModelAPI_Object* aObj = (ModelAPI_Object*)theIndex.internalPointer();
-      switch (theRole) {
-      case Qt::DisplayRole:
-        {
-          if (aObj->groupName() == ModelAPI_ResultParameter::group()) {
-            ModelAPI_ResultParameter* aParam = dynamic_cast<ModelAPI_ResultParameter*>(aObj);
-            AttributeDoublePtr aValueAttribute =
-              aParam->data()->real(ModelAPI_ResultParameter::VALUE());
-            QString aVal = QString::number(aValueAttribute->value());
-            QString aTitle = QString(aObj->data()->name().c_str());
-            return aTitle + " = " + aVal;
+      ModelAPI_Object* aObj = 
+        dynamic_cast<ModelAPI_Object*>((ModelAPI_Entity*)theIndex.internalPointer());
+      if (aObj) {
+        switch (theRole) {
+        case Qt::DisplayRole:
+          {
+            if (aObj->groupName() == ModelAPI_ResultParameter::group()) {
+              ModelAPI_ResultParameter* aParam = dynamic_cast<ModelAPI_ResultParameter*>(aObj);
+              AttributeDoublePtr aValueAttribute =
+                aParam->data()->real(ModelAPI_ResultParameter::VALUE());
+              QString aVal = QString::number(aValueAttribute->value());
+              QString aTitle = QString(aObj->data()->name().c_str());
+              return aTitle + " = " + aVal;
+            }
+            QString aSuffix;
+            if (aObj->groupName() == myXMLReader->subType()) {
+              ResultPartPtr aPartRes = getPartResult(aObj);
+              if (aPartRes.get()) {
+                if (aPartRes->partDoc().get() == NULL)
+                  aSuffix = " (Not loaded)";
+              }
+            }
+            return aObj->data()->name().c_str() + aSuffix;
           }
-          QString aSuffix;
-          if (aObj->groupName() == myXMLReader->subType()) {
-            ResultPartPtr aPartRes = getPartResult(aObj);
-            if (aPartRes.get()) {
-              if (aPartRes->partDoc().get() == NULL)
-                aSuffix = " (Not loaded)";
+        case Qt::DecorationRole:
+          return ModuleBase_IconFactory::get()->getIcon(object(theIndex));
+        }
+      } else {
+        switch (theRole) {
+        case Qt::DisplayRole:
+          {
+            ModelAPI_ResultField::ModelAPI_FieldStep* aStep = 
+              dynamic_cast<ModelAPI_ResultField::ModelAPI_FieldStep*>
+              ((ModelAPI_Entity*)theIndex.internalPointer());
+            if (aStep) {
+              return "Step " + QString::number(aStep->id()) + " " +
+                aStep->field()->textLine(aStep->id()).c_str();
             }
           }
-          return aObj->data()->name().c_str() + aSuffix;
+          break;
         }
-      case Qt::DecorationRole:
-        return ModuleBase_IconFactory::get()->getIcon(object(theIndex));
       }
     }
   }
@@ -511,7 +542,8 @@ int XGUI_DataModel::rowCount(const QModelIndex& theParent) const
         return aDoc->size(aType);
       }
     } else {
-      ModelAPI_Object* aObj = (ModelAPI_Object*)theParent.internalPointer();
+      ModelAPI_Object* aObj = 
+        dynamic_cast<ModelAPI_Object*>((ModelAPI_Entity*)theParent.internalPointer());
       // Check for Part feature
       ResultPartPtr aPartRes = getPartResult(aObj);
       if (aPartRes.get()) {
@@ -533,6 +565,9 @@ int XGUI_DataModel::rowCount(const QModelIndex& theParent) const
         ModelAPI_ResultCompSolid* aCompRes = dynamic_cast<ModelAPI_ResultCompSolid*>(aObj);
         if (aCompRes)
           return aCompRes->numberOfSubs(true);
+        ModelAPI_ResultField* aFieldRes = dynamic_cast<ModelAPI_ResultField*>(aObj);
+        if (aFieldRes)
+          return aFieldRes->stepsSize();
       }
     }
   }
@@ -591,7 +626,8 @@ QModelIndex XGUI_DataModel::index(int theRow, int theColumn, const QModelIndex &
           }
         }
       } else {
-        ModelAPI_Object* aParentObj = (ModelAPI_Object*)theParent.internalPointer();
+        ModelAPI_Object* aParentObj = 
+          dynamic_cast<ModelAPI_Object*>((ModelAPI_Entity*)theParent.internalPointer());
 
         // Check for Part feature
         ResultPartPtr aPartRes = getPartResult(aParentObj);
@@ -617,6 +653,13 @@ QModelIndex XGUI_DataModel::index(int theRow, int theColumn, const QModelIndex &
               dynamic_cast<ModelAPI_ResultCompSolid*>(aParentObj);
             if (aCompRes)
               aIndex = objectIndex(aCompRes->subResult(theRow));
+            else {
+              ModelAPI_ResultField* aFieldRes =
+                dynamic_cast<ModelAPI_ResultField*>(aParentObj);
+              if (aFieldRes) {
+                aIndex = createIndex(theRow, 0, aFieldRes->step(theRow));
+              }
+            }
           }
         }
       }
@@ -637,6 +680,7 @@ QModelIndex XGUI_DataModel::parent(const QModelIndex& theIndex) const
   if (theIndex == MYLastDeleted)
     return QModelIndex();
 
+  SessionPtr aSession = ModelAPI_Session::get();
   quintptr aId = theIndex.internalId();
   if (aId != 0) { // The object is not a root folder
     ModelAPI_Document* aDoc = getSubDocument(theIndex.internalPointer());
@@ -646,6 +690,20 @@ QModelIndex XGUI_DataModel::parent(const QModelIndex& theIndex) const
     }
     ObjectPtr aObj = object(theIndex);
     if (!aObj.get()) {
+      // It can b e a step of a field
+      ModelAPI_ResultField::ModelAPI_FieldStep* aStep = 
+        dynamic_cast<ModelAPI_ResultField::ModelAPI_FieldStep*>
+        ((ModelAPI_Entity*)theIndex.internalPointer());
+      if (aStep) {
+        ModelAPI_ResultField* aField = aStep->field();
+        DocumentPtr aDoc = aSession->activeDocument();
+        ObjectPtr aFld;
+        for(int i = 0; i < aDoc->size(ModelAPI_ResultField::group()); i++) {
+          aFld = aDoc->object(ModelAPI_ResultField::group(), i);
+          if (aFld.get() == aField)
+            return objectIndex(aFld);
+        }
+      }
       // To avoid additional request about index which was already deleted
       // If deleted it causes a crash on delete object from Part
       MYLastDeleted = theIndex;
@@ -668,7 +726,6 @@ QModelIndex XGUI_DataModel::parent(const QModelIndex& theIndex) const
     }
     // Use as ordinary object
     std::string aType = aObj->groupName();
-    SessionPtr aSession = ModelAPI_Session::get();
     DocumentPtr aRootDoc = aSession->moduleDocument();
     DocumentPtr aSubDoc = aObj->document();
     if (aSubDoc == aRootDoc) {
@@ -739,7 +796,7 @@ Qt::ItemFlags XGUI_DataModel::flags(const QModelIndex& theIndex) const
   } else {
     aDoc = getSubDocument(theIndex.internalPointer());
     if (!aDoc)
-      aObj = (ModelAPI_Object*) theIndex.internalPointer();
+      aObj = dynamic_cast<ModelAPI_Object*>((ModelAPI_Entity*)theIndex.internalPointer());
   }
 
   if (aObj) {