Salome HOME
Fix for the problem: click "Apply" button unselects mesh.
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_SymmetryDlg.cxx
1 //  SMESH SMESHGUI : GUI for SMESH component
2 //
3 //  Copyright (C) 2003  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.
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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
21 //
22 //
23 //
24 //  File   : SMESHGUI_SymmetryDlg.cxx
25 //  Author : Michael ZORIN
26 //  Module : SMESH
27 //  $Header:
28
29 #include "SMESHGUI_SymmetryDlg.h"
30
31 #include "SMESHGUI.h"
32 #include "SMESHGUI_SpinBox.h"
33 #include "SMESHGUI_Utils.h"
34 #include "SMESHGUI_VTKUtils.h"
35 #include "SMESHGUI_MeshUtils.h"
36 #include "SMESHGUI_IdValidator.h"
37
38 #include "SMESH_Actor.h"
39 #include "SMESH_TypeFilter.hxx"
40 #include "SMESH_LogicalFilter.hxx"
41 #include "SMDS_Mesh.hxx"
42
43 #include "SUIT_Desktop.h"
44 #include "SUIT_ResourceMgr.h"
45
46 #include "SVTK_ViewModel.h"
47 #include "SVTK_ViewWindow.h"
48 #include "SVTK_Selector.h"
49 #include "SVTK_Selection.h"
50 #include "SALOME_ListIO.hxx"
51
52 #include "utilities.h"
53
54 // OCCT Includes
55 #include <TColStd_MapOfInteger.hxx>
56 #include <TColStd_IndexedMapOfInteger.hxx>
57
58 // QT Includes
59 #include <qapplication.h>
60 #include <qbuttongroup.h>
61 #include <qgroupbox.h>
62 #include <qlabel.h>
63 #include <qlineedit.h>
64 #include <qpushbutton.h>
65 #include <qradiobutton.h>
66 #include <qcheckbox.h>
67 #include <qlayout.h>
68 #include <qpixmap.h>
69
70 // IDL Headers
71 #include "SALOMEconfig.h"
72 #include CORBA_SERVER_HEADER(SMESH_Group)
73
74 using namespace std;
75
76 //=================================================================================
77 // class    : SMESHGUI_SymmetryDlg()
78 // purpose  :
79 //=================================================================================
80 SMESHGUI_SymmetryDlg::SMESHGUI_SymmetryDlg( SMESHGUI* theModule, const char* name,
81                                             bool modal, WFlags fl)
82      : QDialog( SMESH::GetDesktop( theModule ), name, modal, WStyle_Customize | WStyle_NormalBorder |
83                 WStyle_Title | WStyle_SysMenu | Qt::WDestructiveClose),
84       mySMESHGUI( theModule ),
85       mySelectionMgr( SMESH::GetSelectionMgr( theModule ) )
86 {
87   QPixmap image0 (SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap("SMESH", tr("ICON_SMESH_SYMMETRY_POINT")));
88   QPixmap image1 (SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap("SMESH", tr("ICON_SMESH_SYMMETRY_AXIS")));
89   QPixmap image2 (SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap("SMESH", tr("ICON_SMESH_SYMMETRY_PLANE")));
90   QPixmap image3 (SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap("SMESH", tr("ICON_SELECT")));
91
92   if (!name)
93     setName("SMESHGUI_SymmetryDlg");
94   resize(303, 185);
95   setCaption(tr("SMESH_SYMMETRY"));
96   setSizeGripEnabled(TRUE);
97   SMESHGUI_SymmetryDlgLayout = new QGridLayout(this);
98   SMESHGUI_SymmetryDlgLayout->setSpacing(6);
99   SMESHGUI_SymmetryDlgLayout->setMargin(11);
100
101   /***************************************************************/
102   GroupConstructors = new QButtonGroup(this, "GroupConstructors");
103   GroupConstructors->setSizePolicy(QSizePolicy((QSizePolicy::SizeType)5,
104                                                (QSizePolicy::SizeType)0, 0, 0,
105                                                GroupConstructors->sizePolicy().hasHeightForWidth()));
106   GroupConstructors->setTitle(tr("SMESH_SYMMETRY" ));
107   GroupConstructors->setExclusive(TRUE);
108   GroupConstructors->setColumnLayout(0, Qt::Vertical);
109   GroupConstructors->layout()->setSpacing(0);
110   GroupConstructors->layout()->setMargin(0);
111   GroupConstructorsLayout = new QGridLayout(GroupConstructors->layout());
112   GroupConstructorsLayout->setAlignment(Qt::AlignTop);
113   GroupConstructorsLayout->setSpacing(6);
114   GroupConstructorsLayout->setMargin(11);
115   QHBoxLayout* RBLayout = new QHBoxLayout(0, 0, 6, "Layout2");
116   RadioButton1= new QRadioButton(GroupConstructors, "RadioButton1");
117   RadioButton1->setText(tr("" ));
118   RadioButton1->setPixmap(image0);
119   RBLayout->addWidget(RadioButton1);
120   RadioButton2= new QRadioButton(GroupConstructors, "RadioButton2");
121   RadioButton2->setText(tr("" ));
122   RadioButton2->setPixmap(image1);
123   RBLayout->addWidget(RadioButton2);
124   RadioButton3= new QRadioButton(GroupConstructors, "RadioButton3");
125   RadioButton3->setText(tr("" ));
126   RadioButton3->setPixmap(image2);
127   RBLayout->addWidget(RadioButton3);
128   GroupConstructorsLayout->addLayout(RBLayout, 0, 0);
129   SMESHGUI_SymmetryDlgLayout->addWidget(GroupConstructors, 0, 0);
130
131   /***************************************************************/
132   GroupButtons = new QGroupBox(this, "GroupButtons");
133   GroupButtons->setSizePolicy(QSizePolicy((QSizePolicy::SizeType)7,
134                                           (QSizePolicy::SizeType)0, 0, 0,
135                                           GroupButtons->sizePolicy().hasHeightForWidth()));
136   GroupButtons->setGeometry(QRect(10, 10, 281, 48));
137   GroupButtons->setTitle(tr("" ));
138   GroupButtons->setColumnLayout(0, Qt::Vertical);
139   GroupButtons->layout()->setSpacing(0);
140   GroupButtons->layout()->setMargin(0);
141   GroupButtonsLayout = new QGridLayout(GroupButtons->layout());
142   GroupButtonsLayout->setAlignment(Qt::AlignTop);
143   GroupButtonsLayout->setSpacing(6);
144   GroupButtonsLayout->setMargin(11);
145   buttonCancel = new QPushButton(GroupButtons, "buttonCancel");
146   buttonCancel->setText(tr("SMESH_BUT_CLOSE" ));
147   buttonCancel->setAutoDefault(TRUE);
148   GroupButtonsLayout->addWidget(buttonCancel, 0, 3);
149   buttonApply = new QPushButton(GroupButtons, "buttonApply");
150   buttonApply->setText(tr("SMESH_BUT_APPLY" ));
151   buttonApply->setAutoDefault(TRUE);
152   GroupButtonsLayout->addWidget(buttonApply, 0, 1);
153   QSpacerItem* spacer_9 = new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
154   GroupButtonsLayout->addItem(spacer_9, 0, 2);
155   buttonOk = new QPushButton(GroupButtons, "buttonOk");
156   buttonOk->setText(tr("SMESH_BUT_OK" ));
157   buttonOk->setAutoDefault(TRUE);
158   buttonOk->setDefault(TRUE);
159   GroupButtonsLayout->addWidget(buttonOk, 0, 0);
160   SMESHGUI_SymmetryDlgLayout->addWidget(GroupButtons, 2, 0);
161
162   /***************************************************************/
163   GroupArguments = new QGroupBox(this, "GroupArguments");
164   GroupArguments->setTitle(tr("SMESH_ARGUMENTS"));
165   GroupArguments->setColumnLayout(0, Qt::Vertical);
166   GroupArguments->layout()->setSpacing(0);
167   GroupArguments->layout()->setMargin(0);
168   GroupArgumentsLayout = new QGridLayout(GroupArguments->layout());
169   GroupArgumentsLayout->setAlignment(Qt::AlignTop);
170   GroupArgumentsLayout->setSpacing(6);
171   GroupArgumentsLayout->setMargin(11);
172
173   // Controls for elements selection
174   TextLabelElements  = new QLabel(GroupArguments, "TextLabelElements");
175   TextLabelElements->setText(tr("SMESH_ID_ELEMENTS" ));
176   TextLabelElements->setFixedWidth(74);
177   GroupArgumentsLayout->addWidget(TextLabelElements, 0, 0);
178
179   SelectElementsButton  = new QPushButton(GroupArguments, "SelectElementsButton");
180   SelectElementsButton->setText(tr("" ));
181   SelectElementsButton->setPixmap(image3);
182   SelectElementsButton->setToggleButton(FALSE);
183   GroupArgumentsLayout->addWidget(SelectElementsButton, 0, 1);
184
185   LineEditElements  = new QLineEdit(GroupArguments, "LineEditElements");
186   LineEditElements->setValidator(new SMESHGUI_IdValidator(this, "validator"));
187   GroupArgumentsLayout->addWidget(LineEditElements, 0, 2);
188
189   // Control for the whole mesh selection
190   CheckBoxMesh = new QCheckBox(GroupArguments, "CheckBoxMesh");
191   CheckBoxMesh->setText(tr("SMESH_SELECT_WHOLE_MESH" ));
192   GroupArgumentsLayout->addMultiCellWidget(CheckBoxMesh, 1, 1, 0, 2);
193
194   // Controls for mirror selection
195   GroupMirror = new QGroupBox(GroupArguments, "GroupMirror");
196   GroupMirror->setColumnLayout(0, Qt::Vertical);
197   GroupMirror->layout()->setSpacing(0);
198   GroupMirror->layout()->setMargin(0);
199   QGridLayout* GroupMirrorLayout = new QGridLayout(GroupMirror->layout());
200   GroupMirrorLayout->setAlignment(Qt::AlignTop);
201   GroupMirrorLayout->setSpacing(6);
202   GroupMirrorLayout->setMargin(11);
203
204   TextLabelPoint = new QLabel(GroupMirror, "TextLabelPoint");
205   TextLabelPoint->setText(tr("SMESH_POINT"));
206   GroupMirrorLayout->addWidget(TextLabelPoint, 0, 0);
207
208   SelectPointButton  = new QPushButton(GroupMirror, "SelectPointButton");
209   SelectPointButton->setPixmap(image3);
210   GroupMirrorLayout->addWidget(SelectPointButton, 0, 1);
211
212   TextLabelX = new QLabel(GroupMirror, "TextLabelX");
213   TextLabelX->setText(tr("SMESH_X"));
214   GroupMirrorLayout->addWidget(TextLabelX, 0, 2);
215
216   SpinBox_X = new SMESHGUI_SpinBox(GroupMirror, "SpinBox_X");
217   GroupMirrorLayout->addWidget(SpinBox_X, 0, 3);
218
219   TextLabelY = new QLabel(GroupMirror, "TextLabelY");
220   TextLabelY->setText(tr("SMESH_Y"));
221   GroupMirrorLayout->addWidget(TextLabelY, 0, 4);
222
223   SpinBox_Y = new SMESHGUI_SpinBox(GroupMirror, "SpinBox_Y");
224   GroupMirrorLayout->addWidget(SpinBox_Y, 0, 5);
225
226   TextLabelZ = new QLabel(GroupMirror, "TextLabelZ");
227   TextLabelZ->setText(tr("SMESH_Z"));
228   GroupMirrorLayout->addWidget(TextLabelZ, 0, 6);
229
230   SpinBox_Z = new SMESHGUI_SpinBox(GroupMirror, "SpinBox_Z");
231   GroupMirrorLayout->addWidget(SpinBox_Z, 0, 7);
232
233   TextLabelVector = new QLabel(GroupMirror, "TextLabelVector");
234   GroupMirrorLayout->addWidget(TextLabelVector, 1, 0);
235
236   SelectVectorButton = new QPushButton(GroupMirror, "SelectVectorButton");
237   SelectVectorButton->setPixmap(image3);
238   GroupMirrorLayout->addWidget(SelectVectorButton, 1, 1);
239
240   TextLabelDX = new QLabel(GroupMirror, "TextLabelDX");
241   TextLabelDX->setText(tr("SMESH_DX"));
242   GroupMirrorLayout->addWidget(TextLabelDX, 1, 2);
243
244   SpinBox_DX = new SMESHGUI_SpinBox(GroupMirror, "SpinBox_DX");
245   GroupMirrorLayout->addWidget(SpinBox_DX, 1, 3);
246
247   TextLabelDY = new QLabel(GroupMirror, "TextLabelDY");
248   TextLabelDY->setText(tr("SMESH_DY"));
249   GroupMirrorLayout->addWidget(TextLabelDY, 1, 4);
250
251   SpinBox_DY = new SMESHGUI_SpinBox(GroupMirror, "SpinBox_DY");
252   GroupMirrorLayout->addWidget(SpinBox_DY, 1, 5);
253
254   TextLabelDZ = new QLabel(GroupMirror, "TextLabelDZ");
255   TextLabelDZ->setText(tr("SMESH_DZ"));
256   GroupMirrorLayout->addWidget(TextLabelDZ, 1, 6);
257
258   SpinBox_DZ = new SMESHGUI_SpinBox(GroupMirror, "SpinBox_DZ");
259   GroupMirrorLayout->addWidget(SpinBox_DZ, 1, 7);
260
261   GroupArgumentsLayout->addMultiCellWidget(GroupMirror, 2, 2, 0, 2);
262
263   // Controls for "Create a copy" option
264   CheckBoxCopy = new QCheckBox(GroupArguments, "CheckBoxCopy");
265   CheckBoxCopy->setText(tr("SMESH_CREATE_COPY"));
266   GroupArgumentsLayout->addMultiCellWidget(CheckBoxCopy, 3, 3, 0, 2);
267
268
269   SMESHGUI_SymmetryDlgLayout->addWidget(GroupArguments, 1, 0);
270
271   /* Initialisations */
272   SpinBox_X->RangeStepAndValidator(-999999.999, +999999.999, 10.0, 3);
273   SpinBox_Y->RangeStepAndValidator(-999999.999, +999999.999, 10.0, 3);
274   SpinBox_Z->RangeStepAndValidator(-999999.999, +999999.999, 10.0, 3);
275   SpinBox_DX->RangeStepAndValidator(-999999.999, +999999.999, 10.0, 3);
276   SpinBox_DY->RangeStepAndValidator(-999999.999, +999999.999, 10.0, 3);
277   SpinBox_DZ->RangeStepAndValidator(-999999.999, +999999.999, 10.0, 3);
278
279   GroupArguments->show();
280   RadioButton1->setChecked(TRUE);
281
282   mySelector = (SMESH::GetViewWindow( mySMESHGUI ))->GetSelector();
283
284   mySMESHGUI->SetActiveDialogBox((QDialog*)this);
285
286   // Costruction of the logical filter
287   SMESH_TypeFilter* aMeshOrSubMeshFilter = new SMESH_TypeFilter (MESHorSUBMESH);
288   SMESH_TypeFilter* aSmeshGroupFilter    = new SMESH_TypeFilter (GROUP);
289
290   QPtrList<SUIT_SelectionFilter> aListOfFilters;
291   if (aMeshOrSubMeshFilter) aListOfFilters.append(aMeshOrSubMeshFilter);
292   if (aSmeshGroupFilter)    aListOfFilters.append(aSmeshGroupFilter);
293
294   myMeshOrSubMeshOrGroupFilter =
295     new SMESH_LogicalFilter (aListOfFilters, SMESH_LogicalFilter::LO_OR);
296
297   Init();
298
299   /* signals and slots connections */
300   connect(buttonOk, SIGNAL(clicked()),     this, SLOT(ClickOnOk()));
301   connect(buttonCancel, SIGNAL(clicked()), this, SLOT(ClickOnCancel()));
302   connect(buttonApply, SIGNAL(clicked()),  this, SLOT(ClickOnApply()));
303   connect(GroupConstructors, SIGNAL(clicked(int)), SLOT(ConstructorsClicked(int)));
304
305   connect(SelectElementsButton, SIGNAL (clicked()), this, SLOT(SetEditCurrentArgument()));
306   connect(SelectPointButton, SIGNAL (clicked()),    this, SLOT(SetEditCurrentArgument()));
307   connect(SelectVectorButton, SIGNAL (clicked()),   this, SLOT(SetEditCurrentArgument()));
308
309   connect(SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(onVectorChanged()));
310   connect(SpinBox_DY, SIGNAL(valueChanged(double)), this, SLOT(onVectorChanged()));
311   connect(SpinBox_DZ, SIGNAL(valueChanged(double)), this, SLOT(onVectorChanged()));
312
313   connect(mySMESHGUI,     SIGNAL(SignalDeactivateActiveDialog()), this, SLOT(DeactivateActiveDialog()));
314   connect(mySelectionMgr, SIGNAL(currentSelectionChanged()),      this, SLOT(SelectionIntoArgument()));
315   /* to close dialog if study change */
316   connect(mySMESHGUI,       SIGNAL(SignalCloseAllDialogs()), this, SLOT(ClickOnCancel()));
317   connect(LineEditElements, SIGNAL(textChanged(const QString&)),   SLOT(onTextChange(const QString&)));
318   connect(CheckBoxMesh,     SIGNAL(toggled(bool)),                 SLOT(onSelectMesh(bool)));
319
320   /* Move widget on the botton right corner of main widget */
321   int x, y;
322   mySMESHGUI->DefineDlgPosition(this, x, y);
323   this->move(x, y);
324   this->show(); /* displays Dialog */
325
326   ConstructorsClicked(0);
327   resize(0,0); // ??
328 }
329
330 //=================================================================================
331 // function : ~SMESHGUI_SymmetryDlg()
332 // purpose  : Destroys the object and frees any allocated resources
333 //=================================================================================
334 SMESHGUI_SymmetryDlg::~SMESHGUI_SymmetryDlg()
335 {
336   // no need to delete child widgets, Qt does it all for us
337 }
338
339 //=================================================================================
340 // function : Init()
341 // purpose  :
342 //=================================================================================
343 void SMESHGUI_SymmetryDlg::Init (bool ResetControls)
344 {
345   myBusy = false;
346
347   myEditCurrentArgument = 0;
348   LineEditElements->clear();
349   myElementsId = "";
350   myNbOkElements = 0;
351
352   buttonOk->setEnabled(false);
353   buttonApply->setEnabled(false);
354
355   myActor = 0;
356   myMesh = SMESH::SMESH_Mesh::_nil();
357
358   if (ResetControls) {
359     SpinBox_X->SetValue(0.0);
360     SpinBox_Y->SetValue(0.0);
361     SpinBox_Z->SetValue(0.0);
362     SpinBox_DX->SetValue(0.0);
363     SpinBox_DY->SetValue(0.0);
364     SpinBox_DZ->SetValue(0.0);
365
366     CheckBoxCopy->setChecked(false);
367     CheckBoxMesh->setChecked(false);
368     onSelectMesh(false);
369   }
370 }
371
372 //=================================================================================
373 // function : ConstructorsClicked()
374 // purpose  : Radio button management
375 //=================================================================================
376 void SMESHGUI_SymmetryDlg::ConstructorsClicked (int constructorId)
377 {
378   disconnect(mySelectionMgr, 0, this, 0);
379
380   if (constructorId != 0 && !TextLabelVector->isVisible()) {
381     TextLabelVector->show();
382     SelectVectorButton->show();
383     TextLabelDX->show();
384     SpinBox_DX->show();
385     TextLabelDY->show();
386     SpinBox_DY->show();
387     TextLabelDZ->show();
388     SpinBox_DZ->show();
389   }
390
391   switch (constructorId) {
392   case 0:
393     {
394       GroupMirror->setTitle(tr("SMESH_POINT"));
395
396       TextLabelVector->hide();
397       SelectVectorButton->hide();
398       TextLabelDX->hide();
399       SpinBox_DX->hide();
400       TextLabelDY->hide();
401       SpinBox_DY->hide();
402       TextLabelDZ->hide();
403       SpinBox_DZ->hide();
404       break;
405     }
406   case 1:
407     {
408       GroupMirror->setTitle(tr("SMESH_AXIS"));
409       TextLabelVector->setText(tr("SMESH_VECTOR"));
410       break;
411     }
412   case 2:
413     {
414       GroupMirror->setTitle(tr("SMESH_PLANE"));
415       TextLabelVector->setText(tr("SMESH_NORMAL"));
416       break;
417     }
418   }
419
420   if (myEditCurrentArgument != (QWidget*)LineEditElements) {
421     SMESH::SetPointRepresentation(false);
422     if (!CheckBoxMesh->isChecked())
423       {
424         if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
425           aViewWindow->SetSelectionMode(CellSelection);
426       }
427   }
428
429   myEditCurrentArgument = (QWidget*)LineEditElements;
430   LineEditElements->setFocus();
431
432   if (CheckBoxMesh->isChecked())
433     onSelectMesh(true);
434
435   connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
436 }
437
438 //=================================================================================
439 // function : ClickOnApply()
440 // purpose  :
441 //=================================================================================
442 void SMESHGUI_SymmetryDlg::ClickOnApply()
443 {
444   if (mySMESHGUI->isActiveStudyLocked())
445     return;
446
447   if (myNbOkElements && IsMirrorOk()) {
448     QStringList aListElementsId = QStringList::split(" ", myElementsId, false);
449
450     SMESH::long_array_var anElementsId = new SMESH::long_array;
451
452     anElementsId->length(aListElementsId.count());
453     for (int i = 0; i < aListElementsId.count(); i++)
454       anElementsId[i] = aListElementsId[i].toInt();
455
456     SMESH::AxisStruct aMirror;
457
458     aMirror.x =  SpinBox_X->GetValue();
459     aMirror.y =  SpinBox_Y->GetValue();
460     aMirror.z =  SpinBox_Z->GetValue();
461     if (GetConstructorId() == 0) {
462       aMirror.vx = aMirror.vy = aMirror.vz = 0;
463     } else {
464       aMirror.vx = SpinBox_DX->GetValue();
465       aMirror.vy = SpinBox_DY->GetValue();
466       aMirror.vz = SpinBox_DZ->GetValue();
467     }
468
469     bool toCreateCopy = CheckBoxCopy->isChecked();
470
471     SMESH::SMESH_MeshEditor::MirrorType aMirrorType;
472
473     if (GetConstructorId() == 0)
474       aMirrorType = SMESH::SMESH_MeshEditor::POINT;
475     if (GetConstructorId() == 1)
476       aMirrorType = SMESH::SMESH_MeshEditor::AXIS;
477     if (GetConstructorId() == 2)
478       aMirrorType = SMESH::SMESH_MeshEditor::PLANE;
479
480     try {
481       SMESH::SMESH_MeshEditor_var aMeshEditor = myMesh->GetMeshEditor();
482       QApplication::setOverrideCursor(Qt::waitCursor);
483       aMeshEditor->Mirror(anElementsId, aMirror, aMirrorType, toCreateCopy);
484       QApplication::restoreOverrideCursor();
485     } catch (...) {
486     }
487
488     SMESH::UpdateView();
489     Init(false);
490     ConstructorsClicked(GetConstructorId());
491     SelectionIntoArgument();
492   }
493 }
494
495 //=================================================================================
496 // function : ClickOnOk()
497 // purpose  :
498 //=================================================================================
499 void SMESHGUI_SymmetryDlg::ClickOnOk()
500 {
501   ClickOnApply();
502   ClickOnCancel();
503 }
504
505 //=================================================================================
506 // function : ClickOnCancel()
507 // purpose  :
508 //=================================================================================
509 void SMESHGUI_SymmetryDlg::ClickOnCancel()
510 {
511   disconnect(mySelectionMgr, 0, this, 0);
512   mySelectionMgr->clearFilters();
513   mySelectionMgr->clearSelected();
514   SMESH::SetPointRepresentation(false);
515   if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
516     aViewWindow->SetSelectionMode(ActorSelection);
517   mySMESHGUI->ResetState();
518   reject();
519 }
520
521 //=======================================================================
522 // function : onTextChange()
523 // purpose  :
524 //=======================================================================
525 void SMESHGUI_SymmetryDlg::onTextChange (const QString& theNewText)
526 {
527   QLineEdit* send = (QLineEdit*)sender();
528
529   if (myBusy) return;
530   myBusy = true;
531
532   if (send == LineEditElements)
533     myNbOkElements = 0;
534
535   buttonOk->setEnabled(false);
536   buttonApply->setEnabled(false);
537
538   // hilight entered elements
539   SMDS_Mesh* aMesh = 0;
540   if (myActor)
541     aMesh = myActor->GetObject()->GetMesh();
542
543   if (aMesh) {
544     Handle(SALOME_InteractiveObject) anIO = myActor->getIO();
545
546     TColStd_MapOfInteger newIndices;
547     
548     QStringList aListId = QStringList::split(" ", theNewText, false);
549
550     if (send == LineEditElements) {
551       for (int i = 0; i < aListId.count(); i++) {
552         const SMDS_MeshElement * e = aMesh->FindElement(aListId[ i ].toInt());
553         if (e)
554           newIndices.Add(e->GetID());
555         myNbOkElements++;
556       }
557
558       mySelector->AddOrRemoveIndex( anIO, newIndices, false );
559       if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
560         aViewWindow->highlight( anIO, true, true );
561       
562       myElementsId = theNewText;
563     }
564   }
565
566   if (myNbOkElements &&  IsMirrorOk()) {
567     buttonOk->setEnabled(true);
568     buttonApply->setEnabled(true);
569   }
570
571   myBusy = false;
572 }
573
574 //=================================================================================
575 // function : SelectionIntoArgument()
576 // purpose  : Called when selection as changed or other case
577 //=================================================================================
578 void SMESHGUI_SymmetryDlg::SelectionIntoArgument()
579 {
580   if (myBusy) return;
581
582   // clear
583   myActor = 0;
584   QString aString = "";
585
586   myBusy = true;
587   if (myEditCurrentArgument == (QWidget*)LineEditElements) {
588     LineEditElements->setText(aString);
589     myNbOkElements = 0;
590     buttonOk->setEnabled(false);
591     buttonApply->setEnabled(false);
592   }
593   myBusy = false;
594
595   if (!GroupButtons->isEnabled()) // inactive
596     return;
597
598   // get selected mesh
599   SALOME_ListIO aList;
600   mySelectionMgr->selectedObjects(aList,SVTK_Viewer::Type());
601
602   int nbSel = aList.Extent();
603   if (nbSel != 1)
604     return;
605
606   Handle(SALOME_InteractiveObject) IO = aList.First();
607   myMesh = SMESH::GetMeshByIO(IO);
608   if(myMesh->_is_nil())
609     return;
610
611   myActor = SMESH::FindActorByObject(myMesh);
612   if (!myActor)
613     myActor = SMESH::FindActorByEntry(IO->getEntry());
614   if (!myActor)
615     return;
616
617   int aNbUnits = 0;
618
619   if (myEditCurrentArgument == (QWidget*)LineEditElements) {
620     myElementsId = "";
621
622     if (CheckBoxMesh->isChecked()) {
623       SMESH::GetNameOfSelectedIObjects(mySelectionMgr, aString);
624
625       if (!SMESH::IObjectToInterface<SMESH::SMESH_Mesh>(IO)->_is_nil()) { //MESH
626         // get IDs from mesh
627         SMDS_Mesh* aSMDSMesh = myActor->GetObject()->GetMesh();
628         if (!aSMDSMesh)
629           return;
630
631         for (int i = aSMDSMesh->MinElementID(); i <= aSMDSMesh->MaxElementID(); i++) {
632           const SMDS_MeshElement * e = aSMDSMesh->FindElement(i);
633           if (e) {
634             myElementsId += QString(" %1").arg(i);
635             aNbUnits++;
636           }
637         }
638       } else if (!SMESH::IObjectToInterface<SMESH::SMESH_subMesh>(IO)->_is_nil()) { //SUBMESH
639         // get submesh
640         SMESH::SMESH_subMesh_var aSubMesh = SMESH::IObjectToInterface<SMESH::SMESH_subMesh>(IO);
641
642         // get IDs from submesh
643         SMESH::long_array_var anElementsIds = new SMESH::long_array;
644         anElementsIds = aSubMesh->GetElementsId();
645         for (int i = 0; i < anElementsIds->length(); i++) {
646           myElementsId += QString(" %1").arg(anElementsIds[i]);
647         }
648         aNbUnits = anElementsIds->length();
649       } else { // GROUP
650         // get smesh group
651         SMESH::SMESH_GroupBase_var aGroup =
652           SMESH::IObjectToInterface<SMESH::SMESH_GroupBase>(IO);
653         if (aGroup->_is_nil())
654           return;
655
656         // get IDs from smesh group
657         SMESH::long_array_var anElementsIds = new SMESH::long_array;
658         anElementsIds = aGroup->GetListOfID();
659         for (int i = 0; i < anElementsIds->length(); i++) {
660           myElementsId += QString(" %1").arg(anElementsIds[i]);
661         }
662         aNbUnits = anElementsIds->length();
663       }
664     } else {
665       aNbUnits = SMESH::GetNameOfSelectedElements( mySelector, myActor->getIO(), aString);
666       myElementsId = aString;
667     }
668
669     if (aNbUnits < 1)
670       return;
671
672     myNbOkElements = true;
673   } else {
674     aNbUnits = SMESH::GetNameOfSelectedNodes(mySelector, myActor->getIO(), aString);
675     if (aNbUnits != 1)
676       return;
677
678     SMDS_Mesh* aMesh =  myActor->GetObject()->GetMesh();
679     if (!aMesh)
680       return;
681
682     const SMDS_MeshNode * n = aMesh->FindNode(aString.toInt());
683     if (!n)
684       return;
685
686     double x = n->X();
687     double y = n->Y();
688     double z = n->Z();
689
690     if (myEditCurrentArgument == (QWidget*)SpinBox_X) {
691       SpinBox_X->SetValue(x);
692       SpinBox_Y->SetValue(y);
693       SpinBox_Z->SetValue(z);
694     } else if (myEditCurrentArgument == (QWidget*)SpinBox_DX) {
695       SpinBox_DX->SetValue(x - SpinBox_X->GetValue());
696       SpinBox_DY->SetValue(y - SpinBox_Y->GetValue());
697       SpinBox_DZ->SetValue(z - SpinBox_Z->GetValue());
698     }
699   }
700
701   myBusy = true;
702   if (myEditCurrentArgument == (QWidget*)LineEditElements)
703     LineEditElements->setText(aString);
704   myBusy = false;
705
706   // OK
707   if (myNbOkElements && IsMirrorOk()) {
708     buttonOk->setEnabled(true);
709     buttonApply->setEnabled(true);
710   }
711 }
712
713 //=================================================================================
714 // function : SetEditCurrentArgument()
715 // purpose  :
716 //=================================================================================
717 void SMESHGUI_SymmetryDlg::SetEditCurrentArgument()
718 {
719   QPushButton* send = (QPushButton*)sender();
720
721   disconnect(mySelectionMgr, 0, this, 0);
722   mySelectionMgr->clearSelected();
723   mySelectionMgr->clearFilters();
724
725   if (send == SelectElementsButton) {
726     myEditCurrentArgument = (QWidget*)LineEditElements;
727     SMESH::SetPointRepresentation(false);
728     if (CheckBoxMesh->isChecked()) {
729       if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
730         aViewWindow->SetSelectionMode(ActorSelection);
731       mySelectionMgr->installFilter(myMeshOrSubMeshOrGroupFilter);
732     } else {
733       if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
734         aViewWindow->SetSelectionMode(CellSelection);
735     }
736   } else if (send == SelectPointButton) {
737     myEditCurrentArgument = (QWidget*)SpinBox_X;
738     SMESH::SetPointRepresentation(true);
739     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
740       aViewWindow->SetSelectionMode(NodeSelection);
741   } else if (send == SelectVectorButton) {
742     myEditCurrentArgument = (QWidget*)SpinBox_DX;
743     SMESH::SetPointRepresentation(true);
744
745     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
746       aViewWindow->SetSelectionMode(NodeSelection);
747   } else {
748   }
749
750   myEditCurrentArgument->setFocus();
751   connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
752   SelectionIntoArgument();
753 }
754
755 //=================================================================================
756 // function : DeactivateActiveDialog()
757 // purpose  :
758 //=================================================================================
759 void SMESHGUI_SymmetryDlg::DeactivateActiveDialog()
760 {
761   if (GroupConstructors->isEnabled()) {
762     GroupConstructors->setEnabled(false);
763     GroupArguments->setEnabled(false);
764     GroupButtons->setEnabled(false);
765     mySMESHGUI->ResetState();
766     mySMESHGUI->SetActiveDialogBox(0);
767   }
768 }
769
770 //=================================================================================
771 // function : ActivateThisDialog()
772 // purpose  :
773 //=================================================================================
774 void SMESHGUI_SymmetryDlg::ActivateThisDialog()
775 {
776   /* Emit a signal to deactivate the active dialog */
777   mySMESHGUI->EmitSignalDeactivateDialog();
778   GroupConstructors->setEnabled(true);
779   GroupArguments->setEnabled(true);
780   GroupButtons->setEnabled(true);
781
782   mySMESHGUI->SetActiveDialogBox((QDialog*)this);
783
784   if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
785     aViewWindow->SetSelectionMode(CellSelection);
786   SelectionIntoArgument();
787 }
788
789 //=================================================================================
790 // function : enterEvent()
791 // purpose  :
792 //=================================================================================
793 void SMESHGUI_SymmetryDlg::enterEvent (QEvent*)
794 {
795   if (!GroupConstructors->isEnabled())
796     ActivateThisDialog();
797 }
798
799 //=================================================================================
800 // function : closeEvent()
801 // purpose  :
802 //=================================================================================
803 void SMESHGUI_SymmetryDlg::closeEvent (QCloseEvent*)
804 {
805   /* same than click on cancel button */
806   this->ClickOnCancel();
807 }
808
809 //=======================================================================
810 // function : hideEvent()
811 // purpose  : caused by ESC key
812 //=======================================================================
813 void SMESHGUI_SymmetryDlg::hideEvent (QHideEvent*)
814 {
815   if (!isMinimized())
816     ClickOnCancel();
817 }
818
819 //=======================================================================
820 //function : onSelectMesh
821 //purpose  :
822 //=======================================================================
823 void SMESHGUI_SymmetryDlg::onSelectMesh (bool toSelectMesh)
824 {
825   if (toSelectMesh)
826     TextLabelElements->setText(tr("SMESH_NAME"));
827   else
828     TextLabelElements->setText(tr("SMESH_ID_ELEMENTS"));
829
830   if (myEditCurrentArgument != LineEditElements) {
831     LineEditElements->clear();
832     return;
833   }
834
835   mySelectionMgr->clearFilters();
836   SMESH::SetPointRepresentation(false);
837
838   if (toSelectMesh) {
839     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
840       aViewWindow->SetSelectionMode(ActorSelection);
841     mySelectionMgr->installFilter(myMeshOrSubMeshOrGroupFilter);
842     LineEditElements->setReadOnly(true);
843   } else {
844     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
845       aViewWindow->SetSelectionMode(CellSelection);
846     LineEditElements->setReadOnly(false);
847     onTextChange(LineEditElements->text());
848   }
849
850   SelectionIntoArgument();
851 }
852
853 //=================================================================================
854 // function : GetConstructorId()
855 // purpose  :
856 //=================================================================================
857 int SMESHGUI_SymmetryDlg::GetConstructorId()
858 {
859   if (GroupConstructors != NULL && GroupConstructors->selected() != NULL)
860     return GroupConstructors->id(GroupConstructors->selected());
861   return -1;
862 }
863
864 //=================================================================================
865 // function : IsMirrorOk()
866 // purpose  :
867 //=================================================================================
868 bool SMESHGUI_SymmetryDlg::IsMirrorOk()
869 {
870   bool isOk = true;
871
872   if (GetConstructorId() != 0)
873     isOk = (SpinBox_DX->GetValue() != 0 ||
874             SpinBox_DY->GetValue() != 0 ||
875             SpinBox_DZ->GetValue() != 0);
876
877   return isOk;
878 }
879
880 //=================================================================================
881 // function : onVectorChanged()
882 // purpose  :
883 //=================================================================================
884 void SMESHGUI_SymmetryDlg::onVectorChanged()
885 {
886   if (IsMirrorOk()) {
887     buttonOk->setEnabled(true);
888     buttonApply->setEnabled(true);
889   } else {
890     buttonOk->setEnabled(false);
891     buttonApply->setEnabled(false);
892   }
893 }