Salome HOME
Ménage avant intégration
[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     if (getModel()->getPublish()) this->createMeshInObjectBrowser();
364
365     return ok;
366 }
367
368 bool SMESHGUI_MG_ADAPTDRIVER::execute()
369 {
370
371     int err;
372     //~std::string errStr;
373     char* errStr;
374     try
375     {
376         err = getModel()->compute();
377         errStr = getModel()->getErrMsg();
378         std::string msg =  err == 0 ? " ok" : std::string("Not ok \n")+CORBA::string_dup(errStr) ;
379     }
380     catch (const std::exception& e)
381     {
382         std::cerr<<e.what();
383     }
384     return err == 0? true: false;
385 }
386
387 //=================================================================================
388 // function : Init()
389 // purpose  :
390 //=================================================================================
391 void SMESHGUI_MG_ADAPTDRIVER::Init (bool ResetControls)
392 {
393     myBusy = false;
394
395     if ( ResetControls )
396     {
397         myLineEditElements->clear();
398         myNbOkElements = 0;
399
400         buttonOk->setEnabled(false);
401         buttonApply->setEnabled(false);
402
403         //~myActor = 0;
404         myMesh = SMESH::SMESH_Mesh::_nil();
405
406         myIdSourceCheck->setChecked(true);
407
408         onConstructor( 0 );
409     }
410
411 }
412
413 //=======================================================================
414 //function : onConstructor
415 //purpose  : switch operation mode
416 //=======================================================================
417
418 void SMESHGUI_MG_ADAPTDRIVER::onConstructor( int withGeom )
419 {
420
421     myGeomLabel        ->setVisible( withGeom );
422     myGeomNameEdit     ->setVisible( withGeom );
423     myReuseHypCheck    ->setVisible( withGeom );
424     myCopyElementsCheck->setVisible( withGeom );
425     myFilterBtn        ->setVisible( !withGeom );
426     myIdSourceCheck    ->setVisible( !withGeom );
427
428     if ( !withGeom )
429         myMeshNameEdit->setText( SMESH::UniqueMeshName("Mesh"));
430
431 }
432
433
434 //~void SMESHGUI_MG_ADAPTDRIVER::onSelectIdSource( bool )
435 //~{}
436
437
438 //=================================================================================
439 // function : enterEvent()
440 // purpose  :
441 //=================================================================================
442 void SMESHGUI_MG_ADAPTDRIVER::enterEvent (QEvent*)
443 {
444
445     // if ( !ConstructorsBox->isEnabled() ) {
446     //   SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI );
447     //   if ( aViewWindow && !mySelector ) {
448     //     mySelector = aViewWindow->GetSelector();
449     //   }
450     //   activateThisDialog();
451     // }
452
453 }
454
455 //=================================================================================
456 // function : keyPressEvent()
457 // purpose  :
458 //=================================================================================
459 void SMESHGUI_MG_ADAPTDRIVER::keyPressEvent( QKeyEvent* e )
460 {
461
462     QDialog::keyPressEvent( e );
463     if ( e->isAccepted() )
464         return;
465
466     if ( e->key() == Qt::Key_F1 ) {
467         e->accept();
468         clickOnHelp();
469     }
470
471 }
472
473 //=================================================================================
474 // function : clickOnHelp()
475 // purpose  :
476 //=================================================================================
477 void SMESHGUI_MG_ADAPTDRIVER::clickOnHelp()
478 {
479
480     LightApp_Application* app = (LightApp_Application*)(SUIT_Session::session()->activeApplication());
481     if (app)
482         app->onHelpContextModule(mySMESHGUI ? app->moduleName(mySMESHGUI->moduleName()) : QString(""), myHelpFileName);
483     else {
484         QString platform;
485 #ifdef WIN32
486         platform = "winapplication";
487 #else
488         platform = "application";
489 #endif
490         SUIT_MessageBox::warning(this, tr("WRN_WARNING"),
491                                  tr("EXTERNAL_BROWSER_CANNOT_SHOW_PAGE").
492                                  arg(app->resourceMgr()->stringValue("ExternalBrowser",
493                                          platform)).
494                                  arg(myHelpFileName));
495     }
496
497 }
498
499 //=======================================================================
500 //function : getErrorMsg
501 //purpose  : Return an error message and entries of invalid smesh object
502 //=======================================================================
503
504 QString SMESHGUI_MG_ADAPTDRIVER::getErrorMsg( SMESH::string_array_var theInvalidEntries,
505         QStringList &           theEntriesToBrowse )
506 {
507
508     if ( theInvalidEntries->length() == 0 )
509         return tr("OPERATION_FAILED");
510
511     // theInvalidEntries - SObject's that hold geometry objects whose
512     // counterparts are not found in the newGeometry, followed by SObject's
513     // holding mesh sub-objects that are invalid because they depend on a not found
514     // preceding sub-shape
515
516     QString msg = tr("SUBSHAPES_NOT_FOUND_MSG") + "\n";
517
518     QString objString;
519     for ( CORBA::ULong i = 0; i < theInvalidEntries->length(); ++i )
520     {
521         _PTR(SObject) so = SMESH::getStudy()->FindObjectID( theInvalidEntries[i].in() );
522
523         int objType = SMESHGUI_Selection::type( theInvalidEntries[i].in() );
524         if ( objType < 0 ) // geom object
525         {
526             objString += "\n";
527             if ( so )
528                 objString += so->GetName().c_str();
529             else
530                 objString += theInvalidEntries[i].in(); // it's something like "FACE #2"
531         }
532         else // smesh object
533         {
534             theEntriesToBrowse.push_back( theInvalidEntries[i].in() );
535
536             objString += "\n   ";
537             switch ( objType ) {
538             case SMESH::MESH:
539                 objString += tr("SMESH_MESH");
540                 break;
541             case SMESH::HYPOTHESIS:
542                 objString += tr("SMESH_HYPOTHESIS");
543                 break;
544             case SMESH::ALGORITHM:
545                 objString += tr("SMESH_ALGORITHM");
546                 break;
547             case SMESH::SUBMESH_VERTEX:
548             case SMESH::SUBMESH_EDGE:
549             case SMESH::SUBMESH_FACE:
550             case SMESH::SUBMESH_SOLID:
551             case SMESH::SUBMESH_COMPOUND:
552             case SMESH::SUBMESH:
553                 objString += tr("SMESH_SUBMESH");
554                 break;
555             case SMESH::GROUP:
556                 objString += tr("SMESH_GROUP");
557                 break;
558             default:
559                 ;
560             }
561             objString += " \"";
562             if ( so )
563                 objString += so->GetName().c_str();
564             objString += "\" (";
565             objString += theInvalidEntries[i].in();
566             objString += ")";
567         }
568     }
569     if ( !objString.isEmpty() )
570         msg += objString;
571
572     return msg;
573 }
574
575 //=================================================================================
576 // function : isValid
577 // purpose  :
578 //=================================================================================
579
580 bool SMESHGUI_MG_ADAPTDRIVER::isValid()
581 {
582     bool ok = true;
583     return ok;
584 }
585
586 bool SMESHGUI_MG_ADAPTDRIVER::createMeshInObjectBrowser()
587 {
588     QString filename(getModel()->getMedFileOut());
589     QStringList errors;
590     QStringList anEntryList;
591     bool isEmpty = false;
592     bool ok = false;
593     SMESH::SMESH_Gen_var SMESH_Gen_ptr = SMESHGUI::GetSMESHGen();
594     if (!SMESH_Gen_ptr) {
595         std::cerr << "Could not retrieve SMESH_Gen_ptr" << std::endl;
596         throw SALOME_Exception(LOCALIZED("Could not retrieve SMESH::GetSMESHGen()"));
597     }
598     SMESH::mesh_array_var aMeshes = new SMESH::mesh_array;
599     aMeshes->length( 1 ); // one mesh only
600     SMESH::DriverMED_ReadStatus res;
601     aMeshes = SMESH_Gen_ptr->CreateMeshesFromMED( filename.toUtf8().constData(), res );
602     if ( res != SMESH::DRS_OK ) {
603         errors.append( QString( "%1 :\n\t%2" ).arg( filename ).arg( QObject::tr( QString( "SMESH_DRS_%1" ).arg( res ).toLatin1().data() ) ) );
604     }
605     _PTR(Study) aStudy = SMESH::getStudy();
606     for ( int i = 0, iEnd = aMeshes->length(); i < iEnd; i++ )
607     {
608         _PTR(SObject) aMeshSO = SMESH::FindSObject( aMeshes[i] );
609         if ( aMeshSO ) {
610             _PTR(StudyBuilder) aBuilder = aStudy->NewBuilder();
611             _PTR(AttributePixMap) aPixmap = aBuilder->FindOrCreateAttribute( aMeshSO, "AttributePixMap" );
612             aPixmap->SetPixMap( "ICON_SMESH_TREE_MESH_IMPORTED" ); // put REFINED mesh ico
613             anEntryList.append( aMeshSO->GetID().c_str() );
614         }
615         else {
616             isEmpty = true;
617         }
618     }
619     // update Object browser
620     SMESHGUI::GetSMESHGUI()->updateObjBrowser();
621     // browse to the published meshes
622     if( LightApp_Application* anApp =
623                 dynamic_cast<LightApp_Application*>( SUIT_Session::session()->activeApplication() ) )
624         anApp->browseObjects( anEntryList );
625
626     // show Error message box if there were errors
627     if ( errors.count() > 0 ) {
628         SUIT_MessageBox::critical( SMESHGUI::desktop(),
629                                    QObject::tr( "SMESH_ERROR" ),
630                                    QObject::tr( "SMESH_IMPORT_ERRORS" ) + "\n" + errors.join( "\n" ) );
631     }
632
633     // show warning message box, if some imported mesh is empty
634     if ( isEmpty ) {
635         SUIT_MessageBox::warning( SMESHGUI::desktop(),
636                                   QObject::tr( "SMESH_WRN_WARNING" ),
637                                   QObject::tr( "SMESH_DRS_SOME_EMPTY" ) );
638     }
639     return true;
640 }
641
642 //================================================================
643 // function : setIsApplyAndClose
644 // Purpose  : Set value of the flag indicating that the dialog is
645 //            accepted by Apply & Close button
646 //================================================================
647 void SMESHGUI_MG_ADAPTDRIVER::setIsApplyAndClose( const bool theFlag )
648 {
649     myIsApplyAndClose = theFlag;
650 }//================================================================
651 // function : isApplyAndClose
652 // Purpose  : Get value of the flag indicating that the dialog is
653 //            accepted by Apply & Close button
654 //================================================================
655 bool SMESHGUI_MG_ADAPTDRIVER::isApplyAndClose() const
656 {
657     return myIsApplyAndClose;
658 }
659
660 //=================================================================================
661 // function : DeactivateActiveDialog()
662 // purpose  :
663 //=================================================================================
664 void SMESHGUI_MG_ADAPTDRIVER::deactivateActiveDialog()
665 {
666
667     if (ConstructorsBox->isEnabled()) {
668         ConstructorsBox->setEnabled(false);
669         GroupArguments->setEnabled(false);
670         GroupButtons->setEnabled(false);
671         mySMESHGUI->ResetState();
672         mySMESHGUI->SetActiveDialogBox(0);
673         if ( selMgr )
674             selMgr->removeFilter( myIdSourceFilter );
675     }
676 }
677
678 //=================================================================================
679 // function : ActivateThisDialog()
680 // purpose  :
681 //=================================================================================
682 void SMESHGUI_MG_ADAPTDRIVER::activateThisDialog()
683 {
684
685     /* Emit a signal to deactivate the active dialog */
686     // mySMESHGUI->EmitSignalDeactivateDialog();
687     // ConstructorsBox->setEnabled(true);
688     // GroupArguments->setEnabled(true);
689     // GroupButtons->setEnabled(true);
690
691     // mySMESHGUI->SetActiveDialogBox((QDialog*)this);
692
693     // onSelectIdSource( myIdSourceCheck->isChecked() );
694
695     // SelectionIntoArgument();
696 }
697
698 //=================================================================================
699 // function : setFilters()
700 // purpose  : SLOT. Called when "Filter" button pressed.
701 //=================================================================================
702 void SMESHGUI_MG_ADAPTDRIVER::setFilters()
703 {
704     if(myMesh->_is_nil()) {
705         SUIT_MessageBox::critical(this,
706                                   tr("SMESH_ERROR"),
707                                   tr("NO_MESH_SELECTED"));
708         return;
709     }
710     if ( !myFilterDlg )
711         myFilterDlg = new SMESHGUI_FilterDlg( mySMESHGUI, SMESH::ALL );
712
713     QList<int> types;
714     if ( myMesh->NbEdges()     ) types << SMESH::EDGE;
715     if ( myMesh->NbFaces()     ) types << SMESH::FACE;
716     if ( myMesh->NbVolumes()   ) types << SMESH::VOLUME;
717     if ( myMesh->NbBalls()     ) types << SMESH::BALL;
718     if ( myMesh->Nb0DElements()) types << SMESH::ELEM0D;
719     if ( types.count() > 1 )     types << SMESH::ALL;
720
721     myFilterDlg->Init( types );
722     myFilterDlg->SetSelection();
723     myFilterDlg->SetMesh( myMesh );
724     myFilterDlg->SetSourceWg( myLineEditElements );
725
726     myFilterDlg->show();
727 }
728
729 //=================================================================================
730 // function : onOpenView()
731 // purpose  :
732 //=================================================================================
733 void SMESHGUI_MG_ADAPTDRIVER::onOpenView()
734 {
735     if ( mySelector ) {
736         SMESH::SetPointRepresentation(false);
737     }
738     else {
739         mySelector = SMESH::GetViewWindow( mySMESHGUI )->GetSelector();
740         activateThisDialog();
741     }
742 }
743
744 //=================================================================================
745 // function : onCloseView()
746 // purpose  :
747 //=================================================================================
748 void SMESHGUI_MG_ADAPTDRIVER::onCloseView()
749 {
750     deactivateActiveDialog();
751     mySelector = 0;
752 }