mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-04-24 01:22:05 +05:00
PAL13091: dump study echec. Correctly remove all sub-objects on removal of main object.
This commit is contained in:
parent
22ec5612c7
commit
8d94e7dd80
@ -227,7 +227,8 @@ bool GEOMToolsGUI::OnGUIEvent(int theCommandID, SUIT_Desktop* parent)
|
|||||||
void GEOMToolsGUI::OnEditDelete()
|
void GEOMToolsGUI::OnEditDelete()
|
||||||
{
|
{
|
||||||
SALOME_ListIO selected;
|
SALOME_ListIO selected;
|
||||||
SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
|
SalomeApp_Application* app =
|
||||||
|
dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
|
||||||
if ( app ) {
|
if ( app ) {
|
||||||
LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
|
LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
|
||||||
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
|
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
|
||||||
@ -300,42 +301,7 @@ void GEOMToolsGUI::OnEditDelete()
|
|||||||
if ( !strcmp( obj->GetIOR().c_str(), geomIOR ) )
|
if ( !strcmp( obj->GetIOR().c_str(), geomIOR ) )
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
// iterate through all children of obj, find IOR attributes on children
|
RemoveObjectWithChildren(obj, aStudy, views, disp);
|
||||||
// and remove shapes that correspond to these IORs
|
|
||||||
for (_PTR(ChildIterator) it (aStudy->NewChildIterator(obj)); it->More(); it->Next()) {
|
|
||||||
_PTR(SObject) child (it->Value());
|
|
||||||
if (child->FindAttribute(anAttr, "AttributeIOR")) {
|
|
||||||
_PTR(AttributeIOR) anIOR (anAttr);
|
|
||||||
|
|
||||||
// Delete child( s ) shape in Client :
|
|
||||||
const TCollection_AsciiString ASCior ((char*)anIOR->Value().c_str());
|
|
||||||
getGeometryGUI()->GetShapeReader().RemoveShapeFromBuffer(ASCior);
|
|
||||||
|
|
||||||
CORBA::Object_var corbaObj = GeometryGUI::ClientSObjectToObject(child);
|
|
||||||
GEOM::GEOM_Object_var geomObj = GEOM::GEOM_Object::_narrow(corbaObj);
|
|
||||||
if (!CORBA::is_nil(geomObj)) {
|
|
||||||
for (view = views.first(); view; view = views.next()) {
|
|
||||||
disp->Erase(geomObj, true, view);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} // for ( children of obj )
|
|
||||||
|
|
||||||
// Erase main graphical object
|
|
||||||
for ( view = views.first(); view; view = views.next() )
|
|
||||||
disp->Erase( io, true, view );
|
|
||||||
|
|
||||||
// Delete main shape in Client :
|
|
||||||
if ( obj->FindAttribute( anAttr, "AttributeIOR" ) ) {
|
|
||||||
_PTR(AttributeIOR) anIOR( anAttr );
|
|
||||||
const TCollection_AsciiString ASCIor( (char*)anIOR->Value().c_str() );
|
|
||||||
getGeometryGUI()->GetShapeReader().RemoveShapeFromBuffer( ASCIor );
|
|
||||||
}
|
|
||||||
|
|
||||||
CORBA::Object_var corbaObj = GeometryGUI::ClientSObjectToObject(obj);
|
|
||||||
GEOM::GEOM_Object_var geomObj = GEOM::GEOM_Object::_narrow( corbaObj );
|
|
||||||
if ( !CORBA::is_nil( geomObj ) )
|
|
||||||
GeometryGUI::GetGeomGen()->RemoveObject( geomObj );
|
|
||||||
|
|
||||||
// Remove objects from Study
|
// Remove objects from Study
|
||||||
aStudyBuilder->RemoveObject( obj );
|
aStudyBuilder->RemoveObject( obj );
|
||||||
@ -649,6 +615,45 @@ QString GEOMToolsGUI::getParentComponent( _PTR( SObject ) obj )
|
|||||||
return QString();
|
return QString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//=====================================================================================
|
||||||
|
// function : RemoveObjectWithChildren
|
||||||
|
// purpose : to be used by OnEditDelete() method
|
||||||
|
//=====================================================================================
|
||||||
|
void GEOMToolsGUI::RemoveObjectWithChildren(_PTR(SObject) obj,
|
||||||
|
_PTR(Study) aStudy,
|
||||||
|
QPtrList<SALOME_View> views,
|
||||||
|
GEOM_Displayer* disp)
|
||||||
|
{
|
||||||
|
// iterate through all children of obj
|
||||||
|
for (_PTR(ChildIterator) it (aStudy->NewChildIterator(obj)); it->More(); it->Next()) {
|
||||||
|
_PTR(SObject) child (it->Value());
|
||||||
|
RemoveObjectWithChildren(child, aStudy, views, disp);
|
||||||
|
}
|
||||||
|
|
||||||
|
// erase object and remove it from engine
|
||||||
|
_PTR(GenericAttribute) anAttr;
|
||||||
|
if (obj->FindAttribute(anAttr, "AttributeIOR")) {
|
||||||
|
_PTR(AttributeIOR) anIOR (anAttr);
|
||||||
|
|
||||||
|
// Delete shape in Client
|
||||||
|
const TCollection_AsciiString ASCIor ((char*)anIOR->Value().c_str());
|
||||||
|
getGeometryGUI()->GetShapeReader().RemoveShapeFromBuffer(ASCIor);
|
||||||
|
|
||||||
|
CORBA::Object_var corbaObj = GeometryGUI::ClientSObjectToObject(obj);
|
||||||
|
GEOM::GEOM_Object_var geomObj = GEOM::GEOM_Object::_narrow( corbaObj );
|
||||||
|
if (!CORBA::is_nil(geomObj)) {
|
||||||
|
// Erase graphical object
|
||||||
|
SALOME_View* view = views.first();
|
||||||
|
for (; view; view = views.next()) {
|
||||||
|
disp->Erase(geomObj, true, view);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove object from Engine
|
||||||
|
GeometryGUI::GetGeomGen()->RemoveObject( geomObj );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//=====================================================================================
|
//=====================================================================================
|
||||||
// EXPORTED METHODS
|
// EXPORTED METHODS
|
||||||
//=====================================================================================
|
//=====================================================================================
|
||||||
|
@ -30,16 +30,23 @@
|
|||||||
#define GEOMTOOLSGUI_H
|
#define GEOMTOOLSGUI_H
|
||||||
|
|
||||||
#include "GEOMGUI.h"
|
#include "GEOMGUI.h"
|
||||||
|
#include "GEOM_Displayer.h"
|
||||||
|
|
||||||
|
#include <SALOME_Prs.h>
|
||||||
|
|
||||||
#include <SALOMEDSClient.hxx>
|
#include <SALOMEDSClient.hxx>
|
||||||
#include <SALOME_ListIO.hxx>
|
#include <SALOME_ListIO.hxx>
|
||||||
|
|
||||||
#include <CORBA.h>
|
#include <CORBA.h>
|
||||||
|
|
||||||
|
#include <qptrlist.h>
|
||||||
|
|
||||||
#if defined WNT && defined WIN32 && defined SALOME_WNT_EXPORTS
|
#if defined WNT && defined WIN32 && defined SALOME_WNT_EXPORTS
|
||||||
#define GEOMTOOLSGUI_WNT_EXPORT __declspec( dllexport )
|
#define GEOMTOOLSGUI_WNT_EXPORT __declspec( dllexport )
|
||||||
#else
|
#else
|
||||||
#define GEOMTOOLSGUI_WNT_EXPORT
|
#define GEOMTOOLSGUI_WNT_EXPORT
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//=================================================================================
|
//=================================================================================
|
||||||
// class : GEOMToolsGUI
|
// class : GEOMToolsGUI
|
||||||
// purpose :
|
// purpose :
|
||||||
@ -76,6 +83,12 @@ private:
|
|||||||
// if objects belong to different Components, a NULL string is returned.
|
// if objects belong to different Components, a NULL string is returned.
|
||||||
QString getParentComponent( _PTR( Study ), const SALOME_ListIO& );
|
QString getParentComponent( _PTR( Study ), const SALOME_ListIO& );
|
||||||
QString getParentComponent( _PTR(SObject) );
|
QString getParentComponent( _PTR(SObject) );
|
||||||
|
|
||||||
|
// Recursive deletion of object with children
|
||||||
|
void RemoveObjectWithChildren(_PTR(SObject) obj,
|
||||||
|
_PTR(Study) aStudy,
|
||||||
|
QPtrList<SALOME_View> views,
|
||||||
|
GEOM_Displayer* disp);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user