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