mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-15 10:08:34 +05:00
0021014: EDF 1583 SMESH: Improvement of the Python Dump for the creation of groups
icon for SMESH_GroupOnFilter
This commit is contained in:
parent
ca0e6f7ceb
commit
a6fa2d8561
@ -27,6 +27,8 @@
|
|||||||
//
|
//
|
||||||
#include "SMESHGUI_Utils.h"
|
#include "SMESHGUI_Utils.h"
|
||||||
#include "SMESHGUI.h"
|
#include "SMESHGUI.h"
|
||||||
|
#include "SMESHGUI_Selection.h"
|
||||||
|
#include "SMESH_Type.h"
|
||||||
|
|
||||||
#include <SMDS_MeshNode.hxx>
|
#include <SMDS_MeshNode.hxx>
|
||||||
#include <SMDS_MeshFace.hxx>
|
#include <SMDS_MeshFace.hxx>
|
||||||
@ -48,6 +50,8 @@
|
|||||||
#include <gp_XYZ.hxx>
|
#include <gp_XYZ.hxx>
|
||||||
#include <TColgp_Array1OfXYZ.hxx>
|
#include <TColgp_Array1OfXYZ.hxx>
|
||||||
|
|
||||||
|
#include CORBA_SERVER_HEADER(SMESH_Group)
|
||||||
|
|
||||||
namespace SMESH
|
namespace SMESH
|
||||||
{
|
{
|
||||||
SUIT_Desktop*
|
SUIT_Desktop*
|
||||||
@ -279,29 +283,58 @@ namespace SMESH
|
|||||||
_PTR(GenericAttribute) anAttr =
|
_PTR(GenericAttribute) anAttr =
|
||||||
aBuilder->FindOrCreateAttribute(theSObject,"AttributePixMap");
|
aBuilder->FindOrCreateAttribute(theSObject,"AttributePixMap");
|
||||||
_PTR(AttributePixMap) aPixmap = anAttr;
|
_PTR(AttributePixMap) aPixmap = anAttr;
|
||||||
if (theIsNotModif) {
|
|
||||||
aPixmap->SetPixMap("ICON_SMESH_TREE_MESH");
|
std::string pmName;
|
||||||
} else if ( isEmptyMesh ) {
|
if (theIsNotModif)
|
||||||
aPixmap->SetPixMap("ICON_SMESH_TREE_MESH_WARN");
|
pmName = "ICON_SMESH_TREE_MESH";
|
||||||
} else {
|
else if ( isEmptyMesh )
|
||||||
aPixmap->SetPixMap("ICON_SMESH_TREE_MESH_PARTIAL");
|
pmName = "ICON_SMESH_TREE_MESH_WARN";
|
||||||
}
|
else
|
||||||
|
pmName = "ICON_SMESH_TREE_MESH_PARTIAL";
|
||||||
|
aPixmap->SetPixMap( pmName );
|
||||||
|
|
||||||
_PTR(ChildIterator) anIter = aStudy->NewChildIterator(theSObject);
|
_PTR(ChildIterator) anIter = aStudy->NewChildIterator(theSObject);
|
||||||
for (int i = 1; anIter->More(); anIter->Next(), i++) {
|
for (int i = 1; anIter->More(); anIter->Next(), i++) {
|
||||||
_PTR(SObject) aSObj = anIter->Value();
|
_PTR(SObject) aSObj = anIter->Value();
|
||||||
if (i >= 4) {
|
if (i >= 4) {
|
||||||
_PTR(ChildIterator) anIter1 = aStudy->NewChildIterator(aSObj);
|
_PTR(ChildIterator) anIter1 = aStudy->NewChildIterator(aSObj);
|
||||||
for ( ; anIter1->More(); anIter1->Next()) {
|
for ( ; anIter1->More(); anIter1->Next())
|
||||||
|
{
|
||||||
_PTR(SObject) aSObj1 = anIter1->Value();
|
_PTR(SObject) aSObj1 = anIter1->Value();
|
||||||
|
|
||||||
anAttr = aBuilder->FindOrCreateAttribute(aSObj1, "AttributePixMap");
|
anAttr = aBuilder->FindOrCreateAttribute(aSObj1, "AttributePixMap");
|
||||||
aPixmap = anAttr;
|
aPixmap = anAttr;
|
||||||
if (theIsNotModif) {
|
|
||||||
aPixmap->SetPixMap("ICON_SMESH_TREE_MESH");
|
std::string entry = aSObj1->GetID();
|
||||||
} else if ( isEmptyMesh ) {
|
int objType = SMESHGUI_Selection::type( entry.c_str(), aStudy );
|
||||||
|
|
||||||
|
SMESH::SMESH_IDSource_var idSrc = SObjectToInterface<SMESH::SMESH_IDSource>( aSObj1 );
|
||||||
|
if ( !idSrc->_is_nil() )
|
||||||
|
{
|
||||||
|
SMESH::SMESH_GroupOnFilter_var gof =
|
||||||
|
SObjectToInterface<SMESH::SMESH_GroupOnFilter>( aSObj1 );
|
||||||
|
const bool isGroupOnFilter = !gof->_is_nil();
|
||||||
|
|
||||||
|
SMESH::array_of_ElementType_var elemTypes = idSrc->GetTypes();
|
||||||
|
const bool isEmpty = ( elemTypes->length() == 0 );
|
||||||
|
|
||||||
|
if ( isEmpty )
|
||||||
aPixmap->SetPixMap("ICON_SMESH_TREE_MESH_WARN");
|
aPixmap->SetPixMap("ICON_SMESH_TREE_MESH_WARN");
|
||||||
} else {
|
else if ( objType != GROUP )
|
||||||
aPixmap->SetPixMap("ICON_SMESH_TREE_MESH_PARTIAL");
|
aPixmap->SetPixMap( "ICON_SMESH_TREE_MESH" );
|
||||||
|
else if ( isGroupOnFilter )
|
||||||
|
aPixmap->SetPixMap( "ICON_SMESH_TREE_GROUP_ON_FILTER" );
|
||||||
|
else
|
||||||
|
aPixmap->SetPixMap( "ICON_SMESH_TREE_GROUP" );
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if ( !theIsNotModif )
|
||||||
|
aPixmap->SetPixMap( pmName );
|
||||||
|
else if ( objType == GROUP )
|
||||||
|
aPixmap->SetPixMap( "ICON_SMESH_TREE_GROUP" );
|
||||||
|
else
|
||||||
|
aPixmap->SetPixMap( "ICON_SMESH_TREE_MESH" );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -694,7 +694,12 @@ SALOMEDS::SObject_ptr SMESH_Gen_i::PublishGroup (SALOMEDS::Study_ptr theStudy
|
|||||||
SetName( aRootSO, aRootNames[aType] );
|
SetName( aRootSO, aRootNames[aType] );
|
||||||
|
|
||||||
// Add new group to corresponding sub-tree
|
// Add new group to corresponding sub-tree
|
||||||
aGroupSO = publish (theStudy, theGroup, aRootSO, 0, "ICON_SMESH_TREE_GROUP" );
|
SMESH::array_of_ElementType_var elemTypes = theGroup->GetTypes();
|
||||||
|
const int isEmpty = ( elemTypes->length() == 0 );
|
||||||
|
std::string pm[2] = { "ICON_SMESH_TREE_GROUP", "ICON_SMESH_TREE_MESH_WARN" };
|
||||||
|
if ( SMESH::DownCast< SMESH_GroupOnFilter_i* > ( theGroup ))
|
||||||
|
pm[0] = "ICON_SMESH_TREE_GROUP_ON_FILTER";
|
||||||
|
aGroupSO = publish (theStudy, theGroup, aRootSO, 0, pm[isEmpty].c_str() );
|
||||||
}
|
}
|
||||||
if ( aGroupSO->_is_nil() )
|
if ( aGroupSO->_is_nil() )
|
||||||
return aGroupSO._retn();
|
return aGroupSO._retn();
|
||||||
|
@ -1949,6 +1949,8 @@ SMESH::SMESH_Group_ptr SMESH_Mesh_i::ConvertToStandalone( SMESH::SMESH_GroupBase
|
|||||||
if ( !aGroupToRem )
|
if ( !aGroupToRem )
|
||||||
return aGroup._retn();
|
return aGroup._retn();
|
||||||
|
|
||||||
|
const bool isOnFilter = ( SMESH::DownCast< SMESH_GroupOnFilter_i* > ( theGroup ));
|
||||||
|
|
||||||
int anId = aGroupToRem->GetLocalID();
|
int anId = aGroupToRem->GetLocalID();
|
||||||
if ( !_impl->ConvertToStandalone( anId ) )
|
if ( !_impl->ConvertToStandalone( anId ) )
|
||||||
return aGroup._retn();
|
return aGroup._retn();
|
||||||
@ -1976,6 +1978,20 @@ SMESH::SMESH_Group_ptr SMESH_Mesh_i::ConvertToStandalone( SMESH::SMESH_GroupBase
|
|||||||
// Update Python script
|
// Update Python script
|
||||||
TPythonDump() << aGroupSO << " = " << _this() << ".ConvertToStandalone( "
|
TPythonDump() << aGroupSO << " = " << _this() << ".ConvertToStandalone( "
|
||||||
<< aGroupSO << " )";
|
<< aGroupSO << " )";
|
||||||
|
|
||||||
|
// change icon of Group on Filter
|
||||||
|
if ( isOnFilter )
|
||||||
|
{
|
||||||
|
SMESH::array_of_ElementType_var elemTypes = aGroupImpl->GetTypes();
|
||||||
|
const int isEmpty = ( elemTypes->length() == 0 );
|
||||||
|
if ( !isEmpty )
|
||||||
|
{
|
||||||
|
SALOMEDS::GenericAttribute_var anAttr =
|
||||||
|
builder->FindOrCreateAttribute( aGroupSO, "AttributePixMap" );
|
||||||
|
SALOMEDS::AttributePixMap_var pm = SALOMEDS::AttributePixMap::_narrow( anAttr );
|
||||||
|
pm->SetPixMap( "ICON_SMESH_TREE_GROUP" );
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user