Salome HOME
b7794c02d8d3a5b62bee922f6238e6e99cb88db7
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_CopyMeshDlg.cxx
1 // Copyright (C) 2007-2016  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("SMESH_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   // preceeding 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   mySelectedObject = SMESH::SMESH_IDSource::_nil();
512   SelectionIntoArgument();
513
514   return true;
515 }
516
517 //=================================================================================
518 // function : ClickOnOk()
519 // purpose  :
520 //=================================================================================
521 void SMESHGUI_CopyMeshDlg::ClickOnOk()
522 {
523   setIsApplyAndClose( true );
524   if( ClickOnApply() )
525     reject();
526 }
527
528 //=================================================================================
529 // function : reject()
530 // purpose  :
531 //=================================================================================
532 void SMESHGUI_CopyMeshDlg::reject()
533 {
534   disconnect(mySelectionMgr, 0, this, 0);
535   if ( mySelectionMgr )
536     mySelectionMgr->removeFilter( myIdSourceFilter );
537   if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
538     aViewWindow->SetSelectionMode( ActorSelection );
539   mySMESHGUI->ResetState();
540   QDialog::reject();
541 }
542
543 //=================================================================================
544 // function : onOpenView()
545 // purpose  :
546 //=================================================================================
547 void SMESHGUI_CopyMeshDlg::onOpenView()
548 {
549   if ( mySelector ) {
550     SMESH::SetPointRepresentation(false);
551   }
552   else {
553     mySelector = SMESH::GetViewWindow( mySMESHGUI )->GetSelector();
554     ActivateThisDialog();
555   }
556 }
557
558 //=================================================================================
559 // function : onCloseView()
560 // purpose  :
561 //=================================================================================
562 void SMESHGUI_CopyMeshDlg::onCloseView()
563 {
564   DeactivateActiveDialog();
565   mySelector = 0;
566 }
567
568 //=================================================================================
569 // function : ClickOnHelp()
570 // purpose  :
571 //=================================================================================
572 void SMESHGUI_CopyMeshDlg::ClickOnHelp()
573 {
574   LightApp_Application* app = (LightApp_Application*)(SUIT_Session::session()->activeApplication());
575   if (app)
576     app->onHelpContextModule(mySMESHGUI ? app->moduleName(mySMESHGUI->moduleName()) : QString(""), myHelpFileName);
577   else {
578     QString platform;
579 #ifdef WIN32
580     platform = "winapplication";
581 #else
582     platform = "application";
583 #endif
584     SUIT_MessageBox::warning(this, tr("WRN_WARNING"),
585                              tr("EXTERNAL_BROWSER_CANNOT_SHOW_PAGE").
586                              arg(app->resourceMgr()->stringValue("ExternalBrowser",
587                                                                  platform)).
588                              arg(myHelpFileName));
589   }
590 }
591
592 //=======================================================================
593 // function : onTextChange()
594 // purpose  :
595 //=======================================================================
596
597 void SMESHGUI_CopyMeshDlg::onTextChange (const QString& theNewText)
598 {
599   QLineEdit* send = (QLineEdit*)sender();
600
601   if (myBusy) return;
602   BusyLocker lock( myBusy );
603
604   //if (send == myLineEditElements)
605   myNbOkElements = 0;
606
607   buttonOk->setEnabled(false);
608   buttonApply->setEnabled(false);
609
610   // highlight entered elements
611   SMDS_Mesh* aMesh = 0;
612   if (myActor)
613     aMesh = myActor->GetObject()->GetMesh();
614
615   QStringList aListId = theNewText.split(" ", QString::SkipEmptyParts);
616   if (myActor && aMesh)
617   {
618     TColStd_MapOfInteger newIndices;
619     if (send == myLineEditElements) {
620       for (int i = 0; i < aListId.count(); i++)
621         if ( const SMDS_MeshElement * e = aMesh->FindElement(aListId[ i ].toInt()))
622         {
623           newIndices.Add(e->GetID());
624         }
625     }
626     myNbOkElements = newIndices.Extent();
627
628     Handle(SALOME_InteractiveObject) anIO = myActor->getIO();
629     mySelector->AddOrRemoveIndex( anIO, newIndices, false );
630     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
631       aViewWindow->highlight( anIO, true, true );
632   }
633   else
634   {
635     myNbOkElements = aListId.count();
636   }
637
638   if (myNbOkElements) {
639     buttonOk->setEnabled(true);
640     buttonApply->setEnabled(true);
641   }
642 }
643
644 //=================================================================================
645 // function : SelectionIntoArgument()
646 // purpose  : Called when selection as changed or other case
647 //=================================================================================
648
649 void SMESHGUI_CopyMeshDlg::SelectionIntoArgument()
650 {
651   if (myBusy) return;
652   if (myFilterDlg && myFilterDlg->isVisible()) return; // filter dlg active
653   if (!GroupButtons->isEnabled()) return;              // inactive
654
655   BusyLocker lock( myBusy );
656
657   // clear
658   myActor = 0;
659   QString aString = "";
660
661   myNbOkElements = 0;
662   buttonOk->setEnabled(false);
663   buttonApply->setEnabled(false);
664   myFilterBtn->setEnabled(false);
665
666   // get selected mesh or geometry
667   SALOME_ListIO aList;
668   mySelectionMgr->selectedObjects(aList);
669   int nbSel = aList.Extent();
670   if (nbSel != 1)
671     return;
672
673   Handle(SALOME_InteractiveObject) IO = aList.First();
674
675   SMESH::SMESH_Mesh_var mesh = SMESH::GetMeshByIO(IO);
676   GEOM::GEOM_Object_var geom = SMESH::GetGeom(IO);
677
678   if ( !mesh->_is_nil() )
679   {
680     myMesh  = mesh;
681     myActor = SMESH::FindActorByEntry(IO->getEntry());
682     if (!myActor)
683       myActor = SMESH::FindActorByObject(myMesh);
684
685     mySelectedObject = SMESH::IObjectToInterface<SMESH::SMESH_IDSource>( IO );
686     if ( mySelectedObject->_is_nil() )
687       return;
688   }
689   else if ( !geom->_is_nil() )
690   {
691     myNewGeometry = geom;
692   }
693   else
694     return;
695
696   if (myIdSourceCheck->isChecked() || isWithGeomMode() )
697   {
698     SMESH::GetNameOfSelectedIObjects( mySelectionMgr, aString );
699     if ( aString.isEmpty() ) aString = " ";
700     else                     aString = aString.trimmed(); // issue 0021327
701   }
702   else
703   {
704     SMESH::GetNameOfSelectedElements( mySelector, IO, aString );
705     myNbOkElements = aString.size();
706     myFilterBtn->setEnabled(true);
707   }
708
709   bool ok = !aString.isEmpty();
710   if ( !mesh->_is_nil() )
711   {
712     myLineEditElements->setText( aString );
713     if ( isWithGeomMode() )
714       myMeshNameEdit->setText( aString );
715   }
716   else if ( !geom->_is_nil() )
717   {
718     myGeomNameEdit->setText( aString );
719     ok = ok && !myLineEditElements->text().isEmpty();
720   }
721
722   if ( ok && isWithGeomMode() && !myMesh->_is_nil() )
723     ok = myMesh->HasShapeToMesh();
724
725
726   buttonOk->setEnabled(ok);
727   buttonApply->setEnabled(ok);
728 }
729
730 //=======================================================================
731 //function : onSelectIdSource
732 //purpose  :
733 //=======================================================================
734 void SMESHGUI_CopyMeshDlg::onSelectIdSource (bool toSelectMesh)
735 {
736   if ( isWithGeomMode() )
737     myTextLabelElements->setText(tr("SMESH_MESH"));
738   else if ( toSelectMesh )
739     myTextLabelElements->setText(tr("OBJECT_NAME"));
740   else
741     myTextLabelElements->setText(tr("ELEM_IDS"));
742
743   if (toSelectMesh) {
744     myLineEditElements->clear();
745   }
746
747   mySelectionMgr->clearFilters();
748   if ( !isWithGeomMode() )
749     mySelectionMgr->installFilter(myIdSourceFilter);
750   SMESH::SetPointRepresentation(false);
751
752   if (toSelectMesh) {
753     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
754       aViewWindow->SetSelectionMode( ActorSelection );
755     myLineEditElements->setReadOnly(true);
756     myLineEditElements->setValidator(0);
757   }
758   else
759   {
760     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
761       aViewWindow->SetSelectionMode( CellSelection );
762     myLineEditElements->setReadOnly(false);
763     myLineEditElements->setValidator(myIdValidator);
764     onTextChange(myLineEditElements->text());
765   }
766
767   SelectionIntoArgument();
768 }
769
770 //=================================================================================
771 // function : isValid
772 // purpose  :
773 //=================================================================================
774
775 bool SMESHGUI_CopyMeshDlg::isValid()
776 {
777   bool ok = false;
778   if ( myIdSourceCheck->isChecked() || isWithGeomMode() )
779   {
780     ok = ( !mySelectedObject->_is_nil() );
781     if ( isWithGeomMode() )
782       ok = ok && ( !myNewGeometry->_is_nil() );
783   }
784   else
785   {
786     ok = ( myNbOkElements > 0 );
787   }
788
789   return ok;
790 }
791
792 //=======================================================================
793 //function : isWithGeomMode
794 //purpose  : Return true if the mode is "with geometry"
795 //=======================================================================
796
797 bool SMESHGUI_CopyMeshDlg::isWithGeomMode()
798 {
799   return ( GroupConstructors->checkedId() == 1 );
800 }
801
802 //=================================================================================
803 // function : DeactivateActiveDialog()
804 // purpose  :
805 //=================================================================================
806 void SMESHGUI_CopyMeshDlg::DeactivateActiveDialog()
807 {
808   if (ConstructorsBox->isEnabled()) {
809     ConstructorsBox->setEnabled(false);
810     GroupArguments->setEnabled(false);
811     GroupButtons->setEnabled(false);
812     mySMESHGUI->ResetState();
813     mySMESHGUI->SetActiveDialogBox(0);
814     if ( mySelectionMgr )
815       mySelectionMgr->removeFilter( myIdSourceFilter );
816   }
817 }
818
819 //=================================================================================
820 // function : ActivateThisDialog()
821 // purpose  :
822 //=================================================================================
823 void SMESHGUI_CopyMeshDlg::ActivateThisDialog()
824 {
825   /* Emit a signal to deactivate the active dialog */
826   mySMESHGUI->EmitSignalDeactivateDialog();
827   ConstructorsBox->setEnabled(true);
828   GroupArguments->setEnabled(true);
829   GroupButtons->setEnabled(true);
830
831   mySMESHGUI->SetActiveDialogBox((QDialog*)this);
832
833   onSelectIdSource( myIdSourceCheck->isChecked() );
834
835   SelectionIntoArgument();
836 }
837
838
839 //=================================================================================
840 // function : enterEvent()
841 // purpose  :
842 //=================================================================================
843 void SMESHGUI_CopyMeshDlg::enterEvent (QEvent*)
844 {
845   if ( !ConstructorsBox->isEnabled() ) {
846     SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI );
847     if ( aViewWindow && !mySelector ) {
848       mySelector = aViewWindow->GetSelector();
849     }
850     ActivateThisDialog();
851   }
852 }
853 //=================================================================================
854 // function : keyPressEvent()
855 // purpose  :
856 //=================================================================================
857 void SMESHGUI_CopyMeshDlg::keyPressEvent( QKeyEvent* e )
858 {
859   QDialog::keyPressEvent( e );
860   if ( e->isAccepted() )
861     return;
862
863   if ( e->key() == Qt::Key_F1 ) {
864     e->accept();
865     ClickOnHelp();
866   }
867 }
868
869 //=================================================================================
870 // function : setFilters()
871 // purpose  : SLOT. Called when "Filter" button pressed.
872 //=================================================================================
873 void SMESHGUI_CopyMeshDlg::setFilters()
874 {
875   if(myMesh->_is_nil()) {
876     SUIT_MessageBox::critical(this,
877                               tr("SMESH_ERROR"),
878                               tr("NO_MESH_SELECTED"));
879    return;
880   }
881   if ( !myFilterDlg )
882     myFilterDlg = new SMESHGUI_FilterDlg( mySMESHGUI, SMESH::ALL );
883
884   QList<int> types;
885   if ( myMesh->NbEdges()     ) types << SMESH::EDGE;
886   if ( myMesh->NbFaces()     ) types << SMESH::FACE;
887   if ( myMesh->NbVolumes()   ) types << SMESH::VOLUME;
888   if ( myMesh->NbBalls()     ) types << SMESH::BALL;
889   if ( myMesh->Nb0DElements()) types << SMESH::ELEM0D;
890   if ( types.count() > 1 )     types << SMESH::ALL;
891
892   myFilterDlg->Init( types );
893   myFilterDlg->SetSelection();
894   myFilterDlg->SetMesh( myMesh );
895   myFilterDlg->SetSourceWg( myLineEditElements );
896
897   myFilterDlg->show();
898 }
899
900 //================================================================
901 // function : setIsApplyAndClose
902 // Purpose  : Set value of the flag indicating that the dialog is
903 //            accepted by Apply & Close button
904 //================================================================
905 void SMESHGUI_CopyMeshDlg::setIsApplyAndClose( const bool theFlag )
906 {
907   myIsApplyAndClose = theFlag;
908 }
909
910 //================================================================
911 // function : isApplyAndClose
912 // Purpose  : Get value of the flag indicating that the dialog is
913 //            accepted by Apply & Close button
914 //================================================================
915 bool SMESHGUI_CopyMeshDlg::isApplyAndClose() const
916 {
917   return myIsApplyAndClose;
918 }