Salome HOME
Update Help references (bug 17577)
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_ComputeDlg.cxx
1 //  SMESH SMESHGUI : GUI for SMESH component
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //
23 //
24 //  File   : SMESHGUI_ComputeDlg.cxx
25 //  Author : Edward AGAPOV
26 //  Module : SMESH
27
28 #include "SMESHGUI_ComputeDlg.h"
29
30 #include "SMESHGUI.h"
31 #include "SMESHGUI_GEOMGenUtils.h"
32 #include "SMESHGUI_MeshUtils.h"
33 #include "SMESHGUI_Utils.h"
34 #include "SMESHGUI_VTKUtils.h"
35 #include "SMESHGUI_HypothesesUtils.h"
36
37 #include "SMDS_SetIterator.hxx"
38 #include <SMDS_Mesh.hxx>
39
40 #include "GEOMBase.h"
41 #include "GEOM_Actor.h"
42
43 #include "LightApp_SelectionMgr.h"
44 #include "LightApp_UpdateFlags.h"
45 #include "SALOMEDSClient_SObject.hxx"
46 #include "SALOME_ListIO.hxx"
47 #include "SVTK_ViewWindow.h"
48 #include "SVTK_ViewModel.h"
49 #include "SalomeApp_Tools.h"
50 #include "SalomeApp_Application.h"
51 #include "SUIT_ResourceMgr.h"
52 #include "SUIT_OverrideCursor.h"
53 #include "SUIT_MessageBox.h"
54 #include "SUIT_Desktop.h"
55 #include "SUIT_Study.h"
56 #include "OB_Browser.h"
57
58 // OCCT Includes
59 #include <BRep_Tool.hxx>
60 #include <TopExp.hxx>
61 #include <TopExp_Explorer.hxx>
62 #include <TopTools_IndexedMapOfShape.hxx>
63 #include <TopoDS.hxx>
64
65 #include <TopLoc_Location.hxx>
66 #include <Poly_Triangulation.hxx>
67 #include <Bnd_Box.hxx>
68 #include <BRepBndLib.hxx>
69 #include <BRepMesh_IncrementalMesh.hxx>
70
71 #include <Standard_ErrorHandler.hxx>
72
73 // QT Includes
74 #include <qframe.h>
75 #include <qlayout.h>
76 #include <qpushbutton.h>
77 #include <qlabel.h>
78 #include <qbuttongroup.h>
79 #include <qradiobutton.h>
80 #include <qtable.h>
81 #include <qhbox.h>
82 #include <qhgroupbox.h>
83 #include <qvgroupbox.h>
84
85 #include <vtkProperty.h>
86
87 // IDL Headers
88 #include <SALOMEconfig.h>
89 #include CORBA_SERVER_HEADER(SMESH_Gen)
90 #include CORBA_SERVER_HEADER(SMESH_Mesh)
91
92 #include <vector>
93 #include <set>
94
95
96 #define SPACING 5
97 #define MARGIN  10
98
99 #define COLONIZE(str)   (QString(str).contains(":") > 0 ? QString(str) : QString(str) + " :" )
100
101 #define _SEPARATOR(father) \
102 {\
103   /*new QLabel(father); new QLabel(father); new QLabel(father)*/;\
104   (new QFrame(father))->setFrameStyle(QFrame::HLine | QFrame::Sunken);\
105   (new QFrame(father))->setFrameStyle(QFrame::HLine | QFrame::Sunken);\
106   (new QFrame(father))->setFrameStyle(QFrame::HLine | QFrame::Sunken);\
107   (new QFrame(father))->setFrameStyle(QFrame::HLine | QFrame::Sunken);\
108 }
109
110 enum TCol { COL_ALGO = 0, COL_SHAPE, COL_ERROR, COL_SHAPEID, COL_PUBLISHED, NB_COLUMNS };
111
112 using namespace SMESH;
113
114 namespace SMESH {
115   
116   //=============================================================================
117   /*!
118    * \brief Allocate some memory at construction and release it at destruction.
119    * Is used to be able to continue working after mesh generation or visualization
120    * break due to lack of memory
121    */
122   //=============================================================================
123
124   struct MemoryReserve
125   {
126     char* myBuf;
127     MemoryReserve(): myBuf( new char[1024*1024*1] ){} // 1M
128     ~MemoryReserve() { delete [] myBuf; }
129   };
130
131   // =========================================================================================
132   /*!
133    * \brief Class showing shapes without publishing
134    */
135   // =========================================================================================
136
137   class TShapeDisplayer
138   {
139   public:
140     // -----------------------------------------------------------------------
141     TShapeDisplayer(): myViewWindow(0)
142     {
143       myProperty = vtkProperty::New();
144       myProperty->SetRepresentationToWireframe();
145       myProperty->SetColor( 250, 0, 250 );
146       myProperty->SetAmbientColor( 250, 0, 250 );
147       myProperty->SetDiffuseColor( 250, 0, 250 );
148       //myProperty->SetSpecularColor( 250, 0, 250 );
149       myProperty->SetLineWidth( 5 );
150     }
151     // -----------------------------------------------------------------------
152     ~TShapeDisplayer()
153     {
154       DeleteActors();
155       myProperty->Delete();
156     }
157     // -----------------------------------------------------------------------
158     void DeleteActors()
159     {
160       if ( hasViewWindow() ) {
161         TActorIterator actorIt = actorIterator();
162         while ( actorIt.more() )
163           if (VTKViewer_Actor* anActor = actorIt.next()) {
164             myViewWindow->RemoveActor( anActor );
165             //anActor->Delete();
166           }
167       }
168       myIndexToShape.Clear();
169       myActors.clear();
170       myShownActors.clear();
171       myBuiltSubs.clear();
172     }
173     // -----------------------------------------------------------------------
174     void SetVisibility (bool theVisibility)
175     {
176       TActorIterator actorIt = shownIterator();
177       while ( actorIt.more() )
178         if (VTKViewer_Actor* anActor = actorIt.next())
179           anActor->SetVisibility(theVisibility);
180       SMESH::RepaintCurrentView();
181     }
182     // -----------------------------------------------------------------------
183     bool HasReadyActorsFor (int subShapeID, GEOM::GEOM_Object_var aMainShape )
184     {
185       string mainEntry;
186       if ( !aMainShape->_is_nil() )
187         mainEntry = aMainShape->GetStudyEntry();
188       return ( myMainEntry == mainEntry &&
189                myBuiltSubs.find( subShapeID ) != myBuiltSubs.end() );
190     }
191     // -----------------------------------------------------------------------
192     void Show( int subShapeID, GEOM::GEOM_Object_var aMainShape, bool only = false)
193     {
194       SVTK_ViewWindow* aViewWindow  = SMESH::GetViewWindow( SMESHGUI::GetSMESHGUI() );
195       string mainEntry;
196       if ( !aMainShape->_is_nil() )
197         mainEntry = aMainShape->GetStudyEntry();
198       if ( myMainEntry != mainEntry || aViewWindow != myViewWindow ) { // remove actors
199         DeleteActors();
200         TopoDS_Shape aShape;
201         if ( !aMainShape->_is_nil() && GEOMBase::GetShape(aMainShape, aShape)) {
202           checkTriangulation( aShape );
203           TopExp::MapShapes(aShape, myIndexToShape);
204           myActors.resize( myIndexToShape.Extent(), 0 );
205           myShownActors.reserve( myIndexToShape.Extent() );
206         }
207         myMainEntry  = mainEntry;
208         myViewWindow = aViewWindow;
209       }
210       if ( only ) { // hide shown actors
211         TActorIterator actorIt = shownIterator();
212         while ( actorIt.more() )
213           if (VTKViewer_Actor* anActor = actorIt.next())
214             anActor->SetVisibility(false);
215         myShownActors.clear();
216       }
217       // find actors to show
218       TopoDS_Shape aShape = myIndexToShape( subShapeID );
219       if ( !aShape.IsNull() ) {
220         TopAbs_ShapeEnum type( aShape.ShapeType() >= TopAbs_WIRE ? TopAbs_EDGE : TopAbs_FACE );
221         for ( TopExp_Explorer exp( aShape, type ); exp.More(); exp.Next() ) {
222           //checkTriangulation( exp.Current() );
223           if ( GEOM_Actor* anActor = getActor( exp.Current() ))
224             myShownActors.push_back( anActor );
225         }
226         if ( type == TopAbs_FACE ) {
227           for ( TopExp_Explorer exp( aShape, TopAbs_EDGE ); exp.More(); exp.Next() ) {
228             const TopoDS_Edge & edge = TopoDS::Edge( exp.Current() );
229             if ( !BRep_Tool::Degenerated( edge ))
230               if ( GEOM_Actor* anActor = getActor( exp.Current() ))
231                 myShownActors.push_back( anActor );
232           }
233         }
234       }
235       myBuiltSubs.insert( subShapeID );
236       SetVisibility(true);
237     }
238     // -----------------------------------------------------------------------
239
240   private:
241
242     typedef std::vector<GEOM_Actor*> TActorVec;
243     TActorVec                  myActors;
244     TActorVec                  myShownActors;
245     TopTools_IndexedMapOfShape myIndexToShape;
246     string                     myMainEntry;
247     SVTK_ViewWindow*           myViewWindow;
248     vtkProperty*               myProperty;
249     std::set<int>              myBuiltSubs;
250
251     // -----------------------------------------------------------------------
252     typedef SMDS_SetIterator< GEOM_Actor*, TActorVec::const_iterator> TActorIterator;
253     TActorIterator actorIterator() {
254       return TActorIterator( myActors.begin(), myActors.end() );
255     }
256     TActorIterator shownIterator() {
257       return TActorIterator( myShownActors.begin(), myShownActors.end() );
258     }
259     // -----------------------------------------------------------------------
260     GEOM_Actor* getActor(const TopoDS_Shape& shape)
261     {
262       int index = myIndexToShape.FindIndex( shape ) - 1;
263       if ( index < 0 || index >= myActors.size() )
264         return 0;
265       GEOM_Actor* & actor = myActors[ index ];
266       if ( !actor ) {
267         actor = GEOM_Actor::New();
268         if ( actor ) {
269           actor->setInputShape(shape,0,0);
270           //actor->SetProperty(myProperty);
271           actor->SetShadingProperty(myProperty);
272           actor->SetWireframeProperty(myProperty);
273           actor->SetPreviewProperty(myProperty);
274           actor->PickableOff();
275           //         if ( shape.ShapeType() == TopAbs_EDGE )
276           //           actor->SubShapeOn();
277           myViewWindow->AddActor( actor );
278         }
279       }
280       return actor;
281     }
282     // -----------------------------------------------------------------------
283     void checkTriangulation(const TopoDS_Shape& shape)
284     {
285       TopLoc_Location aLoc;
286       Standard_Boolean alreadymesh = Standard_True;
287       TopExp_Explorer ex(shape, TopAbs_FACE);
288       if ( ex.More() )
289         for (; ex.More(); ex.Next()) {
290           const TopoDS_Face& aFace = TopoDS::Face(ex.Current());
291           Handle(Poly_Triangulation) aPoly = BRep_Tool::Triangulation(aFace,aLoc);
292           if(aPoly.IsNull()) { alreadymesh = Standard_False; break; }
293         }
294       else
295         for (ex.Init(shape, TopAbs_EDGE); ex.More(); ex.Next()) {
296           const TopoDS_Edge& edge = TopoDS::Edge(ex.Current());
297           Handle(Poly_Polygon3D) aPoly = BRep_Tool::Polygon3D(edge, aLoc);
298           if(aPoly.IsNull()) { alreadymesh = Standard_False; break; }
299         }
300       if (alreadymesh) return;
301       // Compute default deflection
302       Bnd_Box B;
303       BRepBndLib::Add(shape, B);
304       Standard_Real aXmin, aYmin, aZmin, aXmax, aYmax, aZmax;
305       B.Get(aXmin, aYmin, aZmin, aXmax, aYmax, aZmax);
306       double deflection = Max( aXmax-aXmin , Max ( aYmax-aYmin , aZmax-aZmin)) * 0.01 *4;
307       BRepMesh_IncrementalMesh MESH(shape,deflection);
308     }
309     // -----------------------------------------------------------------------
310     bool hasViewWindow() const
311     {
312       if ( !myViewWindow ) return false;
313
314       if ( SalomeApp_Application* anApp = SMESHGUI::GetSMESHGUI()->getApp() )
315         return FindVtkViewWindow( anApp->getViewManager(SVTK_Viewer::Type(), false ),
316                                   myViewWindow );
317       return false;
318     }
319   };
320
321   // =========================================================================================
322   /*!
323    * \brief Return text describing an error
324    */
325 #define CASE2TEXT(enum) case SMESH::enum: text = QObject::tr( #enum ); break;
326   QString errorText(int errCode, const char* comment)
327   {
328     QString text;
329     switch ( errCode ) {
330       CASE2TEXT( COMPERR_OK            );
331       CASE2TEXT( COMPERR_BAD_INPUT_MESH);
332       CASE2TEXT( COMPERR_STD_EXCEPTION );
333       CASE2TEXT( COMPERR_OCC_EXCEPTION );
334     case SMESH::COMPERR_SLM_EXCEPTION: break; // avoid double "Salome exception"
335       CASE2TEXT( COMPERR_EXCEPTION     );
336       CASE2TEXT( COMPERR_MEMORY_PB     );
337       CASE2TEXT( COMPERR_BAD_SHAPE     );
338     case SMESH::COMPERR_ALGO_FAILED:
339       if ( strlen(comment) == 0 )
340         text = QObject::tr("COMPERR_ALGO_FAILED");
341       break;
342     default:
343       text = QString("#%1").arg( -errCode );
344     }
345     if ( text.length() > 0 ) text += ". ";
346     return text + comment;
347   }
348   // -----------------------------------------------------------------------
349   /*!
350    * \brief Return SO of a subshape
351    */
352   _PTR(SObject) getSubShapeSO( int subShapeID, GEOM::GEOM_Object_var aMainShape)
353   {
354     _PTR(SObject) so = SMESH::FindSObject(aMainShape);
355     if ( subShapeID == 1 || !so )
356       return so;
357     _PTR(ChildIterator) it;
358     if (_PTR(Study) study = SMESH::GetActiveStudyDocument())
359       it =  study->NewChildIterator(so);
360     _PTR(SObject) subSO;
361     if ( it ) {
362       for ( it->InitEx(true); !subSO && it->More(); it->Next() ) {
363         GEOM::GEOM_Object_var geom = SMESH::SObjectToInterface<GEOM::GEOM_Object>( it->Value() );
364         if ( !geom->_is_nil() ) {
365           GEOM::ListOfLong_var list = geom->GetSubShapeIndices();
366           if ( list->length() == 1 && list[0] == subShapeID )
367             subSO = it->Value();
368         }
369       }
370     }
371     return subSO;
372   }
373   // -----------------------------------------------------------------------
374   /*!
375    * \brief Return subshape by ID
376    */
377   GEOM::GEOM_Object_ptr getSubShape( int subShapeID, GEOM::GEOM_Object_var aMainShape)
378   {
379     GEOM::GEOM_Object_var aSubShape;
380     if ( subShapeID == 1 )
381       aSubShape = aMainShape;
382     else if ( _PTR(SObject) so = getSubShapeSO( subShapeID, aMainShape ))
383       aSubShape = SMESH::SObjectToInterface<GEOM::GEOM_Object>( so );
384     else
385       aSubShape = SMESH::GetSubShape( aMainShape, subShapeID );
386     return aSubShape._retn();
387   }
388   // -----------------------------------------------------------------------
389   /*!
390    * \brief Return shape type name
391    */
392 #define CASE2NAME(enum) case GEOM::enum: name = QObject::tr( "GEOM_" #enum ); break;
393   QString shapeTypeName(GEOM::GEOM_Object_var aShape, const char* dflt = "" )
394   {
395     QString name = dflt;
396     if ( !aShape->_is_nil() ) {
397       switch ( aShape->GetShapeType() ) {
398       CASE2NAME( VERTEX    );
399       CASE2NAME( EDGE      );
400       CASE2NAME( WIRE      );
401       CASE2NAME( FACE      );
402       CASE2NAME( SHELL     );
403       CASE2NAME( SOLID     );
404       CASE2NAME( COMPSOLID );
405       CASE2NAME( COMPOUND  );
406       default:;
407       }
408     }
409     return name;
410   }
411   // -----------------------------------------------------------------------
412   /*!
413    * \brief Return text describing a subshape
414    */
415   QString shapeText(int subShapeID, GEOM::GEOM_Object_var aMainShape )
416   {
417     QString text;
418     if ( _PTR(SObject) aSO = getSubShapeSO( subShapeID, aMainShape ))
419       text = aSO->GetName();
420     else {
421       text = QString("#%1").arg( subShapeID );
422       QString typeName = shapeTypeName( getSubShape( subShapeID, aMainShape ));
423       if ( typeName.length() )
424         text += QString(" (%1)").arg(typeName);
425     }
426     return text;
427   }
428   // -----------------------------------------------------------------------
429   /*!
430    * \brief Return a list of selected rows
431    */
432   bool getSelectedRows(QTable* table, list< int > & rows)
433   {
434     rows.clear();
435     int nbSel = table->numSelections();
436     for ( int i = 0; i < nbSel; ++i )
437     {
438       QTableSelection selected = table->selection(i);
439       if ( !selected.isActive() ) continue;
440       for ( int row = selected.topRow(); row <= selected.bottomRow(); ++row )
441         rows.push_back( row );
442     }
443     if (rows.empty() && table->currentRow() > -1 )
444       rows.push_back( table->currentRow() );
445
446     return !rows.empty();
447   }
448
449 } // namespace SMESH
450
451
452 // =========================================================================================
453 /*!
454  * \brief Box showing mesh info
455  */
456 // =========================================================================================
457
458 SMESHGUI_MeshInfosBox::SMESHGUI_MeshInfosBox(const bool full, QWidget* theParent)
459   :QGroupBox( 4, Qt::Horizontal, tr("SMESH_MESHINFO_TITLE"), theParent ), myFull( full )
460 {
461   // title
462   QLabel* lab1 = new QLabel(this);
463   QLabel* lab2 = new QLabel(tr("SMESH_MESHINFO_ORDER0"), this );
464   QLabel* lab3 = new QLabel(tr("SMESH_MESHINFO_ORDER1"), this );
465   QLabel* lab4 = new QLabel(tr("SMESH_MESHINFO_ORDER2"), this );
466
467   QFont italic = lab1->font(); italic.setItalic(true);
468   QFont bold   = lab1->font(); bold.setBold(true);
469
470   lab1->setMinimumWidth(100); lab1->setFont( italic );
471   lab2->setMinimumWidth(100); lab2->setFont( italic );
472   lab3->setMinimumWidth(100); lab3->setFont( italic );
473   lab4->setMinimumWidth(100); lab4->setFont( italic );
474
475   if ( myFull )
476   {
477     // nodes
478     (new QLabel(COLONIZE(tr("SMESH_MESHINFO_NODES")), this ))->setFont( bold );
479     myNbNode = new QLabel( this );
480     new QLabel(this);
481     new QLabel(this);
482
483     _SEPARATOR(this);
484
485     // edges
486     (new QLabel(COLONIZE(tr("SMESH_MESHINFO_EDGES")), this ))->setFont( bold );
487     myNbEdge = new QLabel( this );
488     myNbLinEdge = new QLabel( this );
489     myNbQuadEdge = new QLabel( this );
490
491     _SEPARATOR(this);
492
493     // faces
494     (new QLabel(COLONIZE(tr("SMESH_MESHINFO_FACES")), this))->setFont( bold );
495     myNbFace     = new QLabel( this );
496     myNbLinFace  = new QLabel( this );
497     myNbQuadFace = new QLabel( this );
498     // triangles
499     new QLabel(COLONIZE(tr("SMESH_MESHINFO_TRIANGLES")), this );
500     myNbTrai     = new QLabel( this );
501     myNbLinTrai  = new QLabel( this );
502     myNbQuadTrai = new QLabel( this );
503     // quadrangles
504     new QLabel(COLONIZE(tr("SMESH_MESHINFO_QUADRANGLES")), this );
505     myNbQuad     = new QLabel( this );
506     myNbLinQuad  = new QLabel( this );
507     myNbQuadQuad = new QLabel( this );
508     // poligones
509     new QLabel(COLONIZE(tr("SMESH_MESHINFO_POLYGONES")), this );
510     myNbPolyg    = new QLabel( this );
511     new QLabel("",this );
512     new QLabel("", this );
513
514     _SEPARATOR(this);
515
516     // volumes
517     (new QLabel(COLONIZE(tr("SMESH_MESHINFO_VOLUMES")), this))->setFont( bold );
518     myNbVolum     = new QLabel( this );
519     myNbLinVolum  = new QLabel( this );
520     myNbQuadVolum = new QLabel( this );
521     // tetras
522     new QLabel(COLONIZE(tr("SMESH_MESHINFO_TETRAS")), this );
523     myNbTetra     = new QLabel( this );
524     myNbLinTetra  = new QLabel( this );
525     myNbQuadTetra = new QLabel( this );
526     // hexas
527     new QLabel(COLONIZE(tr("SMESH_MESHINFO_HEXAS")), this );
528     myNbHexa      = new QLabel( this );
529     myNbLinHexa   = new QLabel( this );
530     myNbQuadHexa  = new QLabel( this );
531     // pyras
532     new QLabel(COLONIZE(tr("SMESH_MESHINFO_PYRAS")), this );
533     myNbPyra      = new QLabel( this );
534     myNbLinPyra   = new QLabel( this );
535     myNbQuadPyra  = new QLabel( this );
536     // prisms
537     new QLabel(COLONIZE(tr("SMESH_MESHINFO_PRISMS")), this );
538     myNbPrism     = new QLabel( this );
539     myNbLinPrism  = new QLabel( this );
540     myNbQuadPrism = new QLabel( this );
541     // polyedres
542     new QLabel(COLONIZE(tr("SMESH_MESHINFO_POLYEDRES")), this );
543     myNbPolyh     = new QLabel( this );
544     new QLabel("", this );
545     new QLabel("", this );
546   }
547   else
548   {
549     // nodes
550     new QLabel(COLONIZE(tr("SMESH_MESHINFO_NODES")), this );
551     myNbNode      = new QLabel( this );
552     new QLabel(this);
553     new QLabel(this);
554
555     // edges
556     new QLabel(COLONIZE(tr("SMESH_MESHINFO_EDGES")), this );
557     myNbEdge      = new QLabel( this );
558     myNbLinEdge   = new QLabel( this );
559     myNbQuadEdge  = new QLabel( this );
560
561     // faces
562     new QLabel(COLONIZE(tr("SMESH_MESHINFO_FACES")), this);
563     myNbFace      = new QLabel( this );
564     myNbLinFace   = new QLabel( this );
565     myNbQuadFace  = new QLabel( this );
566
567     // volumes
568     new QLabel(COLONIZE(tr("SMESH_MESHINFO_VOLUMES")), this);
569     myNbVolum     = new QLabel( this );
570     myNbLinVolum  = new QLabel( this );
571     myNbQuadVolum = new QLabel( this );
572   }
573 }
574
575 // =========================================================================================
576 /*!
577  * \brief Set mesh info
578  */
579 // =========================================================================================
580
581 void SMESHGUI_MeshInfosBox::SetInfoByMesh(SMESH::SMESH_Mesh_var mesh)
582 {
583   const SMESH::ElementOrder lin = SMESH::ORDER_LINEAR;
584   int nbTot, nbLin;
585
586   // nodes
587   myNbNode     ->setText( QString("%1").arg( mesh->NbNodes() ));
588
589   // edges
590   nbTot = mesh->NbEdges(), nbLin = mesh->NbEdgesOfOrder(lin);
591   myNbEdge     ->setText( QString("%1").arg( nbTot ));
592   myNbLinEdge  ->setText( QString("%1").arg( nbLin ));
593   myNbQuadEdge ->setText( QString("%1").arg( nbTot - nbLin ));
594
595   // faces
596   nbTot = mesh->NbFaces(), nbLin = mesh->NbFacesOfOrder(lin);
597   myNbFace     ->setText( QString("%1").arg( nbTot ));
598   myNbLinFace  ->setText( QString("%1").arg( nbLin )); 
599   myNbQuadFace ->setText( QString("%1").arg( nbTot - nbLin ));
600
601   // volumes
602   nbTot = mesh->NbVolumes(), nbLin = mesh->NbVolumesOfOrder(lin);
603   myNbVolum    ->setText( QString("%1").arg( nbTot ));
604   myNbLinVolum ->setText( QString("%1").arg( nbLin ));
605   myNbQuadVolum->setText( QString("%1").arg( nbTot - nbLin ));
606
607   if ( myFull )
608   {
609     // triangles
610     nbTot = mesh->NbTriangles(), nbLin = mesh->NbTrianglesOfOrder(lin);
611     myNbTrai     ->setText( QString("%1").arg( nbTot ));
612     myNbLinTrai  ->setText( QString("%1").arg( nbLin ));
613     myNbQuadTrai ->setText( QString("%1").arg( nbTot - nbLin ));
614     // quadrangles
615     nbTot = mesh->NbQuadrangles(), nbLin = mesh->NbQuadranglesOfOrder(lin);
616     myNbQuad     ->setText( QString("%1").arg( nbTot ));
617     myNbLinQuad  ->setText( QString("%1").arg( nbLin ));
618     myNbQuadQuad ->setText( QString("%1").arg( nbTot - nbLin ));
619     // poligones
620     myNbPolyg    ->setText( QString("%1").arg( mesh->NbPolygons() ));
621
622     // tetras
623     nbTot = mesh->NbTetras(), nbLin = mesh->NbTetrasOfOrder(lin);
624     myNbTetra    ->setText( QString("%1").arg( nbTot ));
625     myNbLinTetra ->setText( QString("%1").arg( nbLin ));
626     myNbQuadTetra->setText( QString("%1").arg( nbTot - nbLin ));
627     // hexas
628     nbTot = mesh->NbHexas(), nbLin = mesh->NbHexasOfOrder(lin);
629     myNbHexa     ->setText( QString("%1").arg( nbTot ));
630     myNbLinHexa  ->setText( QString("%1").arg( nbLin ));
631     myNbQuadHexa ->setText( QString("%1").arg( nbTot - nbLin ));
632     // pyras
633     nbTot = mesh->NbPyramids(), nbLin = mesh->NbPyramidsOfOrder(lin);
634     myNbPyra     ->setText( QString("%1").arg( nbTot ));
635     myNbLinPyra  ->setText( QString("%1").arg( nbLin ));
636     myNbQuadPyra ->setText( QString("%1").arg( nbTot - nbLin ));
637     // prisms
638     nbTot = mesh->NbPrisms(), nbLin = mesh->NbPrismsOfOrder(lin);
639     myNbPrism    ->setText( QString("%1").arg( nbTot ));
640     myNbLinPrism ->setText( QString("%1").arg( nbLin ));
641     myNbQuadPrism->setText( QString("%1").arg( nbTot - nbLin ));
642     // polyedres
643     myNbPolyh    ->setText( QString("%1").arg( mesh->NbPolyhedrons() ));
644   }
645 }
646
647 // =========================================================================================
648 /*!
649  * \brief Dialog to compute a mesh and show computation errors
650  */
651 //=======================================================================
652
653 SMESHGUI_ComputeDlg::SMESHGUI_ComputeDlg(): SMESHGUI_Dialog( 0, false, true, OK/* | Help*/ )
654 {
655   QVBoxLayout* aDlgLay = new QVBoxLayout (mainFrame(), 0, SPACING);
656
657   QFrame* aMainFrame = createMainFrame  (mainFrame());
658
659   aDlgLay->addWidget(aMainFrame);
660
661   aDlgLay->setStretchFactor(aMainFrame, 1);
662 }
663
664 //=======================================================================
665 // function : createMainFrame()
666 // purpose  : Create frame containing dialog's fields
667 //=======================================================================
668
669 #define CASE2HEADER(enum) case enum: header = QObject::tr( #enum "_HEADER" ); break;
670
671 QFrame* SMESHGUI_ComputeDlg::createMainFrame (QWidget* theParent)
672 {
673   QFrame* aFrame = new QFrame(theParent);
674
675   SUIT_ResourceMgr* rm = resourceMgr();
676   QPixmap iconCompute (rm->loadPixmap("SMESH", tr("ICON_COMPUTE")));
677
678   // constructor
679
680   QButtonGroup* aPixGrp = new QButtonGroup(1, Qt::Vertical, tr("CONSTRUCTOR"), aFrame);
681   aPixGrp->setExclusive(TRUE);
682   QRadioButton* aRBut = new QRadioButton(aPixGrp);
683   aRBut->setPixmap(iconCompute);
684   aRBut->setChecked(TRUE);
685
686   // Mesh name
687
688   QHGroupBox* nameBox = new QHGroupBox(tr("SMESH_MESHINFO_NAME"), aFrame );
689   myMeshName = new QLabel(nameBox);
690
691   // Mesh Info
692
693   myBriefInfo = new SMESHGUI_MeshInfosBox(false, aFrame);
694   myFullInfo  = new SMESHGUI_MeshInfosBox(true,  aFrame);
695
696   // errors
697
698   myErrorGroup = new QGroupBox(tr("ERRORS"), aFrame, "errorGrBox");
699   myTable      = new QTable( 1, NB_COLUMNS, myErrorGroup, "myTable");
700   myShowBtn    = new QPushButton(tr("SHOW_SHAPE"), myErrorGroup, "myShowBtn");
701   myPublishBtn = new QPushButton(tr("PUBLISH_SHAPE"), myErrorGroup, "myPublishBtn");
702
703   myTable->setReadOnly( TRUE );
704   myTable->hideColumn( COL_PUBLISHED );
705   myTable->hideColumn( COL_SHAPEID );
706   myTable->setColumnStretchable( COL_ERROR, 1 );
707   for ( int col = 0; col < NB_COLUMNS; ++col ) {
708     QString header;
709     switch ( col ) {
710     CASE2HEADER( COL_ALGO     );
711     CASE2HEADER( COL_SHAPE    );
712     CASE2HEADER( COL_ERROR    );
713     CASE2HEADER( COL_SHAPEID  );
714     CASE2HEADER( COL_PUBLISHED);
715     }
716     myTable->horizontalHeader()->setLabel( col, header );
717   }
718
719   myErrorGroup->setColumnLayout(0, Qt::Vertical);
720   myErrorGroup->layout()->setSpacing(0);
721   myErrorGroup->layout()->setMargin(0);
722   QGridLayout* grpLayout = new QGridLayout(myErrorGroup->layout());
723   grpLayout->setAlignment(Qt::AlignTop);
724   grpLayout->setSpacing(SPACING);
725   grpLayout->setMargin(MARGIN);
726   grpLayout->addMultiCellWidget( myTable,   0, 2, 0, 0 );
727   grpLayout->addWidget         ( myShowBtn,    0, 1 );
728   grpLayout->addWidget         ( myPublishBtn, 1, 1 );
729   grpLayout->setRowStretch( 2, 1 );
730
731   // Memory Lack Label
732
733   myMemoryLackGroup = new QVGroupBox(tr("ERRORS"), aFrame, "memlackGrBox");
734   QLabel* memLackLabel = new QLabel(tr("MEMORY_LACK"), myMemoryLackGroup);
735   QFont bold = memLackLabel->font(); bold.setBold(true);
736   memLackLabel->setFont( bold );
737   memLackLabel->setMinimumWidth(300);
738
739   // add all widgets to aFrame
740   QVBoxLayout* aLay = new QVBoxLayout(aFrame);
741   aLay->addWidget( aPixGrp );
742   aLay->addWidget( nameBox );
743   aLay->addWidget( myBriefInfo );
744   aLay->addWidget( myFullInfo );
745   aLay->addWidget( myErrorGroup );
746   aLay->addWidget( myMemoryLackGroup );
747   aLay->setStretchFactor( myErrorGroup, 1 );
748
749   return aFrame;
750 }
751
752 //================================================================================
753 /*!
754  * \brief Constructor
755 */
756 //================================================================================
757
758 SMESHGUI_ComputeOp::SMESHGUI_ComputeOp()
759 {
760   myDlg = new SMESHGUI_ComputeDlg;
761   myTShapeDisplayer = new TShapeDisplayer();
762   myHelpFileName = "about_meshes_page.html";
763
764   // connect signals and slots
765   connect(myDlg->myShowBtn,    SIGNAL (clicked()), SLOT(onPreviewShape()));
766   connect(myDlg->myPublishBtn, SIGNAL (clicked()), SLOT(onPublishShape()));
767   connect(table(),SIGNAL(selectionChanged()), SLOT(currentCellChanged()));
768   connect(table(),SIGNAL(currentChanged(int,int)), SLOT(currentCellChanged()));
769 }
770
771 //=======================================================================
772 // function : startOperation()
773 // purpose  : Init dialog fields, connect signals and slots, show dialog
774 //=======================================================================
775
776 void SMESHGUI_ComputeOp::startOperation()
777 {
778   SMESHGUI_Operation::startOperation();
779
780   SMESH::SMESH_Mesh_var          aMesh;
781   SMESH::compute_error_array_var anErrors;
782
783   myMainShape = GEOM::GEOM_Object::_nil();
784
785   // COMPUTE MESH
786
787   bool computeFailed = true, memoryLack = false;
788
789   LightApp_SelectionMgr *Sel = selectionMgr();
790   SALOME_ListIO selected; Sel->selectedObjects( selected );
791
792   int nbSel = selected.Extent();
793   if (nbSel != 1) {
794     SUIT_MessageBox::warn1(desktop(),
795                            tr("SMESH_WRN_WARNING"),
796                            tr("SMESH_WRN_NO_AVAILABLE_DATA"),
797                            tr("SMESH_BUT_OK"));
798     onCancel();
799     return;
800   }
801
802   Handle(SALOME_InteractiveObject) IObject = selected.First();
803   aMesh = SMESH::GetMeshByIO(IObject);
804   if (!aMesh->_is_nil())
805   {
806     MemoryReserve aMemoryReserve;
807     _PTR(SObject) aMeshSObj = SMESH::FindSObject(aMesh);
808     myMainShape = aMesh->GetShapeToMesh();
809     if ( ((!myMainShape->_is_nil() && aMesh->HasShapeToMesh()) ||
810           (myMainShape->_is_nil() && !aMesh->HasShapeToMesh()))
811          && aMeshSObj )
812     {
813       myDlg->myMeshName->setText( aMeshSObj->GetName() );
814       SMESH::SMESH_Gen_var gen = getSMESHGUI()->GetSMESHGen();
815       SMESH::algo_error_array_var errors = gen->GetAlgoState(aMesh,myMainShape);
816       if ( errors->length() > 0 ) {
817         SUIT_MessageBox::warn1(desktop(), tr("SMESH_WRN_WARNING"),
818                                SMESH::GetMessageOnAlgoStateErrors( errors.in() ),
819                                tr("SMESH_BUT_OK"));
820         onCancel();
821         return;
822       }
823       SUIT_OverrideCursor aWaitCursor;
824       try {
825 #if (OCC_VERSION_MAJOR << 16 | OCC_VERSION_MINOR << 8 | OCC_VERSION_MAINTENANCE) > 0x060100
826           OCC_CATCH_SIGNALS;
827 #endif
828         if (gen->Compute(aMesh, myMainShape))
829           computeFailed = false;
830       }
831       catch(const SALOME::SALOME_Exception & S_ex){
832         memoryLack = true;
833         //SalomeApp_Tools::QtCatchCorbaException(S_ex);
834       }
835       try {
836 #if (OCC_VERSION_MAJOR << 16 | OCC_VERSION_MINOR << 8 | OCC_VERSION_MAINTENANCE) > 0x060100
837           OCC_CATCH_SIGNALS;
838 #endif
839         anErrors = gen->GetComputeErrors( aMesh, myMainShape );
840         //           if ( anErrors->length() == 0 ) {
841         //             SUIT_MessageBox::warn1(desktop(),
842         //                                    tr("SMESH_WRN_WARNING"),
843         //                                    tr("SMESH_WRN_COMPUTE_FAILED"),
844         //                                    tr("SMESH_BUT_OK"));
845         //             onCancel();
846         //             return;
847         //           }
848         // check if there are memory problems
849         for ( int i = 0; (i < anErrors->length()) && !memoryLack; ++i )
850           memoryLack = ( anErrors[ i ].code == SMESH::COMPERR_MEMORY_PB );
851       }
852       catch(const SALOME::SALOME_Exception & S_ex){
853         memoryLack = true;
854       }
855
856       // NPAL16631: if ( !memoryLack )
857       {
858         SMESH::ModifiedMesh(aMeshSObj, !computeFailed, aMesh->NbNodes() == 0);
859         update( UF_ObjBrowser | UF_Model );
860
861         // SHOW MESH
862         // NPAL16631: if ( getSMESHGUI()->automaticUpdate() )
863         if ( !memoryLack && getSMESHGUI()->automaticUpdate() )
864         {
865           try {
866 #if (OCC_VERSION_MAJOR << 16 | OCC_VERSION_MINOR << 8 | OCC_VERSION_MAINTENANCE) > 0x060100
867             OCC_CATCH_SIGNALS;
868 #endif
869             SMESH::Update(IObject, true);
870           }
871           catch (...) {
872 #ifdef _DEBUG_
873             cout << "Exception thrown during mesh visualization" << endl;
874 #endif
875             if ( SMDS_Mesh::CheckMemory(true) ) { // has memory to show warning?
876               SMESH::OnVisuException();
877             }
878             else {
879               memoryLack = true;
880             }
881           }
882         }
883         Sel->setSelectedObjects( selected );
884       }
885     }
886   }
887   else {
888     SUIT_MessageBox::warn1(desktop(),
889                            tr("SMESH_WRN_WARNING"),
890                            tr("SMESH_WRN_NO_AVAILABLE_DATA"),
891                            tr("SMESH_BUT_OK"));
892     onCancel();
893     return;
894   }
895   myDlg->setCaption(tr( computeFailed ? "SMESH_WRN_COMPUTE_FAILED" : "SMESH_COMPUTE_SUCCEED"));
896   myDlg->myMemoryLackGroup->hide();
897
898   // SHOW ERRORS
899
900   bool noError = ( !anErrors.operator->() || anErrors->length() == 0 );
901
902   if ( memoryLack )
903   {
904     myDlg->myMemoryLackGroup->show();
905     myDlg->myFullInfo->hide();
906     myDlg->myBriefInfo->hide();
907     myDlg->myErrorGroup->hide();
908   }
909   else if ( noError )
910   {
911     SUIT_OverrideCursor aWaitCursor;
912     myDlg->myFullInfo->SetInfoByMesh( aMesh );
913     myDlg->myFullInfo->show();
914     myDlg->myBriefInfo->hide();
915     myDlg->myErrorGroup->hide();
916   }
917   else
918   {
919     QTable* tbl = myDlg->myTable;
920     myDlg->myBriefInfo->SetInfoByMesh( aMesh );
921     myDlg->myBriefInfo->show();
922     myDlg->myFullInfo->hide();
923     myDlg->myErrorGroup->show();
924     
925     bool hasShape = aMesh->HasShapeToMesh();
926     if ( !hasShape )
927     {
928       myDlg->myPublishBtn->hide();
929       myDlg->myShowBtn->hide();
930     }
931     else
932     {
933       myDlg->myPublishBtn->show();
934       myDlg->myShowBtn->show();
935     }
936     // fill table of errors
937     tbl->setNumRows( anErrors->length() );
938     if ( !hasShape ) tbl->hideColumn( COL_SHAPE );
939     else             tbl->showColumn( COL_SHAPE );
940     tbl->setColumnWidth( COL_ERROR, 200 );
941
942     for ( int row = 0; row < anErrors->length(); ++row )
943     {
944       SMESH::ComputeError & err = anErrors[ row ];
945       tbl->setText( row, COL_ALGO,    err.algoName.in() );
946       tbl->setText( row, COL_ERROR,   errorText( err.code, err.comment.in() ));
947       tbl->setText( row, COL_SHAPEID, QString("%1").arg( err.subShapeID ));
948
949       QString text = hasShape ? shapeText( err.subShapeID, myMainShape ) : QString("");
950       tbl->setText( row, COL_SHAPE,   text );
951
952       text = ( !hasShape || getSubShapeSO( err.subShapeID, myMainShape )) ? "PUBLISHED" : "";
953       tbl->setText( row, COL_PUBLISHED, text ); // if text=="", "PUBLISH" button enabled
954
955       tbl->item( row, COL_ERROR )->setWordWrap( TRUE );
956       tbl->adjustRow( row );
957     }
958     tbl->adjustColumn( COL_ALGO );
959     tbl->adjustColumn( COL_SHAPE );
960
961     tbl->setCurrentCell(0,0);
962     currentCellChanged(); // to update buttons
963   }
964   myDlg->show();
965 }
966
967 //================================================================================
968 /*!
969  * \brief Stops operation
970  */
971 //================================================================================
972
973 void SMESHGUI_ComputeOp::stopOperation()
974 {
975   SMESHGUI_Operation::stopOperation();
976   myTShapeDisplayer->SetVisibility( false );
977 }
978
979 //================================================================================
980 /*!
981  * \brief publish selected subshape
982  */
983 //================================================================================
984
985 void SMESHGUI_ComputeOp::onPublishShape()
986 {
987   GEOM::GEOM_Gen_var geomGen = SMESH::GetGEOMGen();
988   SALOMEDS::Study_var study = SMESHGUI::GetSMESHGen()->GetCurrentStudy();
989
990   list< int > rows;
991   list< int >::iterator row;
992   getSelectedRows( table(), rows );
993   for ( row = rows.begin(); row != rows.end(); ++row )
994   {
995     int curSub = table()->text(*row, COL_SHAPEID).toInt();
996     GEOM::GEOM_Object_var shape = getSubShape( curSub, myMainShape );
997     if ( !shape->_is_nil() && ! getSubShapeSO( curSub, myMainShape ))
998     {
999       if ( !getSubShapeSO( 1, myMainShape )) // the main shape not published
1000       {
1001         QString name = GEOMBase::GetDefaultName( shapeTypeName( myMainShape, "MAIN_SHAPE" ));
1002         SALOMEDS::SObject_var so =
1003           geomGen->AddInStudy( study, myMainShape, name, GEOM::GEOM_Object::_nil());
1004         // look for myMainShape in the table
1005         for ( int r = 0, nr = table()->numRows(); r < nr; ++r ) {
1006           if ( table()->text(r, COL_SHAPEID) == "1" ) {
1007             if ( so->_is_nil() ) {
1008               table()->setText( r, COL_SHAPE, so->GetName() );
1009               table()->setText( r, COL_PUBLISHED, so->GetID() );
1010             }
1011             break;
1012           }
1013         }
1014         if ( curSub == 1 ) continue;
1015       }
1016       QString name = GEOMBase::GetDefaultName( shapeTypeName( shape, "ERROR_SHAPE" ));
1017       SALOMEDS::SObject_var so = geomGen->AddInStudy( study, shape, name, myMainShape);
1018       if ( !so->_is_nil() ) {
1019         table()->setText( *row, COL_SHAPE, so->GetName() );
1020         table()->setText( *row, COL_PUBLISHED, so->GetID() );
1021       }
1022     }
1023   }
1024   getSMESHGUI()->getApp()->updateObjectBrowser();
1025   currentCellChanged(); // to update buttons
1026 }
1027
1028 //================================================================================
1029 /*!
1030  * \brief SLOT called when a selected cell in table() changed
1031  */
1032 //================================================================================
1033
1034 void SMESHGUI_ComputeOp::currentCellChanged()
1035 {
1036   myTShapeDisplayer->SetVisibility( false );
1037
1038   bool publishEnable = 0, showEnable = 0, showOnly = 1;
1039   list< int > rows;
1040   list< int >::iterator row;
1041   getSelectedRows( table(), rows );
1042   for ( row = rows.begin(); row != rows.end(); ++row )
1043   {
1044     bool hasData     = ( !table()->text(*row, COL_SHAPE).isEmpty() );
1045     bool isPublished = ( !table()->text(*row, COL_PUBLISHED).isEmpty() );
1046     if ( hasData && !isPublished )
1047       publishEnable = true;
1048
1049     int curSub = table()->text(*row, COL_SHAPEID).toInt();
1050     bool prsReady = myTShapeDisplayer->HasReadyActorsFor( curSub, myMainShape );
1051     if ( prsReady ) {
1052       myTShapeDisplayer->Show( curSub, myMainShape, showOnly );
1053       showOnly = false;
1054     }
1055     else {
1056       showEnable = true;
1057     }
1058   }
1059   myDlg->myPublishBtn->setEnabled( publishEnable );
1060   myDlg->myShowBtn->setEnabled( showEnable );
1061 }
1062
1063 //================================================================================
1064 /*!
1065  * \brief update preview
1066  */
1067 //================================================================================
1068
1069 void SMESHGUI_ComputeOp::onPreviewShape()
1070 {
1071   if ( myTShapeDisplayer )
1072   {
1073     SUIT_OverrideCursor aWaitCursor;
1074     list< int > rows;
1075     list< int >::iterator row;
1076     getSelectedRows( table(), rows );
1077
1078     bool showOnly = true;
1079     for ( row = rows.begin(); row != rows.end(); ++row )
1080     {
1081       int curSub = table()->text(*row, COL_SHAPEID).toInt();
1082       if ( curSub > 0 ) {
1083         myTShapeDisplayer->Show( curSub, myMainShape, showOnly );
1084         showOnly = false;
1085       }
1086     }
1087     currentCellChanged(); // to update buttons
1088   }
1089 }
1090
1091 //================================================================================
1092 /*!
1093  * \brief Destructor
1094  */
1095 //================================================================================
1096
1097 SMESHGUI_ComputeOp::~SMESHGUI_ComputeOp()
1098 {
1099   if ( myTShapeDisplayer ) delete myTShapeDisplayer;
1100 }
1101
1102 //================================================================================
1103 /*!
1104  * \brief Gets dialog of this operation
1105  * \retval LightApp_Dialog* - pointer to dialog of this operation
1106  */
1107 //================================================================================
1108
1109 LightApp_Dialog* SMESHGUI_ComputeOp::dlg() const
1110 {
1111   return myDlg;
1112 }
1113
1114 //================================================================================
1115 /*!
1116  * \brief perform it's intention action: compute mesh
1117  */
1118 //================================================================================
1119
1120 bool SMESHGUI_ComputeOp::onApply()
1121 {
1122   return true;
1123 }
1124
1125 //================================================================================
1126 /*!
1127  * \brief Return a table
1128  */
1129 //================================================================================
1130
1131 QTable* SMESHGUI_ComputeOp::table()
1132 {
1133   return myDlg->myTable;
1134 }