X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_DataModel.cxx;h=f4cb0c9a780bdb520e01518b3516f1db26470cac;hb=f34b90e9e4e02ba65419134d5d37a2e42aecfabf;hp=a436ec17b755f946242195c239438158956f5e79;hpb=89c9794998495fcd82e49e22a75502367de46bd5;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_DataModel.cxx b/src/HYDROGUI/HYDROGUI_DataModel.cxx index a436ec17..f4cb0c9a 100644 --- a/src/HYDROGUI/HYDROGUI_DataModel.cxx +++ b/src/HYDROGUI/HYDROGUI_DataModel.cxx @@ -70,6 +70,11 @@ #include #include +// #define DEB_GROUPS 1 +#ifdef DEB_GROUPS +#include +#endif + static HYDROData_SequenceOfObjects myCopyingObjects; HYDROGUI_DataModel::HYDROGUI_DataModel( CAM_Module* theModule ) @@ -542,21 +547,25 @@ bool HYDROGUI_DataModel::redo() bool HYDROGUI_DataModel::canCopy() { HYDROData_SequenceOfObjects aSeq = HYDROGUI_Tool::GetSelectedObjects( (HYDROGUI_Module*)module() ); - if( aSeq.Length() != 1 ) - return false; - - Handle(HYDROData_Entity) anObject = aSeq.First(); - if( anObject.IsNull() ) - return false; - - ObjectKind aKind = anObject->GetKind(); - if( aKind == KIND_IMAGE || - aKind == KIND_POLYLINE || - aKind == KIND_PROFILE || - aKind == KIND_CALCULATION ) - return true; + bool isCanCopy = !aSeq.IsEmpty(); - return false; + for ( Standard_Integer anIndex = 1, aLength = aSeq.Length(); anIndex <= aLength; anIndex++ ) { + Handle(HYDROData_Entity) anObject = aSeq.Value( anIndex ); + if( !anObject.IsNull() ) { + ObjectKind aKind = anObject->GetKind(); + bool isUnrecognized = aKind <= KIND_UNKNOWN || aKind > KIND_LAST; + bool isChildObject = aKind == KIND_DUMMY_3D || + aKind == KIND_ZONE || + aKind == KIND_SHAPES_GROUP || + aKind == KIND_SPLITTED_GROUP; + if ( isUnrecognized || isChildObject ) { + isCanCopy = false; + break; + } + } + } + + return isCanCopy; } bool HYDROGUI_DataModel::canPaste() @@ -663,11 +672,12 @@ LightApp_DataObject* HYDROGUI_DataModel::createObject( SUIT_DataObject* LightApp_DataObject* HYDROGUI_DataModel::buildObject( SUIT_DataObject* theParent, HYDROGUI_DataObject* theObject, const QString& theParentEntry, - const bool theIsBuildTree ) + const bool theIsBuildTree, + const bool theIsInOperation ) { if ( theIsBuildTree ) { - buildObjectTree( theParent, theObject, theParentEntry ); + buildObjectTree( theParent, theObject, theParentEntry, theIsInOperation ); } return theObject; } @@ -675,17 +685,21 @@ LightApp_DataObject* HYDROGUI_DataModel::buildObject( SUIT_DataObject* thePa LightApp_DataObject* HYDROGUI_DataModel::createZone( SUIT_DataObject* theParent, Handle(HYDROData_Zone) theModelObject, const QString& theParentEntry, - const bool theIsBuildTree ) + const bool theIsBuildTree, + const bool theIsInOperation ) { - return buildObject( theParent, new HYDROGUI_Zone( theParent, theModelObject, theParentEntry ), theParentEntry, theIsBuildTree ); + return buildObject( theParent, new HYDROGUI_Zone( theParent, theModelObject, theParentEntry, theIsInOperation ), + theParentEntry, theIsBuildTree, theIsInOperation ); } LightApp_DataObject* HYDROGUI_DataModel::createRegion( SUIT_DataObject* theParent, Handle(HYDROData_Region) theModelObject, const QString& theParentEntry, - const bool theIsBuildTree ) + const bool theIsBuildTree, + const bool theIsInOperation ) { - return buildObject( theParent, new HYDROGUI_Region( theParent, theModelObject, theParentEntry ), theParentEntry, theIsBuildTree ); + return buildObject( theParent, new HYDROGUI_Region( theParent, theModelObject, theParentEntry, theIsInOperation ), + theParentEntry, theIsBuildTree, theIsInOperation ); } LightApp_DataObject* HYDROGUI_DataModel::createObject( SUIT_DataObject* theParent, @@ -695,9 +709,34 @@ LightApp_DataObject* HYDROGUI_DataModel::createObject( SUIT_DataObject* theParen return new HYDROGUI_NamedObject( theParent, theName, theParentEntry ); } +void HYDROGUI_DataModel::buildObjectPartition( SUIT_DataObject* theObject, + const HYDROData_SequenceOfObjects& theObjects, + const QString& thePartName, + const bool theIsCreateEmpty ) +{ + if ( theObjects.IsEmpty() && !theIsCreateEmpty ) + return; + + HYDROGUI_DataObject* aGuiObj = dynamic_cast( theObject ); + if ( !aGuiObj ) + return; + + LightApp_DataObject* aPartSect = + createObject( aGuiObj, thePartName, aGuiObj->entry() ); + + HYDROData_SequenceOfObjects::Iterator anIter( theObjects ); + for ( ; anIter.More(); anIter.Next() ) + { + Handle(HYDROData_Entity) anObj = anIter.Value(); + if( !anObj.IsNull() && !anObj->IsRemoved() ) + createObject( aPartSect, anObj, aGuiObj->entry(), false ); + } +} + void HYDROGUI_DataModel::buildObjectTree( SUIT_DataObject* theParent, SUIT_DataObject* theObject, - const QString& theParentEntry ) + const QString& theParentEntry, + const bool theIsInOperation ) { HYDROGUI_DataObject* aGuiObj = dynamic_cast( theObject ); if ( !aGuiObj ) @@ -714,7 +753,12 @@ void HYDROGUI_DataModel::buildObjectTree( SUIT_DataObject* theParent, Handle(HYDROData_DummyObject3D) anObject3D = aGeomObj->GetObject3D(); if ( !anObject3D.IsNull() ) - createObject( aGuiObj, anObject3D, aGuiObj->entry(), false ); + createObject( aGuiObj, anObject3D, "", false ); + +#ifdef DEB_GROUPS + HYDROData_SequenceOfObjects anObjGroups = aGeomObj->GetGroups(); + buildObjectPartition( aGuiObj, anObjGroups, tr( "OBJECT_GROUPS" ), false ); +#endif } ObjectKind anObjectKind = aDataObj->GetKind(); @@ -745,15 +789,83 @@ void HYDROGUI_DataModel::buildObjectTree( SUIT_DataObject* theParent, LightApp_DataObject* aBathSect = createObject( aGuiObj, tr( "ZONE_BATHYMETRY" ), aGuiObj->entry() ); - Handle(HYDROData_Bathymetry) aBathymetry = aZoneObj->GetBathymetry(); - if ( !aBathymetry.IsNull() && !aBathymetry->IsRemoved() ) - createObject( aBathSect, aBathymetry, aGuiObj->entry(), false ); + Handle(HYDROData_IAltitudeObject) anAltitudeObj = aZoneObj->GetAltitudeObject(); + if ( !anAltitudeObj.IsNull() && !anAltitudeObj->IsRemoved() ) + createObject( aBathSect, anAltitudeObj, aGuiObj->entry(), false ); + } + else if ( anObjectKind == KIND_POLYLINE ) + { + Handle(HYDROData_Polyline3D) aPolyline3D = + Handle(HYDROData_Polyline3D)::DownCast( aDataObj ); + + LightApp_DataObject* aPolylineSect = + createObject( aGuiObj, tr( "POLYLINE3D_POLYLINE" ), aGuiObj->entry() ); + + Handle(HYDROData_PolylineXY) aPolylineXY = aPolyline3D->GetPolylineXY(); + if ( !aPolylineXY.IsNull() && !aPolylineXY->IsRemoved() ) + createObject( aPolylineSect, aPolylineXY, aGuiObj->entry(), false ); + + LightApp_DataObject* aProfileSect = + createObject( aGuiObj, tr( "POLYLINE3D_PROFILE" ), aGuiObj->entry() ); + + Handle(HYDROData_ProfileUZ) aProfileUZ = aPolyline3D->GetProfileUZ(); + if ( aProfileUZ.IsNull() || aProfileUZ->IsRemoved() ) + aProfileUZ = aPolyline3D->GetChildProfileUZ( false ); + + if ( !aProfileUZ.IsNull() && !aProfileUZ->IsRemoved() ) + { + Handle(HYDROData_Profile) aProfile = + Handle(HYDROData_Profile)::DownCast( aProfileUZ->GetFatherObject() ); + if ( !aProfile.IsNull() && !aProfile->IsRemoved() ) + createObject( aProfileSect, aProfile, aGuiObj->entry(), false ); + } + + LightApp_DataObject* aBathSect = + createObject( aGuiObj, tr( "POLYLINE3D_BATHYMETRY" ), aGuiObj->entry() ); + + Handle(HYDROData_IAltitudeObject) anAltitudeObj = aPolyline3D->GetAltitudeObject(); + if ( !anAltitudeObj.IsNull() && !anAltitudeObj->IsRemoved() ) + createObject( aBathSect, anAltitudeObj, aGuiObj->entry(), false ); } else if ( anObjectKind == KIND_CALCULATION ) { Handle(HYDROData_CalculationCase) aCaseObj = Handle(HYDROData_CalculationCase)::DownCast( aDataObj ); + LightApp_DataObject* aPolylineSect = + createObject( aGuiObj, tr( "CASE_BOUNDARY" ), aGuiObj->entry() ); + + Handle(HYDROData_PolylineXY) aPolyline = aCaseObj->GetBoundaryPolyline(); + if ( !aPolyline.IsNull() && !aPolyline->IsRemoved() ) + createObject( aPolylineSect, aPolyline, aGuiObj->entry(), false ); + + LightApp_DataObject* aCaseAOSect = + createObject( aGuiObj, tr( partitionName( KIND_ARTIFICIAL_OBJECT ).toAscii() ), + aGuiObj->entry() ); + LightApp_DataObject* aCaseNOSect = + createObject( aGuiObj, tr( partitionName( KIND_NATURAL_OBJECT ).toAscii() ), + aGuiObj->entry() ); + + HYDROData_SequenceOfObjects aSeq = aCaseObj->GetGeometryObjects(); + HYDROData_SequenceOfObjects::Iterator aGOIter( aSeq ); + Handle(HYDROData_Entity) anEntity; + Handle(HYDROData_ArtificialObject) anAObject; + Handle(HYDROData_NaturalObject) aNObject; + for ( ; aGOIter.More(); aGOIter.Next() ) + { + anEntity = aGOIter.Value(); + if ( anEntity.IsNull() ) + continue; + anAObject = Handle(HYDROData_ArtificialObject)::DownCast( anEntity ); + if ( !anAObject.IsNull() ) + createObject( aCaseAOSect, anAObject, aGuiObj->entry(), false ); + else + { + aNObject = Handle(HYDROData_NaturalObject)::DownCast( anEntity ); + if ( !aNObject.IsNull() ) + createObject( aCaseNOSect, aNObject, aGuiObj->entry(), false ); + } + } LightApp_DataObject* aCaseRegionsSect = createObject( aGuiObj, tr( "CASE_REGIONS" ), aGuiObj->entry() ); @@ -764,8 +876,17 @@ void HYDROGUI_DataModel::buildObjectTree( SUIT_DataObject* theParent, Handle(HYDROData_Region) aCaseRegion = Handle(HYDROData_Region)::DownCast( anIter.Value() ); if( !aCaseRegion.IsNull() && !aCaseRegion->IsRemoved() ) - createRegion( aCaseRegionsSect, aCaseRegion, "", true ); + createRegion( aCaseRegionsSect, aCaseRegion, "", true, theIsInOperation ); } + +#ifdef DEB_GROUPS + HYDROData_SequenceOfObjects aCalcGroups = aCaseObj->GetSplittedGroups(); + buildObjectPartition( aGuiObj, aCalcGroups, tr( "OBJECT_GROUPS" ), false ); + + HYDROData_SequenceOfObjects aCalcSplitGroups = aCaseObj->GetSplittedGroups(); + buildObjectPartition( aGuiObj, aCalcSplitGroups, tr( "CASE_SPLITTED_GROUPS" ), false ); +#endif + } else if ( anObjectKind == KIND_REGION ) { @@ -779,7 +900,7 @@ void HYDROGUI_DataModel::buildObjectTree( SUIT_DataObject* theParent, Handle(HYDROData_Zone) aRegionZone = Handle(HYDROData_Zone)::DownCast( anIter.Value() ); if( !aRegionZone.IsNull() && !aRegionZone->IsRemoved() ) - createZone( aGuiObj, aRegionZone, "", true ); + createZone( aGuiObj, aRegionZone, "", true, theIsInOperation ); } } else if ( anObjectKind == KIND_PROFILE ) @@ -789,13 +910,57 @@ void HYDROGUI_DataModel::buildObjectTree( SUIT_DataObject* theParent, aGuiObj->setIsValid( aProfileObj->IsValid() ); } + else if ( anObjectKind == KIND_CHANNEL || anObjectKind == KIND_DIGUE ) + { + Handle(HYDROData_Channel) aChannelObj = + Handle(HYDROData_Channel)::DownCast( aDataObj ); + + LightApp_DataObject* aGuideLineSect = + createObject( aGuiObj, tr( "CHANNEL_GUIDE_LINE" ), aGuiObj->entry() ); + Handle(HYDROData_Polyline3D) aGuideLine = aChannelObj->GetGuideLine(); + if ( !aGuideLine.IsNull() && !aGuideLine->IsRemoved() ) { + createObject( aGuideLineSect, aGuideLine, aGuiObj->entry(), false ); + } + + LightApp_DataObject* aProfileSect = + createObject( aGuiObj, tr( "CHANNEL_PROFILE" ), aGuiObj->entry() ); + Handle(HYDROData_Profile) aProfile = aChannelObj->GetProfile(); + if ( !aProfile.IsNull() && !aProfile->IsRemoved() ) { + createObject( aProfileSect, aProfile, aGuiObj->entry(), false ); + } + } + else if ( anObjectKind == KIND_STREAM ) + { + Handle(HYDROData_Stream) aStreamObj = + Handle(HYDROData_Stream)::DownCast( aDataObj ); + + LightApp_DataObject* aHydraulicAxisSect = + createObject( aGuiObj, tr( "STREAM_HYDRAULIC_AXIS" ), aGuiObj->entry() ); + Handle(HYDROData_PolylineXY) aHydraulicAxis = aStreamObj->GetHydraulicAxis(); + if ( !aHydraulicAxis.IsNull() && !aHydraulicAxis->IsRemoved() ) { + createObject( aHydraulicAxisSect, aHydraulicAxis, aGuiObj->entry(), false ); + } + + HYDROData_SequenceOfObjects aProfiles = aStreamObj->GetProfiles(); + buildObjectPartition( aGuiObj, aProfiles, tr( "STREAM_PROFILES" ), true ); + } } void HYDROGUI_DataModel::buildCaseTree( SUIT_DataObject* theParent, Handle(HYDROData_CalculationCase) theCase ) { if ( !theCase.IsNull() ) { - new HYDROGUI_DropTargetObject( theParent, tr( "NEW_REGION" ), "" ); + if ( theParent ) + { + // Remove previous objects tree + DataObjectList aList; + theParent->children( aList ); + QListIterator anIter( aList ); + while( anIter.hasNext() ) + removeChild( theParent, anIter.next() ); + } + + new HYDROGUI_DropTargetObject( theParent, tr( "NEW_REGION" ), "", true ); HYDROData_SequenceOfObjects aCaseRegions = theCase->GetRegions(); HYDROData_SequenceOfObjects::Iterator anIter( aCaseRegions ); @@ -804,7 +969,43 @@ void HYDROGUI_DataModel::buildCaseTree( SUIT_DataObject* theParent, Handle(HYDRO Handle(HYDROData_Region) aCaseRegion = Handle(HYDROData_Region)::DownCast( anIter.Value() ); if( !aCaseRegion.IsNull() && !aCaseRegion->IsRemoved() ) - createRegion( theParent, aCaseRegion, "", true ); + createRegion( theParent, aCaseRegion, "", true, true ); + } + } +} + +void HYDROGUI_DataModel::updateObjectTree( Handle(HYDROData_Entity)& theObj ) +{ + if ( !theObj.IsNull() ) + { + HYDROGUI_DataObject* aGuiObj = dynamic_cast( + findObject( HYDROGUI_DataObject::dataObjectEntry( theObj ) ) ); + if ( aGuiObj ) + { + // Remove previous objects tree + DataObjectList aList; + aGuiObj->children( aList ); + QListIterator anIter( aList ); + while( anIter.hasNext() ) + removeChild( aGuiObj, anIter.next() ); + + // Rebuild the subtree + QString aParentEntry; + HYDROGUI_DataObject* aParent = dynamic_cast( aGuiObj->parent() ); + if ( aParent ) + { + aParentEntry = aParent->entry(); + } + buildObjectTree( aParent, aGuiObj, aParentEntry, aGuiObj->isInOperation() ); + } + else + { + // workaround for the bug in SalomeApp_Study::findObjectByEntry - it can't find LightApp_DataObjects + HYDROGUI_Module* aModule = dynamic_cast( module() ); + if( aModule ) + { + aModule->getApp()->updateObjectBrowser(); + } } } }