Salome HOME
Sources of the application adopted to RHEL6 x64. The newest version of Eclipse IDE...
[modules/shaper.git] / src / XGUI / XGUI_Workshop.cpp
index d480ef3489ddd925705ad5d8b2d5da9a2195378d..47176fbd45c2f59c50386108c68da3a190925891 100644 (file)
 #include "XGUI_ContextMenuMgr.h"
 #include "XGUI_ModuleConnector.h"
 
-#include <Model_Events.h>
+#include <ModelAPI_Events.h>
 #include <ModelAPI_PluginManager.h>
 #include <ModelAPI_Feature.h>
 #include <ModelAPI_Data.h>
 #include <ModelAPI_AttributeDocRef.h>
 #include <ModelAPI_Object.h>
 #include <ModelAPI_Validator.h>
+#include <ModelAPI_ResultPart.h>
 
 #include <PartSetPlugin_Part.h>
 
@@ -131,7 +132,8 @@ void XGUI_Workshop::startApplication()
   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OPERATION_LAUNCHED));
   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_UPDATED));
   aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_CREATED));
-  aLoop->registerListener(this, Events_Loop::eventByName(EVENT_FEATURE_TO_REDISPLAY));
+  aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
+  aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_DELETED));
 
   activateModule();
   if (myMainWindow) {
@@ -230,22 +232,32 @@ void XGUI_Workshop::processEvent(const Events_Message* theMessage)
 
   // Process creation of Part
   if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_CREATED)) {
-    const Model_FeatureUpdatedMessage* aUpdMsg = dynamic_cast<const Model_FeatureUpdatedMessage*>(theMessage);
+    const ModelAPI_ObjectUpdatedMessage* aUpdMsg = dynamic_cast<const ModelAPI_ObjectUpdatedMessage*>(theMessage);
     onFeatureCreatedMsg(aUpdMsg);
+    return;
   }
 
   // Redisplay feature
-  if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_FEATURE_TO_REDISPLAY)) {
-    const Model_FeatureUpdatedMessage* aUpdMsg = dynamic_cast<const Model_FeatureUpdatedMessage*>(theMessage);
+  if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_TO_REDISPLAY)) {
+    const ModelAPI_ObjectUpdatedMessage* aUpdMsg = dynamic_cast<const ModelAPI_ObjectUpdatedMessage*>(theMessage);
     onFeatureRedisplayMsg(aUpdMsg);
+    return;
   }
 
   //Update property panel on corresponding message. If there is no current operation (no
   //property panel), or received message has different feature to the current - do nothing.
   if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_UPDATED)) {
-    const Model_FeatureUpdatedMessage* anUpdateMsg =
-        dynamic_cast<const Model_FeatureUpdatedMessage*>(theMessage);
+    const ModelAPI_ObjectUpdatedMessage* anUpdateMsg =
+        dynamic_cast<const ModelAPI_ObjectUpdatedMessage*>(theMessage);
     onFeatureUpdatedMsg(anUpdateMsg);
+    return;
+  }
+
+  if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_DELETED)) {
+    const ModelAPI_ObjectDeletedMessage* aDelMsg =
+        dynamic_cast<const ModelAPI_ObjectDeletedMessage*>(theMessage);
+    onObjectDeletedMsg(aDelMsg);
+    return;
   }
 
   //An operation passed by message. Start it, process and commit.
@@ -271,15 +283,15 @@ void XGUI_Workshop::processEvent(const Events_Message* theMessage)
 }
 
 //******************************************************
