Box showing mesh info. More...
#include <SMESHGUI_MeshInfosBox.h>

Public Member Functions | |
| SMESHGUI_MeshInfosBox (const bool, QWidget *) | |
| Box showing mesh info. | |
| void | SetMeshInfo (const SMESH::long_array &theInfo) |
| Set mesh info. | |
Private Attributes | |
| bool | myFull |
| QLabel * | myNbNode |
| QLabel * | my0DElem |
| QLabel * | myNbEdge |
| QLabel * | myNbLinEdge |
| QLabel * | myNbQuadEdge |
| QLabel * | myNbTrai |
| QLabel * | myNbLinTrai |
| QLabel * | myNbQuadTrai |
| QLabel * | myNbQuad |
| QLabel * | myNbLinQuad |
| QLabel * | myNbQuadQuad |
| QLabel * | myNbFace |
| QLabel * | myNbLinFace |
| QLabel * | myNbQuadFace |
| QLabel * | myNbPolyg |
| QLabel * | myNbHexa |
| QLabel * | myNbLinHexa |
| QLabel * | myNbQuadHexa |
| QLabel * | myNbTetra |
| QLabel * | myNbLinTetra |
| QLabel * | myNbQuadTetra |
| QLabel * | myNbPyra |
| QLabel * | myNbLinPyra |
| QLabel * | myNbQuadPyra |
| QLabel * | myNbPrism |
| QLabel * | myNbLinPrism |
| QLabel * | myNbQuadPrism |
| QLabel * | myNbVolum |
| QLabel * | myNbLinVolum |
| QLabel * | myNbQuadVolum |
| QLabel * | myNbPolyh |
Box showing mesh info.
Definition at line 42 of file SMESHGUI_MeshInfosBox.h.
Box showing mesh info.
Definition at line 60 of file SMESHGUI_MeshInfosBox.cxx.
References addSeparator(), COLONIZE, MARGIN, my0DElem, myFull, myNbEdge, myNbFace, myNbHexa, myNbLinEdge, myNbLinFace, myNbLinHexa, myNbLinPrism, myNbLinPyra, myNbLinQuad, myNbLinTetra, myNbLinTrai, myNbLinVolum, myNbNode, myNbPolyg, myNbPolyh, myNbPrism, myNbPyra, myNbQuad, myNbQuadEdge, myNbQuadFace, myNbQuadHexa, myNbQuadPrism, myNbQuadPyra, myNbQuadQuad, myNbQuadTetra, myNbQuadTrai, myNbQuadVolum, myNbTetra, myNbTrai, myNbVolum, and SPACING.
: QGroupBox( tr("SMESH_MESHINFO_TITLE"), theParent ), myFull( full ), myNbNode(0), my0DElem(0), myNbEdge(0), myNbLinEdge(0), myNbQuadEdge(0), myNbTrai(0), myNbLinTrai(0), myNbQuadTrai(0), myNbQuad(0), myNbLinQuad(0), myNbQuadQuad(0), myNbFace(0), myNbLinFace(0), myNbQuadFace(0), myNbPolyg(0), myNbHexa(0), myNbLinHexa(0), myNbQuadHexa(0), myNbTetra(0), myNbLinTetra(0), myNbQuadTetra(0), myNbPyra(0), myNbLinPyra(0), myNbQuadPyra(0), myNbPrism(0), myNbLinPrism(0), myNbQuadPrism(0), myNbVolum(0), myNbLinVolum(0), myNbQuadVolum(0), myNbPolyh(0) { QGridLayout* l = new QGridLayout(this); l->setMargin( MARGIN ); l->setSpacing( SPACING ); QFont italic = font(); italic.setItalic(true); QFont bold = font(); bold.setBold(true); QLabel* lab; int row = 0; // title lab = new QLabel( this ); lab->setMinimumWidth(100); lab->setFont( italic ); l->addWidget( lab, row, 0 ); // -- lab = new QLabel(tr("SMESH_MESHINFO_ORDER0"), this ); lab->setMinimumWidth(100); lab->setFont( italic ); l->addWidget( lab, row, 1 ); // -- lab = new QLabel(tr("SMESH_MESHINFO_ORDER1"), this ); lab->setMinimumWidth(100); lab->setFont( italic ); l->addWidget( lab, row, 2 ); // -- lab = new QLabel(tr("SMESH_MESHINFO_ORDER2"), this ); lab->setMinimumWidth(100); lab->setFont( italic ); l->addWidget( lab, row, 3 ); if ( myFull ) { // nodes row = l->rowCount(); // retrieve current row count // -- lab = new QLabel(COLONIZE(tr("SMESH_MESHINFO_NODES")), this ); lab->setFont( bold ); l->addWidget( lab, row, 0 ); // -- myNbNode = new QLabel( this ); l->addWidget( myNbNode, row, 1 ); addSeparator(this); // add separator // 0D elements row = l->rowCount(); // retrieve current row count // -- lab = new QLabel(COLONIZE(tr("SMESH_MESHINFO_0DELEMS")), this ); lab->setFont( bold ); l->addWidget( lab, row, 0 ); // -- my0DElem = new QLabel( this ); l->addWidget( my0DElem, row, 1 ); addSeparator(this); // add separator // edges row = l->rowCount(); // retrieve current row count // -- lab = new QLabel(COLONIZE(tr("SMESH_MESHINFO_EDGES")), this ); lab->setFont( bold ); l->addWidget( lab, row, 0 ); // -- myNbEdge = new QLabel( this ); l->addWidget( myNbEdge, row, 1 ); // -- myNbLinEdge = new QLabel( this ); l->addWidget( myNbLinEdge, row, 2 ); // -- myNbQuadEdge = new QLabel( this ); l->addWidget( myNbQuadEdge, row, 3 ); addSeparator(this); // add separator // faces row = l->rowCount(); // retrieve current row count // -- lab = new QLabel(COLONIZE(tr("SMESH_MESHINFO_FACES")), this); lab->setFont( bold ); l->addWidget( lab, row, 0 ); // -- myNbFace = new QLabel( this ); l->addWidget( myNbFace, row, 1 ); // -- myNbLinFace = new QLabel( this ); l->addWidget( myNbLinFace, row, 2 ); // -- myNbQuadFace = new QLabel( this ); l->addWidget( myNbQuadFace, row, 3 ); // -- row++; // increment row count // ... triangles lab = new QLabel(COLONIZE(tr("SMESH_MESHINFO_TRIANGLES")), this ); l->addWidget( lab, row, 0 ); // -- myNbTrai = new QLabel( this ); l->addWidget( myNbTrai, row, 1 ); // -- myNbLinTrai = new QLabel( this ); l->addWidget( myNbLinTrai, row, 2 ); // -- myNbQuadTrai = new QLabel( this ); l->addWidget( myNbQuadTrai, row, 3 ); // -- row++; // increment row count // ... quadrangles lab = new QLabel(COLONIZE(tr("SMESH_MESHINFO_QUADRANGLES")), this ); l->addWidget( lab, row, 0 ); // -- myNbQuad = new QLabel( this ); l->addWidget( myNbQuad, row, 1 ); // -- myNbLinQuad = new QLabel( this ); l->addWidget( myNbLinQuad, row, 2 ); // -- myNbQuadQuad = new QLabel( this ); l->addWidget( myNbQuadQuad, row, 3 ); // -- row++; // increment row count // ... poligones lab = new QLabel(COLONIZE(tr("SMESH_MESHINFO_POLYGONES")), this ); l->addWidget( lab, row, 0 ); myNbPolyg = new QLabel( this ); l->addWidget( myNbPolyg, row, 1 ); addSeparator(this); // add separator // volumes row = l->rowCount(); // retrieve current row count // -- lab = new QLabel(COLONIZE(tr("SMESH_MESHINFO_VOLUMES")), this); lab->setFont( bold ); l->addWidget( lab, row, 0 ); // -- myNbVolum = new QLabel( this ); l->addWidget( myNbVolum, row, 1 ); // -- myNbLinVolum = new QLabel( this ); l->addWidget( myNbLinVolum, row, 2 ); // -- myNbQuadVolum = new QLabel( this ); l->addWidget( myNbQuadVolum, row, 3 ); // -- row++; // increment row count // ... tetras lab = new QLabel(COLONIZE(tr("SMESH_MESHINFO_TETRAS")), this ); l->addWidget( lab, row, 0 ); // -- myNbTetra = new QLabel( this ); l->addWidget( myNbTetra, row, 1 ); // -- myNbLinTetra = new QLabel( this ); l->addWidget( myNbLinTetra, row, 2 ); // -- myNbQuadTetra = new QLabel( this ); l->addWidget( myNbQuadTetra, row, 3 ); // -- row++; // increment row count // ... hexas lab = new QLabel(COLONIZE(tr("SMESH_MESHINFO_HEXAS")), this ); l->addWidget( lab, row, 0 ); // -- myNbHexa = new QLabel( this ); l->addWidget( myNbHexa, row, 1 ); // -- myNbLinHexa = new QLabel( this ); l->addWidget( myNbLinHexa, row, 2 ); // -- myNbQuadHexa = new QLabel( this ); l->addWidget( myNbQuadHexa, row, 3 ); // -- row++; // increment row count // ... pyras lab = new QLabel(COLONIZE(tr("SMESH_MESHINFO_PYRAS")), this ); l->addWidget( lab, row, 0 ); // -- myNbPyra = new QLabel( this ); l->addWidget( myNbPyra, row, 1 ); // -- myNbLinPyra = new QLabel( this ); l->addWidget( myNbLinPyra, row, 2 ); // -- myNbQuadPyra = new QLabel( this ); l->addWidget( myNbQuadPyra, row, 3 ); // -- row++; // increment row count // ... prisms lab = new QLabel(COLONIZE(tr("SMESH_MESHINFO_PRISMS")), this ); l->addWidget( lab, row, 0 ); // -- myNbPrism = new QLabel( this ); l->addWidget( myNbPrism, row, 1 ); // -- myNbLinPrism = new QLabel( this ); l->addWidget( myNbLinPrism, row, 2 ); // -- myNbQuadPrism = new QLabel( this ); l->addWidget( myNbQuadPrism, row, 3 ); // -- row++; // increment row count // ... polyedres lab = new QLabel(COLONIZE(tr("SMESH_MESHINFO_POLYEDRES")), this ); l->addWidget( lab, row, 0 ); // -- myNbPolyh = new QLabel( this ); l->addWidget( myNbPolyh, row, 1 ); } else { // nodes row = l->rowCount(); // retrieve current row count // -- lab = new QLabel(COLONIZE(tr("SMESH_MESHINFO_NODES")), this ); l->addWidget( lab, row, 0 ); // -- myNbNode = new QLabel( this ); l->addWidget( myNbNode, row, 1 ); // 0D elements row = l->rowCount(); // retrieve current row count // -- lab = new QLabel(COLONIZE(tr("SMESH_MESHINFO_0DELEMS")), this ); l->addWidget( lab, row, 0 ); // -- my0DElem = new QLabel( this ); l->addWidget( my0DElem, row, 1 ); addSeparator(this); // add separator // edges row = l->rowCount(); // retrieve current row count // -- lab = new QLabel(COLONIZE(tr("SMESH_MESHINFO_EDGES")), this ); l->addWidget( lab, row, 0 ); // -- myNbEdge = new QLabel( this ); l->addWidget( myNbEdge, row, 1 ); // -- myNbLinEdge = new QLabel( this ); l->addWidget( myNbLinEdge, row, 2 ); // -- myNbQuadEdge = new QLabel( this ); l->addWidget( myNbQuadEdge, row, 3 ); // faces row = l->rowCount(); // retrieve current row count // -- lab = new QLabel(COLONIZE(tr("SMESH_MESHINFO_FACES")), this); l->addWidget( lab, row, 0 ); // -- myNbFace = new QLabel( this ); l->addWidget( myNbFace, row, 1 ); // -- myNbLinFace = new QLabel( this ); l->addWidget( myNbLinFace, row, 2 ); // -- myNbQuadFace = new QLabel( this ); l->addWidget( myNbQuadFace, row, 3 ); // volumes row = l->rowCount(); // retrieve current row count // -- lab = new QLabel(COLONIZE(tr("SMESH_MESHINFO_VOLUMES")), this); l->addWidget( lab, row, 0 ); // -- myNbVolum = new QLabel( this ); l->addWidget( myNbVolum, row, 1 ); // -- myNbLinVolum = new QLabel( this ); l->addWidget( myNbLinVolum, row, 2 ); // -- myNbQuadVolum = new QLabel( this ); l->addWidget( myNbQuadVolum, row, 3 ); } }
| void SMESHGUI_MeshInfosBox::SetMeshInfo | ( | const SMESH::long_array & | theInfo | ) |
Set mesh info.
Definition at line 349 of file SMESHGUI_MeshInfosBox.cxx.
References my0DElem, myFull, myNbEdge, myNbFace, myNbHexa, myNbLinEdge, myNbLinFace, myNbLinHexa, myNbLinPrism, myNbLinPyra, myNbLinQuad, myNbLinTetra, myNbLinTrai, myNbLinVolum, myNbNode, myNbPolyg, myNbPolyh, myNbPrism, myNbPyra, myNbQuad, myNbQuadEdge, myNbQuadFace, myNbQuadHexa, myNbQuadPrism, myNbQuadPyra, myNbQuadQuad, myNbQuadTetra, myNbQuadTrai, myNbQuadVolum, myNbTetra, myNbTrai, myNbVolum, SMDSEntity_0D, SMDSEntity_Edge, SMDSEntity_Hexa, SMDSEntity_Node, SMDSEntity_Penta, SMDSEntity_Polygon, SMDSEntity_Polyhedra, SMDSEntity_Pyramid, SMDSEntity_Quad_Edge, SMDSEntity_Quad_Hexa, SMDSEntity_Quad_Penta, SMDSEntity_Quad_Pyramid, SMDSEntity_Quad_Quadrangle, SMDSEntity_Quad_Tetra, SMDSEntity_Quad_Triangle, SMDSEntity_Quadrangle, SMDSEntity_Tetra, and SMDSEntity_Triangle.
Referenced by SMESHGUI_MeshInfosDlg.DumpMeshInfos(), SMESHGUI_BaseComputeOp.showComputeResult(), and SMESHGUI_BaseComputeOp.showEvaluateResult().
{
// nodes
myNbNode ->setText( QString("%1").arg( theInfo[SMDSEntity_Node] ));
//0D elements
my0DElem ->setText( QString("%1").arg( theInfo[SMDSEntity_0D] ));
// edges
myNbEdge ->setText( QString("%1").arg( theInfo[SMDSEntity_Edge] +
theInfo[SMDSEntity_Quad_Edge] ));
myNbLinEdge ->setText( QString("%1").arg( theInfo[SMDSEntity_Edge] ));
myNbQuadEdge ->setText( QString("%1").arg( theInfo[SMDSEntity_Quad_Edge] ));
// faces
myNbFace ->setText( QString("%1").arg( theInfo[SMDSEntity_Triangle] +
theInfo[SMDSEntity_Quad_Triangle] +
theInfo[SMDSEntity_Quadrangle] +
theInfo[SMDSEntity_Quad_Quadrangle] +
theInfo[SMDSEntity_Polygon] ));
myNbLinFace ->setText( QString("%1").arg( theInfo[SMDSEntity_Triangle] +
theInfo[SMDSEntity_Quadrangle] +
theInfo[SMDSEntity_Polygon] ));
myNbQuadFace ->setText( QString("%1").arg( theInfo[SMDSEntity_Quad_Triangle] +
theInfo[SMDSEntity_Quad_Quadrangle] ));
// volumes
myNbVolum ->setText( QString("%1").arg( theInfo[SMDSEntity_Tetra] +
theInfo[SMDSEntity_Quad_Tetra] +
theInfo[SMDSEntity_Pyramid] +
theInfo[SMDSEntity_Quad_Pyramid] +
theInfo[SMDSEntity_Hexa] +
theInfo[SMDSEntity_Quad_Hexa] +
theInfo[SMDSEntity_Penta] +
theInfo[SMDSEntity_Quad_Penta] +
theInfo[SMDSEntity_Polyhedra] ));
myNbLinVolum ->setText( QString("%1").arg( theInfo[SMDSEntity_Tetra] +
theInfo[SMDSEntity_Pyramid] +
theInfo[SMDSEntity_Hexa] +
theInfo[SMDSEntity_Penta] +
theInfo[SMDSEntity_Polyhedra] ));
myNbQuadVolum->setText( QString("%1").arg( theInfo[SMDSEntity_Quad_Tetra] +
theInfo[SMDSEntity_Quad_Pyramid] +
theInfo[SMDSEntity_Quad_Hexa] +
theInfo[SMDSEntity_Quad_Penta] ));
if ( myFull )
{
// triangles
myNbTrai ->setText( QString("%1").arg( theInfo[SMDSEntity_Triangle] +
theInfo[SMDSEntity_Quad_Triangle] ));
myNbLinTrai ->setText( QString("%1").arg( theInfo[SMDSEntity_Triangle] ));
myNbQuadTrai ->setText( QString("%1").arg( theInfo[SMDSEntity_Quad_Triangle] ));
// quadrangles
myNbQuad ->setText( QString("%1").arg( theInfo[SMDSEntity_Quadrangle] +
theInfo[SMDSEntity_Quad_Quadrangle] ));
myNbLinQuad ->setText( QString("%1").arg( theInfo[SMDSEntity_Quadrangle] ));
myNbQuadQuad ->setText( QString("%1").arg( theInfo[SMDSEntity_Quad_Quadrangle] ));
// poligones
myNbPolyg ->setText( QString("%1").arg( theInfo[SMDSEntity_Polygon] ));
// tetras
myNbTetra ->setText( QString("%1").arg( theInfo[SMDSEntity_Tetra] +
theInfo[SMDSEntity_Quad_Tetra] ));
myNbLinTetra ->setText( QString("%1").arg( theInfo[SMDSEntity_Tetra] ));
myNbQuadTetra->setText( QString("%1").arg( theInfo[SMDSEntity_Quad_Tetra] ));
// hexas
myNbHexa ->setText( QString("%1").arg( theInfo[SMDSEntity_Hexa] +
theInfo[SMDSEntity_Quad_Hexa] ));
myNbLinHexa ->setText( QString("%1").arg( theInfo[SMDSEntity_Hexa] ));
myNbQuadHexa ->setText( QString("%1").arg( theInfo[SMDSEntity_Quad_Hexa] ));
// pyras
myNbPyra ->setText( QString("%1").arg( theInfo[SMDSEntity_Pyramid] +
theInfo[SMDSEntity_Quad_Pyramid] ));
myNbLinPyra ->setText( QString("%1").arg( theInfo[SMDSEntity_Pyramid] ));
myNbQuadPyra ->setText( QString("%1").arg( theInfo[SMDSEntity_Quad_Pyramid] ));
// prisms
myNbPrism ->setText( QString("%1").arg( theInfo[SMDSEntity_Penta] +
theInfo[SMDSEntity_Quad_Penta] ));
myNbLinPrism ->setText( QString("%1").arg( theInfo[SMDSEntity_Penta] ));
myNbQuadPrism->setText( QString("%1").arg( theInfo[SMDSEntity_Quad_Penta] ));
// polyedres
myNbPolyh ->setText( QString("%1").arg( theInfo[SMDSEntity_Polyhedra] ));
}
}
QLabel* SMESHGUI_MeshInfosBox.my0DElem [private] |
Definition at line 54 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
bool SMESHGUI_MeshInfosBox.myFull [private] |
Definition at line 52 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbEdge [private] |
Definition at line 55 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbFace [private] |
Definition at line 64 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbHexa [private] |
Definition at line 68 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbLinEdge [private] |
Definition at line 56 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbLinFace [private] |
Definition at line 65 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbLinHexa [private] |
Definition at line 69 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbLinPrism [private] |
Definition at line 78 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbLinPyra [private] |
Definition at line 75 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbLinQuad [private] |
Definition at line 62 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbLinTetra [private] |
Definition at line 72 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbLinTrai [private] |
Definition at line 59 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbLinVolum [private] |
Definition at line 81 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbNode [private] |
Definition at line 53 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbPolyg [private] |
Definition at line 67 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbPolyh [private] |
Definition at line 83 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbPrism [private] |
Definition at line 77 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbPyra [private] |
Definition at line 74 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbQuad [private] |
Definition at line 61 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbQuadEdge [private] |
Definition at line 57 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbQuadFace [private] |
Definition at line 66 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbQuadHexa [private] |
Definition at line 70 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbQuadPrism [private] |
Definition at line 79 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbQuadPyra [private] |
Definition at line 76 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbQuadQuad [private] |
Definition at line 63 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbQuadTetra [private] |
Definition at line 73 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbQuadTrai [private] |
Definition at line 60 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbQuadVolum [private] |
Definition at line 82 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbTetra [private] |
Definition at line 71 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbTrai [private] |
Definition at line 58 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().
QLabel* SMESHGUI_MeshInfosBox.myNbVolum [private] |
Definition at line 80 of file SMESHGUI_MeshInfosBox.h.
Referenced by SetMeshInfo(), and SMESHGUI_MeshInfosBox().