#include <HYDROData_PolylineXY.h>
#include <HYDROData_Iterator.h>
-#include <HYDROData_ImmersibleZone.h>
#include <HYDROData_Object.h>
+#include <HYDROData_Tool.h>
#include <OCCViewer_ViewManager.h>
#include <OCCViewer_ViewModel.h>
void HYDROGUI_CalculationOp::getNamesAndEntries( const HYDROData_SequenceOfObjects& theSeq,
QStringList& theNames, QStringList& theEntries ) const
{
- Handle(HYDROData_Object) anObject;
- Handle(HYDROData_Entity) anEntity;
+
theNames.clear();
theEntries.clear();
HYDROData_SequenceOfObjects::Iterator anIter( theSeq );
for ( ; anIter.More(); anIter.Next() )
{
- anEntity = anIter.Value();
- if ( !anEntity.IsNull() )
- {
- // Temporary solution will be revised later
- //anObject = Handle(HYDROData_Object)::DownCast( anEntity );
- anObject = Handle(HYDROData_ImmersibleZone)::DownCast( anEntity );
- if ( !anObject.IsNull() )
- {
- theNames.append( anObject->GetName() );
- theEntries.append( HYDROGUI_DataObject::dataObjectEntry( anObject ) );
- }
- }
+ Handle(HYDROData_Entity) anEntity = anIter.Value();
+ if ( !HYDROData_Tool::IsGeometryObject( anEntity ) )
+ continue;
+
+ theNames.append( anEntity->GetName() );
+ theEntries.append( HYDROGUI_DataObject::dataObjectEntry( anEntity ) );
}
}
{
HYDROGUI_CalculationDlg* aPanel =
::qobject_cast<HYDROGUI_CalculationDlg*>( inputPanel() );
- if ( aPanel )
+ if ( !aPanel )
+ return;
+
+ // Add geometry objects selected in the module browser to the calculation case
+ QStringList aSelectedList = aPanel->getSelectedAvailableGeomObjects();
+ if ( aSelectedList.isEmpty() || !confirmRegionsChange() )
+ return;
+
+ QStringList anAddedList;
+ for (int i = 0; i < aSelectedList.length(); i++)
{
- // Add geometry objects selected in the module browser to the calculation case
- QStringList aSelectedList = aPanel->getSelectedAvailableGeomObjects();
- if ( ( !aSelectedList.isEmpty() ) && ( confirmRegionsChange() ) )
- {
- Handle(HYDROData_Object) anObject;
- Handle(HYDROData_Entity) anEntity;
- QStringList aList;
- for (int i = 0; i < aSelectedList.length(); i++)
- {
- anEntity = HYDROGUI_Tool::FindObjectByName( module(), aSelectedList.at(i) );
- if ( !anEntity.IsNull() )
- {
- anObject = Handle(HYDROData_Object)::DownCast( anEntity );
- if ( !anObject.IsNull() )
- {
- if (myEditedObject->AddGeometryObject( anObject ))
- {
- aList.append( anObject->GetName() );
- }
- }
- }
- }
- if ( !aList.isEmpty() )
- {
- aPanel->includeGeomObjects( aList );
- createPreview();
- }
- }
+ Handle(HYDROData_Object) anObject = Handle(HYDROData_Object)::DownCast(
+ HYDROGUI_Tool::FindObjectByName( module(), aSelectedList.at( i ) ) );
+ if ( anObject.IsNull() )
+ continue;
+
+ if ( myEditedObject->AddGeometryObject( anObject ) )
+ anAddedList.append( anObject->GetName() );
+ }
+
+ if ( !anAddedList.isEmpty() )
+ {
+ aPanel->includeGeomObjects( anAddedList );
+ createPreview();
}
}
// Remove selected objects from the calculation case
HYDROGUI_CalculationDlg* aPanel =
::qobject_cast<HYDROGUI_CalculationDlg*>( inputPanel() );
- if ( aPanel )
+ if ( !aPanel )
+ return;
+
+ QStringList aSelectedList = aPanel->getSelectedGeomObjects();
+ if ( aSelectedList.isEmpty() || !confirmRegionsChange() )
+ return;
+
+ for (int i = 0; i < aSelectedList.length(); i++)
{
- QStringList aList = aPanel->getSelectedGeomObjects();
- if ( ( !aList.isEmpty() ) && ( confirmRegionsChange() ) )
- {
- Handle(HYDROData_Object) anObject;
- Handle(HYDROData_Entity) anEntity;
- for (int i = 0; i < aList.length(); i++)
- {
- anEntity = HYDROGUI_Tool::FindObjectByName( module(), aList.at(i) );
- if ( !anEntity.IsNull() )
- {
- anObject = Handle(HYDROData_Object)::DownCast( anEntity );
- if ( !anObject.IsNull() )
- {
- module()->removeObjectShape( HYDROGUI_Module::VMR_PreviewCaseZones, anObject );
- myEditedObject->RemoveGeometryObject( anObject );
- }
- }
- }
- if ( !aList.isEmpty() )
- {
- aPanel->excludeGeomObjects( aList );
- }
- }
+ Handle(HYDROData_Object) anObject = Handle(HYDROData_Object)::DownCast(
+ HYDROGUI_Tool::FindObjectByName( module(), aSelectedList.at(i) ) );
+ if ( anObject.IsNull() )
+ continue;
+
+ module()->removeObjectShape( HYDROGUI_Module::VMR_PreviewCaseZones, anObject );
+ myEditedObject->RemoveGeometryObject( anObject );
}
+
+ aPanel->excludeGeomObjects( aSelectedList );
}
bool HYDROGUI_CalculationOp::confirmRegionsChange() const