Salome HOME
Update copyrights 2014.
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_ComputeDlg.cxx
1 // Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // File   : SMESHGUI_ComputeDlg.cxx
21 // Author : Edward AGAPOV, Open CASCADE S.A.S.
22 // SMESH includes
23 //
24 #include "SMESHGUI_ComputeDlg.h"
25
26 #include "SMESHGUI.h"
27 #include "SMESHGUI_GEOMGenUtils.h"
28 #include "SMESHGUI_MeshUtils.h"
29 #include "SMESHGUI_VTKUtils.h"
30 #include "SMESHGUI_MeshInfosBox.h"
31 #include "SMESHGUI_HypothesesUtils.h"
32 #include "SMESHGUI_MeshEditPreview.h"
33 #include "SMESHGUI_MeshOrderOp.h"
34 #include "SMESHGUI_MeshOrderDlg.h"
35
36 #include "SMESH_Actor.h"
37 #include "SMESH_ActorUtils.h"
38
39 #include <SMDS_SetIterator.hxx>
40 #include <SMDS_Mesh.hxx>
41
42 // SALOME GEOM includes
43 #include <GEOMBase.h>
44 #include <GEOM_Actor.h>
45 #include <GEOM_wrap.hxx>
46
47 // SALOME GUI includes
48 #include <LightApp_SelectionMgr.h>
49 #include <LightApp_UpdateFlags.h>
50 #include <SALOME_ListIO.hxx>
51 #include <SVTK_ViewWindow.h>
52 #include <SVTK_ViewModel.h>
53 #include <SalomeApp_Application.h>
54 #include <SUIT_ResourceMgr.h>
55 #include <SUIT_OverrideCursor.h>
56 #include <SUIT_MessageBox.h>
57 #include <SUIT_Desktop.h>
58 #include <QtxComboBox.h>
59
60 // SALOME KERNEL includes
61 #include <SALOMEDS_SObject.hxx>
62 #include <SALOMEDSClient_SObject.hxx>
63 #include <SALOMEDS_wrap.hxx>
64
65 #include CORBA_SERVER_HEADER(SMESH_Group)
66
67 // OCCT includes
68 #include <BRep_Tool.hxx>
69 #include <TopExp.hxx>
70 #include <TopExp_Explorer.hxx>
71 #include <TopTools_IndexedMapOfShape.hxx>
72 #include <TopoDS.hxx>
73
74 #include <TopLoc_Location.hxx>
75 #include <Poly_Triangulation.hxx>
76 #include <Bnd_Box.hxx>
77 #include <BRepBndLib.hxx>
78 #include <BRepMesh_IncrementalMesh.hxx>
79
80 #include <Standard_ErrorHandler.hxx>
81
82 // Qt includes
83 #include <QFrame>
84 #include <QPushButton>
85 #include <QLabel>
86 #include <QRadioButton>
87 #include <QTableWidget>
88 #include <QHeaderView>
89 #include <QGridLayout>
90 #include <QHBoxLayout>
91 #include <QVBoxLayout>
92 #include <QButtonGroup>
93 #include <QCloseEvent>
94 #include <QTimerEvent>
95 #include <QProgressBar>
96
97 // VTK includes
98 #include <vtkProperty.h>
99
100 // STL includes
101 #include <vector>
102 #include <set>
103
104 #ifndef WIN32
105 #include <sys/sysinfo.h>
106 #endif
107
108 #define SPACING 6
109 #define MARGIN  11
110
111 #define COLONIZE(str)   (QString(str).contains(":") > 0 ? QString(str) : QString(str) + " :" )
112
113 enum TCol {
114   COL_ALGO = 0, COL_SHAPE, COL_ERROR, COL_SHAPEID, COL_PUBLISHED, COL_BAD_MESH, NB_COLUMNS
115 };
116
117 //using namespace SMESH;
118
119 namespace SMESH
120 {
121   //=============================================================================
122   /*!
123    * \brief Allocate some memory at construction and release it at destruction.
124    * Is used to be able to continue working after mesh generation or visualization
125    * break due to lack of memory
126    */
127   //=============================================================================
128
129   struct MemoryReserve
130   {
131     char* myBuf;
132     MemoryReserve(): myBuf( new char[1024*1024*1] ){} // 1M
133     void release() { delete [] myBuf; myBuf = 0; }
134     ~MemoryReserve() { release(); }
135   };
136
137   // =========================================================================================
138   /*!
139    * \brief Class showing shapes without publishing
140    */
141   // =========================================================================================
142
143   class TShapeDisplayer
144   {
145   public:
146     // -----------------------------------------------------------------------
147     TShapeDisplayer(): myViewWindow(0)
148     {
149       myProperty = vtkProperty::New();
150       myProperty->SetRepresentationToWireframe();
151       myProperty->SetColor( 250, 0, 250 );
152       myProperty->SetAmbientColor( 250, 0, 250 );
153       myProperty->SetDiffuseColor( 250, 0, 250 );
154       //myProperty->SetSpecularColor( 250, 0, 250 );
155       myProperty->SetLineWidth( 5 );
156     }
157     // -----------------------------------------------------------------------
158     ~TShapeDisplayer()
159     {
160       DeleteActors();
161       myProperty->Delete();
162     }
163     // -----------------------------------------------------------------------
164     void DeleteActors()
165     {
166       if ( hasViewWindow() ) {
167         TActorIterator actorIt = actorIterator();
168         while ( actorIt.more() )
169           if (VTKViewer_Actor* anActor = actorIt.next()) {
170             myViewWindow->RemoveActor( anActor );
171             //anActor->Delete();
172           }
173       }
174       myIndexToShape.Clear();
175       myActors.clear();
176       myShownActors.clear();
177       myBuiltSubs.clear();
178     }
179     // -----------------------------------------------------------------------
180     void SetVisibility (bool theVisibility)
181     {
182       TActorIterator actorIt = shownIterator();
183       while ( actorIt.more() )
184         if (VTKViewer_Actor* anActor = actorIt.next())
185           anActor->SetVisibility(theVisibility);
186       SMESH::RepaintCurrentView();
187     }
188     // -----------------------------------------------------------------------
189     bool HasReadyActorsFor (int subShapeID, GEOM::GEOM_Object_var aMainShape )
190     {
191       std::string mainEntry;
192       if ( !aMainShape->_is_nil() )
193         mainEntry = aMainShape->GetStudyEntry();
194       return ( myMainEntry == mainEntry &&
195                myBuiltSubs.find( subShapeID ) != myBuiltSubs.end() );
196     }
197     // -----------------------------------------------------------------------
198     void Show( int subShapeID, GEOM::GEOM_Object_var aMainShape, bool only = false)
199     {
200       SVTK_ViewWindow* aViewWindow  = SMESH::GetViewWindow( SMESHGUI::GetSMESHGUI() );
201       SUIT_ResourceMgr* resMgr = SMESH::GetResourceMgr( SMESHGUI::GetSMESHGUI() );
202       std::string mainEntry;
203       if ( !aMainShape->_is_nil() )
204         mainEntry = aMainShape->GetStudyEntry();
205       if ( myMainEntry != mainEntry || aViewWindow != myViewWindow ) { // remove actors
206         DeleteActors();
207         TopoDS_Shape aShape;
208         if ( !aMainShape->_is_nil() && GEOMBase::GetShape(aMainShape, aShape)) {
209           checkTriangulation( aShape );
210           TopExp::MapShapes(aShape, myIndexToShape);
211           myActors.resize( myIndexToShape.Extent(), 0 );
212           myShownActors.reserve( myIndexToShape.Extent() );
213         }
214         myMainEntry  = mainEntry;
215         myViewWindow = aViewWindow;
216       }
217       if ( only ) { // hide shown actors
218         TActorIterator actorIt = shownIterator();
219         while ( actorIt.more() )
220           if (VTKViewer_Actor* anActor = actorIt.next())
221             anActor->SetVisibility(false);
222         myShownActors.clear();
223       }
224       // find actors to show
225       TopoDS_Shape aShape = myIndexToShape( subShapeID );
226       if ( !aShape.IsNull() ) {
227         TopAbs_ShapeEnum type( aShape.ShapeType() >= TopAbs_WIRE ? TopAbs_EDGE : TopAbs_FACE );
228         for ( TopExp_Explorer exp( aShape, type ); exp.More(); exp.Next() ) {
229           //checkTriangulation( exp.Current() );
230           if ( GEOM_Actor* anActor = getActor( exp.Current() ) ) {
231             int UNbIsos = resMgr->integerValue( "Geometry", "iso_number_u", 1);
232             int VNbIsos = resMgr->integerValue( "Geometry", "iso_number_v", 1);
233             int aNbIsos[2] = { UNbIsos ? UNbIsos : 1, VNbIsos ? VNbIsos : 1 };
234             anActor->SetNbIsos( aNbIsos );
235             myShownActors.push_back( anActor );
236           }
237         }
238         if ( type == TopAbs_FACE ) {
239           for ( TopExp_Explorer exp( aShape, TopAbs_EDGE ); exp.More(); exp.Next() ) {
240             const TopoDS_Edge & edge = TopoDS::Edge( exp.Current() );
241             if ( !BRep_Tool::Degenerated( edge ))
242               if ( GEOM_Actor* anActor = getActor( exp.Current() ))
243                 myShownActors.push_back( anActor );
244           }
245         }
246       }
247       myBuiltSubs.insert( subShapeID );
248       SetVisibility(true);
249     }
250     // -----------------------------------------------------------------------
251
252   private:
253
254     typedef std::vector<GEOM_Actor*> TActorVec;
255     TActorVec                  myActors;
256     TActorVec                  myShownActors;
257     TopTools_IndexedMapOfShape myIndexToShape;
258     std::string                myMainEntry;
259     SVTK_ViewWindow*           myViewWindow;
260     vtkProperty*               myProperty;
261     std::set<int>              myBuiltSubs;
262
263     // -----------------------------------------------------------------------
264     typedef SMDS_SetIterator< GEOM_Actor*, TActorVec::const_iterator> TActorIterator;
265     TActorIterator actorIterator() {
266       return TActorIterator( myActors.begin(), myActors.end() );
267     }
268     TActorIterator shownIterator() {
269       return TActorIterator( myShownActors.begin(), myShownActors.end() );
270     }
271     // -----------------------------------------------------------------------
272     GEOM_Actor* getActor(const TopoDS_Shape& shape)
273     {
274       int index = myIndexToShape.FindIndex( shape ) - 1;
275       if ( index < 0 || index >= myActors.size() )
276         return 0;
277       GEOM_Actor* & actor = myActors[ index ];
278       if ( !actor ) {
279         actor = GEOM_Actor::New();
280         if ( actor ) {
281           actor->SetShape(shape,0,0);
282           actor->SetProperty(myProperty);
283           actor->SetShadingProperty(myProperty);
284           actor->SetWireframeProperty(myProperty);
285           actor->SetPreviewProperty(myProperty);
286           actor->PickableOff();
287           //         if ( shape.ShapeType() == TopAbs_EDGE )
288           //           actor->SubShapeOn();
289           myViewWindow->AddActor( actor );
290         }
291       }
292       return actor;
293     }
294     // -----------------------------------------------------------------------
295     void checkTriangulation(const TopoDS_Shape& shape)
296     {
297       TopLoc_Location aLoc;
298       Standard_Boolean alreadymesh = Standard_True;
299       TopExp_Explorer ex(shape, TopAbs_FACE);
300       if ( ex.More() )
301         for ( ; ex.More(); ex.Next()) {
302           const TopoDS_Face& aFace = TopoDS::Face(ex.Current());
303           Handle(Poly_Triangulation) aPoly = BRep_Tool::Triangulation(aFace,aLoc);
304           if(aPoly.IsNull()) { alreadymesh = Standard_False; break; }
305         }
306       else
307         for (ex.Init(shape, TopAbs_EDGE); ex.More(); ex.Next()) {
308           const TopoDS_Edge& edge = TopoDS::Edge(ex.Current());
309           Handle(Poly_Polygon3D) aPoly = BRep_Tool::Polygon3D(edge, aLoc);
310           if(aPoly.IsNull()) { alreadymesh = Standard_False; break; }
311         }
312       if (alreadymesh) return;
313       // Compute default deflection
314       Bnd_Box B;
315       BRepBndLib::Add(shape, B);
316       Standard_Real aXmin, aYmin, aZmin, aXmax, aYmax, aZmax;
317       B.Get(aXmin, aYmin, aZmin, aXmax, aYmax, aZmax);
318       double deflection = Max( aXmax-aXmin, Max ( aYmax-aYmin, aZmax-aZmin)) * 0.01 *4;
319       BRepMesh_IncrementalMesh MESH(shape,deflection);
320     }
321     // -----------------------------------------------------------------------
322     bool hasViewWindow() const
323     {
324       if ( !myViewWindow ) return false;
325
326       if ( SalomeApp_Application* anApp = SMESHGUI::GetSMESHGUI()->getApp() )
327         return FindVtkViewWindow( anApp->getViewManager(SVTK_Viewer::Type(), false ),
328                                   myViewWindow );
329       return false;
330     }
331   };
332
333   // =========================================================================================
334   /*!
335    * \brief Return text describing an error
336    */
337 #define CASE2TEXT(enum) case SMESH::enum: text = QObject::tr( #enum ); break;
338   QString errorText(int errCode, const char* comment)
339   {
340     QString text;
341     switch ( errCode ) {
342       CASE2TEXT( COMPERR_OK               );
343       CASE2TEXT( COMPERR_BAD_INPUT_MESH   );
344       CASE2TEXT( COMPERR_STD_EXCEPTION    );
345       CASE2TEXT( COMPERR_OCC_EXCEPTION    );
346     case SMESH::COMPERR_SLM_EXCEPTION: break; // avoid double "Salome exception"
347       CASE2TEXT( COMPERR_EXCEPTION        );
348       CASE2TEXT( COMPERR_MEMORY_PB        );
349       CASE2TEXT( COMPERR_BAD_SHAPE        );
350       CASE2TEXT( COMPERR_CANCELED         );
351       CASE2TEXT( COMPERR_NO_MESH_ON_SHAPE );
352       CASE2TEXT( COMPERR_BAD_PARMETERS    );
353     case SMESH::COMPERR_ALGO_FAILED:
354       if ( strlen(comment) == 0 )
355         text = QObject::tr("COMPERR_ALGO_FAILED");
356       break;
357     case SMESH::COMPERR_WARNING:
358       text = QObject::tr( (comment && strlen(comment)) ? "COMPERR_WARNING" : "COMPERR_UNKNOWN");
359       break;
360     default:
361       text = QString("#%1").arg( -errCode );
362     }
363     if ( text.length() > 0 ) text += ". ";
364     return text + comment;
365   }
366   // -----------------------------------------------------------------------
367   /*!
368    * \brief Return SO of a sub-shape
369    */
370   _PTR(SObject) getSubShapeSO( int subShapeID, GEOM::GEOM_Object_var aMainShape)
371   {
372     _PTR(SObject) so = SMESH::FindSObject(aMainShape);
373     if ( subShapeID == 1 || !so )
374       return so;
375     _PTR(ChildIterator) it;
376     if (_PTR(Study) study = SMESH::GetActiveStudyDocument())
377       it =  study->NewChildIterator(so);
378     _PTR(SObject) subSO;
379     if ( it ) {
380       for ( it->InitEx(true); !subSO && it->More(); it->Next() ) {
381         GEOM::GEOM_Object_var geom = SMESH::SObjectToInterface<GEOM::GEOM_Object>( it->Value() );
382         if ( !geom->_is_nil() ) {
383           GEOM::ListOfLong_var list = geom->GetSubShapeIndices();
384           if ( list->length() == 1 && list[0] == subShapeID )
385           {
386             GEOM::GEOM_Object_var mainGO = geom->GetMainShape();
387             if ( aMainShape->IsSame( mainGO ))
388               subSO = it->Value();
389           }
390         }
391       }
392     }
393     return subSO;
394   }
395   // -----------------------------------------------------------------------
396   /*!
397    * \brief Return sub-shape by ID. WARNING: UnRegister() must be called on a result
398    */
399   GEOM::GEOM_Object_ptr getSubShape( int subShapeID, GEOM::GEOM_Object_var aMainShape)
400   {
401     GEOM::GEOM_Object_var aSubShape;
402     if ( subShapeID == 1 ) {
403       aSubShape = aMainShape;
404       aSubShape->Register();
405     }
406     else if ( _PTR(SObject) so = getSubShapeSO( subShapeID, aMainShape )) {
407       aSubShape = SMESH::SObjectToInterface<GEOM::GEOM_Object>( so );
408       aSubShape->Register();
409     }
410     else {
411       aSubShape = SMESH::GetSubShape( aMainShape, subShapeID );
412       // future call of UnRegister() will delete a servant of this new object
413     }
414     return aSubShape._retn();
415   }
416   // -----------------------------------------------------------------------
417   /*!
418    * \brief Return shape type name
419    */
420 #define CASE2NAME(enum) case GEOM::enum: name = QObject::tr( "GEOM_" #enum ); break;
421   QString shapeTypeName(GEOM::GEOM_Object_var aShape, const char* dflt = "" )
422   {
423     QString name = dflt;
424     if ( !aShape->_is_nil() ) {
425       switch ( aShape->GetShapeType() ) {
426       CASE2NAME( VERTEX    );
427       CASE2NAME( EDGE      );
428       CASE2NAME( WIRE      );
429       CASE2NAME( FACE      );
430       CASE2NAME( SHELL     );
431       CASE2NAME( SOLID     );
432       CASE2NAME( COMPSOLID );
433       CASE2NAME( COMPOUND  );
434       default:;
435       }
436     }
437     return name;
438   }
439   // -----------------------------------------------------------------------
440   /*!
441    * \brief Return text describing a sub-shape
442    */
443   QString shapeText(int subShapeID, GEOM::GEOM_Object_var aMainShape )
444   {
445     QString text;
446     if ( _PTR(SObject) aSO = getSubShapeSO( subShapeID, aMainShape )) {
447       text  = aSO->GetName().c_str();
448       text += QString(" (%1)").arg( aSO->GetID().c_str() );
449     }
450     else {
451       text = QString("#%1").arg( subShapeID );
452       GEOM::GEOM_Object_wrap shape = getSubShape( subShapeID, aMainShape );
453       QString typeName = shapeTypeName( shape );
454       if ( typeName.length() )
455         text += QString(" (%1)").arg(typeName);
456     }
457     return text;
458   }
459   // -----------------------------------------------------------------------
460   /*!
461    * \brief Return a list of selected rows
462    */
463   int getSelectedRows(QTableWidget* table, QList<int>& rows)
464   {
465     rows.clear();
466     QList<QTableWidgetSelectionRange> selRanges = table->selectedRanges();
467     QTableWidgetSelectionRange range;
468     foreach( range, selRanges )
469     {
470       for ( int row = range.topRow(); row <= range.bottomRow(); ++row )
471         if ( !rows.count( row ))
472              rows.append( row );
473     }
474     if ( rows.isEmpty() && table->currentRow() > -1 )
475       if ( !rows.count( table->currentRow() ))
476         rows.append( table->currentRow() );
477
478     return rows.count();
479   }
480
481 } // namespace SMESH
482
483
484 // =========================================================================================
485 /*!
486  * \brief Dialog to compute a mesh and show computation errors
487  */
488 //=======================================================================
489
490 SMESHGUI_ComputeDlg::SMESHGUI_ComputeDlg( QWidget* parent, bool ForEval )
491  : SMESHGUI_Dialog( parent, false, true, Close/* | Help*/ )
492 {
493   QVBoxLayout* aDlgLay = new QVBoxLayout (mainFrame());
494   aDlgLay->setMargin( 0 );
495   aDlgLay->setSpacing( SPACING );
496
497   QFrame* aMainFrame = createMainFrame(mainFrame(),ForEval);
498
499   aDlgLay->addWidget(aMainFrame);
500
501   aDlgLay->setStretchFactor(aMainFrame, 1);
502 }
503
504 // =========================================================================================
505 /*!
506  * \brief Destructor
507  */
508 //=======================================================================
509
510 SMESHGUI_ComputeDlg::~SMESHGUI_ComputeDlg()
511 {
512 }
513
514 //=======================================================================
515 // function : createMainFrame()
516 // purpose  : Create frame containing dialog's fields
517 //=======================================================================
518
519 QFrame* SMESHGUI_ComputeDlg::createMainFrame (QWidget* theParent, bool ForEval)
520 {
521   QFrame* aFrame = new QFrame(theParent);
522
523   SUIT_ResourceMgr* rm = resourceMgr();
524   QPixmap iconCompute (rm->loadPixmap("SMESH", tr("ICON_COMPUTE")));
525
526   // constructor
527
528   QGroupBox* aPixGrp;
529   if(ForEval) {
530     aPixGrp = new QGroupBox(tr("EVAL_DLG"), aFrame);
531   }
532   else {
533     aPixGrp = new QGroupBox(tr("CONSTRUCTOR"), aFrame);
534   }
535   QButtonGroup* aBtnGrp = new QButtonGroup(this);
536   QHBoxLayout* aPixGrpLayout = new QHBoxLayout(aPixGrp);
537   aPixGrpLayout->setMargin(MARGIN); aPixGrpLayout->setSpacing(SPACING);
538
539   QRadioButton* aRBut = new QRadioButton(aPixGrp);
540   aRBut->setIcon(iconCompute);
541   aRBut->setChecked(true);
542   aPixGrpLayout->addWidget(aRBut);
543   aBtnGrp->addButton(aRBut, 0);
544
545   // Mesh name
546
547   QGroupBox* nameBox = new QGroupBox(tr("SMESH_MESHINFO_NAME"), aFrame );
548   QHBoxLayout* nameBoxLayout = new QHBoxLayout(nameBox);
549   nameBoxLayout->setMargin(MARGIN); nameBoxLayout->setSpacing(SPACING);
550   myMeshName = new QLabel(nameBox);
551   nameBoxLayout->addWidget(myMeshName);
552
553   // Mesh Info
554
555   myBriefInfo = new SMESHGUI_MeshInfosBox(false, aFrame);
556   myFullInfo  = new SMESHGUI_MeshInfosBox(true,  aFrame);
557
558   // Computation errors
559
560   myCompErrorGroup = new QGroupBox(tr("ERRORS"), aFrame);
561   myWarningLabel = new QLabel(QString("<b>%1</b>").arg(tr("COMPUTE_WARNING")), myCompErrorGroup);
562   myTable        = new QTableWidget( 1, NB_COLUMNS, myCompErrorGroup);
563   myShowBtn      = new QPushButton(tr("SHOW_SHAPE"), myCompErrorGroup);
564   myPublishBtn   = new QPushButton(tr("PUBLISH_SHAPE"), myCompErrorGroup);
565   myBadMeshBtn   = new QPushButton(tr("SHOW_BAD_MESH"), myCompErrorGroup);
566   myBadMeshToGroupBtn = new QPushButton(tr("GROUP_OF_BAD_MESH"), myCompErrorGroup);
567
568   //myTable->setReadOnly( true ); // VSR: check
569   myTable->setEditTriggers( QAbstractItemView::NoEditTriggers );
570   myTable->hideColumn( COL_PUBLISHED );
571   myTable->hideColumn( COL_SHAPEID );
572   myTable->hideColumn( COL_BAD_MESH );
573   myTable->horizontalHeader()->setResizeMode( COL_ERROR, QHeaderView::Interactive );
574   myTable->setWordWrap( true );
575   myTable->horizontalHeader()->setStretchLastSection( true );
576   myTable->setMinimumWidth( 500 );
577
578   QStringList headers;
579   headers << tr( "COL_ALGO_HEADER" );
580   headers << tr( "COL_SHAPE_HEADER" );
581   headers << tr( "COL_ERROR_HEADER" );
582   headers << tr( "COL_SHAPEID_HEADER" );
583   headers << tr( "COL_PUBLISHED_HEADER" );
584
585   myTable->setHorizontalHeaderLabels( headers );
586
587   // layouting
588   QGridLayout* grpLayout = new QGridLayout(myCompErrorGroup);
589   grpLayout->setSpacing(SPACING);
590   grpLayout->setMargin(MARGIN);
591   grpLayout->addWidget( myWarningLabel,      0, 0, 1, 4 );
592   grpLayout->addWidget( myTable,             1, 0, 1, 4 );
593   grpLayout->addWidget( myShowBtn,           2, 0 );
594   grpLayout->addWidget( myPublishBtn,        2, 1 );
595   grpLayout->addWidget( myBadMeshBtn,        2, 2 );
596   grpLayout->addWidget( myBadMeshToGroupBtn, 2, 3 );
597   grpLayout->setColumnStretch( 3, 1 );
598
599   // Hypothesis definition errors
600
601   myHypErrorGroup = new QGroupBox(tr("SMESH_WRN_MISSING_PARAMETERS"), aFrame);
602   QHBoxLayout* myHypErrorGroupLayout = new QHBoxLayout(myHypErrorGroup);
603   myHypErrorGroupLayout->setMargin(MARGIN);
604   myHypErrorGroupLayout->setSpacing(SPACING);
605   myHypErrorLabel = new QLabel(myHypErrorGroup);
606   myHypErrorGroupLayout->addWidget(myHypErrorLabel);
607
608   // Memory Lack Label
609
610   myMemoryLackGroup = new QGroupBox(tr("ERRORS"), aFrame);
611   QVBoxLayout* myMemoryLackGroupLayout = new QVBoxLayout(myMemoryLackGroup);
612   myMemoryLackGroupLayout->setMargin(MARGIN);
613   myMemoryLackGroupLayout->setSpacing(SPACING);
614   QLabel* memLackLabel = new QLabel(tr("MEMORY_LACK"), myMemoryLackGroup);
615   QFont bold = memLackLabel->font(); bold.setBold(true);
616   memLackLabel->setFont( bold );
617   memLackLabel->setMinimumWidth(300);
618   myMemoryLackGroupLayout->addWidget(memLackLabel);
619
620   // add all widgets to aFrame
621   QVBoxLayout* aLay = new QVBoxLayout(aFrame);
622   aLay->setMargin( 0 );
623   aLay->setSpacing( 0 );
624   aLay->addWidget( aPixGrp );
625   aLay->addWidget( nameBox );
626   aLay->addWidget( myBriefInfo );
627   aLay->addWidget( myFullInfo );
628   aLay->addWidget( myHypErrorGroup );
629   aLay->addWidget( myCompErrorGroup );
630   aLay->addWidget( myMemoryLackGroup );
631   aLay->setStretchFactor( myCompErrorGroup, 1 );
632
633   ((QPushButton*) button( OK ))->setDefault( true );
634
635   return aFrame;
636 }
637
638 //================================================================================
639 /*!
640  * \brief Constructor
641 */
642 //================================================================================
643
644 SMESHGUI_BaseComputeOp::SMESHGUI_BaseComputeOp()
645   : SMESHGUI_Operation(), myCompDlg( 0 )
646 {
647   myTShapeDisplayer = new SMESH::TShapeDisplayer();
648   myBadMeshDisplayer = 0;
649
650   //myHelpFileName = "/files/about_meshes.htm"; // V3
651   myHelpFileName = "about_meshes_page.html"; // V4
652 }
653
654 SMESH::SMESH_Mesh_ptr SMESHGUI_BaseComputeOp::getMesh()
655 {
656   LightApp_SelectionMgr* Sel = selectionMgr();
657   SALOME_ListIO selected; Sel->selectedObjects( selected );
658   Handle(SALOME_InteractiveObject) anIO = selected.First();
659   SMESH::SMESH_Mesh_var aMesh = SMESH::GetMeshByIO(anIO);
660   return myMesh->_is_nil() ? aMesh._retn() : SMESH::SMESH_Mesh::_duplicate( myMesh );
661 }
662
663 //================================================================================
664 /*!
665  * \brief Start operation
666  * \purpose Init dialog fields, connect signals and slots, show dialog
667  */
668 //================================================================================
669
670 void SMESHGUI_BaseComputeOp::startOperation()
671 {
672   // create compute dialog if not created before
673   computeDlg();
674
675   myMesh      = SMESH::SMESH_Mesh::_nil();
676   myMainShape = GEOM::GEOM_Object::_nil();
677
678   // check selection
679   LightApp_SelectionMgr *Sel = selectionMgr();
680   SALOME_ListIO selected; Sel->selectedObjects( selected );
681
682   int nbSel = selected.Extent();
683   if (nbSel != 1) {
684     SUIT_MessageBox::warning(desktop(),
685                              tr("SMESH_WRN_WARNING"),
686                              tr("SMESH_WRN_NO_AVAILABLE_DATA"));
687     onCancel();
688     return;
689   }
690
691   myIObject = selected.First();
692   myMesh = SMESH::GetMeshByIO(myIObject);
693   if (myMesh->_is_nil()) {
694     SUIT_MessageBox::warning(desktop(),
695                              tr("SMESH_WRN_WARNING"),
696                              tr("SMESH_WRN_NO_AVAILABLE_DATA"));
697     onCancel();
698     return;
699   }
700   myMainShape = myMesh->GetShapeToMesh();
701
702   SMESHGUI_Operation::startOperation();
703 }
704
705 //================================================================================
706 //================================================================================
707
708 SMESHGUI_ComputeDlg_QThread::SMESHGUI_ComputeDlg_QThread(SMESH::SMESH_Gen_var gen,
709                                                          SMESH::SMESH_Mesh_var mesh,
710                                                          GEOM::GEOM_Object_var mainShape)
711 {
712   myResult = false;
713   myGen = gen;
714   myMesh = mesh;
715   myMainShape = mainShape;
716 }
717
718 void SMESHGUI_ComputeDlg_QThread::run()
719 {
720   myResult = myGen->Compute(myMesh, myMainShape);
721 }
722
723 bool SMESHGUI_ComputeDlg_QThread::result()
724 {
725   return myResult;
726 }
727
728 void SMESHGUI_ComputeDlg_QThread::cancel()
729 {
730   myGen->CancelCompute(myMesh, myMainShape);
731 }
732
733 //================================================================================
734 //================================================================================
735
736 SMESHGUI_ComputeDlg_QThreadQDialog::SMESHGUI_ComputeDlg_QThreadQDialog(QWidget             * parent,
737                                                                        SMESH::SMESH_Gen_var  gen,
738                                                                        SMESH::SMESH_Mesh_var mesh,
739                                                                        GEOM::GEOM_Object_var mainShape)
740   : QDialog(parent,
741             Qt::WindowSystemMenuHint |
742             Qt::WindowCloseButtonHint |
743             Qt::Dialog |
744             Qt::WindowMaximizeButtonHint),
745     qthread(gen, mesh, mainShape)
746 {
747   // --
748   setWindowTitle(tr("TITLE"));
749   setMinimumWidth( 200 );
750
751   cancelButton = new QPushButton(tr("CANCEL"));
752   cancelButton->setDefault(true);
753   cancelButton->setCheckable(true);
754
755   QLabel * nbNodesName = new QLabel(tr("SMESH_MESHINFO_NODES"), this );
756   QLabel * nbElemsName = new QLabel(tr("SMESH_MESHINFO_ELEMENTS"), this );
757   nbNodesLabel = new QLabel("0", this );
758   nbElemsLabel = new QLabel("0", this );
759 #ifndef WIN32
760   QLabel * freeRAMName = new QLabel(tr("SMESH_FREERAM"), this );
761   freeRAMLabel = new QLabel("", this );
762 #endif
763   progressBar  = new QProgressBar(this);
764   progressBar->setMinimum( 0 );
765   progressBar->setMaximum( 1000 );
766
767   QGridLayout* layout = new QGridLayout(this);
768   layout->setMargin( MARGIN );
769   layout->setSpacing( SPACING );
770   int row = 0;
771   layout->addWidget(nbNodesName,  row,   0);
772   layout->addWidget(nbNodesLabel, row++, 1);
773   layout->addWidget(nbElemsName,  row,   0);
774   layout->addWidget(nbElemsLabel, row++, 1);
775 #ifndef WIN32
776   layout->addWidget(freeRAMName,  row,   0);
777   layout->addWidget(freeRAMLabel, row++, 1);
778 #endif
779   layout->addWidget(progressBar,  row++, 0, 1, 2);
780   layout->addWidget(cancelButton, row++, 0, 1, 2);
781   adjustSize();
782   update();
783
784   connect(cancelButton, SIGNAL(clicked()), this, SLOT(onCancel()));
785   // --
786   startTimer(300); // millisecs
787   qthread.start();
788 }
789
790 bool SMESHGUI_ComputeDlg_QThreadQDialog::result()
791 {
792   return qthread.result();
793 }
794
795 void SMESHGUI_ComputeDlg_QThreadQDialog::onCancel()
796 {
797   qthread.cancel();
798   cancelButton->setText( tr("CANCELING"));
799   cancelButton->setEnabled(false);
800 }
801
802 void SMESHGUI_ComputeDlg_QThreadQDialog::timerEvent(QTimerEvent *event)
803 {
804   if ( !cancelButton->isChecked() ) // not yet cancelled
805     progressBar->setValue( progressBar->maximum() * qthread.getMesh()->GetComputeProgress() );
806
807   if(qthread.isFinished())
808   {
809     close();
810   }
811   else
812   {
813     nbNodesLabel->setText( QString("%1").arg( qthread.getMesh()->NbNodes() ));
814     nbElemsLabel->setText( QString("%1").arg( qthread.getMesh()->NbElements() ));
815 #ifndef WIN32
816     struct sysinfo si;
817     const int err = sysinfo( &si );
818     if ( err )
819       freeRAMLabel->setText("");
820     else
821       freeRAMLabel->setText( tr("SMESH_GIGABYTE").arg
822                              ( si.freeram * si.mem_unit /1024./1024./1024., 0, 'f', 2 ));
823 #endif
824   }
825   event->accept();
826 }
827
828 void SMESHGUI_ComputeDlg_QThreadQDialog::closeEvent(QCloseEvent *event)
829 {
830   if(qthread.isRunning())
831   {
832       event->ignore();
833       return;
834     }
835   event->accept();
836 }
837
838 //================================================================================
839 /*!
840  * \brief computeMesh()
841 */
842 //================================================================================
843
844 void SMESHGUI_BaseComputeOp::computeMesh()
845 {
846   // COMPUTE MESH
847
848   SMESH::MemoryReserve aMemoryReserve;
849
850   SMESH::compute_error_array_var aCompErrors;
851   QString                        aHypErrors;
852
853   bool computeFailed = true, memoryLack = false;
854
855   _PTR(SObject) aMeshSObj = SMESH::FindSObject(myMesh);
856   if ( !aMeshSObj ) // IPAL 21340
857     return;
858   bool hasShape = myMesh->HasShapeToMesh();
859   bool shapeOK = myMainShape->_is_nil() ? !hasShape : hasShape;
860   if ( shapeOK )
861   {
862     myCompDlg->myMeshName->setText( aMeshSObj->GetName().c_str() );
863     SMESH::SMESH_Gen_var gen = getSMESHGUI()->GetSMESHGen();
864     SMESH::algo_error_array_var errors = gen->GetAlgoState(myMesh,myMainShape);
865     if ( errors->length() > 0 ) {
866       aHypErrors = SMESH::GetMessageOnAlgoStateErrors( errors.in() );
867     }
868     if ( myMesh->HasModificationsToDiscard() && // issue 0020693
869          SUIT_MessageBox::question( desktop(), tr( "SMESH_WARNING" ),
870                                     tr( "FULL_RECOMPUTE_QUESTION" ),
871                                     tr( "SMESH_BUT_YES" ), tr( "SMESH_BUT_NO" ), 1, 0 ) == 0 )
872       myMesh->Clear();
873     SUIT_OverrideCursor aWaitCursor;
874     try {
875 #if (OCC_VERSION_MAJOR << 16 | OCC_VERSION_MINOR << 8 | OCC_VERSION_MAINTENANCE) > 0x060100
876       OCC_CATCH_SIGNALS;
877 #endif
878       SMESHGUI_ComputeDlg_QThreadQDialog qthreaddialog(desktop(), gen, myMesh, myMainShape);
879       qthreaddialog.exec();
880       computeFailed = !qthreaddialog.result();
881     }
882     catch(const SALOME::SALOME_Exception & S_ex) {
883       memoryLack = true;
884     }
885     try {
886 #if (OCC_VERSION_MAJOR << 16 | OCC_VERSION_MINOR << 8 | OCC_VERSION_MAINTENANCE) > 0x060100
887       OCC_CATCH_SIGNALS;
888 #endif
889       aCompErrors = gen->GetComputeErrors( myMesh, myMainShape );
890       // check if there are memory problems
891       for ( int i = 0; (i < aCompErrors->length()) && !memoryLack; ++i )
892         memoryLack = ( aCompErrors[ i ].code == SMESH::COMPERR_MEMORY_PB );
893     }
894     catch(const SALOME::SALOME_Exception & S_ex) {
895       memoryLack = true;
896     }
897
898     if ( !memoryLack && !SMDS_Mesh::CheckMemory(true) ) { // has memory to show dialog boxes?
899       memoryLack = true;
900     }
901
902     // NPAL16631: if ( !memoryLack )
903     {
904       SMESH::ModifiedMesh(aMeshSObj, !computeFailed, myMesh->NbNodes() == 0);
905       update( UF_ObjBrowser | UF_Model );
906
907       // SHOW MESH
908       // NPAL16631: if ( getSMESHGUI()->automaticUpdate() )
909       SUIT_ResourceMgr* resMgr = SMESH::GetResourceMgr( SMESHGUI::GetSMESHGUI() );
910       bool limitExceeded;
911       long limitSize = resMgr->integerValue( "SMESH", "update_limit", 500000 );
912       int entities = SMESH_Actor::eAllEntity;
913       int hidden = 0;
914       if ( !memoryLack )
915       {
916         if ( getSMESHGUI()->automaticUpdate( myMesh, &entities, &limitExceeded, &hidden ) )
917         {
918           try {
919 #if (OCC_VERSION_MAJOR << 16 | OCC_VERSION_MINOR << 8 | OCC_VERSION_MAINTENANCE) > 0x060100
920             OCC_CATCH_SIGNALS;
921 #endif
922             SMESH_Actor *anActor = SMESH::FindActorByObject( myMesh );
923             if ( !anActor ) anActor = SMESH::CreateActor( aMeshSObj->GetStudy(), aMeshSObj->GetID().c_str(), true );    
924             if ( anActor ) // actor is not created for an empty mesh
925             {
926               anActor->SetEntityMode( entities );
927               SMESH::DisplayActor( SMESH::GetActiveWindow(), anActor );
928             }
929             SMESH::Update(myIObject, true);
930
931             if ( limitExceeded )
932             {
933               QStringList hiddenMsg;
934               if ( hidden & SMESH_Actor::e0DElements ) hiddenMsg << tr( "SMESH_ELEMS0D" );
935               if ( hidden & SMESH_Actor::eEdges )      hiddenMsg << tr( "SMESH_EDGES" );
936               if ( hidden & SMESH_Actor::eFaces )      hiddenMsg << tr( "SMESH_FACES" );
937               if ( hidden & SMESH_Actor::eVolumes )    hiddenMsg << tr( "SMESH_VOLUMES" );
938               if ( hidden & SMESH_Actor::eBallElem )   hiddenMsg << tr( "SMESH_BALLS" );
939               SUIT_MessageBox::warning( desktop(),
940                                         tr( "SMESH_WRN_WARNING" ),
941                                         tr( "SMESH_WRN_SIZE_INC_LIMIT_EXCEEDED" ).arg( myMesh->NbElements() ).arg( limitSize ).arg( hiddenMsg.join(", ") ) );
942             }
943           }
944           catch (...) {
945 #ifdef _DEBUG_
946             MESSAGE ( "Exception thrown during mesh visualization" );
947 #endif
948             if ( SMDS_Mesh::CheckMemory(true) ) { // has memory to show warning?
949               SMESH::OnVisuException();
950             }
951             else {
952               memoryLack = true;
953             }
954           }
955         }
956         else if ( limitExceeded )
957         {
958           SUIT_MessageBox::warning( desktop(),
959                                     tr( "SMESH_WRN_WARNING" ),
960                                     tr( "SMESH_WRN_SIZE_LIMIT_EXCEEDED" ).arg( myMesh->NbElements() ).arg( limitSize ) );
961         }
962       }
963       LightApp_SelectionMgr *Sel = selectionMgr();
964       if ( Sel )
965       {
966         SALOME_ListIO selected;
967         selected.Append( myIObject );
968         Sel->setSelectedObjects( selected );
969       }
970     }
971   }
972
973   if ( memoryLack )
974     aMemoryReserve.release();
975
976   myCompDlg->setWindowTitle(tr( computeFailed ? "SMESH_WRN_COMPUTE_FAILED" : "SMESH_COMPUTE_SUCCEED"));
977
978   // SHOW ERRORS
979   
980   bool noCompError = ( !aCompErrors.operator->() || aCompErrors->length() == 0 );
981   bool noHypoError = ( aHypErrors.isEmpty() );
982
983   SUIT_ResourceMgr* resMgr = SMESH::GetResourceMgr( SMESHGUI::GetSMESHGUI() );
984   int aNotifyMode = resMgr->integerValue( "SMESH", "show_result_notification" );
985
986   bool isShowResultDlg = true;
987   switch( aNotifyMode ) {
988   case 0: // show the mesh computation result dialog NEVER
989     isShowResultDlg = false;
990     commit();
991     break;
992   case 1: // show the mesh computation result dialog if there are some errors
993     if ( memoryLack || !noCompError || !noHypoError )
994       isShowResultDlg = true;
995     else
996     {
997       isShowResultDlg = false;
998       commit();
999     }
1000     break;
1001   default: // show the result dialog after each mesh computation
1002     isShowResultDlg = true;
1003   }
1004
1005   // SHOW RESULTS
1006   if ( isShowResultDlg )
1007     showComputeResult( memoryLack, noCompError,aCompErrors, noHypoError, aHypErrors );
1008 }
1009
1010 void SMESHGUI_BaseComputeOp::showComputeResult( const bool theMemoryLack,
1011                                                 const bool theNoCompError,
1012                                                 SMESH::compute_error_array_var& theCompErrors,
1013                                                 const bool theNoHypoError,
1014                                                 const QString& theHypErrors )
1015 {
1016   bool hasShape = myMesh->HasShapeToMesh();
1017   SMESHGUI_ComputeDlg* aCompDlg = computeDlg();
1018   aCompDlg->myMemoryLackGroup->hide();
1019
1020   if ( theMemoryLack )
1021   {
1022     aCompDlg->myMemoryLackGroup->show();
1023     aCompDlg->myFullInfo->hide();
1024     aCompDlg->myBriefInfo->hide();
1025     aCompDlg->myHypErrorGroup->hide();
1026     aCompDlg->myCompErrorGroup->hide();
1027   }
1028   else if ( theNoCompError && theNoHypoError )
1029   {
1030     SMESH::long_array_var aRes = myMesh->GetMeshInfo();
1031     aCompDlg->myFullInfo->SetMeshInfo( aRes );
1032     aCompDlg->myFullInfo->show();
1033     aCompDlg->myBriefInfo->hide();
1034     aCompDlg->myHypErrorGroup->hide();
1035     aCompDlg->myCompErrorGroup->hide();
1036   }
1037   else
1038   {
1039     bool onlyWarnings = !theNoCompError; // == valid mesh computed but there are errors reported
1040     for ( int i = 0; i < theCompErrors->length() && onlyWarnings; ++i )
1041       onlyWarnings = ( theCompErrors[ i ].code == SMESH::COMPERR_WARNING ||
1042                        theCompErrors[ i ].code == SMESH::COMPERR_NO_MESH_ON_SHAPE );
1043
1044     // full or brief mesh info
1045     SMESH::long_array_var aRes = myMesh->GetMeshInfo();
1046     if ( onlyWarnings ) {
1047       aCompDlg->myFullInfo->SetMeshInfo( aRes );
1048       aCompDlg->myFullInfo->show();
1049       aCompDlg->myBriefInfo->hide();
1050     } else {
1051       aCompDlg->myBriefInfo->SetMeshInfo( aRes );
1052       aCompDlg->myBriefInfo->show();
1053       aCompDlg->myFullInfo->hide();
1054     }
1055
1056     // pbs of hypo dfinitions
1057     if ( theNoHypoError ) {
1058       aCompDlg->myHypErrorGroup->hide();
1059     } else {
1060       aCompDlg->myHypErrorGroup->show();
1061       aCompDlg->myHypErrorLabel->setText( theHypErrors );
1062     }
1063
1064     // table of errors
1065     if ( theNoCompError )
1066     {
1067       aCompDlg->myCompErrorGroup->hide();
1068     }
1069     else
1070     {
1071       aCompDlg->myCompErrorGroup->show();
1072
1073       if ( onlyWarnings )
1074         aCompDlg->myWarningLabel->show();
1075       else
1076         aCompDlg->myWarningLabel->hide();
1077
1078       if ( !hasShape ) {
1079         aCompDlg->myPublishBtn->hide();
1080         aCompDlg->myShowBtn->hide();
1081       }
1082       else {
1083         aCompDlg->myPublishBtn->show();
1084         aCompDlg->myShowBtn->show();
1085       }
1086
1087       // fill table of errors
1088       QTableWidget* tbl = aCompDlg->myTable;
1089       tbl->setRowCount( theCompErrors->length() );
1090       if ( !hasShape ) tbl->hideColumn( COL_SHAPE );
1091       else             tbl->showColumn( COL_SHAPE );
1092       tbl->setColumnWidth( COL_ERROR, 200 );
1093
1094       bool hasBadMesh = false;
1095       for ( int row = 0; row < theCompErrors->length(); ++row )
1096       {
1097         SMESH::ComputeError & err = theCompErrors[ row ];
1098
1099         QString text = err.algoName.in();
1100         if ( !tbl->item( row, COL_ALGO ) ) tbl->setItem( row, COL_ALGO, new QTableWidgetItem( text ) );
1101         else tbl->item( row, COL_ALGO )->setText( text );
1102
1103         text = SMESH::errorText( err.code, err.comment.in() );
1104         if ( !tbl->item( row, COL_ERROR ) ) tbl->setItem( row, COL_ERROR, new QTableWidgetItem( text ) );
1105         else tbl->item( row, COL_ERROR )->setText( text );
1106
1107         text = QString("%1").arg( err.subShapeID );
1108         if ( !tbl->item( row, COL_SHAPEID ) ) tbl->setItem( row, COL_SHAPEID, new QTableWidgetItem( text ) );
1109         else tbl->item( row, COL_SHAPEID )->setText( text );
1110
1111         text = hasShape ? SMESH::shapeText( err.subShapeID, myMainShape ) : QString("");
1112         if ( !tbl->item( row, COL_SHAPE ) ) tbl->setItem( row, COL_SHAPE, new QTableWidgetItem( text ) );
1113         else tbl->item( row, COL_SHAPE )->setText( text );
1114
1115         text = ( !hasShape || SMESH::getSubShapeSO( err.subShapeID, myMainShape )) ? "PUBLISHED" : "";
1116         if ( !tbl->item( row, COL_PUBLISHED ) ) tbl->setItem( row, COL_PUBLISHED, new QTableWidgetItem( text ) );
1117         else tbl->item( row, COL_PUBLISHED )->setText( text ); // if text=="", "PUBLISH" button enabled
1118
1119         text = err.hasBadMesh ? "hasBadMesh" : "";
1120         if ( !tbl->item( row, COL_BAD_MESH ) ) tbl->setItem( row, COL_BAD_MESH, new QTableWidgetItem( text ) );
1121         else tbl->item( row, COL_BAD_MESH )->setText( text );
1122         if ( err.hasBadMesh ) hasBadMesh = true;
1123
1124         //tbl->item( row, COL_ERROR )->setWordWrap( true ); // VSR: TODO ???
1125         tbl->resizeRowToContents( row );
1126       }
1127       tbl->resizeColumnToContents( COL_ALGO );
1128       tbl->resizeColumnToContents( COL_SHAPE );
1129       tbl->setWordWrap( true );
1130
1131       if ( hasBadMesh ) {
1132         aCompDlg->myBadMeshBtn->show();
1133         aCompDlg->myBadMeshToGroupBtn->show();
1134       }
1135       else {
1136         aCompDlg->myBadMeshBtn->hide();
1137         aCompDlg->myBadMeshToGroupBtn->hide();
1138       }
1139       tbl->setCurrentCell(0,0);
1140       currentCellChanged(); // to update buttons
1141     }
1142   }
1143   // show dialog and wait, becase Compute can be invoked from Preview operation
1144   //aCompDlg->exec(); // this way it becomes modal - impossible to rotate model in the Viewer
1145   aCompDlg->show();
1146 }
1147
1148 //================================================================================
1149 /*!
1150  * \brief Stops operation
1151  */
1152 //================================================================================
1153
1154 void SMESHGUI_BaseComputeOp::stopOperation()
1155 {
1156   SMESHGUI_Operation::stopOperation();
1157   if ( myTShapeDisplayer )
1158     myTShapeDisplayer->SetVisibility( false );
1159   if ( myBadMeshDisplayer ) {
1160     myBadMeshDisplayer->SetVisibility( false );
1161     // delete it in order not to have problems at its destruction when the viewer
1162     // where it worked is dead due to e.g. study closing
1163     delete myBadMeshDisplayer;
1164     myBadMeshDisplayer = 0;
1165   }
1166   myIObject.Nullify();
1167 }
1168
1169 //================================================================================
1170 /*!
1171  * \brief publish selected sub-shape
1172  */
1173 //================================================================================
1174
1175 void SMESHGUI_BaseComputeOp::onPublishShape()
1176 {
1177   GEOM::GEOM_Gen_var geomGen = SMESH::GetGEOMGen();
1178   SALOMEDS::Study_var study = SMESHGUI::GetSMESHGen()->GetCurrentStudy();
1179
1180   QList<int> rows;
1181   SMESH::getSelectedRows( table(), rows );
1182   int row;
1183   foreach ( row, rows )
1184   {
1185     int curSub = table()->item(row, COL_SHAPEID)->text().toInt();
1186     GEOM::GEOM_Object_wrap shape = SMESH::getSubShape( curSub, myMainShape );
1187     if ( !shape->_is_nil() && ! SMESH::getSubShapeSO( curSub, myMainShape ))
1188     {
1189       if ( !SMESH::getSubShapeSO( 1, myMainShape )) // the main shape not published
1190       {
1191         QString name = GEOMBase::GetDefaultName( SMESH::shapeTypeName( myMainShape, "MAIN_SHAPE" ));
1192         SALOMEDS::SObject_wrap so =
1193           geomGen->AddInStudy( study, myMainShape, name.toLatin1().data(), GEOM::GEOM_Object::_nil());
1194         // look for myMainShape in the table
1195         for ( int r = 0, nr = table()->rowCount(); r < nr; ++r ) {
1196           if ( table()->item( r, COL_SHAPEID )->text() == "1" ) {
1197             if ( so->_is_nil() ) {
1198               CORBA::String_var name  = so->GetName();
1199               CORBA::String_var entry = so->GetID();
1200               QString       shapeText = QString("%1 (%2)").arg( name.in() ).arg( entry.in() );
1201               table()->item( r, COL_SHAPE     )->setText( shapeText );
1202               table()->item( r, COL_PUBLISHED )->setText( entry.in() );
1203             }
1204             break;
1205           }
1206         }
1207         if ( curSub == 1 ) continue;
1208       }
1209       QString name = GEOMBase::GetDefaultName( SMESH::shapeTypeName( shape, "ERROR_SHAPE" ));
1210       SALOMEDS::SObject_wrap so = geomGen->AddInStudy( study, shape, name.toLatin1().data(), myMainShape);
1211       if ( !so->_is_nil() ) {
1212         CORBA::String_var name  = so->GetName();
1213         CORBA::String_var entry = so->GetID();
1214         QString       shapeText = QString("%1 (%2)").arg( name.in() ).arg( entry.in() );
1215         table()->item( row, COL_SHAPE     )->setText( shapeText );
1216         table()->item( row, COL_PUBLISHED )->setText( entry.in() );
1217       }
1218     }
1219   }
1220   getSMESHGUI()->getApp()->updateObjectBrowser();
1221   currentCellChanged(); // to update buttons
1222 }
1223
1224 //================================================================================
1225 /*!
1226  * \brief show mesh elements preventing computation of a submesh of current row
1227  */
1228 //================================================================================
1229
1230 void SMESHGUI_BaseComputeOp::onShowBadMesh()
1231 {
1232   myTShapeDisplayer->SetVisibility( false );
1233   QList<int> rows;
1234   if ( SMESH::getSelectedRows( table(), rows ) == 1 ) {
1235     bool hasBadMesh = ( !table()->item(rows.front(), COL_BAD_MESH)->text().isEmpty() );
1236     if ( hasBadMesh ) {
1237       int curSub = table()->item(rows.front(), COL_SHAPEID)->text().toInt();
1238       SMESHGUI* gui = getSMESHGUI();
1239       SMESH::SMESH_Gen_var gen = gui->GetSMESHGen();
1240       SVTK_ViewWindow*    view = SMESH::GetViewWindow( gui );
1241       if ( myBadMeshDisplayer ) delete myBadMeshDisplayer;
1242       myBadMeshDisplayer = new SMESHGUI_MeshEditPreview( view );
1243       SMESH::MeshPreviewStruct_var aMeshData = gen->GetBadInputElements(myMesh,curSub);
1244       double aPointSize = SMESH::GetFloat("SMESH:node_size",3);
1245       double aLineWidth = SMESH::GetFloat("SMESH:element_width",1);
1246       vtkProperty* prop = vtkProperty::New();
1247       prop->SetLineWidth( aLineWidth * 3 );
1248       prop->SetPointSize( aPointSize * 3 );
1249       prop->SetColor( 250, 0, 250 );
1250       myBadMeshDisplayer->GetActor()->SetProperty( prop );
1251       myBadMeshDisplayer->SetData( aMeshData._retn() );
1252       prop->Delete();
1253     }
1254   }
1255 }
1256
1257 //================================================================================
1258 /*!
1259  * \brief create groups of bad mesh elements preventing computation of a submesh of current row
1260  */
1261 //================================================================================
1262
1263 void SMESHGUI_BaseComputeOp::onGroupOfBadMesh()
1264 {
1265   QList<int> rows;
1266   SMESH::getSelectedRows( table(), rows );
1267   int row;
1268   foreach ( row, rows )
1269   {
1270     bool hasBadMesh = ( !table()->item(row, COL_BAD_MESH)->text().isEmpty() );
1271     if ( hasBadMesh ) {
1272       int     curSub = table()->item(rows.front(), COL_SHAPEID)->text().toInt();
1273       QString grName = table()->item(rows.front(), COL_SHAPE)->text();
1274       if ( grName.isEmpty() ) grName = "bad mesh";
1275       else                    grName = "bad mesh of " + grName;
1276       SMESH::SMESH_Gen_var gen = getSMESHGUI()->GetSMESHGen();
1277       SMESH::ListOfGroups_var groups
1278         ( gen->MakeGroupsOfBadInputElements(myMesh,curSub,grName.toLatin1().data()) );
1279       update( UF_ObjBrowser | UF_Model );
1280       if( LightApp_Application* anApp = dynamic_cast<LightApp_Application*>( application() ))
1281       {
1282         QStringList anEntryList;
1283         for ( size_t i = 0; i < groups->length(); ++i )
1284           if ( _PTR(SObject) so = SMESH::FindSObject( groups[i] ))
1285             anEntryList.append( so->GetID().c_str() );
1286
1287         if ( !anEntryList.isEmpty())
1288           anApp->browseObjects( anEntryList, true, false );
1289       }
1290     }
1291   }
1292 }
1293
1294 //================================================================================
1295 /*!
1296  * \brief SLOT called when a selected cell in table() changed
1297  */
1298 //================================================================================
1299
1300 void SMESHGUI_BaseComputeOp::currentCellChanged()
1301 {
1302   myTShapeDisplayer->SetVisibility( false );
1303   if ( myBadMeshDisplayer )
1304     myBadMeshDisplayer->SetVisibility( false );
1305
1306   bool publishEnable = 0, showEnable = 0, showOnly = 1, hasBadMesh = 0;
1307   QList<int> rows;
1308   int nbSelected = SMESH::getSelectedRows( table(), rows );
1309   int row;
1310   foreach ( row, rows )
1311   {
1312     bool hasData     = ( !table()->item( row, COL_SHAPE )->text().isEmpty() );
1313     bool isPublished = ( !table()->item( row, COL_PUBLISHED )->text().isEmpty() );
1314     if ( hasData && !isPublished )
1315       publishEnable = true;
1316
1317     int curSub = table()->item( row, COL_SHAPEID )->text().toInt();
1318     bool prsReady = myTShapeDisplayer->HasReadyActorsFor( curSub, myMainShape );
1319     if ( prsReady ) {
1320       myTShapeDisplayer->Show( curSub, myMainShape, showOnly );
1321       showOnly = false;
1322     }
1323     else {
1324       showEnable = true;
1325     }
1326
1327     if ( !table()->item(row, COL_BAD_MESH)->text().isEmpty() )
1328       hasBadMesh = true;
1329   }
1330   myCompDlg->myPublishBtn->setEnabled( publishEnable );
1331   myCompDlg->myShowBtn   ->setEnabled( showEnable );
1332   myCompDlg->myBadMeshBtn->setEnabled( hasBadMesh && ( nbSelected == 1 ));
1333   myCompDlg->myBadMeshToGroupBtn->setEnabled( hasBadMesh && ( nbSelected == 1 ));
1334 }
1335
1336 //================================================================================
1337 /*!
1338  * \brief update preview
1339  */
1340 //================================================================================
1341
1342 void SMESHGUI_BaseComputeOp::onPreviewShape()
1343 {
1344   if ( myTShapeDisplayer )
1345   {
1346     SUIT_OverrideCursor aWaitCursor;
1347     QList<int> rows;
1348     SMESH::getSelectedRows( table(), rows );
1349
1350     bool showOnly = true;
1351     int row;
1352     foreach ( row, rows )
1353     {
1354       int curSub = table()->item( row, COL_SHAPEID )->text().toInt();
1355       if ( curSub > 0 ) {
1356         myTShapeDisplayer->Show( curSub, myMainShape, showOnly );
1357         showOnly = false;
1358       }
1359     }
1360     currentCellChanged(); // to update buttons
1361   }
1362 }
1363
1364 //================================================================================
1365 /*!
1366  * \brief Destructor
1367  */
1368 //================================================================================
1369
1370 SMESHGUI_BaseComputeOp::~SMESHGUI_BaseComputeOp()
1371 {
1372   delete myCompDlg;
1373   myCompDlg = 0;
1374   delete myTShapeDisplayer;
1375   if ( myBadMeshDisplayer )
1376     delete myBadMeshDisplayer;
1377 }
1378
1379 //================================================================================
1380 /*!
1381  * \brief Gets dialog of compute operation
1382  * \retval SMESHGUI_ComputeDlg* - pointer to dialog of this operation
1383  */
1384 //================================================================================
1385
1386 SMESHGUI_ComputeDlg* SMESHGUI_BaseComputeOp::computeDlg() const
1387 {
1388   if ( !myCompDlg )
1389   {
1390     SMESHGUI_BaseComputeOp* me = (SMESHGUI_BaseComputeOp*)this;
1391     me->myCompDlg = new SMESHGUI_ComputeDlg( desktop(), false );
1392     // connect signals and slots
1393     connect(myCompDlg->myShowBtn,           SIGNAL (clicked()), SLOT(onPreviewShape()));
1394     connect(myCompDlg->myPublishBtn,        SIGNAL (clicked()), SLOT(onPublishShape()));
1395     connect(myCompDlg->myBadMeshBtn,        SIGNAL (clicked()), SLOT(onShowBadMesh()));
1396     connect(myCompDlg->myBadMeshToGroupBtn, SIGNAL (clicked()), SLOT(onGroupOfBadMesh()));
1397
1398     QTableWidget* aTable = me->table();
1399     connect(aTable, SIGNAL(itemSelectionChanged()), SLOT(currentCellChanged()));
1400     connect(aTable, SIGNAL(currentCellChanged(int,int,int,int)), SLOT(currentCellChanged()));
1401   }
1402   return myCompDlg;
1403 }
1404
1405 //================================================================================
1406 /*!
1407  * \brief returns from compute mesh result dialog
1408  */
1409 //================================================================================
1410
1411 bool SMESHGUI_BaseComputeOp::onApply()
1412 {
1413   return true;
1414 }
1415
1416 //================================================================================
1417 /*!
1418  * \brief Return a table
1419  */
1420 //================================================================================
1421
1422 QTableWidget* SMESHGUI_BaseComputeOp::table()
1423 {
1424   return myCompDlg->myTable;
1425 }
1426
1427
1428 //================================================================================
1429 /*!
1430  * \brief Constructor
1431 */
1432 //================================================================================
1433
1434 SMESHGUI_ComputeOp::SMESHGUI_ComputeOp()
1435  : SMESHGUI_BaseComputeOp()
1436 {
1437 }
1438
1439
1440 //================================================================================
1441 /*!
1442  * \brief Desctructor
1443 */
1444 //================================================================================
1445
1446 SMESHGUI_ComputeOp::~SMESHGUI_ComputeOp()
1447 {
1448 }
1449
1450 //================================================================================
1451 /*!
1452  * \brief perform it's intention action: compute mesh
1453  */
1454 //================================================================================
1455
1456 void SMESHGUI_ComputeOp::startOperation()
1457 {
1458   SMESHGUI_BaseComputeOp::startOperation();
1459   if (myMesh->_is_nil())
1460     return;
1461   computeMesh();
1462 }
1463
1464 //================================================================================
1465 /*!
1466  * \brief check the same operations on the same mesh
1467  */
1468 //================================================================================
1469
1470 bool SMESHGUI_BaseComputeOp::isValid(  SUIT_Operation* theOp  ) const
1471 {
1472   SMESHGUI_BaseComputeOp* baseOp = dynamic_cast<SMESHGUI_BaseComputeOp*>( theOp );
1473   bool ret = true;
1474   if ( !myMesh->_is_nil() && baseOp ) {
1475     SMESH::SMESH_Mesh_var aMesh = baseOp->getMesh();
1476     if ( !aMesh->_is_nil() && aMesh->GetId() == myMesh->GetId() ) ret = false;
1477   }
1478   return ret;
1479 }
1480
1481 //================================================================================
1482 /*!
1483  * \brief Gets dialog of this operation
1484  * \retval LightApp_Dialog* - pointer to dialog of this operation
1485  */
1486 //================================================================================
1487
1488 LightApp_Dialog* SMESHGUI_ComputeOp::dlg() const
1489 {
1490   return computeDlg();
1491 }
1492
1493 //================================================================================
1494 /*!
1495  * \brief Constructor
1496 */
1497 //================================================================================
1498
1499 SMESHGUI_PrecomputeOp::SMESHGUI_PrecomputeOp()
1500  : SMESHGUI_BaseComputeOp(),
1501  myDlg( 0 ),
1502  myOrderMgr( 0 ),
1503  myActiveDlg( 0 ),
1504  myPreviewDisplayer( 0 )
1505 {
1506   myHelpFileName = "constructing_meshes_page.html#preview_mesh_anchor";
1507 }
1508
1509 //================================================================================
1510 /*!
1511  * \brief Destructor
1512  */
1513 //================================================================================
1514
1515 SMESHGUI_PrecomputeOp::~SMESHGUI_PrecomputeOp()
1516 {
1517   delete myDlg;
1518   myDlg = 0;
1519   delete myOrderMgr;
1520   myOrderMgr = 0;
1521   myActiveDlg = 0;
1522   if ( myPreviewDisplayer )
1523     delete myPreviewDisplayer;
1524   myPreviewDisplayer = 0;
1525 }
1526
1527 //================================================================================
1528 /*!
1529  * \brief Gets current dialog of this operation
1530  * \retval LightApp_Dialog* - pointer to dialog of this operation
1531  */
1532 //================================================================================
1533
1534 LightApp_Dialog* SMESHGUI_PrecomputeOp::dlg() const
1535 {
1536   return myActiveDlg;
1537 }
1538
1539 //================================================================================
1540 /*!
1541  * \brief perform it's intention action: prepare data
1542  */
1543 //================================================================================
1544
1545 void SMESHGUI_PrecomputeOp::startOperation()
1546 {
1547   if ( !myDlg )
1548   {
1549     myDlg = new SMESHGUI_PrecomputeDlg( desktop() );
1550     
1551     // connect signals
1552     connect( myDlg, SIGNAL( preview() ), this, SLOT( onPreview() ) );
1553     connect( myDlg, SIGNAL( dlgOk() ), this, SLOT( onCompute() ) );
1554     connect( myDlg, SIGNAL( dlgApply() ), this, SLOT( onCompute() ) );
1555   }
1556   myActiveDlg = myDlg;
1557
1558   // connect signal to compute dialog. which will be shown after Compute mesh operation
1559   SMESHGUI_ComputeDlg* cmpDlg = computeDlg();
1560   if ( cmpDlg )
1561   {
1562     // disconnect signals
1563     disconnect( cmpDlg, SIGNAL( dlgOk() ), this, SLOT( onOk() ) );
1564     disconnect( cmpDlg, SIGNAL( dlgApply() ), this, SLOT( onApply() ) );
1565     disconnect( cmpDlg, SIGNAL( dlgCancel() ), this, SLOT( onCancel() ) );
1566     disconnect( cmpDlg, SIGNAL( dlgClose() ), this, SLOT( onCancel() ) );
1567     disconnect( cmpDlg, SIGNAL( dlgHelp() ), this, SLOT( onHelp() ) );
1568
1569     // connect signals
1570     if( cmpDlg->testButtonFlags( QtxDialog::OK ) )
1571       connect( cmpDlg, SIGNAL( dlgOk() ), this, SLOT( onOk() ) );
1572     if( cmpDlg->testButtonFlags( QtxDialog::Apply ) )
1573       connect( cmpDlg, SIGNAL( dlgApply() ), this, SLOT( onApply() ) );
1574     if( cmpDlg->testButtonFlags( QtxDialog::Help ) )
1575       connect( cmpDlg, SIGNAL( dlgHelp() ), this, SLOT( onHelp() ) );
1576     if( cmpDlg->testButtonFlags( QtxDialog::Cancel ) )
1577       connect( cmpDlg, SIGNAL( dlgCancel() ), this, SLOT( onCancel() ) );
1578     if( cmpDlg->testButtonFlags( QtxDialog::Close ) )
1579       connect( cmpDlg, SIGNAL( dlgClose() ), this, SLOT( onCancel() ) );
1580   }
1581
1582   SMESHGUI_BaseComputeOp::startOperation();
1583   if (myMesh->_is_nil())
1584     return;
1585
1586   if (myDlg->getPreviewMode() == -1)
1587   {
1588     // nothing to preview
1589     SUIT_MessageBox::warning(desktop(),
1590                              tr("SMESH_WRN_WARNING"),
1591                              tr("SMESH_WRN_NOTHING_PREVIEW"));
1592     onCancel();
1593     return;
1594   }
1595
1596   // disconnect slot from preview dialog to have Apply from results of compute operation only 
1597   disconnect( myDlg, SIGNAL( dlgOk() ), this, SLOT( onOk() ) );
1598   disconnect( myDlg, SIGNAL( dlgApply() ), this, SLOT( onApply() ) );
1599
1600   myDlg->show();
1601 }
1602
1603 //================================================================================
1604 /*!
1605  * \brief Stops operation
1606  */
1607 //================================================================================
1608
1609 void SMESHGUI_PrecomputeOp::stopOperation()
1610 {
1611   if ( myPreviewDisplayer )
1612   {
1613     myPreviewDisplayer->SetVisibility( false );
1614     delete myPreviewDisplayer;
1615     myPreviewDisplayer = 0;
1616   }
1617   myMapShapeId.clear();
1618   SMESHGUI_BaseComputeOp::stopOperation();
1619 }
1620
1621 //================================================================================
1622 /*!
1623  * \brief reinitialize dialog after operaiton become active again
1624  */
1625 //================================================================================
1626
1627 void SMESHGUI_PrecomputeOp::resumeOperation()
1628 {
1629   if ( myActiveDlg == myDlg )
1630     initDialog();
1631   SMESHGUI_BaseComputeOp::resumeOperation();
1632 }
1633
1634 //================================================================================
1635 /*!
1636  * \brief perform it's intention action: reinitialise dialog
1637  */
1638 //================================================================================
1639
1640 void SMESHGUI_PrecomputeOp::initDialog()
1641 {
1642   QList<int> modes;
1643
1644   QMap<int, int> modeMap;
1645   _PTR(SObject)  pMesh = studyDS()->FindObjectID( myIObject->getEntry() );
1646   getAssignedAlgos( pMesh, modeMap );
1647   if ( modeMap.contains( SMESH::DIM_3D ) )
1648   {
1649     if ( modeMap.contains( SMESH::DIM_2D ) )
1650       modes.append( SMESH::DIM_2D );
1651     if ( modeMap.contains( SMESH::DIM_1D ) )
1652       modes.append( SMESH::DIM_1D );
1653   }
1654   else if ( modeMap.contains( SMESH::DIM_2D ) )
1655   {
1656     if ( modeMap.contains( SMESH::DIM_1D ) )
1657       modes.append( SMESH::DIM_1D );
1658   }
1659
1660   myOrderMgr = new SMESHGUI_MeshOrderMgr( myDlg->getMeshOrderBox() );
1661   myOrderMgr->SetMesh( myMesh );
1662   bool isOrder = myOrderMgr->GetMeshOrder(myPrevOrder);
1663   myDlg->getMeshOrderBox()->setShown(isOrder);
1664   if ( !isOrder ) {
1665     delete myOrderMgr;
1666     myOrderMgr = 0;
1667   }
1668
1669   myDlg->setPreviewModes( modes );
1670 }
1671
1672 //================================================================================
1673 /*!
1674  * \brief detect asigned mesh algorithms
1675  */
1676 //================================================================================
1677
1678 void SMESHGUI_PrecomputeOp::getAssignedAlgos(_PTR(SObject) theMesh,
1679                                              QMap<int,int>& theModeMap)
1680 {
1681   _PTR(SObject)          aHypRoot;
1682   _PTR(GenericAttribute) anAttr;
1683   int aPart = SMESH::Tag_RefOnAppliedAlgorithms;
1684   if ( theMesh && theMesh->FindSubObject( aPart, aHypRoot ) )
1685   {
1686     _PTR(ChildIterator) anIter =
1687       SMESH::GetActiveStudyDocument()->NewChildIterator( aHypRoot );
1688     for ( ; anIter->More(); anIter->Next() )
1689     {
1690       _PTR(SObject) anObj = anIter->Value();
1691       _PTR(SObject) aRefObj;
1692       if ( anObj->ReferencedObject( aRefObj ) )
1693         anObj = aRefObj;
1694       else
1695         continue;
1696       
1697       if ( anObj->FindAttribute( anAttr, "AttributeName" ) )
1698       {
1699         CORBA::Object_var aVar = _CAST(SObject,anObj)->GetObject();
1700         if ( CORBA::is_nil( aVar ) )
1701           continue;
1702         
1703         for( int dim = SMESH::DIM_1D; dim <= SMESH::DIM_3D; dim++ )
1704         {
1705           SMESH::SMESH_Algo_var algo;
1706           switch(dim) {
1707           case SMESH::DIM_1D: algo = SMESH::SMESH_1D_Algo::_narrow( aVar ); break;
1708           case SMESH::DIM_2D: algo = SMESH::SMESH_2D_Algo::_narrow( aVar ); break;
1709           case SMESH::DIM_3D: algo = SMESH::SMESH_3D_Algo::_narrow( aVar ); break;
1710           default: break;
1711           }
1712           if ( !algo->_is_nil() )
1713             theModeMap[ dim ] = 0;
1714         }
1715       }
1716     }
1717   }
1718 }
1719
1720 //================================================================================
1721 /*!
1722  * \brief perform it's intention action: compute mesh
1723  */
1724 //================================================================================
1725
1726 void SMESHGUI_PrecomputeOp::onCompute()
1727 {
1728   myDlg->hide();
1729   if (myOrderMgr && myOrderMgr->IsOrderChanged())
1730     myOrderMgr->SetMeshOrder();
1731   myMapShapeId.clear();
1732   myActiveDlg = computeDlg();
1733   computeMesh();
1734 }
1735
1736 //================================================================================
1737 /*!
1738  * \brief perform it's intention action: compute mesh
1739  */
1740 //================================================================================
1741
1742 void SMESHGUI_PrecomputeOp::onCancel()
1743 {
1744   QObject* curDlg = sender();
1745   if ( curDlg == computeDlg() && myActiveDlg == myDlg )
1746   {
1747     // return from error messages
1748     myDlg->show();
1749     return;
1750   }
1751
1752   bool isRestoreOrder = false;
1753   if ( myActiveDlg == myDlg  && !myMesh->_is_nil() && myMapShapeId.count() )
1754   {
1755     // ask to remove already computed mesh elements
1756     if ( SUIT_MessageBox::question( desktop(), tr( "SMESH_WARNING" ),
1757                                     tr( "CLEAR_SUBMESH_QUESTION" ),
1758                                     tr( "SMESH_BUT_DELETE" ), tr( "SMESH_BUT_NO" ), 0, 1 ) == 0 )
1759     {
1760       // remove all submeshes for collected shapes
1761       QMap<int,int>::const_iterator it = myMapShapeId.constBegin();
1762       for ( ; it != myMapShapeId.constEnd(); ++it )
1763         myMesh->ClearSubMesh( *it );
1764       isRestoreOrder = true;
1765     }
1766   }
1767
1768   // return previous mesh order
1769   if (myOrderMgr && myOrderMgr->IsOrderChanged()) {
1770     if (!isRestoreOrder)
1771       isRestoreOrder = 
1772         (SUIT_MessageBox::question( desktop(), tr( "SMESH_WARNING" ),
1773                                     tr( "SMESH_REJECT_MESH_ORDER" ),
1774                                     tr( "SMESH_BUT_YES" ), tr( "SMESH_BUT_NO" ), 0, 1 ) == 0);
1775     if (isRestoreOrder)
1776       myOrderMgr->SetMeshOrder(myPrevOrder);
1777   }
1778
1779   delete myOrderMgr;
1780   myOrderMgr = 0;
1781
1782   myMapShapeId.clear();
1783   SMESHGUI_BaseComputeOp::onCancel();
1784 }
1785
1786 //================================================================================
1787 /*!
1788  * \brief perform it's intention action: preview mesh
1789  */
1790 //================================================================================
1791
1792 void SMESHGUI_PrecomputeOp::onPreview()
1793 {
1794   if ( !myDlg || myMesh->_is_nil() || myMainShape->_is_nil() )
1795     return;
1796
1797   _PTR(SObject) aMeshSObj = SMESH::FindSObject(myMesh);
1798   if ( !aMeshSObj )
1799     return;
1800
1801   // set modified submesh priority if any
1802   if (myOrderMgr && myOrderMgr->IsOrderChanged())
1803     myOrderMgr->SetMeshOrder();
1804
1805   // Compute preview of mesh, 
1806   // i.e. compute mesh till indicated dimension
1807   int dim = myDlg->getPreviewMode();
1808   
1809   SMESH::MemoryReserve aMemoryReserve;
1810   
1811   SMESH::compute_error_array_var aCompErrors;
1812   QString                        aHypErrors;
1813
1814   bool computeFailed = true, memoryLack = false;
1815
1816   SMESHGUI_ComputeDlg* aCompDlg = computeDlg();
1817     aCompDlg->myMeshName->setText( aMeshSObj->GetName().c_str() );
1818
1819   SMESHGUI* gui = getSMESHGUI();
1820   SMESH::SMESH_Gen_var gen = gui->GetSMESHGen();
1821   SMESH::algo_error_array_var errors = gen->GetAlgoState(myMesh,myMainShape);
1822   if ( errors->length() > 0 ) {
1823     aHypErrors = SMESH::GetMessageOnAlgoStateErrors( errors.in() );
1824   }
1825
1826   SUIT_OverrideCursor aWaitCursor;
1827
1828   SVTK_ViewWindow*    view = SMESH::GetViewWindow( gui );
1829   if ( myPreviewDisplayer ) delete myPreviewDisplayer;
1830   myPreviewDisplayer = new SMESHGUI_MeshEditPreview( view );
1831   
1832   SMESH::long_array_var aShapesId = new SMESH::long_array();
1833   try {
1834 #if (OCC_VERSION_MAJOR << 16 | OCC_VERSION_MINOR << 8 | OCC_VERSION_MAINTENANCE) > 0x060100
1835     OCC_CATCH_SIGNALS;
1836 #endif
1837       
1838     SMESH::MeshPreviewStruct_var previewData =
1839       gen->Precompute(myMesh, myMainShape, (SMESH::Dimension)dim, aShapesId);
1840
1841     SMESH::MeshPreviewStruct* previewRes = previewData._retn();
1842     if ( previewRes && previewRes->nodesXYZ.length() > 0 )
1843     {
1844       computeFailed = false;
1845       myPreviewDisplayer->SetData( previewRes );
1846       // append shape indeces with computed mesh entities
1847       for ( int i = 0, n = aShapesId->length(); i < n; i++ )
1848         myMapShapeId[ aShapesId[ i ] ] = 0;
1849     }
1850     else
1851       myPreviewDisplayer->SetVisibility(false);
1852   }
1853   catch(const SALOME::SALOME_Exception & S_ex){
1854     memoryLack = true;
1855     myPreviewDisplayer->SetVisibility(false);
1856   }
1857
1858   try {
1859 #if (OCC_VERSION_MAJOR << 16 | OCC_VERSION_MINOR << 8 | OCC_VERSION_MAINTENANCE) > 0x060100
1860     OCC_CATCH_SIGNALS;
1861 #endif
1862     aCompErrors = gen->GetComputeErrors( myMesh, myMainShape );
1863     // check if there are memory problems
1864     for ( int i = 0; (i < aCompErrors->length()) && !memoryLack; ++i )
1865       memoryLack = ( aCompErrors[ i ].code == SMESH::COMPERR_MEMORY_PB );
1866   }
1867   catch(const SALOME::SALOME_Exception & S_ex){
1868     memoryLack = true;
1869   }
1870
1871   if ( memoryLack )
1872     aMemoryReserve.release();
1873
1874   bool noCompError = ( !aCompErrors.operator->() || aCompErrors->length() == 0 );
1875   bool noHypoError = ( aHypErrors.isEmpty() );
1876
1877   SUIT_ResourceMgr* resMgr = SMESH::GetResourceMgr( gui );
1878   int aNotifyMode = resMgr->integerValue( "SMESH", "show_result_notification" );
1879
1880   bool isShowError = true;
1881   switch( aNotifyMode ) {
1882   case 0: // show the mesh computation result dialog NEVER
1883     isShowError = false;
1884     break;
1885   case 1: // show the mesh computation result dialog if there are some errors
1886   default: // show the result dialog after each mesh computation
1887     if ( !computeFailed && !memoryLack && noCompError && noHypoError )
1888       isShowError = false;
1889     break;
1890   }
1891
1892   aWaitCursor.suspend();
1893   // SHOW ERRORS
1894   if ( isShowError )
1895   {
1896     myDlg->hide();
1897     aCompDlg->setWindowTitle(tr( computeFailed ? "SMESH_WRN_COMPUTE_FAILED" : "SMESH_COMPUTE_SUCCEED"));
1898     showComputeResult( memoryLack, noCompError, aCompErrors, noHypoError, aHypErrors );
1899   }
1900 }
1901
1902
1903 //================================================================================
1904 /*!
1905  * \brief Constructor
1906 */
1907 //================================================================================
1908
1909 SMESHGUI_PrecomputeDlg::SMESHGUI_PrecomputeDlg( QWidget* parent )
1910  : SMESHGUI_Dialog( parent, false, false, OK | Cancel | Help ),
1911    myOrderBox(0)
1912 {
1913   setWindowTitle( tr( "CAPTION" ) );
1914
1915   setButtonText( OK, tr( "COMPUTE" ) );
1916   QFrame* main = mainFrame();
1917
1918   QVBoxLayout* layout = new QVBoxLayout( main );
1919
1920   myOrderBox = new SMESHGUI_MeshOrderBox( main );
1921   layout->addWidget(myOrderBox);
1922
1923   QFrame* frame = new QFrame( main );
1924   layout->setMargin(0); layout->setSpacing(0);
1925   layout->addWidget( frame );
1926
1927   QHBoxLayout* frameLay = new QHBoxLayout( frame );
1928   frameLay->setMargin(0); frameLay->setSpacing(SPACING);
1929   
1930   myPreviewMode = new QtxComboBox( frame );
1931   frameLay->addWidget( myPreviewMode );
1932
1933   myPreviewBtn = new QPushButton( tr( "PREVIEW" ), frame );
1934   frameLay->addWidget( myPreviewBtn );
1935
1936   connect( myPreviewBtn, SIGNAL( clicked( bool ) ), this, SIGNAL( preview() ) );
1937 }
1938
1939 //================================================================================
1940 /*!
1941  * \brief Destructor
1942 */
1943 //================================================================================
1944
1945 SMESHGUI_PrecomputeDlg::~SMESHGUI_PrecomputeDlg()
1946 {
1947 }
1948
1949 //================================================================================
1950 /*!
1951  * \brief Sets available preview modes
1952 */
1953 //================================================================================
1954
1955 void SMESHGUI_PrecomputeDlg::setPreviewModes( const QList<int>& theModes )
1956 {
1957   myPreviewMode->clear();
1958   QList<int>::const_iterator it = theModes.constBegin();
1959   for ( int i = 0; it != theModes.constEnd(); ++it, i++ )
1960   {
1961     QString mode = QString( "PREVIEW_%1" ).arg( *it );
1962     myPreviewMode->addItem( tr( mode.toLatin1().data() ) );
1963     myPreviewMode->setId( i, *it );
1964   }
1965   myPreviewBtn->setEnabled( !theModes.isEmpty() );
1966 }
1967
1968 //================================================================================
1969 /*!
1970  * \brief Returns current preview mesh mode
1971 */
1972 //================================================================================
1973
1974 int SMESHGUI_PrecomputeDlg::getPreviewMode() const
1975 {
1976   return myPreviewMode->currentId();
1977 }
1978
1979 //================================================================================
1980 /*!
1981  * \brief Returns current preview mesh mode
1982 */
1983 //================================================================================
1984
1985 SMESHGUI_MeshOrderBox* SMESHGUI_PrecomputeDlg::getMeshOrderBox() const
1986 {
1987   return myOrderBox;
1988 }
1989
1990
1991 //================================================================================
1992 /*!
1993  * \brief Constructor
1994 */
1995 //================================================================================
1996
1997 SMESHGUI_EvaluateOp::SMESHGUI_EvaluateOp()
1998  : SMESHGUI_BaseComputeOp()
1999 {
2000 }
2001
2002
2003 //================================================================================
2004 /*!
2005  * \brief Desctructor
2006 */
2007 //================================================================================
2008
2009 SMESHGUI_EvaluateOp::~SMESHGUI_EvaluateOp()
2010 {
2011 }
2012
2013 //================================================================================
2014 /*!
2015  * \brief perform it's intention action: compute mesh
2016  */
2017 //================================================================================
2018
2019 void SMESHGUI_EvaluateOp::startOperation()
2020 {
2021   SMESHGUI_BaseComputeOp::evaluateDlg();
2022   SMESHGUI_BaseComputeOp::startOperation();
2023   if (myMesh->_is_nil())
2024     return;
2025   evaluateMesh();
2026 }
2027
2028 //================================================================================
2029 /*!
2030  * \brief Gets dialog of this operation
2031  * \retval LightApp_Dialog* - pointer to dialog of this operation
2032  */
2033 //================================================================================
2034
2035 LightApp_Dialog* SMESHGUI_EvaluateOp::dlg() const
2036 {
2037   return evaluateDlg();
2038 }
2039
2040 //================================================================================
2041 /*!
2042  * \brief evaluateMesh()
2043 */
2044 //================================================================================
2045
2046 void SMESHGUI_BaseComputeOp::evaluateMesh()
2047 {
2048   // EVALUATE MESH
2049
2050   SMESH::MemoryReserve aMemoryReserve;
2051
2052   SMESH::compute_error_array_var aCompErrors;
2053   QString                        aHypErrors;
2054
2055   bool evaluateFailed = true, memoryLack = false;
2056   SMESH::long_array_var aRes;
2057
2058   _PTR(SObject) aMeshSObj = SMESH::FindSObject(myMesh);
2059   if ( !aMeshSObj ) //  IPAL21340
2060     return;
2061
2062   bool hasShape = myMesh->HasShapeToMesh();
2063   bool shapeOK = myMainShape->_is_nil() ? !hasShape : hasShape;
2064   if ( shapeOK )
2065   {
2066     myCompDlg->myMeshName->setText( aMeshSObj->GetName().c_str() );
2067     SMESH::SMESH_Gen_var gen = getSMESHGUI()->GetSMESHGen();
2068     SMESH::algo_error_array_var errors = gen->GetAlgoState(myMesh,myMainShape);
2069     if ( errors->length() > 0 ) {
2070       aHypErrors = SMESH::GetMessageOnAlgoStateErrors( errors.in() );
2071     }
2072     SUIT_OverrideCursor aWaitCursor;
2073     try {
2074 #if (OCC_VERSION_MAJOR << 16 | OCC_VERSION_MINOR << 8 | OCC_VERSION_MAINTENANCE) > 0x060100
2075       OCC_CATCH_SIGNALS;
2076 #endif
2077       aRes = gen->Evaluate(myMesh, myMainShape);
2078     }
2079     catch(const SALOME::SALOME_Exception & S_ex){
2080       memoryLack = true;
2081     }
2082
2083     try {
2084 #if (OCC_VERSION_MAJOR << 16 | OCC_VERSION_MINOR << 8 | OCC_VERSION_MAINTENANCE) > 0x060100
2085       OCC_CATCH_SIGNALS;
2086 #endif
2087       aCompErrors = gen->GetComputeErrors( myMesh, myMainShape );
2088     }
2089     catch(const SALOME::SALOME_Exception & S_ex){
2090       memoryLack = true;
2091     }
2092   }
2093
2094   if ( memoryLack )
2095     aMemoryReserve.release();
2096
2097   evaluateFailed =  ( aCompErrors->length() > 0 );
2098   myCompDlg->setWindowTitle(tr( evaluateFailed ? "SMESH_WRN_EVALUATE_FAILED" : "SMESH_EVALUATE_SUCCEED"));
2099
2100   // SHOW ERRORS
2101   
2102   bool noCompError = ( !aCompErrors.operator->() || aCompErrors->length() == 0 );
2103   bool noHypoError = ( aHypErrors.isEmpty() );
2104
2105   //SUIT_ResourceMgr* resMgr = SMESH::GetResourceMgr( SMESHGUI::GetSMESHGUI() );
2106   //int aNotifyMode = resMgr->integerValue( "SMESH", "show_result_notification" );
2107
2108   bool isShowResultDlg = true;
2109   //if( noHypoError )
2110   //switch( aNotifyMode ) {
2111   //case 0: // show the mesh computation result dialog NEVER
2112   //isShowResultDlg = false;
2113   //commit();
2114   //break;
2115   //case 1: // show the mesh computation result dialog if there are some errors
2116   //if ( memoryLack || !noHypoError )
2117   //  isShowResultDlg = true;
2118   //else
2119   //{
2120   //  isShowResultDlg = false;
2121   //  commit();
2122   //}
2123   //break;
2124   //default: // show the result dialog after each mesh computation
2125   //isShowResultDlg = true;
2126   //}
2127
2128   // SHOW RESULTS
2129   if ( isShowResultDlg )
2130     showEvaluateResult( aRes, memoryLack, noCompError, aCompErrors,
2131                         noHypoError, aHypErrors);
2132 }
2133
2134
2135 void SMESHGUI_BaseComputeOp::showEvaluateResult(const SMESH::long_array& theRes,
2136                                                 const bool theMemoryLack,
2137                                                 const bool theNoCompError,
2138                                                 SMESH::compute_error_array_var& theCompErrors,
2139                                                 const bool theNoHypoError,
2140                                                 const QString& theHypErrors)
2141 {
2142   bool hasShape = myMesh->HasShapeToMesh();
2143   SMESHGUI_ComputeDlg* aCompDlg = evaluateDlg();
2144   aCompDlg->myMemoryLackGroup->hide();
2145
2146   if ( theMemoryLack )
2147   {
2148     aCompDlg->myMemoryLackGroup->show();
2149     aCompDlg->myFullInfo->hide();
2150     aCompDlg->myBriefInfo->hide();
2151     aCompDlg->myHypErrorGroup->hide();
2152     aCompDlg->myCompErrorGroup->hide();
2153   }
2154   else if ( theNoCompError && theNoHypoError )
2155   {
2156     aCompDlg->myFullInfo->SetMeshInfo( theRes );
2157     aCompDlg->myFullInfo->show();
2158     aCompDlg->myBriefInfo->hide();
2159     aCompDlg->myHypErrorGroup->hide();
2160     aCompDlg->myCompErrorGroup->hide();
2161   }
2162   else
2163   {
2164     QTableWidget* tbl = aCompDlg->myTable;
2165     aCompDlg->myBriefInfo->SetMeshInfo( theRes );
2166     aCompDlg->myBriefInfo->show();
2167     aCompDlg->myFullInfo->hide();
2168
2169     if ( theNoHypoError ) {
2170       aCompDlg->myHypErrorGroup->hide();
2171     }
2172     else {
2173       aCompDlg->myHypErrorGroup->show();
2174       aCompDlg->myHypErrorLabel->setText( theHypErrors );
2175     }
2176
2177     if ( theNoCompError ) {
2178       aCompDlg->myCompErrorGroup->hide();
2179     }
2180     else {
2181       aCompDlg->myCompErrorGroup->show();
2182
2183       aCompDlg->myPublishBtn->hide();
2184       aCompDlg->myShowBtn->hide();
2185
2186       // fill table of errors
2187       tbl->setRowCount( theCompErrors->length() );
2188       if ( !hasShape ) tbl->hideColumn( COL_SHAPE );
2189       else             tbl->showColumn( COL_SHAPE );
2190       tbl->setColumnWidth( COL_ERROR, 200 );
2191
2192       bool hasBadMesh = false;
2193       for ( int row = 0; row < theCompErrors->length(); ++row )
2194       {
2195         SMESH::ComputeError & err = theCompErrors[ row ];
2196
2197         QString text = err.algoName.in();
2198         if ( !tbl->item( row, COL_ALGO ) ) tbl->setItem( row, COL_ALGO, new QTableWidgetItem( text ) );
2199         else tbl->item( row, COL_ALGO )->setText( text );
2200
2201         text = SMESH::errorText( err.code, err.comment.in() );
2202         if ( !tbl->item( row, COL_ERROR ) ) tbl->setItem( row, COL_ERROR, new QTableWidgetItem( text ) );
2203         else tbl->item( row, COL_ERROR )->setText( text );
2204
2205         text = QString("%1").arg( err.subShapeID );
2206         if ( !tbl->item( row, COL_SHAPEID ) ) tbl->setItem( row, COL_SHAPEID, new QTableWidgetItem( text ) );
2207         else tbl->item( row, COL_SHAPEID )->setText( text );
2208
2209         text = hasShape ? SMESH::shapeText( err.subShapeID, myMainShape ) : QString("");
2210         if ( !tbl->item( row, COL_SHAPE ) ) tbl->setItem( row, COL_SHAPE, new QTableWidgetItem( text ) );
2211         else tbl->item( row, COL_SHAPE )->setText( text );
2212
2213         text = ( !hasShape || SMESH::getSubShapeSO( err.subShapeID, myMainShape )) ? "PUBLISHED" : "";
2214         if ( !tbl->item( row, COL_PUBLISHED ) ) tbl->setItem( row, COL_PUBLISHED, new QTableWidgetItem( text ) );
2215         else tbl->item( row, COL_PUBLISHED )->setText( text ); // if text=="", "PUBLISH" button enabled
2216
2217         text = err.hasBadMesh ? "hasBadMesh" : "";
2218         if ( !tbl->item( row, COL_BAD_MESH ) ) tbl->setItem( row, COL_BAD_MESH, new QTableWidgetItem( text ) );
2219         else tbl->item( row, COL_BAD_MESH )->setText( text );
2220         if ( err.hasBadMesh ) hasBadMesh = true;
2221
2222         //tbl->item( row, COL_ERROR )->setWordWrap( true ); // VSR: TODO ???
2223         tbl->resizeRowToContents( row );
2224       }
2225       tbl->resizeColumnToContents( COL_ALGO );
2226       tbl->resizeColumnToContents( COL_SHAPE );
2227       tbl->setWordWrap( true );
2228
2229       if ( hasBadMesh )
2230       {
2231         aCompDlg->myBadMeshBtn->show();
2232         aCompDlg->myBadMeshToGroupBtn->show();
2233       }
2234       else
2235       {
2236         aCompDlg->myBadMeshBtn->hide();
2237         aCompDlg->myBadMeshToGroupBtn->hide();
2238       }
2239       tbl->setCurrentCell(0,0);
2240       currentCellChanged(); // to update buttons
2241     }
2242   }
2243   // show dialog and wait, becase Compute can be invoked from Preview operation
2244   //aCompDlg->exec(); // this way it becomes modal - impossible to rotate model in the Viewer
2245   aCompDlg->show();
2246 }
2247
2248
2249 //================================================================================
2250 /*!
2251  * \brief Gets dialog of evaluate operation
2252  * \retval SMESHGUI_ComputeDlg* - pointer to dialog of this operation
2253  */
2254 //================================================================================
2255
2256 SMESHGUI_ComputeDlg* SMESHGUI_BaseComputeOp::evaluateDlg() const
2257 {
2258   if ( !myCompDlg )
2259   {
2260     SMESHGUI_BaseComputeOp* me = (SMESHGUI_BaseComputeOp*)this;
2261     me->myCompDlg = new SMESHGUI_ComputeDlg( desktop(), true );
2262     // connect signals and slots
2263     connect(myCompDlg->myShowBtn,    SIGNAL (clicked()), SLOT(onPreviewShape()));
2264     connect(myCompDlg->myPublishBtn, SIGNAL (clicked()), SLOT(onPublishShape()));
2265     connect(myCompDlg->myBadMeshBtn, SIGNAL (clicked()), SLOT(onShowBadMesh()));
2266     QTableWidget* aTable = me->table();
2267     connect(aTable, SIGNAL(itemSelectionChanged()), SLOT(currentCellChanged()));
2268     connect(aTable, SIGNAL(currentCellChanged(int,int,int,int)), SLOT(currentCellChanged()));
2269   }
2270   return myCompDlg;
2271 }
2272