Salome HOME
Update version number: 3.1.0a2
[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   SelectionIntoArgument();
328   resize(0,0); // ??
329 }
330
331 //=================================================================================
332 // function : ~SMESHGUI_SymmetryDlg()
333 // purpose  : Destroys the object and frees any allocated resources
334 //=================================================================================
335 SMESHGUI_SymmetryDlg::~SMESHGUI_SymmetryDlg()
336 {
337   // no need to delete child widgets, Qt does it all for us
338 }
339
340 //=================================================================================
341 // function : Init()
342 // purpose  :
343 //=================================================================================
344 void SMESHGUI_SymmetryDlg::Init (bool ResetControls)
345 {
346   myBusy = false;
347
348   myEditCurrentArgument = 0;
349   LineEditElements->clear();
350   myElementsId = "";
351   myNbOkElements = 0;
352
353   buttonOk->setEnabled(false);
354   buttonApply->setEnabled(false);
355
356   myActor = 0;
357   myMesh = SMESH::SMESH_Mesh::_nil();
358
359   if (ResetControls) {
360     SpinBox_X->SetValue(0.0);
361     SpinBox_Y->SetValue(0.0);
362     SpinBox_Z->SetValue(0.0);
363     SpinBox_DX->SetValue(0.0);
364     SpinBox_DY->SetValue(0.0);
365     SpinBox_DZ->SetValue(0.0);
366
367     CheckBoxCopy->setChecked(false);
368     CheckBoxMesh->setChecked(false);
369     onSelectMesh(false);
370   }
371 }
372
373 //=================================================================================
374 // function : ConstructorsClicked()
375 // purpose  : Radio button management
376 //=================================================================================
377 void SMESHGUI_SymmetryDlg::ConstructorsClicked (int constructorId)
378 {
379   disconnect(mySelectionMgr, 0, this, 0);
380
381   if (constructorId != 0 && !TextLabelVector->isVisible()) {
382     TextLabelVector->show();
383     SelectVectorButton->show();
384     TextLabelDX->show();
385     SpinBox_DX->show();
386     TextLabelDY->show();
387     SpinBox_DY->show();
388     TextLabelDZ->show();
389     SpinBox_DZ->show();
390   }
391
392   switch (constructorId) {
393   case 0:
394     {
395       GroupMirror->setTitle(tr("SMESH_POINT"));
396
397       TextLabelVector->hide();
398       SelectVectorButton->hide();
399       TextLabelDX->hide();
400       SpinBox_DX->hide();
401       TextLabelDY->hide();
402       SpinBox_DY->hide();
403       TextLabelDZ->hide();
404       SpinBox_DZ->hide();
405       break;
406     }
407   case 1:
408     {
409       GroupMirror->setTitle(tr("SMESH_AXIS"));
410       TextLabelVector->setText(tr("SMESH_VECTOR"));
411       break;
412     }
413   case 2:
414     {
415       GroupMirror->setTitle(tr("SMESH_PLANE"));
416       TextLabelVector->setText(tr("SMESH_NORMAL"));
417       break;
418     }
419   }
420
421   if (myEditCurrentArgument != (QWidget*)LineEditElements) {
422     SMESH::SetPointRepresentation(false);
423     if (!CheckBoxMesh->isChecked())
424       {
425         if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
426           aViewWindow->SetSelectionMode(CellSelection);
427       }
428   }
429
430   myEditCurrentArgument = (QWidget*)LineEditElements;
431   LineEditElements->setFocus();
432
433   if (CheckBoxMesh->isChecked())
434     onSelectMesh(true);
435
436   connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
437 }
438
439 //=================================================================================
440 // function : ClickOnApply()
441 // purpose  :
442 //=================================================================================
443 void SMESHGUI_SymmetryDlg::ClickOnApply()
444 {
445   if (mySMESHGUI->isActiveStudyLocked())
446     return;
447
448   if (myNbOkElements && IsMirrorOk()) {
449     QStringList aListElementsId = QStringList::split(" ", myElementsId, false);
450
451     SMESH::long_array_var anElementsId = new SMESH::long_array;
452
453     anElementsId->length(aListElementsId.count());
454     for (int i = 0; i < aListElementsId.count(); i++)
455       anElementsId[i] = aListElementsId[i].toInt();
456
457     SMESH::AxisStruct aMirror;
458
459     aMirror.x =  SpinBox_X->GetValue();
460     aMirror.y =  SpinBox_Y->GetValue();
461     aMirror.z =  SpinBox_Z->GetValue();
462     if (GetConstructorId() == 0) {
463       aMirror.vx = aMirror.vy = aMirror.vz = 0;
464     } else {
465       aMirror.vx = SpinBox_DX->GetValue();
466       aMirror.vy = SpinBox_DY->GetValue();
467       aMirror.vz = SpinBox_DZ->GetValue();
468     }
469
470     bool toCreateCopy = CheckBoxCopy->isChecked();
471
472     SMESH::SMESH_MeshEditor::MirrorType aMirrorType;
473
474     if (GetConstructorId() == 0)
475       aMirrorType = SMESH::SMESH_MeshEditor::POINT;
476     if (GetConstructorId() == 1)
477       aMirrorType = SMESH::SMESH_MeshEditor::AXIS;
478     if (GetConstructorId() == 2)
479       aMirrorType = SMESH::SMESH_MeshEditor::PLANE;
480
481     try {
482       SMESH::SMESH_MeshEditor_var aMeshEditor = myMesh->GetMeshEditor();
483       QApplication::setOverrideCursor(Qt::waitCursor);
484       aMeshEditor->Mirror(anElementsId, aMirror, aMirrorType, toCreateCopy);
485       QApplication::restoreOverrideCursor();
486     } catch (...) {
487     }
488
489     SMESH::UpdateView();
490     Init(false);
491     ConstructorsClicked(GetConstructorId());
492     SelectionIntoArgument();
493   }
494 }
495
496 //=================================================================================
497 // function : ClickOnOk()
498 // purpose  :
499 //=================================================================================
500 void SMESHGUI_SymmetryDlg::ClickOnOk()
501 {
502   ClickOnApply();
503   ClickOnCancel();
504 }
505
506 //=================================================================================
507 // function : ClickOnCancel()
508 // purpose  :
509 //=================================================================================
510 void SMESHGUI_SymmetryDlg::ClickOnCancel()
511 {
512   disconnect(mySelectionMgr, 0, this, 0);
513   mySelectionMgr->clearFilters();
514   mySelectionMgr->clearSelected();
515   SMESH::SetPointRepresentation(false);
516   if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
517     aViewWindow->SetSelectionMode(ActorSelection);
518   mySMESHGUI->ResetState();
519   reject();
520 }
521
522 //=======================================================================
523 // function : onTextChange()
524 // purpose  :
525 //=======================================================================
526 void SMESHGUI_SymmetryDlg::onTextChange (const QString& theNewText)
527 {
528   QLineEdit* send = (QLineEdit*)sender();
529
530   if (myBusy) return;
531   myBusy = true;
532
533   if (send == LineEditElements)
534     myNbOkElements = 0;
535
536   buttonOk->setEnabled(false);
537   buttonApply->setEnabled(false);
538
539   // hilight entered elements
540   SMDS_Mesh* aMesh = 0;
541   if (myActor)
542     aMesh = myActor->GetObject()->GetMesh();
543
544   if (aMesh) {
545     Handle(SALOME_InteractiveObject) anIO = myActor->getIO();
546
547     TColStd_MapOfInteger newIndices;
548     
549     QStringList aListId = QStringList::split(" ", theNewText, false);
550
551     if (send == LineEditElements) {
552       for (int i = 0; i < aListId.count(); i++) {
553         const SMDS_MeshElement * e = aMesh->FindElement(aListId[ i ].toInt());
554         if (e)
555           newIndices.Add(e->GetID());
556         myNbOkElements++;
557       }
558
559       mySelector->AddOrRemoveIndex( anIO, newIndices, false );
560       if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
561         aViewWindow->highlight( anIO, true, true );
562       
563       myElementsId = theNewText;
564     }
565   }
566
567   if (myNbOkElements &&  IsMirrorOk()) {
568     buttonOk->setEnabled(true);
569     buttonApply->setEnabled(true);
570   }
571
572   myBusy = false;
573 }
574
575 //=================================================================================
576 // function : SelectionIntoArgument()
577 // purpose  : Called when selection as changed or other case
578 //=================================================================================
579 void SMESHGUI_SymmetryDlg::SelectionIntoArgument()
580 {
581   if (myBusy) return;
582
583   // clear
584   myActor = 0;
585   QString aString = "";
586
587   myBusy = true;
588   if (myEditCurrentArgument == (QWidget*)LineEditElements) {
589     LineEditElements->setText(aString);
590     myNbOkElements = 0;
591     buttonOk->setEnabled(false);
592     buttonApply->setEnabled(false);
593   }
594   myBusy = false;
595
596   if (!GroupButtons->isEnabled()) // inactive
597     return;
598
599   // get selected mesh
600   SALOME_ListIO aList;
601   mySelectionMgr->selectedObjects(aList,SVTK_Viewer::Type());
602
603   int nbSel = aList.Extent();
604   if (nbSel != 1)
605     return;
606
607   Handle(SALOME_InteractiveObject) IO = aList.First();
608   myMesh = SMESH::GetMeshByIO(IO);
609   if(myMesh->_is_nil())
610     return;
611
612   myActor = SMESH::FindActorByObject(myMesh);
613   if (!myActor)
614     myActor = SMESH::FindActorByEntry(IO->getEntry());
615   if (!myActor)
616     return;
617
618   int aNbUnits = 0;
619
620   if (myEditCurrentArgument == (QWidget*)LineEditElements) {
621     myElementsId = "";
622
623     if (CheckBoxMesh->isChecked()) {
624       SMESH::GetNameOfSelectedIObjects(mySelectionMgr, aString);
625
626       if (!SMESH::IObjectToInterface<SMESH::SMESH_Mesh>(IO)->_is_nil()) { //MESH
627         // get IDs from mesh
628         SMDS_Mesh* aSMDSMesh = myActor->GetObject()->GetMesh();
629         if (!aSMDSMesh)
630           return;
631
632         for (int i = aSMDSMesh->MinElementID(); i <= aSMDSMesh->MaxElementID(); i++) {
633           const SMDS_MeshElement * e = aSMDSMesh->FindElement(i);
634           if (e) {
635             myElementsId += QString(" %1").arg(i);
636             aNbUnits++;
637           }
638         }
639       } else if (!SMESH::IObjectToInterface<SMESH::SMESH_subMesh>(IO)->_is_nil()) { //SUBMESH
640         // get submesh
641         SMESH::SMESH_subMesh_var aSubMesh = SMESH::IObjectToInterface<SMESH::SMESH_subMesh>(IO);
642
643         // get IDs from submesh
644         SMESH::long_array_var anElementsIds = new SMESH::long_array;
645         anElementsIds = aSubMesh->GetElementsId();
646         for (int i = 0; i < anElementsIds->length(); i++) {
647           myElementsId += QString(" %1").arg(anElementsIds[i]);
648         }
649         aNbUnits = anElementsIds->length();
650       } else { // GROUP
651         // get smesh group
652         SMESH::SMESH_GroupBase_var aGroup =
653           SMESH::IObjectToInterface<SMESH::SMESH_GroupBase>(IO);
654         if (aGroup->_is_nil())
655           return;
656
657         // get IDs from smesh group
658         SMESH::long_array_var anElementsIds = new SMESH::long_array;
659         anElementsIds = aGroup->GetListOfID();
660         for (int i = 0; i < anElementsIds->length(); i++) {
661           myElementsId += QString(" %1").arg(anElementsIds[i]);
662         }
663         aNbUnits = anElementsIds->length();
664       }
665     } else {
666       aNbUnits = SMESH::GetNameOfSelectedElements( mySelector, myActor->getIO(), aString);
667       myElementsId = aString;
668     }
669
670     if (aNbUnits < 1)
671       return;
672
673     myNbOkElements = true;
674   } else {
675     aNbUnits = SMESH::GetNameOfSelectedNodes(mySelector, myActor->getIO(), aString);
676     if (aNbUnits != 1)
677       return;
678
679     SMDS_Mesh* aMesh =  myActor->GetObject()->GetMesh();
680     if (!aMesh)
681       return;
682
683     const SMDS_MeshNode * n = aMesh->FindNode(aString.toInt());
684     if (!n)
685       return;
686
687     double x = n->X();
688     double y = n->Y();
689     double z = n->Z();
690
691     if (myEditCurrentArgument == (QWidget*)SpinBox_X) {
692       SpinBox_X->SetValue(x);
693       SpinBox_Y->SetValue(y);
694       SpinBox_Z->SetValue(z);
695     } else if (myEditCurrentArgument == (QWidget*)SpinBox_DX) {
696       SpinBox_DX->SetValue(x - SpinBox_X->GetValue());
697       SpinBox_DY->SetValue(y - SpinBox_Y->GetValue());
698       SpinBox_DZ->SetValue(z - SpinBox_Z->GetValue());
699     }
700   }
701
702   myBusy = true;
703   if (myEditCurrentArgument == (QWidget*)LineEditElements)
704     LineEditElements->setText(aString);
705   myBusy = false;
706
707   // OK
708   if (myNbOkElements && IsMirrorOk()) {
709     buttonOk->setEnabled(true);
710     buttonApply->setEnabled(true);
711   }
712 }
713
714 //=================================================================================
715 // function : SetEditCurrentArgument()
716 // purpose  :
717 //=================================================================================
718 void SMESHGUI_SymmetryDlg::SetEditCurrentArgument()
719 {
720   QPushButton* send = (QPushButton*)sender();
721
722   disconnect(mySelectionMgr, 0, this, 0);
723   mySelectionMgr->clearSelected();
724   mySelectionMgr->clearFilters();
725
726   if (send == SelectElementsButton) {
727     myEditCurrentArgument = (QWidget*)LineEditElements;
728     SMESH::SetPointRepresentation(false);
729     if (CheckBoxMesh->isChecked()) {
730       if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
731         aViewWindow->SetSelectionMode(ActorSelection);
732       mySelectionMgr->installFilter(myMeshOrSubMeshOrGroupFilter);
733     } else {
734       if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
735         aViewWindow->SetSelectionMode(CellSelection);
736     }
737   } else if (send == SelectPointButton) {
738     myEditCurrentArgument = (QWidget*)SpinBox_X;
739     SMESH::SetPointRepresentation(true);
740     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
741       aViewWindow->SetSelectionMode(NodeSelection);
742   } else if (send == SelectVectorButton) {
743     myEditCurrentArgument = (QWidget*)SpinBox_DX;
744     SMESH::SetPointRepresentation(true);
745
746     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
747       aViewWindow->SetSelectionMode(NodeSelection);
748   } else {
749   }
750
751   myEditCurrentArgument->setFocus();
752   connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
753   SelectionIntoArgument();
754 }
755
756 //=================================================================================
757 // function : DeactivateActiveDialog()
758 // purpose  :
759 //=================================================================================
760 void SMESHGUI_SymmetryDlg::DeactivateActiveDialog()
761 {
762   if (GroupConstructors->isEnabled()) {
763     GroupConstructors->setEnabled(false);
764     GroupArguments->setEnabled(false);
765     GroupButtons->setEnabled(false);
766     mySMESHGUI->ResetState();
767     mySMESHGUI->SetActiveDialogBox(0);
768   }
769 }
770
771 //=================================================================================
772 // function : ActivateThisDialog()
773 // purpose  :
774 //=================================================================================
775 void SMESHGUI_SymmetryDlg::ActivateThisDialog()
776 {
777   /* Emit a signal to deactivate the active dialog */
778   mySMESHGUI->EmitSignalDeactivateDialog();
779   GroupConstructors->setEnabled(true);
780   GroupArguments->setEnabled(true);
781   GroupButtons->setEnabled(true);
782
783   mySMESHGUI->SetActiveDialogBox((QDialog*)this);
784
785   if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
786     aViewWindow->SetSelectionMode(CellSelection);
787   SelectionIntoArgument();
788 }
789
790 //=================================================================================
791 // function : enterEvent()
792 // purpose  :
793 //=================================================================================
794 void SMESHGUI_SymmetryDlg::enterEvent (QEvent*)
795 {
796   if (!GroupConstructors->isEnabled())
797     ActivateThisDialog();
798 }
799
800 //=================================================================================
801 // function : closeEvent()
802 // purpose  :
803 //=================================================================================
804 void SMESHGUI_SymmetryDlg::closeEvent (QCloseEvent*)
805 {
806   /* same than click on cancel button */
807   this->ClickOnCancel();
808 }
809
810 //=======================================================================
811 // function : hideEvent()
812 // purpose  : caused by ESC key
813 //=======================================================================
814 void SMESHGUI_SymmetryDlg::hideEvent (QHideEvent*)
815 {
816   if (!isMinimized())
817     ClickOnCancel();
818 }
819
820 //=======================================================================
821 //function : onSelectMesh
822 //purpose  :
823 //=======================================================================
824 void SMESHGUI_SymmetryDlg::onSelectMesh (bool toSelectMesh)
825 {
826   if (toSelectMesh)
827     TextLabelElements->setText(tr("SMESH_NAME"));
828   else
829     TextLabelElements->setText(tr("SMESH_ID_ELEMENTS"));
830
831   if (myEditCurrentArgument != LineEditElements) {
832     LineEditElements->clear();
833     return;
834   }
835
836   mySelectionMgr->clearFilters();
837   SMESH::SetPointRepresentation(false);
838
839   if (toSelectMesh) {
840     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
841       aViewWindow->SetSelectionMode(ActorSelection);
842     mySelectionMgr->installFilter(myMeshOrSubMeshOrGroupFilter);
843     LineEditElements->setReadOnly(true);
844   } else {
845     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
846       aViewWindow->SetSelectionMode(CellSelection);
847     LineEditElements->setReadOnly(false);
848     onTextChange(LineEditElements->text());
849   }
850
851   SelectionIntoArgument();
852 }
853
854 //=================================================================================
855 // function : GetConstructorId()
856 // purpose  :
857 //=================================================================================
858 int SMESHGUI_SymmetryDlg::GetConstructorId()
859 {
860   if (GroupConstructors != NULL && GroupConstructors->selected() != NULL)
861     return GroupConstructors->id(GroupConstructors->selected());
862   return -1;
863 }
864
865 //=================================================================================
866 // function : IsMirrorOk()
867 // purpose  :
868 //=================================================================================
869 bool SMESHGUI_SymmetryDlg::IsMirrorOk()
870 {
871   bool isOk = true;
872
873   if (GetConstructorId() != 0)
874     isOk = (SpinBox_DX->GetValue() != 0 ||
875             SpinBox_DY->GetValue() != 0 ||
876             SpinBox_DZ->GetValue() != 0);
877
878   return isOk;
879 }
880
881 //=================================================================================
882 // function : onVectorChanged()
883 // purpose  :
884 //=================================================================================
885 void SMESHGUI_SymmetryDlg::onVectorChanged()
886 {
887   if (IsMirrorOk()) {
888     buttonOk->setEnabled(true);
889     buttonApply->setEnabled(true);
890   } else {
891     buttonOk->setEnabled(false);
892     buttonApply->setEnabled(false);
893   }
894 }