-void XGUI_Workshop::onFeatureUpdatedMsg(const Model_FeatureUpdatedMessage* theMsg)
+void XGUI_Workshop::onFeatureUpdatedMsg(const ModelAPI_ObjectUpdatedMessage* theMsg)
 {
-  std::set<FeaturePtr> aFeatures = theMsg->features();
+  std::set<ObjectPtr> aFeatures = theMsg->objects();
   if (myOperationMgr->hasOperation())
   {
     FeaturePtr aCurrentFeature = myOperationMgr->currentOperation()->feature();
-    std::set<FeaturePtr>::const_iterator aIt;
+    std::set<ObjectPtr>::const_iterator aIt;
     for (aIt = aFeatures.begin(); aIt != aFeatures.end(); ++aIt) {
-      FeaturePtr aNewFeature = (*aIt);
+      ObjectPtr aNewFeature = (*aIt);
       if(aNewFeature == aCurrentFeature) {
         myPropertyPanel->updateContentWidget(aCurrentFeature);
         break;
@@ -289,15 +301,21 @@ void XGUI_Workshop::onFeatureUpdatedMsg(const Model_FeatureUpdatedMessage* theMs
 }
 
 //******************************************************
-void XGUI_Workshop::onFeatureRedisplayMsg(const Model_FeatureUpdatedMessage* theMsg)
+void XGUI_Workshop::onFeatureRedisplayMsg(const ModelAPI_ObjectUpdatedMessage* theMsg)
 {
-  std::set<FeaturePtr> aFeatures = theMsg->features();
-  std::set<FeaturePtr>::const_iterator aIt;
+  std::set<ObjectPtr> aObjects = theMsg->objects();
+  std::set<ObjectPtr>::const_iterator aIt;
   bool isDisplayed = false;
-  for (aIt = aFeatures.begin(); aIt != aFeatures.end(); ++aIt) {
-    FeaturePtr aFeature = (*aIt);
-    if (aFeature->getKind() != PARTSET_PART_KIND) {
-      isDisplayed = myDisplayer->redisplay(aFeature, false);
+  for (aIt = aObjects.begin(); aIt != aObjects.end(); ++aIt) {
+    ObjectPtr aObj = (*aIt);
+    ResultPtr aRes = boost::dynamic_pointer_cast<ModelAPI_Result>(aObj);
+    if (aRes) {
+      if (aRes->data())
+        isDisplayed = myDisplayer->redisplay(aRes, false);
+      else {
+        myDisplayer->erase(aRes, false);
+        isDisplayed = true;
+      }
     }
   }
   if (isDisplayed)
@@ -305,20 +323,22 @@ void XGUI_Workshop::onFeatureRedisplayMsg(const Model_FeatureUpdatedMessage* the
 }
 
 //******************************************************
-void XGUI_Workshop::onFeatureCreatedMsg(const Model_FeatureUpdatedMessage* theMsg)
+void XGUI_Workshop::onFeatureCreatedMsg(const ModelAPI_ObjectUpdatedMessage* theMsg)
 {
-  std::set<FeaturePtr> aFeatures = theMsg->features();
+  std::set<ObjectPtr> aFeatures = theMsg->objects();
 
-  std::set<FeaturePtr>::const_iterator aIt;
+  std::set<ObjectPtr>::const_iterator aIt;
   bool aHasPart = false;
   bool isDisplayed = false;
   for (aIt = aFeatures.begin(); aIt != aFeatures.end(); ++aIt) {
-    FeaturePtr aFeature = (*aIt);
-    if (aFeature->getKind() == PARTSET_PART_KIND) {
+     ResultPartPtr aPart = boost::dynamic_pointer_cast<ModelAPI_ResultPart>(*aIt);
+    if (aPart) {
       aHasPart = true;
       //break;
     } else {
-      isDisplayed = myDisplayer->display(aFeature, false);
+      ResultPtr aRes = boost::dynamic_pointer_cast<ModelAPI_Result>(*aIt);
+      if (aRes)
+        isDisplayed = myDisplayer->display(aRes, false);
     }
   }
   if (isDisplayed)
@@ -329,6 +349,12 @@ void XGUI_Workshop::onFeatureCreatedMsg(const Model_FeatureUpdatedMessage* theMs
     QTimer::singleShot(50, this, SLOT(activateLastPart()));
   }
 }
+
+//******************************************************
+void XGUI_Workshop::onObjectDeletedMsg(const ModelAPI_ObjectDeletedMessage* theMsg)
+{
+  //std::set<ObjectPtr> aFeatures = theMsg->objects();
+}
  
 //******************************************************
 void XGUI_Workshop::onOperationStarted()
@@ -824,22 +850,20 @@ void XGUI_Workshop::onFeatureTriggered()
 }
 
 //******************************************************
-void XGUI_Workshop::changeCurrentDocument(FeaturePtr thePart)
+void XGUI_Workshop::changeCurrentDocument(ObjectPtr theObj)
 {
   PluginManagerPtr aMgr = ModelAPI_PluginManager::get();
-  if (thePart) {
-    DocumentPtr aFeaDoc;
-    if (!XGUI_Tools::isModelObject(thePart)) {
-      aFeaDoc = thePart->data()->docRef("PartDocument")->value();
-    } else {
-      ObjectPtr aObject = boost::dynamic_pointer_cast<ModelAPI_Object>(thePart);
-      aFeaDoc = aObject->featureRef()->data()->docRef("PartDocument")->value();
+  if (theObj) {
+    ResultPartPtr aPart = boost::dynamic_pointer_cast<ModelAPI_ResultPart>(theObj);
+    if (aPart) {
+      DocumentPtr aPartDoc = aPart->partDoc();
+      if (aPartDoc) {
+        aMgr->setCurrentDocument(aPartDoc);
+        return;
+      }
     }
-    if (aFeaDoc)
-      aMgr->setCurrentDocument(aFeaDoc);
-  } else {
-    aMgr->setCurrentDocument(aMgr->rootDocument());
-  }
+  } 
+  aMgr->setCurrentDocument(aMgr->rootDocument());
 }
 
 //******************************************************
@@ -858,17 +882,18 @@ XGUI_SalomeViewer* XGUI_Workshop::salomeViewer() const
 //**************************************************************
 void XGUI_Workshop::onContextMenuCommand(const QString& theId, bool isChecked)
 {
-  QFeatureList aFeatures = mySelector->selection()->selectedFeatures();
-  if ((theId == "ACTIVATE_PART_CMD") && (aFeatures.size() > 0))
-    activatePart(aFeatures.first());
-  else if (theId == "DEACTIVATE_PART_CMD") 
-    activatePart(FeaturePtr());
+  QList<ObjectPtr> aObjects = mySelector->selection()->selectedObjects();
+  if ((theId == "ACTIVATE_PART_CMD") && (aObjects.size() > 0)) {
+    ResultPartPtr aPart = boost::dynamic_pointer_cast<ModelAPI_ResultPart>(aObjects.first());
+    activatePart(aPart);
+  } else if (theId == "DEACTIVATE_PART_CMD") 
+    activatePart(ResultPartPtr());
   else if (theId == "DELETE_CMD")
-    deleteFeatures(aFeatures);
+    deleteObjects(aObjects);
   else if (theId == "SHOW_CMD")
-    showFeatures(aFeatures, true);
+    showObjects(aObjects, true);
   else if (theId == "HIDE_CMD")
-    showFeatures(aFeatures, false);
+    showObjects(aObjects, false);
 }
 
 //**************************************************************
@@ -892,7 +917,7 @@ void XGUI_Workshop::onWidgetValuesChanged()
 }
 
 //**************************************************************
-void XGUI_Workshop::activatePart(FeaturePtr theFeature)
+void XGUI_Workshop::activatePart(ResultPartPtr theFeature)
 {
   changeCurrentDocument(theFeature);
   myObjectBrowser->activatePart(theFeature);
@@ -903,42 +928,37 @@ void XGUI_Workshop::activateLastPart()
 {
   PluginManagerPtr aMgr = ModelAPI_PluginManager::get();
   DocumentPtr aDoc = aMgr->rootDocument();
-  FeaturePtr aLastPart = aDoc->feature(PARTS_GROUP, aDoc->size(PARTS_GROUP) - 1, true);
-  activatePart(aLastPart);
+  std::string aGrpName = ModelAPI_ResultPart::group();
+  ObjectPtr aLastPart = aDoc->object(aGrpName, aDoc->size(aGrpName) - 1);
+  ResultPartPtr aPart = boost::dynamic_pointer_cast<ModelAPI_ResultPart>(aLastPart);
+  if (aPart)
+    activatePart(aPart);
 }
 
 //**************************************************************
-void XGUI_Workshop::deleteFeatures(QFeatureList theList)
+void XGUI_Workshop::deleteObjects(const QList<ObjectPtr>& theList)
 {
   QMainWindow* aDesktop = isSalomeMode()? salomeConnector()->desktop() : myMainWindow;
   QMessageBox::StandardButton aRes = QMessageBox::warning(aDesktop, tr("Delete features"), 
                                                           tr("Seleted features will be deleted. Continue?"), 
                                                           QMessageBox::No | QMessageBox::Yes, QMessageBox::No);
+  // ToDo: definbe deleting method
   if (aRes == QMessageBox::Yes) {
     PluginManagerPtr aMgr = ModelAPI_PluginManager::get();
     aMgr->rootDocument()->startOperation();
-    foreach (FeaturePtr aFeature, theList) {
-      if (aFeature->getKind() == PARTSET_PART_KIND) {
-        DocumentPtr aDoc;
-        if (!XGUI_Tools::isModelObject(aFeature)) {
-          aDoc = aFeature->data()->docRef("PartDocument")->value();
-        } else {
-          ObjectPtr aObject = boost::dynamic_pointer_cast<ModelAPI_Object>(aFeature);
-          aDoc = aObject->featureRef()->data()->docRef("PartDocument")->value();
-          aFeature = aObject->featureRef();
-        }
+    foreach (ObjectPtr aObj, theList) {
+      ResultPartPtr aPart = boost::dynamic_pointer_cast<ModelAPI_ResultPart>(aObj);
+      if (aPart) {
+        DocumentPtr aDoc = aPart->document();
         if (aDoc == aMgr->currentDocument()) {
           aDoc->close();
         }
+        //aMgr->rootDocument()->removeFeature(aPart->owner());
       } else {
-        if (XGUI_Tools::isModelObject(aFeature)) {
-          ObjectPtr aObject = boost::dynamic_pointer_cast<ModelAPI_Object>(aFeature);
-          aFeature = aObject->featureRef();
-        }
+        FeaturePtr aFeature = boost::dynamic_pointer_cast<ModelAPI_Feature>(aObj);
+        if (aFeature)
+          aObj->document()->removeFeature(aFeature);
       }
-      if (myDisplayer->isVisible(aFeature))
-        myDisplayer->erase(aFeature, false);
-      aFeature->document()->removeFeature(aFeature);
     }
     myDisplayer->updateViewer();
     aMgr->rootDocument()->finishOperation();
@@ -946,15 +966,16 @@ void XGUI_Workshop::deleteFeatures(QFeatureList theList)
 }
 
 //**************************************************************
-void XGUI_Workshop::showFeatures(QFeatureList theList, bool isVisible)
+void XGUI_Workshop::showObjects(const QList<ObjectPtr>& theList, bool isVisible)
 {
-  if (isVisible) {
-    foreach (FeaturePtr aFeature, theList) {
-      myDisplayer->display(aFeature, false);
-    }
-  } else {
-    foreach (FeaturePtr aFeature, theList) {
-      myDisplayer->erase(aFeature, false);
+  foreach (ObjectPtr aObj, theList) {
+    ResultPtr aRes = boost::dynamic_pointer_cast<ModelAPI_Result>(aObj);
+    if (aRes) {
+      if (isVisible) {
+        myDisplayer->display(aRes, false);
+      } else {
+        myDisplayer->erase(aRes, false);
+      }
     }
   }
   myDisplayer->updateViewer();