Salome HOME
Copyright update 2020
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_CopyMeshDlg.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_CopyMeshDlg.cxx
23
24 #include "SMESHGUI_CopyMeshDlg.h"
25
26 #include "SMESHGUI.h"
27 #include "SMESHGUI_FilterDlg.h"
28 #include "SMESHGUI_GEOMGenUtils.h"
29 #include "SMESHGUI_IdValidator.h"
30 #include "SMESHGUI_MeshUtils.h"
31 #include "SMESHGUI_Selection.h"
32 #include "SMESHGUI_SpinBox.h"
33 #include "SMESHGUI_Utils.h"
34 #include "SMESHGUI_VTKUtils.h"
35
36 #include <SMESH_Actor.h>
37 #include <SMESH_TypeFilter.hxx>
38 #include <SMDS_Mesh.hxx>
39
40 // SALOME GUI includes
41 #include <LightApp_Application.h>
42 #include <LightApp_SelectionMgr.h>
43 #include <SALOME_ListIO.hxx>
44 #include <SUIT_Desktop.h>
45 #include <SUIT_MessageBox.h>
46 #include <SUIT_OverrideCursor.h>
47 #include <SUIT_ResourceMgr.h>
48 #include <SUIT_Session.h>
49 #include <SVTK_ViewModel.h>
50 #include <SVTK_ViewWindow.h>
51 #include <SalomeApp_Tools.h>
52
53 // SALOME KERNEL includes
54 #include <SALOMEDSClient_Study.hxx>
55 #include <SALOMEDSClient_SObject.hxx>
56
57 // OCCT includes
58 #include <TColStd_MapOfInteger.hxx>
59
60 // Qt includes
61 #include <QApplication>
62 #include <QButtonGroup>
63 #include <QGroupBox>
64 #include <QLabel>
65 #include <QLineEdit>
66 #include <QPushButton>
67 #include <QRadioButton>
68 #include <QCheckBox>
69 #include <QHBoxLayout>
70 #include <QVBoxLayout>
71 #include <QGridLayout>
72 #include <QSpinBox>
73 #include <QKeyEvent>
74
75 // IDL includes
76 #include <SALOMEconfig.h>
77 #include CORBA_SERVER_HEADER(SMESH_Group)
78 #include CORBA_SERVER_HEADER(SMESH_MeshEditor)
79
80 /*!
81   \class BusyLocker
82   \brief Simple 'busy state' flag locker.
83   \internal
84 */
85
86 namespace
87 {
88   class BusyLocker
89   {
90   public:
91     //! Constructor. Sets passed boolean flag to \c true.
92     BusyLocker( bool& busy ) : myBusy( busy ) { myBusy = true; }
93     //! Destructor. Clear external boolean flag passed as parameter to the constructor to \c false.
94     ~BusyLocker() { myBusy = false; }
95   private:
96     bool& myBusy; //! External 'busy state' boolean flag
97   };
98 }
99
100 #define SPACING 6
101 #define MARGIN  11
102
103
104 //================================================================================
105 /*!
106  * \brief Constructor
107  */
108 //================================================================================
109
110 SMESHGUI_CopyMeshDlg::SMESHGUI_CopyMeshDlg( SMESHGUI* theModule )
111   : QDialog( SMESH::GetDesktop( theModule ) ),
112     mySMESHGUI( theModule ),
113     mySelectionMgr( SMESH::GetSelectionMgr( theModule ) ),
114     mySelectedObject(SMESH::SMESH_IDSource::_nil()),
115     myFilterDlg(0),
116     myIsApplyAndClose( false )
117 {
118   QPixmap image1 (SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap("SMESH", tr("ICON_COPY_MESH")));
119   QPixmap image2 (SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap("SMESH", tr("ICON_COPY_MESH_WG")));
120
121   setModal(false);
122   setAttribute(Qt::WA_DeleteOnClose, true);
123   setWindowTitle(tr("SMESH_COPY_MESH_TITLE"));
124   setSizeGripEnabled(true);
125
126   QVBoxLayout* SMESHGUI_CopyMeshDlgLayout = new QVBoxLayout(this);
127   SMESHGUI_CopyMeshDlgLayout->setSpacing(SPACING);
128   SMESHGUI_CopyMeshDlgLayout->setMargin(MARGIN);
129
130   /***************************************************************/
131   ConstructorsBox = new QGroupBox(tr("SMESH_COPY_MESH_TITLE"), this);
132   GroupConstructors = new QButtonGroup(this);
133   QHBoxLayout* ConstructorsBoxLayout = new QHBoxLayout(ConstructorsBox);
134   ConstructorsBoxLayout->setSpacing(SPACING);
135   ConstructorsBoxLayout->setMargin(MARGIN);
136
137   QRadioButton* RadioButton1= new QRadioButton(ConstructorsBox);
138   RadioButton1->setIcon(image1);
139   GroupConstructors->addButton(RadioButton1, 0);
140   QRadioButton* RadioButton2= new QRadioButton(ConstructorsBox);
141   RadioButton2->setIcon(image2);
142   GroupConstructors->addButton(RadioButton2, 1);
143
144   ConstructorsBoxLayout->addWidget(RadioButton1);
145   ConstructorsBoxLayout->addWidget(RadioButton2);
146   RadioButton1->setChecked(true);
147
148   /***************************************************************/
149   GroupArguments = new QGroupBox(tr("SMESH_ARGUMENTS"), this);
150   QGridLayout* GroupArgumentsLayout = new QGridLayout(GroupArguments);
151   GroupArgumentsLayout->setSpacing(SPACING);
152   GroupArgumentsLayout->setMargin(MARGIN);
153
154   myIdValidator = new SMESHGUI_IdValidator(this);
155
156   // Controls for idSource/elements selection
157   myTextLabelElements = new QLabel(tr("OBJECT_NAME"), GroupArguments);
158   myLineEditElements = new QLineEdit(GroupArguments);
159   myLineEditElements->setValidator(myIdValidator);
160   myLineEditElements->setMaxLength(-1);
161   myFilterBtn = new QPushButton( tr( "SMESH_BUT_FILTER" ), GroupArguments );
162   connect(myFilterBtn,   SIGNAL(clicked()), this, SLOT(setFilters()));
163
164   // Control for the mesh objects selection
165   myIdSourceCheck = new QCheckBox(tr("SMESH_SELECT_WHOLE_MESH"), GroupArguments);
166
167   // Name of a mesh to create
168   QLabel* meshNameLabel = new QLabel(tr("NEW_NAME"), GroupArguments);
169   myMeshNameEdit = new QLineEdit(GroupArguments);
170
171   // CheckBox for copying groups
172   myCopyGroupsCheck = new QCheckBox(tr("SMESH_MAKE_GROUPS"), GroupArguments);
173   myCopyGroupsCheck->setChecked(true);
174
175   // CheckBox for keeping ids ( OBSOLETE )
176   myKeepIdsCheck = new QCheckBox(tr("SMESH_KEEP_IDS"), GroupArguments);
177   myKeepIdsCheck->setChecked(true);
178   myKeepIdsCheck->hide();
179
180   // New geometry
181   myGeomLabel = new QLabel( tr("NEW_GEOM"), GroupArguments );
182   myGeomNameEdit = new QLineEdit( GroupArguments );
183   myGeomNameEdit->setReadOnly(true);
184
185   // CheckBox to reuse hypotheses
186   myReuseHypCheck = new QCheckBox(tr("REUSE_HYPOTHESES"), GroupArguments);
187   myReuseHypCheck->setChecked(true);
188
189   // CheckBox to copy mesh elements
190   myCopyElementsCheck = new QCheckBox(tr("COPY_ELEMENTS"), GroupArguments);
191   myCopyElementsCheck->setChecked(true);
192
193   // layout
194   GroupArgumentsLayout->addWidget(myTextLabelElements,  0, 0);
195   GroupArgumentsLayout->addWidget(myLineEditElements,   0, 1, 1, 5);
196   GroupArgumentsLayout->addWidget(myFilterBtn,          0, 6);
197   GroupArgumentsLayout->addWidget(myIdSourceCheck,      1, 0, 1, 6);
198   GroupArgumentsLayout->addWidget(meshNameLabel,        2, 0);
199   GroupArgumentsLayout->addWidget(myMeshNameEdit,       2, 1, 1, 5);
200   GroupArgumentsLayout->addWidget(myGeomLabel,          3, 0);
201   GroupArgumentsLayout->addWidget(myGeomNameEdit,       3, 1, 1, 5);
202   GroupArgumentsLayout->addWidget(myCopyGroupsCheck,    4, 0, 1, 6);
203   GroupArgumentsLayout->addWidget(myReuseHypCheck,      5, 0, 1, 6);
204   GroupArgumentsLayout->addWidget(myCopyElementsCheck,  6, 0, 1, 6);
205   // GroupArgumentsLayout->addWidget(myKeepIdsCheck,       7, 0, 1, 6);
206   GroupArgumentsLayout->setRowStretch( 6, 1 );
207
208   /***************************************************************/
209   GroupButtons = new QGroupBox(this);
210   QHBoxLayout* GroupButtonsLayout = new QHBoxLayout(GroupButtons);
211   GroupButtonsLayout->setSpacing(SPACING);
212   GroupButtonsLayout->setMargin(MARGIN);
213
214   buttonOk = new QPushButton(tr("SMESH_BUT_APPLY_AND_CLOSE"), GroupButtons);
215   buttonOk->setAutoDefault(true);
216   buttonOk->setDefault(true);
217   buttonApply = new QPushButton(tr("SMESH_BUT_APPLY"), GroupButtons);
218   buttonApply->setAutoDefault(true);
219   buttonCancel = new QPushButton(tr("SMESH_BUT_CLOSE"), GroupButtons);
220   buttonCancel->setAutoDefault(true);
221   buttonHelp = new QPushButton(tr("SMESH_BUT_HELP"), GroupButtons);
222   buttonHelp->setAutoDefault(true);
223
224   GroupButtonsLayout->addWidget(buttonOk);
225   GroupButtonsLayout->addSpacing(10);
226   GroupButtonsLayout->addWidget(buttonApply);
227   GroupButtonsLayout->addSpacing(10);
228   GroupButtonsLayout->addStretch();
229   GroupButtonsLayout->addWidget(buttonCancel);
230   GroupButtonsLayout->addWidget(buttonHelp);
231
232   /***************************************************************/
233   SMESHGUI_CopyMeshDlgLayout->addWidget(ConstructorsBox);
234   SMESHGUI_CopyMeshDlgLayout->addWidget(GroupArguments);
235   SMESHGUI_CopyMeshDlgLayout->addWidget(GroupButtons);
236
237   /* Initialisations */
238   mySelector = (SMESH::GetViewWindow( mySMESHGUI ))->GetSelector();
239
240   mySMESHGUI->SetActiveDialogBox((QDialog*)this);
241
242   // Selection filter
243   myIdSourceFilter = new SMESH_TypeFilter( SMESH::IDSOURCE );
244
245   myHelpFileName = "copy_mesh.html";
246
247   Init();
248
249   /* signals and slots connections */
250   connect(buttonOk,     SIGNAL(clicked()), this, SLOT(ClickOnOk()));
251   connect(buttonCancel, SIGNAL(clicked()), this, SLOT(reject()));
252   connect(buttonApply,  SIGNAL(clicked()), this, SLOT(ClickOnApply()));
253   connect(buttonHelp,   SIGNAL(clicked()), this, SLOT(ClickOnHelp()));
254
255   connect(mySMESHGUI,     SIGNAL (SignalDeactivateActiveDialog()),
256           this,           SLOT   (DeactivateActiveDialog()));
257   connect(mySelectionMgr, SIGNAL (currentSelectionChanged()),
258           this,           SLOT   (SelectionIntoArgument()));
259   connect(mySMESHGUI,     SIGNAL (SignalCloseAllDialogs()),/* to close dialog if study change */
260           this,           SLOT   (reject()));
261   connect(mySMESHGUI,     SIGNAL (SignalActivatedViewManager()),
262           this,           SLOT   (onOpenView()));
263   connect(mySMESHGUI,     SIGNAL (SignalCloseView()),
264           this,           SLOT   (onCloseView()));
265
266   connect(myLineEditElements, SIGNAL(textChanged(const QString&)),
267           this,               SLOT  (onTextChange(const QString&)));
268   connect(myIdSourceCheck,    SIGNAL(toggled(bool)),
269           this,               SLOT  (onSelectIdSource(bool)));
270   connect(GroupConstructors,  SIGNAL(buttonClicked(int)),
271           this,               SLOT  (onConstructor(int)));
272
273
274   SelectionIntoArgument();
275 }
276
277 //=================================================================================
278 // function : ~SMESHGUI_CopyMeshDlg()
279 // purpose  : Destroys the object and frees any allocated resources
280 //=================================================================================
281
282 SMESHGUI_CopyMeshDlg::~SMESHGUI_CopyMeshDlg()
283 {
284   if ( myFilterDlg )
285   {
286     myFilterDlg->setParent( 0 );
287     delete myFilterDlg; myFilterDlg = 0;
288   }
289   if ( myIdSourceFilter )
290   {
291     if ( mySelectionMgr )
292       mySelectionMgr->removeFilter( myIdSourceFilter );
293     delete myIdSourceFilter; myIdSourceFilter=0;
294   }
295 }
296
297 //=================================================================================
298 // function : Init()
299 // purpose  :
300 //=================================================================================
301 void SMESHGUI_CopyMeshDlg::Init (bool ResetControls)
302 {
303   myBusy = false;
304
305   if ( !isWithGeomMode() )
306     myMeshNameEdit->setText( SMESH::UniqueMeshName("Mesh"));
307
308   if ( ResetControls )
309   {
310     myLineEditElements->clear();
311     myNbOkElements = 0;
312
313     buttonOk->setEnabled(false);
314     buttonApply->setEnabled(false);
315
316     myActor = 0;
317     myMesh = SMESH::SMESH_Mesh::_nil();
318
319     myIdSourceCheck->setChecked(true);
320
321     onConstructor( 0 );
322   }
323 }
324
325 //=======================================================================
326 //function : onConstructor
327 //purpose  : switch operation mode
328 //=======================================================================
329
330 void SMESHGUI_CopyMeshDlg::onConstructor( int withGeom )
331 {
332   myGeomLabel        ->setVisible( withGeom );
333   myGeomNameEdit     ->setVisible( withGeom );
334   myReuseHypCheck    ->setVisible( withGeom );
335   myCopyElementsCheck->setVisible( withGeom );
336   myFilterBtn        ->setVisible( !withGeom );
337   myIdSourceCheck    ->setVisible( !withGeom );
338
339   if ( !withGeom )
340     myMeshNameEdit->setText( SMESH::UniqueMeshName("Mesh"));
341
342   onSelectIdSource( /*toSelectMesh=*/ myIdSourceCheck->isChecked() || withGeom );
343 }
344
345 //=======================================================================
346 //function : getErrorMsg
347 //purpose  : Return an error message and entries of invalid smesh object
348 //=======================================================================
349
350 QString SMESHGUI_CopyMeshDlg::getErrorMsg( SMESH::string_array_var theInvalidEntries,
351                                            QStringList &           theEntriesToBrowse )
352 {
353   if ( theInvalidEntries->length() == 0 )
354     return tr("OPERATION_FAILED");
355
356   // theInvalidEntries - SObject's that hold geometry objects whose
357   // counterparts are not found in the newGeometry, followed by SObject's
358   // holding mesh sub-objects that are invalid because they depend on a not found
359   // preceding sub-shape
360
361   QString msg = tr("SUBSHAPES_NOT_FOUND_MSG") + "\n";
362
363   QString objString;
364   for ( CORBA::ULong i = 0; i < theInvalidEntries->length(); ++i )
365   {
366     _PTR(SObject) so = SMESH::getStudy()->FindObjectID( theInvalidEntries[i].in() );
367
368     int objType = SMESHGUI_Selection::type( theInvalidEntries[i].in() );
369     if ( objType < 0 ) // geom object
370     {
371       objString += "\n";
372       if ( so )
373         objString += so->GetName().c_str();
374       else
375         objString += theInvalidEntries[i].in(); // it's something like "FACE #2"
376     }
377     else // smesh object
378     {
379       theEntriesToBrowse.push_back( theInvalidEntries[i].in() );
380
381       objString += "\n   ";
382       switch ( objType ) {
383       case SMESH::MESH:
384         objString += tr("SMESH_MESH"); break;
385       case SMESH::HYPOTHESIS:
386         objString += tr("SMESH_HYPOTHESIS"); break;
387       case SMESH::ALGORITHM:
388         objString += tr("SMESH_ALGORITHM"); break;
389       case SMESH::SUBMESH_VERTEX:
390       case SMESH::SUBMESH_EDGE:
391       case SMESH::SUBMESH_FACE:
392       case SMESH::SUBMESH_SOLID:
393       case SMESH::SUBMESH_COMPOUND:
394       case SMESH::SUBMESH:
395         objString += tr("SMESH_SUBMESH"); break;
396       case SMESH::GROUP:
397         objString += tr("SMESH_GROUP"); break;
398       default:;
399       }
400       objString += " \"";
401       if ( so )
402         objString += so->GetName().c_str();
403       objString += "\" (";
404       objString += theInvalidEntries[i].in();
405       objString += ")";
406     }
407   }
408   if ( !objString.isEmpty() )
409     msg += objString;
410
411   return msg;
412 }
413
414 //=================================================================================
415 // function : ClickOnApply()
416 // purpose  :
417 //=================================================================================
418
419 bool SMESHGUI_CopyMeshDlg::ClickOnApply()
420 {
421   if ( SMESHGUI::isStudyLocked() )
422     return false;
423
424   if( !isValid() )
425     return false;
426
427   QStringList anEntryList;
428   bool toShowObjects = isApplyAndClose();
429   try
430   {
431     SUIT_OverrideCursor aWaitCursor;
432
433     SMESH::IDSource_wrap aPartToCopy;
434     if ( myIdSourceCheck->isChecked())
435     {
436       aPartToCopy = mySelectedObject;
437       aPartToCopy->Register();
438     }
439     else
440     {
441       QStringList aListElementsId = myLineEditElements->text().split(" ", QString::SkipEmptyParts);
442       SMESH::long_array_var anElementsId = new SMESH::long_array;
443       anElementsId->length(aListElementsId.count());
444       for (int i = 0; i < aListElementsId.count(); i++)
445         anElementsId[i] = aListElementsId[i].toInt();
446
447       SMESH::SMESH_MeshEditor_var aMeshEditor = myMesh->GetMeshEditor();
448       aPartToCopy = aMeshEditor->MakeIDSource( anElementsId, SMESH::ALL );
449     }
450     QByteArray meshName = myMeshNameEdit->text().toUtf8();
451     bool toCopyGroups = ( myCopyGroupsCheck->isChecked() );
452     bool toReuseHyps  = ( myReuseHypCheck->isChecked() );
453     bool toCopyElems  = ( myCopyElementsCheck->isChecked() );
454     bool toKeepIDs    = ( myKeepIdsCheck->isChecked() );
455
456     SMESH::SMESH_Gen_var gen = SMESHGUI::GetSMESHGen();
457     SMESH::SMESH_Mesh_var newMesh;
458     if ( isWithGeomMode() )
459     {
460       SMESH::SMESH_Mesh_var       srcMesh = mySelectedObject->GetMesh();
461       SMESH::ListOfGroups_var     newGroups;
462       SMESH::submesh_array_var    newSubmeshes;
463       SMESH::ListOfHypothesis_var newHypotheses;
464       SMESH::string_array_var     invalidEntries;
465       CORBA::Boolean ok = gen->CopyMeshWithGeom( srcMesh, myNewGeometry,
466                                                  meshName.constData(),
467                                                  toCopyGroups, toReuseHyps, toCopyElems,
468                                                  newMesh.out(),
469                                                  newGroups.out(),
470                                                  newSubmeshes.out(),
471                                                  newHypotheses.out(),
472                                                  invalidEntries.out() );
473       if ( !ok )
474       {
475         if ( invalidEntries->length() > 0 )
476           toShowObjects = true;
477         SUIT_MessageBox::warning( this,
478                                   tr("SMESH_WRN_WARNING"),
479                                   getErrorMsg( invalidEntries, anEntryList ));
480       }
481     }
482     else
483     {
484       newMesh = gen->CopyMesh(aPartToCopy, meshName.constData(), toCopyGroups, toKeepIDs);
485     }
486     if ( !newMesh->_is_nil() )
487       if ( _PTR(SObject) aSObject = SMESH::ObjectToSObject( newMesh ) )
488       {
489         anEntryList.append( aSObject->GetID().c_str() );
490
491         if ( isWithGeomMode() )
492           SMESH::SetName( aSObject, meshName );
493       }
494   }
495   catch(const SALOME::SALOME_Exception & S_ex)
496   {
497     SalomeApp_Tools::QtCatchCorbaException(S_ex);
498   }
499   catch (...)
500   {
501   }
502
503   mySMESHGUI->updateObjBrowser(true);
504   SMESHGUI::Modified();
505
506   if( LightApp_Application* anApp =
507       dynamic_cast<LightApp_Application*>( SUIT_Session::session()->activeApplication() ) )
508     anApp->browseObjects( anEntryList, toShowObjects );
509
510   Init(false);
511   SelectionIntoArgument();
512
513   return true;
514 }
515
516 //=================================================================================
517 // function : ClickOnOk()
518 // purpose  :
519 //=================================================================================
520 void SMESHGUI_CopyMeshDlg::ClickOnOk()
521 {
522   setIsApplyAndClose( true );
523   if( ClickOnApply() )
524     reject();
525 }
526
527 //=================================================================================
528 // function : reject()
529 // purpose  :
530 //=================================================================================
531 void SMESHGUI_CopyMeshDlg::reject()
532 {
533   disconnect(mySelectionMgr, 0, this, 0);
534   if ( mySelectionMgr )
535     mySelectionMgr->removeFilter( myIdSourceFilter );
536   if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
537     aViewWindow->SetSelectionMode( ActorSelection );
538   mySMESHGUI->ResetState();
539   QDialog::reject();
540 }
541
542 //=================================================================================
543 // function : onOpenView()
544 // purpose  :
545 //=================================================================================
546 void SMESHGUI_CopyMeshDlg::onOpenView()
547 {
548   if ( mySelector ) {
549     SMESH::SetPointRepresentation(false);
550   }
551   else {
552     mySelector = SMESH::GetViewWindow( mySMESHGUI )->GetSelector();
553     ActivateThisDialog();
554   }
555 }
556
557 //=================================================================================
558 // function : onCloseView()
559 // purpose  :
560 //=================================================================================
561 void SMESHGUI_CopyMeshDlg::onCloseView()
562 {
563   DeactivateActiveDialog();
564   mySelector = 0;
565 }
566
567 //=================================================================================
568 // function : ClickOnHelp()
569 // purpose  :
570 //=================================================================================
571 void SMESHGUI_CopyMeshDlg::ClickOnHelp()
572 {
573   LightApp_Application* app = (LightApp_Application*)(SUIT_Session::session()->activeApplication());
574   if (app)
575     app->onHelpContextModule(mySMESHGUI ? app->moduleName(mySMESHGUI->moduleName()) : QString(""), myHelpFileName);
576   else {
577     QString platform;
578 #ifdef WIN32
579     platform = "winapplication";
580 #else
581     platform = "application";
582 #endif
583     SUIT_MessageBox::warning(this, tr("WRN_WARNING"),
584                              tr("EXTERNAL_BROWSER_CANNOT_SHOW_PAGE").
585                              arg(app->resourceMgr()->stringValue("ExternalBrowser",
586                                                                  platform)).
587                              arg(myHelpFileName));
588   }
589 }
590
591 //=======================================================================
592 // function : onTextChange()
593 // purpose  :
594 //=======================================================================
595
596 void SMESHGUI_CopyMeshDlg::onTextChange (const QString& theNewText)
597 {
598   QLineEdit* send = (QLineEdit*)sender();
599
600   if (myBusy) return;
601   BusyLocker lock( myBusy );
602
603   //if (send == myLineEditElements)
604   myNbOkElements = 0;
605
606   buttonOk->setEnabled(false);
607   buttonApply->setEnabled(false);
608
609   // highlight entered elements
610   SMDS_Mesh* aMesh = 0;
611   if (myActor)
612     aMesh = myActor->GetObject()->GetMesh();
613
614   QStringList aListId = theNewText.split(" ", QString::SkipEmptyParts);
615   if (myActor && aMesh)
616   {
617     TColStd_MapOfInteger newIndices;
618     if (send == myLineEditElements) {
619       for (int i = 0; i < aListId.count(); i++)
620         if ( const SMDS_MeshElement * e = aMesh->FindElement(aListId[ i ].toInt()))
621         {
622           newIndices.Add(e->GetID());
623         }
624     }
625     myNbOkElements = newIndices.Extent();
626
627     Handle(SALOME_InteractiveObject) anIO = myActor->getIO();
628     mySelector->AddOrRemoveIndex( anIO, newIndices, false );
629     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
630       aViewWindow->highlight( anIO, true, true );
631   }
632   else
633   {
634     myNbOkElements = aListId.count();
635   }
636
637   if (myNbOkElements) {
638     buttonOk->setEnabled(true);
639     buttonApply->setEnabled(true);
640   }
641 }
642
643 //=================================================================================
644 // function : SelectionIntoArgument()
645 // purpose  : Called when selection as changed or other case
646 //=================================================================================
647
648 void SMESHGUI_CopyMeshDlg::SelectionIntoArgument()
649 {
650   if (myBusy) return;
651   if (myFilterDlg && myFilterDlg->isVisible()) return; // filter dlg active
652   if (!GroupButtons->isEnabled()) return;              // inactive
653
654   BusyLocker lock( myBusy );
655
656   // clear
657   myActor = 0;
658   QString aString = "";
659
660   myNbOkElements = 0;
661   buttonOk->setEnabled(false);
662   buttonApply->setEnabled(false);
663   myFilterBtn->setEnabled(false);
664
665   // get selected mesh or geometry
666   SALOME_ListIO aList;
667   mySelectionMgr->selectedObjects(aList);
668   int nbSel = aList.Extent();
669   if (nbSel != 1)
670     return;
671
672   Handle(SALOME_InteractiveObject) IO = aList.First();
673
674   SMESH::SMESH_Mesh_var mesh = SMESH::GetMeshByIO(IO);
675   GEOM::GEOM_Object_var geom = SMESH::GetGeom(IO);
676
677   if ( !mesh->_is_nil() )
678   {
679     myMesh  = mesh;
680     myActor = SMESH::FindActorByEntry(IO->getEntry());
681     if (!myActor)
682       myActor = SMESH::FindActorByObject(myMesh);
683
684     mySelectedObject = SMESH::IObjectToInterface<SMESH::SMESH_IDSource>( IO );
685     if ( mySelectedObject->_is_nil() )
686       return;
687
688     if ( isWithGeomMode() ) // only mesh selection allowed
689     {
690       myMesh = SMESH::SMESH_Mesh::_narrow( mySelectedObject );
691       if ( myMesh->_is_nil() )
692       {
693         myLineEditElements->setText("");
694         return;
695       }
696     }
697   }
698   else if ( !geom->_is_nil() )
699   {
700     myNewGeometry = geom;
701   }
702   else
703     return;
704
705   if (myIdSourceCheck->isChecked() || isWithGeomMode() )
706   {
707     SMESH::GetNameOfSelectedIObjects( mySelectionMgr, aString );
708     if ( aString.isEmpty() ) aString = " ";
709     else                     aString = aString.trimmed(); // issue 0021327
710   }
711   else
712   {
713     SMESH::GetNameOfSelectedElements( mySelector, IO, aString );
714     myNbOkElements = aString.size();
715     myFilterBtn->setEnabled(true);
716   }
717
718   bool ok = !aString.isEmpty();
719   if ( !mesh->_is_nil() )
720   {
721     myLineEditElements->setText( aString );
722     if ( isWithGeomMode() )
723       myMeshNameEdit->setText( aString );
724   }
725   else if ( !geom->_is_nil() )
726   {
727     myGeomNameEdit->setText( aString );
728   }
729
730   if ( ok && isWithGeomMode() )
731     ok = ( !myMesh->_is_nil() && myMesh->HasShapeToMesh() && !myNewGeometry->_is_nil() );
732
733   buttonOk->setEnabled(ok);
734   buttonApply->setEnabled(ok);
735 }
736
737 //=======================================================================
738 //function : onSelectIdSource
739 //purpose  :
740 //=======================================================================
741 void SMESHGUI_CopyMeshDlg::onSelectIdSource (bool toSelectMesh)
742 {
743   if ( isWithGeomMode() )
744     myTextLabelElements->setText(tr("SMESH_MESH"));
745   else if ( toSelectMesh )
746     myTextLabelElements->setText(tr("OBJECT_NAME"));
747   else
748     myTextLabelElements->setText(tr("ELEM_IDS"));
749
750   if (toSelectMesh) {
751     myLineEditElements->clear();
752   }
753
754   mySelectionMgr->clearFilters();
755   if ( !isWithGeomMode() )
756     mySelectionMgr->installFilter(myIdSourceFilter);
757   SMESH::SetPointRepresentation(false);
758
759   if (toSelectMesh) {
760     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
761       aViewWindow->SetSelectionMode( ActorSelection );
762     myLineEditElements->setReadOnly(true);
763     myLineEditElements->setValidator(0);
764   }
765   else
766   {
767     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
768       aViewWindow->SetSelectionMode( CellSelection );
769     myLineEditElements->setReadOnly(false);
770     myLineEditElements->setValidator(myIdValidator);
771     onTextChange(myLineEditElements->text());
772   }
773
774   SelectionIntoArgument();
775 }
776
777 //=================================================================================
778 // function : isValid
779 // purpose  :
780 //=================================================================================
781
782 bool SMESHGUI_CopyMeshDlg::isValid()
783 {
784   bool ok = false;
785   if ( myIdSourceCheck->isChecked() || isWithGeomMode() )
786   {
787     ok = ( !mySelectedObject->_is_nil() );
788     if ( isWithGeomMode() )
789       ok = ok && ( !myNewGeometry->_is_nil() );
790   }
791   else
792   {
793     ok = ( myNbOkElements > 0 );
794   }
795
796   return ok;
797 }
798
799 //=======================================================================
800 //function : isWithGeomMode
801 //purpose  : Return true if the mode is "with geometry"
802 //=======================================================================
803
804 bool SMESHGUI_CopyMeshDlg::isWithGeomMode()
805 {
806   return ( GroupConstructors->checkedId() == 1 );
807 }
808
809 //=================================================================================
810 // function : DeactivateActiveDialog()
811 // purpose  :
812 //=================================================================================
813 void SMESHGUI_CopyMeshDlg::DeactivateActiveDialog()
814 {
815   if (ConstructorsBox->isEnabled()) {
816     ConstructorsBox->setEnabled(false);
817     GroupArguments->setEnabled(false);
818     GroupButtons->setEnabled(false);
819     mySMESHGUI->ResetState();
820     mySMESHGUI->SetActiveDialogBox(0);
821     if ( mySelectionMgr )
822       mySelectionMgr->removeFilter( myIdSourceFilter );
823   }
824 }
825
826 //=================================================================================
827 // function : ActivateThisDialog()
828 // purpose  :
829 //=================================================================================
830 void SMESHGUI_CopyMeshDlg::ActivateThisDialog()
831 {
832   /* Emit a signal to deactivate the active dialog */
833   mySMESHGUI->EmitSignalDeactivateDialog();
834   ConstructorsBox->setEnabled(true);
835   GroupArguments->setEnabled(true);
836   GroupButtons->setEnabled(true);
837
838   mySMESHGUI->SetActiveDialogBox((QDialog*)this);
839
840   onSelectIdSource( myIdSourceCheck->isChecked() );
841
842   SelectionIntoArgument();
843 }
844
845
846 //=================================================================================
847 // function : enterEvent()
848 // purpose  :
849 //=================================================================================
850 void SMESHGUI_CopyMeshDlg::enterEvent (QEvent*)
851 {
852   if ( !ConstructorsBox->isEnabled() ) {
853     SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI );
854     if ( aViewWindow && !mySelector ) {
855       mySelector = aViewWindow->GetSelector();
856     }
857     ActivateThisDialog();
858   }
859 }
860 //=================================================================================
861 // function : keyPressEvent()
862 // purpose  :
863 //=================================================================================
864 void SMESHGUI_CopyMeshDlg::keyPressEvent( QKeyEvent* e )
865 {
866   QDialog::keyPressEvent( e );
867   if ( e->isAccepted() )
868     return;
869
870   if ( e->key() == Qt::Key_F1 ) {
871     e->accept();
872     ClickOnHelp();
873   }
874 }
875
876 //=================================================================================
877 // function : setFilters()
878 // purpose  : SLOT. Called when "Filter" button pressed.
879 //=================================================================================
880 void SMESHGUI_CopyMeshDlg::setFilters()
881 {
882   if(myMesh->_is_nil()) {
883     SUIT_MessageBox::critical(this,
884                               tr("SMESH_ERROR"),
885                               tr("NO_MESH_SELECTED"));
886    return;
887   }
888   if ( !myFilterDlg )
889     myFilterDlg = new SMESHGUI_FilterDlg( mySMESHGUI, SMESH::ALL );
890
891   QList<int> types;
892   if ( myMesh->NbEdges()     ) types << SMESH::EDGE;
893   if ( myMesh->NbFaces()     ) types << SMESH::FACE;
894   if ( myMesh->NbVolumes()   ) types << SMESH::VOLUME;
895   if ( myMesh->NbBalls()     ) types << SMESH::BALL;
896   if ( myMesh->Nb0DElements()) types << SMESH::ELEM0D;
897   if ( types.count() > 1 )     types << SMESH::ALL;
898
899   myFilterDlg->Init( types );
900   myFilterDlg->SetSelection();
901   myFilterDlg->SetMesh( myMesh );
902   myFilterDlg->SetSourceWg( myLineEditElements );
903
904   myFilterDlg->show();
905 }
906
907 //================================================================
908 // function : setIsApplyAndClose
909 // Purpose  : Set value of the flag indicating that the dialog is
910 //            accepted by Apply & Close button
911 //================================================================
912 void SMESHGUI_CopyMeshDlg::setIsApplyAndClose( const bool theFlag )
913 {
914   myIsApplyAndClose = theFlag;
915 }
916
917 //================================================================
918 // function : isApplyAndClose
919 // Purpose  : Get value of the flag indicating that the dialog is
920 //            accepted by Apply & Close button
921 //================================================================
922 bool SMESHGUI_CopyMeshDlg::isApplyAndClose() const
923 {
924   return myIsApplyAndClose;
925 }