Salome HOME
for MG-adapt TUI
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_MG_ADAPTDRIVER.cxx
1 // Copyright (C) 2007-2020  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  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, or (at your option) any later version.
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 // File : SMESHGUI_MG_ADAPTDRIVER.cxx
23
24 #include "SMESHGUI_MG_ADAPTDRIVER.h"
25
26 #include "SUIT_Desktop.h"
27 #include "SUIT_Application.h"
28 #include "SUIT_Session.h"
29
30 #include "SalomeApp_Application.h"
31 #include "SalomeApp_Module.h"
32 #include "SalomeApp_Study.h"
33
34 #include "SMESH_Comment.hxx"
35 #include "SMESH_Actor.h"
36 #include "SMESHGUI.h"
37 #include "SMESHGUI_FilterDlg.h"
38 #include "SMESHGUI_Selection.h"
39 #include <SUIT_MessageBox.h>
40 #include "SMESHGUI_IdValidator.h"
41 #include "SMESHGUI_Utils.h"
42 #include "SMESHGUI_MeshEditPreview.h"
43 #include "SMESHGUI_VTKUtils.h"
44 #include <SMESH_TypeFilter.hxx>
45 #include <SMESH_MeshAlgos.hxx>
46 #include <SMESH_LogicalFilter.hxx>
47 #include <SMDS_Mesh.hxx>
48 #include <SMDS_MeshNode.hxx>
49 #include "SMESHGUI_SpinBox.h"
50
51 #include <LightApp_SelectionMgr.h>
52 #include <SUIT_OverrideCursor.h>
53 #include <SUIT_ResourceMgr.h>
54 #include <SVTK_ViewWindow.h>
55 #include <SALOME_ListIO.hxx>
56 #include <SUIT_FileDlg.h>
57 #include "SMESHGUI_MeshUtils.h"
58
59
60 #include <QApplication>
61 #include <QButtonGroup>
62 #include <QGridLayout>
63 #include <QGroupBox>
64 #include <QHBoxLayout>
65 #include <QKeyEvent>
66 #include <QLabel>
67 #include <QLineEdit>
68 #include <QCheckBox>
69 #include <QPushButton>
70 #include <QRadioButton>
71 #include <QTabWidget>
72 #include <QVBoxLayout>
73 #include <QDoubleSpinBox>
74 #include <QSpinBox>
75 #include <QTreeWidget>
76 #include <QTreeWidgetItem>
77 #include <QSpacerItem>
78 #include <QString>
79 #include <QHeaderView>
80 #include <QItemDelegate>
81 #include <QFileDialog>
82 #include <QMessageBox>
83 #include <QComboBox>
84
85 #include <vtkPoints.h>
86 #include <vtkUnstructuredGrid.h>
87 #include <vtkIdList.h>
88 #include <vtkCellArray.h>
89 #include <vtkUnsignedCharArray.h>
90 #include <vtkDataSetMapper.h>
91 #include <VTKViewer_CellLocationsArray.h>
92 #include <vtkProperty.h>
93
94 #include <ElCLib.hxx>
95 // SALOME KERNEL includes
96 #include <SALOMEDS_SComponent.hxx>
97 #include <SALOMEDS_SObject.hxx>
98 #include <SALOMEDS_Study.hxx>
99 #include <SALOMEDS_wrap.hxx>
100 #include "SalomeApp_Tools.h"
101 #include <SALOMEconfig.h>
102 #include <med.h>
103 #include <utilities.h>
104
105 #include <TCollection_AsciiString.hxx>
106
107 const int SPACING = 6;            // layout spacing
108 const int MARGIN  = 9;            // layout margin
109
110 SALOME_ListIO mySelected;
111
112
113 //================================================================
114 // Function : firstIObject
115 // Purpose  :  Return the first selected object in the selected object list
116 //================================================================
117 Handle(SALOME_InteractiveObject) firstIObject()
118 {
119     const SALOME_ListIO& aList = selectedIO();
120     return aList.Extent() > 0 ? aList.First() : Handle(SALOME_InteractiveObject)();
121 }
122 //================================================================
123 // Function : selectedIO
124 // Return the list of selected SALOME_InteractiveObject's
125 //================================================================
126 const SALOME_ListIO& selectedIO()
127 {
128     SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* > ( SUIT_Session::session()->activeApplication() );
129     LightApp_SelectionMgr* aSelectionMgr = app->selectionMgr();
130     if( aSelectionMgr )
131     {
132         aSelectionMgr->selectedObjects( mySelected );
133         for (SALOME_ListIteratorOfListIO it (mySelected); it.More(); it.Next())
134             SCRUTE(it.Value()->getEntry());
135     };
136     return mySelected;
137 }
138 //================================================================
139 // Function : getStudy
140 // Returne un pointeur sur l'etude active
141 //================================================================
142 _PTR(Study) getStudy()
143 {
144     static _PTR(Study) _study;
145     if(!_study)
146         _study = SalomeApp_Application::getStudy();
147     return _study;
148 }
149
150 bool createAndPublishMed(QString fileName)
151 {
152
153     SMESH::DriverMED_ReadStatus res;
154     SMESH::mesh_array_var aMeshes = new SMESH::mesh_array;
155     // SMESHGUI aGui;
156
157     aMeshes = SMESHGUI::GetSMESHGen()->CreateMeshesFromMED( fileName.toUtf8().constData(), res );
158     _PTR(SObject) aMeshSO = SMESH::FindSObject( aMeshes[0] );
159     _PTR(Study) aStudy = SMESH::getStudy();
160     QStringList anEntryList;
161     // bool isEmpty;
162     if ( aMeshSO ) {
163         _PTR(StudyBuilder) aBuilder = aStudy->NewBuilder();
164         _PTR(AttributePixMap) aPixmap = aBuilder->FindOrCreateAttribute( aMeshSO, "AttributePixMap" );
165         aPixmap->SetPixMap( "ICON_SMESH_TREE_MESH_IMPORTED" );
166         anEntryList.append( aMeshSO->GetID().c_str() );
167     }
168     else {
169         // isEmpty = true;
170         return false;
171     }
172     SMESHGUI::GetSMESHGUI()->updateObjBrowser();
173
174     // browse to the published meshes
175     if( LightApp_Application* anApp =
176                 dynamic_cast<LightApp_Application*>( SUIT_Session::session()->activeApplication() ) )
177         anApp->browseObjects( anEntryList );
178     return true;
179 }
180 bool createMgAdaptObject(MgAdapt *myMgAdapt )
181 {
182     // SMESH::SMESH_Mesh_var newMesh = SMESHGUI::GetSMESHGen()->CreateEmptyMesh();
183
184     // _PTR(SObject) aHypothesis;
185     _PTR(Study) aStudy = SMESH::getStudy();
186     QStringList anEntryList;
187     _PTR(StudyBuilder) aBuilder = aStudy->NewBuilder();
188     _PTR(SComponent) mgadapt = aStudy->FindComponent("MG-ADAPT");
189     _PTR(GenericAttribute) ga;
190     if (!aBuilder->FindAttribute(mgadapt, ga, "AttributeName") )
191     {
192         mgadapt = aBuilder->NewComponent("MG-ADAPT");
193         _PTR(AttributeName) Name = aBuilder->FindOrCreateAttribute(mgadapt, "AttributeName");
194         Name->SetValue("MG-ADAPT");
195         _PTR(AttributePixMap) myPixmap = aBuilder->FindOrCreateAttribute( mgadapt, "AttributePixMap" );
196         myPixmap->SetPixMap( "ICON_MG_ADAPT" );
197         anEntryList.append( mgadapt->GetID().c_str() );
198     }
199
200     _PTR(SObject) obj =  aBuilder->NewObject(mgadapt);
201     _PTR(AttributeName) myName = aBuilder->FindOrCreateAttribute(obj, "AttributeName");
202     myName->SetValue("hypo");
203     _PTR(AttributePixMap) aPixmap = aBuilder->FindOrCreateAttribute( obj, "AttributePixMap" );
204     aPixmap->SetPixMap( "ICON_SMESH_TREE_HYPO" );
205     anEntryList.append( obj->GetID().c_str() );
206
207     SMESHGUI::GetSMESHGUI()->updateObjBrowser();
208
209     // // browse to the published meshes
210     if( LightApp_Application* anApp =
211                 dynamic_cast<LightApp_Application*>( SUIT_Session::session()->activeApplication() ) )
212         anApp->browseObjects( anEntryList );
213     return true;
214 }
215
216
217 // MG ADAPT UTILS
218 //================================================================
219 // Function : IObjectCount
220 // Return the number of selected objects
221 //================================================================
222 int IObjectCount()
223 {
224     SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
225     LightApp_SelectionMgr* aSelectionMgr = app->selectionMgr();
226     if( aSelectionMgr )
227     {
228         aSelectionMgr->selectedObjects( mySelected );
229         SCRUTE(mySelected.Extent());
230         return mySelected.Extent();
231     }
232     return 0;
233 }
234
235
236
237 SMESHGUI_MG_ADAPTDRIVER::SMESHGUI_MG_ADAPTDRIVER( SMESHGUI* theModule, SMESH::MG_ADAPT_ptr myModel, bool isCreation )
238     : mySMESHGUI( theModule ),
239       myFilterDlg(0),
240       myIsApplyAndClose( false ),
241       SMESHGUI_MgAdaptDlg((SalomeApp_Module*)theModule, myModel, SMESHGUI::desktop(), isCreation)
242 {
243
244     resMgr = resourceMgr();
245
246     selMgr = selectionMgr();
247
248     // connections
249     connect(myArgs, SIGNAL(updateSelection()), this, SLOT(updateSelection()));
250     connect(myArgs, SIGNAL(toExportMED(const char*)), this, SLOT(exportMED(const char*)));
251 }
252
253 SUIT_ResourceMgr* SMESHGUI_MG_ADAPTDRIVER::resourceMgr()
254 {
255     return dynamic_cast<SUIT_ResourceMgr*>( SUIT_Session::session()->resourceMgr() );
256 }
257
258 LightApp_SelectionMgr* SMESHGUI_MG_ADAPTDRIVER::selectionMgr()
259 {
260     SalomeApp_Application* anApp = dynamic_cast<SalomeApp_Application*>( SUIT_Session::session()->activeApplication() );
261     if( anApp )
262         return dynamic_cast<LightApp_SelectionMgr*>( anApp->selectionMgr() );
263     else
264         return 0;
265 }
266
267 void SMESHGUI_MG_ADAPTDRIVER::updateSelection()
268 {
269     disconnect( selMgr, 0, this, 0 );
270     selMgr->clearFilters();
271
272     SMESH::SetPointRepresentation( true );
273     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow() )
274         aViewWindow->SetSelectionMode( ActorSelection );
275     if (myArgs->aBrowser->isChecked())
276     {
277         connect( selMgr,  SIGNAL( currentSelectionChanged() ), this, SLOT( selectionChanged() ));
278         selectionChanged();
279     }
280
281 }
282 void SMESHGUI_MG_ADAPTDRIVER::selectionChanged()
283 {
284     //~ get selected mesh
285     SALOME_ListIO aList;
286     selMgr->selectedObjects(aList);
287     QString aString = "";
288     int nbSel = aList.Extent();
289     if (nbSel != 1)
290         return;
291
292     Handle(SALOME_InteractiveObject) IO = aList.First();
293     SMESH::SMESH_Mesh_var mesh = SMESH::GetMeshByIO(IO);
294     if ( !mesh->_is_nil() )
295     {
296         myMesh  = mesh;
297
298         mySelectedObject = SMESH::IObjectToInterface<SMESH::SMESH_IDSource>( IO );
299         if ( mySelectedObject->_is_nil() )
300             return;
301
302     }
303     else
304         return;
305
306     SMESH::GetNameOfSelectedIObjects( selMgr, aString );
307     if ( aString.isEmpty() ) aString = " ";
308     else                     aString = aString.trimmed();
309
310
311     bool ok = !aString.isEmpty();
312     if ( !mesh->_is_nil() )
313     {
314         myArgs->aBrowserObject->setText( aString );
315         myArgs->meshNameLineEdit->setText( aString );
316         myArgs->selectOutMedFileLineEdit->setText(aString+QString(".med"));
317         ADAPTATION_MODE aMode;
318         int nbVolumes = myMesh->NbVolumes();
319         int nbFaces = myMesh->NbFaces();
320         if(nbFaces > 0 && nbVolumes > 0) aMode = ADAPTATION_MODE::BOTH;
321         else if(nbFaces > 0) aMode = ADAPTATION_MODE::SURFACE;
322         else aMode = ADAPTATION_MODE::VOLUME;
323         emit myArgs->meshDimSignal(aMode);
324     }
325
326 }
327 void SMESHGUI_MG_ADAPTDRIVER::exportMED(const char* tmp_file)
328 {
329     bool toOverwrite  = true;
330     bool toFindOutDim = true;
331     myMesh->ExportMED(tmp_file, false, -1, toOverwrite, toFindOutDim);
332 }
333 void SMESHGUI_MG_ADAPTDRIVER::setMyMesh(SMESH::SMESH_Mesh_var mesh)
334 {
335     myMesh = mesh;
336 }
337 SMESH::SMESH_Mesh_var SMESHGUI_MG_ADAPTDRIVER::getMyMesh()
338 {
339     return myMesh;
340 }
341
342 //=================================================================================
343 // function : ClickOnOk()
344 // purpose  :
345 //=================================================================================
346 void SMESHGUI_MG_ADAPTDRIVER::clickOnOk()
347 {
348     setIsApplyAndClose( true );
349     clickOnApply();
350     reject();
351 }
352 bool SMESHGUI_MG_ADAPTDRIVER::clickOnApply()
353 {
354
355     if ( SMESHGUI::isStudyLocked() )
356         return false;
357     if( !isValid() )
358         return false;
359
360     SMESHGUI_MgAdaptDlg::clickOnApply();
361
362     bool ok = execute();
363     //~SMESHGUI_MG_AdaptComputeDlg_QThread atest(getModel());
364     //~atest.start();
365     //~atest.quit();
366     if (getModel()->getPublish()) this->createMeshInObjectBrowser();
367
368     return ok;
369 }
370
371 bool SMESHGUI_MG_ADAPTDRIVER::execute()
372 {
373
374     int err;
375     //~std::string errStr;
376     char* errStr;
377     try
378     {
379         err = getModel()->compute();
380         errStr = getModel()->getErrMsg();
381         std::string msg =  err == 0 ? " ok" : std::string("Not ok \n")+CORBA::string_dup(errStr) ;
382     }
383     catch (const std::exception& e)
384     {
385         std::cerr<<e.what();
386     }
387     return err == 0? true: false;
388 }
389
390 //=================================================================================
391 // function : Init()
392 // purpose  :
393 //=================================================================================
394 void SMESHGUI_MG_ADAPTDRIVER::Init (bool ResetControls)
395 {
396     myBusy = false;
397
398     if ( ResetControls )
399     {
400         myLineEditElements->clear();
401         myNbOkElements = 0;
402
403         buttonOk->setEnabled(false);
404         buttonApply->setEnabled(false);
405
406         //~myActor = 0;
407         myMesh = SMESH::SMESH_Mesh::_nil();
408
409         myIdSourceCheck->setChecked(true);
410
411         onConstructor( 0 );
412     }
413
414 }
415
416 //=======================================================================
417 //function : onConstructor
418 //purpose  : switch operation mode
419 //=======================================================================
420
421 void SMESHGUI_MG_ADAPTDRIVER::onConstructor( int withGeom )
422 {
423
424     myGeomLabel        ->setVisible( withGeom );
425     myGeomNameEdit     ->setVisible( withGeom );
426     myReuseHypCheck    ->setVisible( withGeom );
427     myCopyElementsCheck->setVisible( withGeom );
428     myFilterBtn        ->setVisible( !withGeom );
429     myIdSourceCheck    ->setVisible( !withGeom );
430
431     if ( !withGeom )
432         myMeshNameEdit->setText( SMESH::UniqueMeshName("Mesh"));
433
434 }
435
436
437 //~void SMESHGUI_MG_ADAPTDRIVER::onSelectIdSource( bool )
438 //~{}
439
440
441 //=================================================================================
442 // function : enterEvent()
443 // purpose  :
444 //=================================================================================
445 void SMESHGUI_MG_ADAPTDRIVER::enterEvent (QEvent*)
446 {
447
448     // if ( !ConstructorsBox->isEnabled() ) {
449     //   SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI );
450     //   if ( aViewWindow && !mySelector ) {
451     //     mySelector = aViewWindow->GetSelector();
452     //   }
453     //   activateThisDialog();
454     // }
455
456 }
457
458 //=================================================================================
459 // function : keyPressEvent()
460 // purpose  :
461 //=================================================================================
462 void SMESHGUI_MG_ADAPTDRIVER::keyPressEvent( QKeyEvent* e )
463 {
464
465     QDialog::keyPressEvent( e );
466     if ( e->isAccepted() )
467         return;
468
469     if ( e->key() == Qt::Key_F1 ) {
470         e->accept();
471         clickOnHelp();
472     }
473
474 }
475
476 //=================================================================================
477 // function : clickOnHelp()
478 // purpose  :
479 //=================================================================================
480 void SMESHGUI_MG_ADAPTDRIVER::clickOnHelp()
481 {
482
483     LightApp_Application* app = (LightApp_Application*)(SUIT_Session::session()->activeApplication());
484     if (app)
485         app->onHelpContextModule(mySMESHGUI ? app->moduleName(mySMESHGUI->moduleName()) : QString(""), myHelpFileName);
486     else {
487         QString platform;
488 #ifdef WIN32
489         platform = "winapplication";
490 #else
491         platform = "application";
492 #endif
493         SUIT_MessageBox::warning(this, tr("WRN_WARNING"),
494                                  tr("EXTERNAL_BROWSER_CANNOT_SHOW_PAGE").
495                                  arg(app->resourceMgr()->stringValue("ExternalBrowser",
496                                          platform)).
497                                  arg(myHelpFileName));
498     }
499
500 }
501
502 //=======================================================================
503 //function : getErrorMsg
504 //purpose  : Return an error message and entries of invalid smesh object
505 //=======================================================================
506
507 QString SMESHGUI_MG_ADAPTDRIVER::getErrorMsg( SMESH::string_array_var theInvalidEntries,
508         QStringList &           theEntriesToBrowse )
509 {
510
511     if ( theInvalidEntries->length() == 0 )
512         return tr("OPERATION_FAILED");
513
514     // theInvalidEntries - SObject's that hold geometry objects whose
515     // counterparts are not found in the newGeometry, followed by SObject's
516     // holding mesh sub-objects that are invalid because they depend on a not found
517     // preceding sub-shape
518
519     QString msg = tr("SUBSHAPES_NOT_FOUND_MSG") + "\n";
520
521     QString objString;
522     for ( CORBA::ULong i = 0; i < theInvalidEntries->length(); ++i )
523     {
524         _PTR(SObject) so = SMESH::getStudy()->FindObjectID( theInvalidEntries[i].in() );
525
526         int objType = SMESHGUI_Selection::type( theInvalidEntries[i].in() );
527         if ( objType < 0 ) // geom object
528         {
529             objString += "\n";
530             if ( so )
531                 objString += so->GetName().c_str();
532             else
533                 objString += theInvalidEntries[i].in(); // it's something like "FACE #2"
534         }
535         else // smesh object
536         {
537             theEntriesToBrowse.push_back( theInvalidEntries[i].in() );
538
539             objString += "\n   ";
540             switch ( objType ) {
541             case SMESH::MESH:
542                 objString += tr("SMESH_MESH");
543                 break;
544             case SMESH::HYPOTHESIS:
545                 objString += tr("SMESH_HYPOTHESIS");
546                 break;
547             case SMESH::ALGORITHM:
548                 objString += tr("SMESH_ALGORITHM");
549                 break;
550             case SMESH::SUBMESH_VERTEX:
551             case SMESH::SUBMESH_EDGE:
552             case SMESH::SUBMESH_FACE:
553             case SMESH::SUBMESH_SOLID:
554             case SMESH::SUBMESH_COMPOUND:
555             case SMESH::SUBMESH:
556                 objString += tr("SMESH_SUBMESH");
557                 break;
558             case SMESH::GROUP:
559                 objString += tr("SMESH_GROUP");
560                 break;
561             default:
562                 ;
563             }
564             objString += " \"";
565             if ( so )
566                 objString += so->GetName().c_str();
567             objString += "\" (";
568             objString += theInvalidEntries[i].in();
569             objString += ")";
570         }
571     }
572     if ( !objString.isEmpty() )
573         msg += objString;
574
575     return msg;
576 }
577
578 //=================================================================================
579 // function : isValid
580 // purpose  :
581 //=================================================================================
582
583 bool SMESHGUI_MG_ADAPTDRIVER::isValid()
584 {
585     bool ok = true;
586     return ok;
587 }
588
589 bool SMESHGUI_MG_ADAPTDRIVER::createMeshInObjectBrowser()
590 {
591     QString filename(getModel()->getMedFileOut());
592     QStringList errors;
593     QStringList anEntryList;
594     bool isEmpty = false;
595     bool ok = false;
596     SMESH::SMESH_Gen_var SMESH_Gen_ptr = SMESHGUI::GetSMESHGen();
597     if (!SMESH_Gen_ptr) {
598         std::cerr << "Could not retrieve SMESH_Gen_ptr" << std::endl;
599         throw SALOME_Exception(LOCALIZED("Could not retrieve SMESH::GetSMESHGen()"));
600     }
601     SMESH::mesh_array_var aMeshes = new SMESH::mesh_array;
602     aMeshes->length( 1 ); // one mesh only
603     SMESH::DriverMED_ReadStatus res;
604     aMeshes = SMESH_Gen_ptr->CreateMeshesFromMED( filename.toUtf8().constData(), res );
605     if ( res != SMESH::DRS_OK ) {
606         errors.append( QString( "%1 :\n\t%2" ).arg( filename ).arg( QObject::tr( QString( "SMESH_DRS_%1" ).arg( res ).toLatin1().data() ) ) );
607     }
608     _PTR(Study) aStudy = SMESH::getStudy();
609     for ( int i = 0, iEnd = aMeshes->length(); i < iEnd; i++ )
610     {
611         _PTR(SObject) aMeshSO = SMESH::FindSObject( aMeshes[i] );
612         if ( aMeshSO ) {
613             _PTR(StudyBuilder) aBuilder = aStudy->NewBuilder();
614             _PTR(AttributePixMap) aPixmap = aBuilder->FindOrCreateAttribute( aMeshSO, "AttributePixMap" );
615             aPixmap->SetPixMap( "ICON_SMESH_TREE_MESH_IMPORTED" ); // put REFINED mesh ico
616             anEntryList.append( aMeshSO->GetID().c_str() );
617         }
618         else {
619             isEmpty = true;
620         }
621     }
622     // update Object browser
623     SMESHGUI::GetSMESHGUI()->updateObjBrowser();
624     // browse to the published meshes
625     if( LightApp_Application* anApp =
626                 dynamic_cast<LightApp_Application*>( SUIT_Session::session()->activeApplication() ) )
627         anApp->browseObjects( anEntryList );
628
629     // show Error message box if there were errors
630     if ( errors.count() > 0 ) {
631         SUIT_MessageBox::critical( SMESHGUI::desktop(),
632                                    QObject::tr( "SMESH_ERROR" ),
633                                    QObject::tr( "SMESH_IMPORT_ERRORS" ) + "\n" + errors.join( "\n" ) );
634     }
635
636     // show warning message box, if some imported mesh is empty
637     if ( isEmpty ) {
638         SUIT_MessageBox::warning( SMESHGUI::desktop(),
639                                   QObject::tr( "SMESH_WRN_WARNING" ),
640                                   QObject::tr( "SMESH_DRS_SOME_EMPTY" ) );
641     }
642     return true;
643 }
644
645 //================================================================
646 // function : setIsApplyAndClose
647 // Purpose  : Set value of the flag indicating that the dialog is
648 //            accepted by Apply & Close button
649 //================================================================
650 void SMESHGUI_MG_ADAPTDRIVER::setIsApplyAndClose( const bool theFlag )
651 {
652     myIsApplyAndClose = theFlag;
653 }//================================================================
654 // function : isApplyAndClose
655 // Purpose  : Get value of the flag indicating that the dialog is
656 //            accepted by Apply & Close button
657 //================================================================
658 bool SMESHGUI_MG_ADAPTDRIVER::isApplyAndClose() const
659 {
660     return myIsApplyAndClose;
661 }
662
663 //=================================================================================
664 // function : DeactivateActiveDialog()
665 // purpose  :
666 //=================================================================================
667 void SMESHGUI_MG_ADAPTDRIVER::deactivateActiveDialog()
668 {
669
670     if (ConstructorsBox->isEnabled()) {
671         ConstructorsBox->setEnabled(false);
672         GroupArguments->setEnabled(false);
673         GroupButtons->setEnabled(false);
674         mySMESHGUI->ResetState();
675         mySMESHGUI->SetActiveDialogBox(0);
676         if ( selMgr )
677             selMgr->removeFilter( myIdSourceFilter );
678     }
679 }
680
681 //=================================================================================
682 // function : ActivateThisDialog()
683 // purpose  :
684 //=================================================================================
685 void SMESHGUI_MG_ADAPTDRIVER::activateThisDialog()
686 {
687
688     /* Emit a signal to deactivate the active dialog */
689     // mySMESHGUI->EmitSignalDeactivateDialog();
690     // ConstructorsBox->setEnabled(true);
691     // GroupArguments->setEnabled(true);
692     // GroupButtons->setEnabled(true);
693
694     // mySMESHGUI->SetActiveDialogBox((QDialog*)this);
695
696     // onSelectIdSource( myIdSourceCheck->isChecked() );
697
698     // SelectionIntoArgument();
699 }
700
701 //=================================================================================
702 // function : setFilters()
703 // purpose  : SLOT. Called when "Filter" button pressed.
704 //=================================================================================
705 void SMESHGUI_MG_ADAPTDRIVER::setFilters()
706 {
707     if(myMesh->_is_nil()) {
708         SUIT_MessageBox::critical(this,
709                                   tr("SMESH_ERROR"),
710                                   tr("NO_MESH_SELECTED"));
711         return;
712     }
713     if ( !myFilterDlg )
714         myFilterDlg = new SMESHGUI_FilterDlg( mySMESHGUI, SMESH::ALL );
715
716     QList<int> types;
717     if ( myMesh->NbEdges()     ) types << SMESH::EDGE;
718     if ( myMesh->NbFaces()     ) types << SMESH::FACE;
719     if ( myMesh->NbVolumes()   ) types << SMESH::VOLUME;
720     if ( myMesh->NbBalls()     ) types << SMESH::BALL;
721     if ( myMesh->Nb0DElements()) types << SMESH::ELEM0D;
722     if ( types.count() > 1 )     types << SMESH::ALL;
723
724     myFilterDlg->Init( types );
725     myFilterDlg->SetSelection();
726     myFilterDlg->SetMesh( myMesh );
727     myFilterDlg->SetSourceWg( myLineEditElements );
728
729     myFilterDlg->show();
730 }
731
732 //=================================================================================
733 // function : onOpenView()
734 // purpose  :
735 //=================================================================================
736 void SMESHGUI_MG_ADAPTDRIVER::onOpenView()
737 {
738     if ( mySelector ) {
739         SMESH::SetPointRepresentation(false);
740     }
741     else {
742         mySelector = SMESH::GetViewWindow( mySMESHGUI )->GetSelector();
743         activateThisDialog();
744     }
745 }
746
747 //=================================================================================
748 // function : onCloseView()
749 // purpose  :
750 //=================================================================================
751 void SMESHGUI_MG_ADAPTDRIVER::onCloseView()
752 {
753     deactivateActiveDialog();
754     mySelector = 0;
755 }