Salome HOME
Dump Python extension
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_TranslationDlg.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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 // File   : SMESHGUI_TranslationDlg.cxx
23 // Author : Michael ZORIN, Open CASCADE S.A.S.
24 //
25
26 // SMESH includes
27 #include "SMESHGUI_TranslationDlg.h"
28
29 #include "SMESHGUI.h"
30 #include "SMESHGUI_SpinBox.h"
31 #include "SMESHGUI_Utils.h"
32 #include "SMESHGUI_VTKUtils.h"
33 #include "SMESHGUI_MeshUtils.h"
34 #include "SMESHGUI_IdValidator.h"
35
36 #include <SMESH_Actor.h>
37 #include <SMESH_TypeFilter.hxx>
38 #include <SMESH_LogicalFilter.hxx>
39 #include <SMDS_Mesh.hxx>
40
41 // SALOME GUI includes
42 #include <SUIT_Desktop.h>
43 #include <SUIT_ResourceMgr.h>
44 #include <SUIT_Session.h>
45 #include <SUIT_MessageBox.h>
46 #include <SUIT_OverrideCursor.h>
47
48 #include <LightApp_Application.h>
49 #include <LightApp_SelectionMgr.h>
50
51 #include <SVTK_ViewModel.h>
52 #include <SVTK_ViewWindow.h>
53 #include <SALOME_ListIO.hxx>
54
55 // SALOME KERNEL includes
56 #include <SALOMEDSClient_SObject.hxx>
57
58 // OCCT includes
59 #include <TColStd_MapOfInteger.hxx>
60
61 // Qt includes
62 #include <QApplication>
63 #include <QButtonGroup>
64 #include <QGroupBox>
65 #include <QLabel>
66 #include <QLineEdit>
67 #include <QPushButton>
68 #include <QRadioButton>
69 #include <QCheckBox>
70 #include <QHBoxLayout>
71 #include <QVBoxLayout>
72 #include <QGridLayout>
73 #include <QSpinBox>
74 #include <QKeyEvent>
75
76 // IDL includes
77 #include <SALOMEconfig.h>
78 #include CORBA_SERVER_HEADER(SMESH_Group)
79 #include CORBA_SERVER_HEADER(SMESH_MeshEditor)
80
81 enum { MOVE_ELEMS_BUTTON = 0, COPY_ELEMS_BUTTON, MAKE_MESH_BUTTON }; //!< action type
82
83 #define SPACING 6
84 #define MARGIN  11
85
86 //=================================================================================
87 // class    : SMESHGUI_TranslationDlg()
88 // purpose  :
89 //=================================================================================
90 SMESHGUI_TranslationDlg::SMESHGUI_TranslationDlg( SMESHGUI* theModule )
91   : QDialog( SMESH::GetDesktop( theModule ) ),
92     mySMESHGUI( theModule ),
93     mySelectionMgr( SMESH::GetSelectionMgr( theModule ) )
94 {
95   QPixmap image0 (SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap("SMESH", tr("ICON_SMESH_TRANSLATION_POINTS")));
96   QPixmap image1 (SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap("SMESH", tr("ICON_SMESH_TRANSLATION_VECTOR")));
97   QPixmap image2 (SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap("SMESH", tr("ICON_SELECT")));
98
99   setModal(false);
100   setAttribute(Qt::WA_DeleteOnClose, true);
101   setWindowTitle(tr("SMESH_TRANSLATION"));
102   setSizeGripEnabled(true);
103
104   QVBoxLayout* SMESHGUI_TranslationDlgLayout = new QVBoxLayout(this);
105   SMESHGUI_TranslationDlgLayout->setSpacing(SPACING);
106   SMESHGUI_TranslationDlgLayout->setMargin(MARGIN);
107
108   /***************************************************************/
109   ConstructorsBox = new QGroupBox(tr("SMESH_TRANSLATION"), this);
110   GroupConstructors = new QButtonGroup(this);
111   QHBoxLayout* ConstructorsBoxLayout = new QHBoxLayout(ConstructorsBox);
112   ConstructorsBoxLayout->setSpacing(SPACING);
113   ConstructorsBoxLayout->setMargin(MARGIN);
114
115   RadioButton1= new QRadioButton(ConstructorsBox);
116   RadioButton1->setIcon(image0);
117   RadioButton2= new QRadioButton(ConstructorsBox);
118   RadioButton2->setIcon(image1);
119
120   ConstructorsBoxLayout->addWidget(RadioButton1);
121   ConstructorsBoxLayout->addWidget(RadioButton2);
122   GroupConstructors->addButton(RadioButton1, 0);
123   GroupConstructors->addButton(RadioButton2, 1);
124
125   /***************************************************************/
126   GroupArguments = new QGroupBox(tr("SMESH_ARGUMENTS"), this);
127   QGridLayout* GroupArgumentsLayout = new QGridLayout(GroupArguments);
128   GroupArgumentsLayout->setSpacing(SPACING);
129   GroupArgumentsLayout->setMargin(MARGIN);
130
131   myIdValidator = new SMESHGUI_IdValidator(this);
132
133   // Controls for elements selection
134   TextLabelElements = new QLabel(tr("SMESH_ID_ELEMENTS"), GroupArguments);
135   SelectElementsButton = new QPushButton(GroupArguments);
136   SelectElementsButton->setIcon(image2);
137   LineEditElements = new QLineEdit(GroupArguments);
138   LineEditElements->setValidator(myIdValidator);
139
140   // Control for the whole mesh selection
141   CheckBoxMesh = new QCheckBox(tr("SMESH_SELECT_WHOLE_MESH"), GroupArguments);
142
143   // Controls for vector and points selection
144   TextLabel1 = new QLabel(GroupArguments);
145   SelectButton1 = new QPushButton(GroupArguments);
146   SelectButton1->setIcon(image2);
147
148   TextLabel1_1 = new QLabel(GroupArguments);
149   SpinBox1_1 = new SMESHGUI_SpinBox(GroupArguments);
150   TextLabel1_2 = new QLabel(GroupArguments);
151   SpinBox1_2 = new SMESHGUI_SpinBox(GroupArguments);
152   TextLabel1_3 = new QLabel(GroupArguments);
153   SpinBox1_3 = new SMESHGUI_SpinBox(GroupArguments);
154
155   TextLabel2 = new QLabel(tr("SMESH_POINT_2"), GroupArguments);
156   SelectButton2  = new QPushButton(GroupArguments);
157   SelectButton2->setIcon(image2);
158
159   TextLabel2_1 = new QLabel(tr("SMESH_X"), GroupArguments);
160   SpinBox2_1 = new SMESHGUI_SpinBox(GroupArguments);
161   TextLabel2_2 = new QLabel(tr("SMESH_Y"), GroupArguments);
162   SpinBox2_2 = new SMESHGUI_SpinBox(GroupArguments);
163   TextLabel2_3 = new QLabel(tr("SMESH_Z"), GroupArguments);
164   SpinBox2_3 = new SMESHGUI_SpinBox(GroupArguments);
165
166   // switch of action type
167   ActionBox = new QGroupBox(GroupArguments);
168   ActionGroup = new QButtonGroup(GroupArguments);
169   QVBoxLayout* ActionBoxLayout = new QVBoxLayout(ActionBox);
170   ActionBoxLayout->addSpacing(SPACING);
171   ActionBoxLayout->setMargin(MARGIN);
172
173   QRadioButton* aMoveElements = new QRadioButton(tr("SMESH_MOVE_ELEMENTS"), ActionBox);
174   QRadioButton* aCopyElements = new QRadioButton(tr("SMESH_COPY_ELEMENTS"), ActionBox);
175   QRadioButton* aCreateMesh   = new QRadioButton(tr("SMESH_CREATE_MESH"),   ActionBox);
176
177   ActionBoxLayout->addWidget(aMoveElements);
178   ActionBoxLayout->addWidget(aCopyElements);
179   ActionBoxLayout->addWidget(aCreateMesh);
180   ActionGroup->addButton(aMoveElements, MOVE_ELEMS_BUTTON);
181   ActionGroup->addButton(aCopyElements, COPY_ELEMS_BUTTON);
182   ActionGroup->addButton(aCreateMesh,   MAKE_MESH_BUTTON);
183
184   // CheckBox for groups generation
185   MakeGroupsCheck = new QCheckBox(tr("SMESH_MAKE_GROUPS"), GroupArguments);
186   MakeGroupsCheck->setChecked(false);
187
188   // Name of a mesh to create
189   LineEditNewMesh = new QLineEdit(GroupArguments);
190
191   // layout
192   GroupArgumentsLayout->addWidget(TextLabelElements,    0, 0);
193   GroupArgumentsLayout->addWidget(SelectElementsButton, 0, 1);
194   GroupArgumentsLayout->addWidget(LineEditElements,     0, 2, 1, 6);
195   GroupArgumentsLayout->addWidget(CheckBoxMesh,         1, 0, 1, 8);
196   GroupArgumentsLayout->addWidget(TextLabel1,           2, 0);
197   GroupArgumentsLayout->addWidget(SelectButton1,        2, 1);
198   GroupArgumentsLayout->addWidget(TextLabel1_1,         2, 2);
199   GroupArgumentsLayout->addWidget(SpinBox1_1,           2, 3);
200   GroupArgumentsLayout->addWidget(TextLabel1_2,         2, 4);
201   GroupArgumentsLayout->addWidget(SpinBox1_2,           2, 5);
202   GroupArgumentsLayout->addWidget(TextLabel1_3,         2, 6);
203   GroupArgumentsLayout->addWidget(SpinBox1_3,           2, 7);
204   GroupArgumentsLayout->addWidget(TextLabel2,           3, 0);
205   GroupArgumentsLayout->addWidget(SelectButton2,        3, 1);
206   GroupArgumentsLayout->addWidget(TextLabel2_1,         3, 2);
207   GroupArgumentsLayout->addWidget(SpinBox2_1,           3, 3);
208   GroupArgumentsLayout->addWidget(TextLabel2_2,         3, 4);
209   GroupArgumentsLayout->addWidget(SpinBox2_2,           3, 5);
210   GroupArgumentsLayout->addWidget(TextLabel2_3,         3, 6);
211   GroupArgumentsLayout->addWidget(SpinBox2_3,           3, 7);
212   GroupArgumentsLayout->addWidget(ActionBox,            4, 0, 3, 4);
213   GroupArgumentsLayout->addWidget(MakeGroupsCheck,      5, 5, 1, 4);
214   GroupArgumentsLayout->addWidget(LineEditNewMesh,      6, 5, 1, 4);
215
216   /***************************************************************/
217   GroupButtons = new QGroupBox(this);
218   QHBoxLayout* GroupButtonsLayout = new QHBoxLayout(GroupButtons);
219   GroupButtonsLayout->setSpacing(SPACING);
220   GroupButtonsLayout->setMargin(MARGIN);
221
222   buttonOk = new QPushButton(tr("SMESH_BUT_APPLY_AND_CLOSE"), GroupButtons);
223   buttonOk->setAutoDefault(true);
224   buttonOk->setDefault(true);
225   buttonApply = new QPushButton(tr("SMESH_BUT_APPLY"), GroupButtons);
226   buttonApply->setAutoDefault(true);
227   buttonCancel = new QPushButton(tr("SMESH_BUT_CLOSE"), GroupButtons);
228   buttonCancel->setAutoDefault(true);
229   buttonHelp = new QPushButton(tr("SMESH_BUT_HELP"), GroupButtons);
230   buttonHelp->setAutoDefault(true);
231
232   GroupButtonsLayout->addWidget(buttonOk);
233   GroupButtonsLayout->addSpacing(10);
234   GroupButtonsLayout->addWidget(buttonApply);
235   GroupButtonsLayout->addSpacing(10);
236   GroupButtonsLayout->addStretch();
237   GroupButtonsLayout->addWidget(buttonCancel);
238   GroupButtonsLayout->addWidget(buttonHelp);
239
240   /***************************************************************/
241   SMESHGUI_TranslationDlgLayout->addWidget(ConstructorsBox);
242   SMESHGUI_TranslationDlgLayout->addWidget(GroupArguments);
243   SMESHGUI_TranslationDlgLayout->addWidget(GroupButtons);
244
245   /* Initialisations */
246   SpinBox1_1->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, DBL_DIGITS_DISPLAY);
247   SpinBox1_2->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, DBL_DIGITS_DISPLAY);
248   SpinBox1_3->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, DBL_DIGITS_DISPLAY);
249   SpinBox2_1->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, DBL_DIGITS_DISPLAY);
250   SpinBox2_2->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, DBL_DIGITS_DISPLAY);
251   SpinBox2_3->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, DBL_DIGITS_DISPLAY);
252
253   RadioButton1->setChecked(true);
254
255   mySelector = (SMESH::GetViewWindow( mySMESHGUI ))->GetSelector();
256
257   mySMESHGUI->SetActiveDialogBox((QDialog*)this);
258
259   // Costruction of the logical filter
260   SMESH_TypeFilter* aMeshOrSubMeshFilter = new SMESH_TypeFilter (MESHorSUBMESH);
261   SMESH_TypeFilter* aSmeshGroupFilter    = new SMESH_TypeFilter (GROUP);
262
263   QList<SUIT_SelectionFilter*> aListOfFilters;
264   if (aMeshOrSubMeshFilter) aListOfFilters.append(aMeshOrSubMeshFilter);
265   if (aSmeshGroupFilter)    aListOfFilters.append(aSmeshGroupFilter);
266
267   myMeshOrSubMeshOrGroupFilter =
268     new SMESH_LogicalFilter(aListOfFilters, SMESH_LogicalFilter::LO_OR);
269
270   myHelpFileName = "translation_page.html";
271
272   Init();
273
274   /* signals and slots connections */
275   connect(buttonOk,     SIGNAL(clicked()), this, SLOT(ClickOnOk()));
276   connect(buttonCancel, SIGNAL(clicked()), this, SLOT(ClickOnCancel()));
277   connect(buttonApply,  SIGNAL(clicked()), this, SLOT(ClickOnApply()));
278   connect(buttonHelp,   SIGNAL(clicked()), this, SLOT(ClickOnHelp()));
279   connect(GroupConstructors, SIGNAL(buttonClicked(int)), SLOT(ConstructorsClicked(int)));
280
281   connect(SelectElementsButton, SIGNAL (clicked()), this, SLOT(SetEditCurrentArgument()));
282   connect(SelectButton1,        SIGNAL (clicked()), this, SLOT(SetEditCurrentArgument()));
283   connect(SelectButton2,        SIGNAL (clicked()), this, SLOT(SetEditCurrentArgument()));
284
285   connect(mySMESHGUI, SIGNAL (SignalDeactivateActiveDialog()), this, SLOT(DeactivateActiveDialog()));
286   connect(mySelectionMgr, SIGNAL(currentSelectionChanged()),   this, SLOT(SelectionIntoArgument()));
287   /* to close dialog if study change */
288   connect(mySMESHGUI,       SIGNAL (SignalCloseAllDialogs()), this, SLOT(ClickOnCancel()));
289   connect(LineEditElements, SIGNAL(textChanged(const QString&)),    SLOT(onTextChange(const QString&)));
290   connect(CheckBoxMesh,     SIGNAL(toggled(bool)),                  SLOT(onSelectMesh(bool)));
291   connect(ActionGroup,      SIGNAL(buttonClicked(int)),             SLOT(onActionClicked(int)));
292
293   ConstructorsClicked(0);
294   SelectionIntoArgument();
295   onActionClicked(MOVE_ELEMS_BUTTON);
296 }
297
298 //=================================================================================
299 // function : ~SMESHGUI_TranslationDlg()
300 // purpose  : Destroys the object and frees any allocated resources
301 //=================================================================================
302 SMESHGUI_TranslationDlg::~SMESHGUI_TranslationDlg()
303 {
304 }
305
306 //=================================================================================
307 // function : Init()
308 // purpose  :
309 //=================================================================================
310 void SMESHGUI_TranslationDlg::Init (bool ResetControls)
311 {
312   myBusy = false;
313
314   myEditCurrentArgument = 0;
315   LineEditElements->clear();
316   myElementsId = "";
317   myNbOkElements = 0;
318
319   buttonOk->setEnabled(false);
320   buttonApply->setEnabled(false);
321
322   myActor = 0;
323   myMesh = SMESH::SMESH_Mesh::_nil();
324
325   if (ResetControls) {
326     SpinBox1_1->SetValue(0.0);
327     SpinBox1_2->SetValue(0.0);
328     SpinBox1_3->SetValue(0.0);
329     SpinBox2_1->SetValue(0.0);
330     SpinBox2_2->SetValue(0.0);
331     SpinBox2_3->SetValue(0.0);
332
333     ActionGroup->button( MOVE_ELEMS_BUTTON )->setChecked(true);
334     CheckBoxMesh->setChecked(false);
335 //     MakeGroupsCheck->setChecked(false);
336 //     MakeGroupsCheck->setEnabled(false);
337     onSelectMesh(false);
338   }
339 }
340
341 //=================================================================================
342 // function : ConstructorsClicked()
343 // purpose  : Radio button management
344 //=================================================================================
345 void SMESHGUI_TranslationDlg::ConstructorsClicked (int constructorId)
346 {
347   disconnect(mySelectionMgr, 0, this, 0);
348
349   switch (constructorId) {
350   case 0:
351     {
352       TextLabel1->setText(tr("SMESH_POINT_1"));
353       TextLabel1_1->setText(tr("SMESH_X"));
354       TextLabel1_2->setText(tr("SMESH_Y"));
355       TextLabel1_3->setText(tr("SMESH_Z"));
356
357       SelectButton1->show();
358       TextLabel2->show();
359       SelectButton2->show();
360       TextLabel2_1->show();
361       SpinBox2_1->show();
362       TextLabel2_2->show();
363       SpinBox2_2->show();
364       TextLabel2_3->show();
365       SpinBox2_3->show();
366       break;
367     }
368   case 1:
369     {
370       TextLabel1->setText(tr("SMESH_VECTOR"));
371       TextLabel1_1->setText(tr("SMESH_DX"));
372       TextLabel1_2->setText(tr("SMESH_DY"));
373       TextLabel1_3->setText(tr("SMESH_DZ"));
374
375       SelectButton1->hide();
376       TextLabel2->hide();
377       SelectButton2->hide();
378       TextLabel2_1->hide();
379       SpinBox2_1->hide();
380       TextLabel2_2->hide();
381       SpinBox2_2->hide();
382       TextLabel2_3->hide();
383       SpinBox2_3->hide();
384       break;
385     }
386   }
387
388   if (myEditCurrentArgument != (QWidget*)LineEditElements) {
389     SMESH::SetPointRepresentation(false);
390     if (!CheckBoxMesh->isChecked())
391       if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
392         aViewWindow->SetSelectionMode( CellSelection );
393   }
394
395   myEditCurrentArgument = (QWidget*)LineEditElements;
396   LineEditElements->setFocus();
397
398   if (CheckBoxMesh->isChecked())
399     onSelectMesh(true);
400
401   connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
402
403   QApplication::instance()->processEvents();
404   updateGeometry();
405   resize( minimumSize() );
406 }
407
408 //=================================================================================
409 // function : ClickOnApply()
410 // purpose  :
411 //=================================================================================
412 bool SMESHGUI_TranslationDlg::ClickOnApply()
413 {
414   if (mySMESHGUI->isActiveStudyLocked())
415     return false;
416
417   if( !isValid() )
418     return false;
419
420   if (myNbOkElements) {
421     QStringList aListElementsId = myElementsId.split(" ", QString::SkipEmptyParts);
422
423     SMESH::long_array_var anElementsId = new SMESH::long_array;
424
425     anElementsId->length(aListElementsId.count());
426     for (int i = 0; i < aListElementsId.count(); i++)
427       anElementsId[i] = aListElementsId[i].toInt();
428
429     SMESH::DirStruct aVector;
430     if (GetConstructorId() == 0) {
431       aVector.PS.x = SpinBox2_1->GetValue() - SpinBox1_1->GetValue();
432       aVector.PS.y = SpinBox2_2->GetValue() - SpinBox1_2->GetValue();
433       aVector.PS.z = SpinBox2_3->GetValue() - SpinBox1_3->GetValue();
434     } else if (GetConstructorId() == 1) {
435       aVector.PS.x = SpinBox1_1->GetValue();
436       aVector.PS.y = SpinBox1_2->GetValue();
437       aVector.PS.z = SpinBox1_3->GetValue();
438     }
439
440     QStringList aParameters;
441     aParameters << SpinBox1_1->text();
442     aParameters << SpinBox1_2->text();
443     aParameters << SpinBox1_3->text();
444
445     int actionButton = ActionGroup->checkedId();
446     bool makeGroups = ( MakeGroupsCheck->isEnabled() && MakeGroupsCheck->isChecked() );
447     try {
448       SUIT_OverrideCursor aWaitCursor;
449       SMESH::SMESH_MeshEditor_var aMeshEditor = myMesh->GetMeshEditor();
450       switch ( actionButton ) {
451       case MOVE_ELEMS_BUTTON:
452         aMeshEditor->Translate(anElementsId, aVector, false);
453         if( !myMesh->_is_nil())
454           myMesh->SetParameters(SMESHGUI::JoinObjectParameters(aParameters));
455         break;
456       case COPY_ELEMS_BUTTON:
457         if ( makeGroups )
458           SMESH::ListOfGroups_var groups = 
459             aMeshEditor->TranslateMakeGroups(anElementsId, aVector);
460         else
461           aMeshEditor->Translate(anElementsId, aVector, true);
462         if( !myMesh->_is_nil())
463           myMesh->SetParameters(SMESHGUI::JoinObjectParameters(aParameters));
464         break;
465       case MAKE_MESH_BUTTON:
466         SMESH::SMESH_Mesh_var mesh = 
467           aMeshEditor->TranslateMakeMesh(anElementsId, aVector, makeGroups,
468                                          LineEditNewMesh->text().toLatin1().data());
469         if( !mesh->_is_nil())
470           mesh->SetParameters(SMESHGUI::JoinObjectParameters(aParameters));
471       }
472     } catch (...) {
473     }
474
475     SMESH::UpdateView();
476     if ( MakeGroupsCheck->isEnabled() && MakeGroupsCheck->isChecked() ||
477          actionButton == MAKE_MESH_BUTTON )
478       mySMESHGUI->updateObjBrowser(true); // new groups may appear
479     Init(false);
480     ConstructorsClicked(GetConstructorId());
481     SelectionIntoArgument();
482   }
483
484   return true;
485 }
486
487 //=================================================================================
488 // function : ClickOnOk()
489 // purpose  :
490 //=================================================================================
491 void SMESHGUI_TranslationDlg::ClickOnOk()
492 {
493   if( ClickOnApply() )
494     ClickOnCancel();
495 }
496
497 //=================================================================================
498 // function : ClickOnCancel()
499 // purpose  :
500 //=================================================================================
501 void SMESHGUI_TranslationDlg::ClickOnCancel()
502 {
503   disconnect(mySelectionMgr, 0, this, 0);
504   mySelectionMgr->clearFilters();
505   //mySelectionMgr->clearSelected();
506   SMESH::SetPointRepresentation(false);
507   if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
508     aViewWindow->SetSelectionMode( ActorSelection );
509   mySMESHGUI->ResetState();
510   reject();
511 }
512
513 //=================================================================================
514 // function : ClickOnHelp()
515 // purpose  :
516 //=================================================================================
517 void SMESHGUI_TranslationDlg::ClickOnHelp()
518 {
519   LightApp_Application* app = (LightApp_Application*)(SUIT_Session::session()->activeApplication());
520   if (app) 
521     app->onHelpContextModule(mySMESHGUI ? app->moduleName(mySMESHGUI->moduleName()) : QString(""), myHelpFileName);
522   else {
523     QString platform;
524 #ifdef WIN32
525     platform = "winapplication";
526 #else
527     platform = "application";
528 #endif
529     SUIT_MessageBox::warning(this, tr("WRN_WARNING"),
530                              tr("EXTERNAL_BROWSER_CANNOT_SHOW_PAGE").
531                              arg(app->resourceMgr()->stringValue("ExternalBrowser", 
532                                                                  platform)).
533                              arg(myHelpFileName));
534   }
535 }
536
537 //=======================================================================
538 // function : onTextChange()
539 // purpose  :
540 //=======================================================================
541 void SMESHGUI_TranslationDlg::onTextChange (const QString& theNewText)
542 {
543   QLineEdit* send = (QLineEdit*)sender();
544
545   if (myBusy) return;
546   myBusy = true;
547
548   if (send == LineEditElements)
549     myNbOkElements = 0;
550
551   buttonOk->setEnabled(false);
552   buttonApply->setEnabled(false);
553
554   // hilight entered elements
555   SMDS_Mesh* aMesh = 0;
556   if (myActor)
557     aMesh = myActor->GetObject()->GetMesh();
558
559   if (aMesh) {
560     Handle(SALOME_InteractiveObject) anIO = myActor->getIO();
561     
562     TColStd_MapOfInteger newIndices;
563
564     QStringList aListId = theNewText.split(" ", QString::SkipEmptyParts);
565
566     if (send == LineEditElements) {
567       for (int i = 0; i < aListId.count(); i++) {
568         const SMDS_MeshElement * e = aMesh->FindElement(aListId[ i ].toInt());
569         if (e)
570           newIndices.Add(e->GetID());
571         myNbOkElements++;
572       }
573     }
574
575     mySelector->AddOrRemoveIndex( anIO, newIndices, false );
576     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
577       aViewWindow->highlight( anIO, true, true );
578     
579     myElementsId = theNewText;
580   }
581
582   if (myNbOkElements) {
583     buttonOk->setEnabled(true);
584     buttonApply->setEnabled(true);
585   }
586
587   myBusy = false;
588 }
589
590 //=================================================================================
591 // function : SelectionIntoArgument()
592 // purpose  : Called when selection as changed or other case
593 //=================================================================================
594 void SMESHGUI_TranslationDlg::SelectionIntoArgument()
595 {
596   if (myBusy) return;
597
598   // clear
599   myActor = 0;
600   QString aString = "";
601
602   myBusy = true;
603   if (myEditCurrentArgument == (QWidget*)LineEditElements) {
604     LineEditElements->setText(aString);
605     myNbOkElements = 0;
606     buttonOk->setEnabled(false);
607     buttonApply->setEnabled(false);
608   }
609   myBusy = false;
610
611   if (!GroupButtons->isEnabled()) // inactive
612     return;
613
614   // get selected mesh
615   SALOME_ListIO aList;
616   mySelectionMgr->selectedObjects(aList,SVTK_Viewer::Type());
617
618   int nbSel = aList.Extent();
619   if (nbSel != 1)
620     return;
621
622   Handle(SALOME_InteractiveObject) IO = aList.First();
623   myMesh = SMESH::GetMeshByIO(IO);
624   if (myMesh->_is_nil())
625     return;
626
627   myActor = SMESH::FindActorByObject(myMesh);
628   if (!myActor)
629     myActor = SMESH::FindActorByEntry(IO->getEntry());
630   if (!myActor)
631     return;
632
633   int aNbUnits = 0;
634
635   if (myEditCurrentArgument == (QWidget*)LineEditElements) {
636     myElementsId = "";
637
638     // MakeGroups is available if there are groups and "Copy"
639     if ( myMesh->NbGroups() == 0 ) {
640       MakeGroupsCheck->setChecked(false);
641       MakeGroupsCheck->setEnabled(false);
642     }
643     else if ( ActionGroup->checkedId() != MOVE_ELEMS_BUTTON ) {
644       MakeGroupsCheck->setEnabled(true);
645     }
646
647     if (CheckBoxMesh->isChecked()) {
648       SMESH::GetNameOfSelectedIObjects( mySelectionMgr, aString );
649
650       if (!SMESH::IObjectToInterface<SMESH::SMESH_Mesh>(IO)->_is_nil()) { //MESH
651         // get IDs from mesh
652         SMDS_Mesh* aSMDSMesh = myActor->GetObject()->GetMesh();
653         if (!aSMDSMesh)
654           return;
655
656         for (int i = aSMDSMesh->MinElementID(); i <= aSMDSMesh->MaxElementID(); i++) {
657           const SMDS_MeshElement * e = aSMDSMesh->FindElement(i);
658           if (e) {
659             myElementsId += QString(" %1").arg(i);
660             aNbUnits++;
661           }
662         }
663       } else if (!SMESH::IObjectToInterface<SMESH::SMESH_subMesh>(IO)->_is_nil()) { //SUBMESH
664         // get submesh
665         SMESH::SMESH_subMesh_var aSubMesh = SMESH::IObjectToInterface<SMESH::SMESH_subMesh>(IO);
666
667         // get IDs from submesh
668         SMESH::long_array_var anElementsIds = new SMESH::long_array;
669         anElementsIds = aSubMesh->GetElementsId();
670         for (int i = 0; i < anElementsIds->length(); i++) {
671           myElementsId += QString(" %1").arg(anElementsIds[i]);
672         }
673         aNbUnits = anElementsIds->length();
674       } else { // GROUP
675         // get smesh group
676         SMESH::SMESH_GroupBase_var aGroup =
677           SMESH::IObjectToInterface<SMESH::SMESH_GroupBase>(IO);
678         if (aGroup->_is_nil())
679           return;
680
681         // get IDs from smesh group
682         SMESH::long_array_var anElementsIds = new SMESH::long_array;
683         anElementsIds = aGroup->GetListOfID();
684         for (int i = 0; i < anElementsIds->length(); i++) {
685           myElementsId += QString(" %1").arg(anElementsIds[i]);
686         }
687         aNbUnits = anElementsIds->length();
688       }
689     } else {
690       aNbUnits = SMESH::GetNameOfSelectedElements(mySelector, IO, aString);
691       myElementsId = aString;
692     }
693
694     if (aNbUnits < 1)
695       return;
696
697     myNbOkElements = true;
698   } else {
699     aNbUnits = SMESH::GetNameOfSelectedNodes(mySelector, IO, aString);
700     if (aNbUnits != 1)
701       return;
702
703     SMDS_Mesh* aMesh =  myActor->GetObject()->GetMesh();
704     if (!aMesh)
705       return;
706
707     const SMDS_MeshNode * n = aMesh->FindNode(aString.toInt());
708     if (!n)
709       return;
710
711     double x = n->X();
712     double y = n->Y();
713     double z = n->Z();
714
715     if (myEditCurrentArgument == (QWidget*)SpinBox1_1) {
716       SpinBox1_1->SetValue(x);
717       SpinBox1_2->SetValue(y);
718       SpinBox1_3->SetValue(z);
719     } else if (myEditCurrentArgument == (QWidget*)SpinBox2_1) {
720       SpinBox2_1->SetValue(x);
721       SpinBox2_2->SetValue(y);
722       SpinBox2_3->SetValue(z);
723     }
724   }
725
726   myBusy = true;
727   if (myEditCurrentArgument == (QWidget*)LineEditElements) {
728     LineEditElements->setText(aString);
729     setNewMeshName();
730   }
731   myBusy = false;
732
733   // OK
734   if (myNbOkElements) {
735     buttonOk->setEnabled(true);
736     buttonApply->setEnabled(true);
737   }
738 }
739
740 //=================================================================================
741 // function : SetEditCurrentArgument()
742 // purpose  :
743 //=================================================================================
744 void SMESHGUI_TranslationDlg::SetEditCurrentArgument()
745 {
746   QPushButton* send = (QPushButton*)sender();
747
748   disconnect(mySelectionMgr, 0, this, 0);
749   mySelectionMgr->clearSelected();
750   mySelectionMgr->clearFilters();
751
752   if (send == SelectElementsButton) {
753     myEditCurrentArgument = (QWidget*)LineEditElements;
754     SMESH::SetPointRepresentation(false);
755     if (CheckBoxMesh->isChecked()) {
756       if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
757         aViewWindow->SetSelectionMode( ActorSelection );
758       mySelectionMgr->installFilter(myMeshOrSubMeshOrGroupFilter);
759     } else {
760
761       if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
762         aViewWindow->SetSelectionMode( CellSelection );
763     }
764   } else if (send == SelectButton1) {
765     myEditCurrentArgument = (QWidget*)SpinBox1_1;
766     SMESH::SetPointRepresentation(true);
767
768     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
769       aViewWindow->SetSelectionMode( NodeSelection );
770   } else if (send == SelectButton2) {
771     myEditCurrentArgument = (QWidget*)SpinBox2_1;
772     SMESH::SetPointRepresentation(true);
773
774     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
775       aViewWindow->SetSelectionMode( NodeSelection );
776   }
777
778   myEditCurrentArgument->setFocus();
779   connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
780   SelectionIntoArgument();
781 }
782
783 //=================================================================================
784 // function : DeactivateActiveDialog()
785 // purpose  :
786 //=================================================================================
787 void SMESHGUI_TranslationDlg::DeactivateActiveDialog()
788 {
789   if (ConstructorsBox->isEnabled()) {
790     ConstructorsBox->setEnabled(false);
791     GroupArguments->setEnabled(false);
792     GroupButtons->setEnabled(false);
793     mySMESHGUI->ResetState();
794     mySMESHGUI->SetActiveDialogBox(0);
795   }
796 }
797
798 //=================================================================================
799 // function : ActivateThisDialog()
800 // purpose  :
801 //=================================================================================
802 void SMESHGUI_TranslationDlg::ActivateThisDialog()
803 {
804   /* Emit a signal to deactivate the active dialog */
805   mySMESHGUI->EmitSignalDeactivateDialog();
806   ConstructorsBox->setEnabled(true);
807   GroupArguments->setEnabled(true);
808   GroupButtons->setEnabled(true);
809
810   mySMESHGUI->SetActiveDialogBox((QDialog*)this);
811
812   if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
813     aViewWindow->SetSelectionMode( CellSelection );
814
815   SelectionIntoArgument();
816 }
817
818 //=================================================================================
819 // function : enterEvent()
820 // purpose  :
821 //=================================================================================
822 void SMESHGUI_TranslationDlg::enterEvent (QEvent*)
823 {
824   if (!ConstructorsBox->isEnabled())
825     ActivateThisDialog();
826 }
827
828 //=================================================================================
829 // function : closeEvent()
830 // purpose  :
831 //=================================================================================
832 void SMESHGUI_TranslationDlg::closeEvent (QCloseEvent*)
833 {
834   /* same than click on cancel button */
835   ClickOnCancel();
836 }
837
838 //=======================================================================
839 //function : hideEvent
840 //purpose  : caused by ESC key
841 //=======================================================================
842 void SMESHGUI_TranslationDlg::hideEvent (QHideEvent*)
843 {
844   if (!isMinimized())
845     ClickOnCancel();
846 }
847
848 //=======================================================================
849 //function : onSelectMesh
850 //purpose  :
851 //=======================================================================
852 void SMESHGUI_TranslationDlg::onSelectMesh (bool toSelectMesh)
853 {
854   if (toSelectMesh)
855     TextLabelElements->setText(tr("SMESH_NAME"));
856   else
857     TextLabelElements->setText(tr("SMESH_ID_ELEMENTS"));
858
859   if (myEditCurrentArgument != LineEditElements) {
860     LineEditElements->clear();
861     return;
862   }
863
864   mySelectionMgr->clearFilters();
865   SMESH::SetPointRepresentation(false);
866
867   if (toSelectMesh) {
868     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
869       aViewWindow->SetSelectionMode( ActorSelection );
870     mySelectionMgr->installFilter(myMeshOrSubMeshOrGroupFilter);
871     LineEditElements->setReadOnly(true);
872     LineEditElements->setValidator(0);
873   } else {
874     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
875       aViewWindow->SetSelectionMode( CellSelection );
876     LineEditElements->setReadOnly(false);
877     LineEditElements->setValidator(myIdValidator);
878     onTextChange(LineEditElements->text());
879   }
880
881   SelectionIntoArgument();
882 }
883
884 //=======================================================================
885 //function : onActionClicked
886 //purpose  : slot called when an action type changed
887 //=======================================================================
888
889 void SMESHGUI_TranslationDlg::onActionClicked(int button)
890 {
891   switch ( button ) {
892   case MOVE_ELEMS_BUTTON:
893     MakeGroupsCheck->setEnabled(false);
894     LineEditNewMesh->setEnabled(false);
895     break;
896   case COPY_ELEMS_BUTTON:
897     LineEditNewMesh->setEnabled(false);
898     MakeGroupsCheck->setText( tr("SMESH_MAKE_GROUPS"));
899     if ( myMesh->_is_nil() || myMesh->NbGroups() > 0)
900       MakeGroupsCheck->setEnabled(true);
901     else
902       MakeGroupsCheck->setEnabled(false);
903     break;
904   case MAKE_MESH_BUTTON:
905     LineEditNewMesh->setEnabled(true);
906     MakeGroupsCheck->setText( tr("SMESH_COPY_GROUPS"));
907     if ( myMesh->_is_nil() || myMesh->NbGroups() > 0)
908       MakeGroupsCheck->setEnabled(true);
909     else
910       MakeGroupsCheck->setEnabled(false);
911     break;
912   }
913   setNewMeshName();
914 }
915
916 //=======================================================================
917 //function : setNewMeshName
918 //purpose  : update contents of LineEditNewMesh
919 //=======================================================================
920
921 void SMESHGUI_TranslationDlg::setNewMeshName()
922 {
923   LineEditNewMesh->setText("");
924   if ( LineEditNewMesh->isEnabled() && !myMesh->_is_nil() ) {
925     QString name;
926     if ( CheckBoxMesh->isChecked() ) {
927       name = LineEditElements->text();
928     }
929     else {
930       _PTR(SObject) meshSO = SMESH::FindSObject( myMesh );
931       name = meshSO->GetName().c_str();
932     }
933     if ( !name.isEmpty() )
934       LineEditNewMesh->setText( SMESH::UniqueMeshName( name, "translated"));
935   }
936 }
937
938 //=================================================================================
939 // function : GetConstructorId()
940 // purpose  :
941 //=================================================================================
942 int SMESHGUI_TranslationDlg::GetConstructorId()
943 {
944   return GroupConstructors->checkedId();
945 }
946
947 //=================================================================================
948 // function : keyPressEvent()
949 // purpose  :
950 //=================================================================================
951 void SMESHGUI_TranslationDlg::keyPressEvent( QKeyEvent* e )
952 {
953   QDialog::keyPressEvent( e );
954   if ( e->isAccepted() )
955     return;
956
957   if ( e->key() == Qt::Key_F1 ) {
958     e->accept();
959     ClickOnHelp();
960   }
961 }
962
963 //=================================================================================
964 // function : isValid
965 // purpose  :
966 //=================================================================================
967 bool SMESHGUI_TranslationDlg::isValid()
968 {
969   bool ok = true;
970   QString msg;
971
972   ok = SpinBox1_1->isValid( msg, true ) && ok;
973   ok = SpinBox1_2->isValid( msg, true ) && ok;
974   ok = SpinBox1_3->isValid( msg, true ) && ok;
975   if (GetConstructorId() == 0) {
976     ok = SpinBox2_1->isValid( msg, true ) && ok;
977     ok = SpinBox2_2->isValid( msg, true ) && ok;
978     ok = SpinBox2_3->isValid( msg, true ) && ok;
979   }
980
981   if( !ok ) {
982     QString str( tr( "SMESH_INCORRECT_INPUT" ) );
983     if ( !msg.isEmpty() )
984       str += "\n" + msg;
985     SUIT_MessageBox::critical( this, tr( "SMESH_ERROR" ), str );
986     return false;
987   }
988   return true;
989 }
990