1 // SMESH SMESHGUI : GUI for SMESH component
3 // Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
24 // File : SMESHGUI_TranslationDlg.cxx
25 // Author : Michael ZORIN
29 #include "SMESHGUI_TranslationDlg.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"
38 #include "SMESH_Actor.h"
39 #include "SMESH_TypeFilter.hxx"
40 #include "SMESH_LogicalFilter.hxx"
41 #include "SMDS_Mesh.hxx"
43 #include "SUIT_Desktop.h"
44 #include "SUIT_ResourceMgr.h"
46 #include "SVTK_ViewModel.h"
47 #include "SVTK_Selection.h"
48 #include "SVTK_ViewWindow.h"
49 #include "SVTK_Selector.h"
50 #include "SALOME_ListIO.hxx"
52 #include "utilities.h"
55 #include <TColStd_MapOfInteger.hxx>
56 #include <TColStd_IndexedMapOfInteger.hxx>
59 #include <qapplication.h>
60 #include <qbuttongroup.h>
61 #include <qgroupbox.h>
63 #include <qlineedit.h>
64 #include <qpushbutton.h>
65 #include <qradiobutton.h>
66 #include <qcheckbox.h>
72 #include "SALOMEconfig.h"
73 #include CORBA_SERVER_HEADER(SMESH_Group)
77 //=================================================================================
78 // class : SMESHGUI_TranslationDlg()
80 //=================================================================================
81 SMESHGUI_TranslationDlg::SMESHGUI_TranslationDlg( SMESHGUI* theModule, const char* name,
82 bool modal, WFlags fl)
83 : QDialog( SMESH::GetDesktop( theModule ), name, modal, WStyle_Customize | WStyle_NormalBorder |
84 WStyle_Title | WStyle_SysMenu | Qt::WDestructiveClose),
85 mySMESHGUI( theModule ),
86 mySelectionMgr( SMESH::GetSelectionMgr( theModule ) ),
87 myViewWindow( SMESH::GetViewWindow( theModule ) ),
88 mySelector( myViewWindow->GetSelector() )
90 QPixmap image0 (SMESHGUI::resourceMgr()->loadPixmap("SMESH", tr("ICON_SMESH_TRANSLATION_POINTS")));
91 QPixmap image1 (SMESHGUI::resourceMgr()->loadPixmap("SMESH", tr("ICON_SMESH_TRANSLATION_VECTOR")));
92 QPixmap image2 (SMESHGUI::resourceMgr()->loadPixmap("SMESH", tr("ICON_SELECT")));
95 setName("SMESHGUI_TranslationDlg");
97 setCaption(tr("SMESH_TRANSLATION"));
98 setSizeGripEnabled(TRUE);
99 SMESHGUI_TranslationDlgLayout = new QGridLayout(this);
100 SMESHGUI_TranslationDlgLayout->setSpacing(6);
101 SMESHGUI_TranslationDlgLayout->setMargin(11);
103 /***************************************************************/
104 GroupConstructors = new QButtonGroup(this, "GroupConstructors");
105 GroupConstructors->setSizePolicy(QSizePolicy((QSizePolicy::SizeType)5, (QSizePolicy::SizeType)0, 0, 0, GroupConstructors->sizePolicy().hasHeightForWidth()));
106 GroupConstructors->setTitle(tr("SMESH_TRANSLATION" ));
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 RadioButton1= new QRadioButton(GroupConstructors, "RadioButton1");
116 RadioButton1->setText(tr("" ));
117 RadioButton1->setPixmap(image0);
118 GroupConstructorsLayout->addWidget(RadioButton1, 0, 0);
119 RadioButton2= new QRadioButton(GroupConstructors, "RadioButton2");
120 RadioButton2->setText(tr("" ));
121 RadioButton2->setPixmap(image1);
122 GroupConstructorsLayout->addWidget(RadioButton2, 0, 2 );
123 SMESHGUI_TranslationDlgLayout->addWidget(GroupConstructors, 0, 0);
125 /***************************************************************/
126 GroupButtons = new QGroupBox(this, "GroupButtons");
127 GroupButtons->setSizePolicy(QSizePolicy((QSizePolicy::SizeType)7, (QSizePolicy::SizeType)0, 0, 0, GroupButtons->sizePolicy().hasHeightForWidth()));
128 GroupButtons->setGeometry(QRect(10, 10, 281, 48));
129 GroupButtons->setTitle(tr("" ));
130 GroupButtons->setColumnLayout(0, Qt::Vertical);
131 GroupButtons->layout()->setSpacing(0);
132 GroupButtons->layout()->setMargin(0);
133 GroupButtonsLayout = new QGridLayout(GroupButtons->layout());
134 GroupButtonsLayout->setAlignment(Qt::AlignTop);
135 GroupButtonsLayout->setSpacing(6);
136 GroupButtonsLayout->setMargin(11);
137 buttonCancel = new QPushButton(GroupButtons, "buttonCancel");
138 buttonCancel->setText(tr("SMESH_BUT_CLOSE" ));
139 buttonCancel->setAutoDefault(TRUE);
140 GroupButtonsLayout->addWidget(buttonCancel, 0, 3);
141 buttonApply = new QPushButton(GroupButtons, "buttonApply");
142 buttonApply->setText(tr("SMESH_BUT_APPLY" ));
143 buttonApply->setAutoDefault(TRUE);
144 GroupButtonsLayout->addWidget(buttonApply, 0, 1);
145 QSpacerItem* spacer_9 = new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
146 GroupButtonsLayout->addItem(spacer_9, 0, 2);
147 buttonOk = new QPushButton(GroupButtons, "buttonOk");
148 buttonOk->setText(tr("SMESH_BUT_OK" ));
149 buttonOk->setAutoDefault(TRUE);
150 buttonOk->setDefault(TRUE);
151 GroupButtonsLayout->addWidget(buttonOk, 0, 0);
152 SMESHGUI_TranslationDlgLayout->addWidget(GroupButtons, 2, 0);
154 /***************************************************************/
155 GroupArguments = new QGroupBox(this, "GroupArguments");
156 GroupArguments->setTitle(tr("SMESH_ARGUMENTS"));
157 GroupArguments->setColumnLayout(0, Qt::Vertical);
158 GroupArguments->layout()->setSpacing(0);
159 GroupArguments->layout()->setMargin(0);
160 GroupArgumentsLayout = new QGridLayout(GroupArguments->layout());
161 GroupArgumentsLayout->setAlignment(Qt::AlignTop);
162 GroupArgumentsLayout->setSpacing(6);
163 GroupArgumentsLayout->setMargin(11);
165 // Controls for elements selection
166 TextLabelElements = new QLabel(GroupArguments, "TextLabelElements");
167 TextLabelElements->setText(tr("SMESH_ID_ELEMENTS" ));
168 TextLabelElements->setFixedWidth(74);
169 GroupArgumentsLayout->addWidget(TextLabelElements, 0, 0);
171 SelectElementsButton = new QPushButton(GroupArguments, "SelectElementsButton");
172 SelectElementsButton->setText(tr("" ));
173 SelectElementsButton->setPixmap(image2);
174 SelectElementsButton->setToggleButton(FALSE);
175 GroupArgumentsLayout->addWidget(SelectElementsButton, 0, 1);
177 LineEditElements = new QLineEdit(GroupArguments, "LineEditElements");
178 LineEditElements->setValidator(new SMESHGUI_IdValidator(this, "validator"));
179 GroupArgumentsLayout->addMultiCellWidget(LineEditElements, 0, 0, 2, 7);
181 // Control for the whole mesh selection
182 CheckBoxMesh = new QCheckBox(GroupArguments, "CheckBoxMesh");
183 CheckBoxMesh->setText(tr("SMESH_SELECT_WHOLE_MESH" ));
184 GroupArgumentsLayout->addMultiCellWidget(CheckBoxMesh, 1, 1, 0, 7);
186 // Controls for vector and points selection
187 TextLabel1 = new QLabel(GroupArguments, "TextLabel1");
188 GroupArgumentsLayout->addWidget(TextLabel1, 2, 0);
190 SelectButton1 = new QPushButton(GroupArguments, "SelectButton1");
191 SelectButton1->setText(tr("" ));
192 SelectButton1->setPixmap(image2);
193 SelectButton1->setToggleButton(FALSE);
194 GroupArgumentsLayout->addWidget(SelectButton1, 2, 1);
196 TextLabel1_1 = new QLabel(GroupArguments, "TextLabel1_1");
197 GroupArgumentsLayout->addWidget(TextLabel1_1, 2, 2);
199 SpinBox1_1 = new SMESHGUI_SpinBox(GroupArguments, "SpinBox1_1");
200 GroupArgumentsLayout->addWidget(SpinBox1_1, 2, 3);
202 TextLabel1_2 = new QLabel(GroupArguments, "TextLabel1_2");
203 GroupArgumentsLayout->addWidget(TextLabel1_2, 2, 4);
205 SpinBox1_2 = new SMESHGUI_SpinBox(GroupArguments, "SpinBox1_2");
206 GroupArgumentsLayout->addWidget(SpinBox1_2, 2, 5);
208 TextLabel1_3 = new QLabel(GroupArguments, "TextLabel1_3");
209 GroupArgumentsLayout->addWidget(TextLabel1_3, 2, 6);
211 SpinBox1_3 = new SMESHGUI_SpinBox(GroupArguments, "SpinBox1_3");
212 GroupArgumentsLayout->addWidget(SpinBox1_3, 2, 7);
214 TextLabel2 = new QLabel(GroupArguments, "TextLabel2");
215 TextLabel2->setText(tr("SMESH_POINT_2" ));
216 GroupArgumentsLayout->addWidget(TextLabel2, 3, 0);
218 SelectButton2 = new QPushButton(GroupArguments, "SelectButton2");
219 SelectButton2->setText(tr("" ));
220 SelectButton2->setPixmap(image2);
221 SelectButton2->setToggleButton(FALSE);
222 GroupArgumentsLayout->addWidget(SelectButton2, 3, 1);
224 TextLabel2_1 = new QLabel(GroupArguments, "TextLabel2_1");
225 TextLabel2_1->setText(tr("SMESH_X" ));
226 GroupArgumentsLayout->addWidget(TextLabel2_1, 3, 2);
228 SpinBox2_1 = new SMESHGUI_SpinBox(GroupArguments, "SpinBox2_1");
229 GroupArgumentsLayout->addWidget(SpinBox2_1, 3, 3);
231 TextLabel2_2 = new QLabel(GroupArguments, "TextLabel2_2");
232 TextLabel2_2->setText(tr("SMESH_Y" ));
233 GroupArgumentsLayout->addWidget(TextLabel2_2, 3, 4);
235 SpinBox2_2 = new SMESHGUI_SpinBox(GroupArguments, "SpinBox2_2");
236 GroupArgumentsLayout->addWidget(SpinBox2_2, 3, 5);
238 TextLabel2_3 = new QLabel(GroupArguments, "TextLabel2_3");
239 TextLabel2_3->setText(tr("SMESH_Z"));
240 GroupArgumentsLayout->addWidget(TextLabel2_3, 3, 6);
242 SpinBox2_3 = new SMESHGUI_SpinBox(GroupArguments, "SpinBox2_3");
243 GroupArgumentsLayout->addWidget(SpinBox2_3, 3, 7);
245 // Controls for "Create a copy" option
246 CheckBoxCopy = new QCheckBox(GroupArguments, "CheckBoxCopy");
247 CheckBoxCopy->setText(tr("SMESH_CREATE_COPY"));
248 GroupArgumentsLayout->addMultiCellWidget(CheckBoxCopy, 4, 4, 0, 2);
251 SMESHGUI_TranslationDlgLayout->addWidget(GroupArguments, 1, 0);
253 /* Initialisations */
254 SpinBox1_1->RangeStepAndValidator(-999999.999, +999999.999, 10.0, 3);
255 SpinBox1_2->RangeStepAndValidator(-999999.999, +999999.999, 10.0, 3);
256 SpinBox1_3->RangeStepAndValidator(-999999.999, +999999.999, 10.0, 3);
257 SpinBox2_1->RangeStepAndValidator(-999999.999, +999999.999, 10.0, 3);
258 SpinBox2_2->RangeStepAndValidator(-999999.999, +999999.999, 10.0, 3);
259 SpinBox2_3->RangeStepAndValidator(-999999.999, +999999.999, 10.0, 3);
261 GroupArguments->show();
262 RadioButton1->setChecked(TRUE);
264 mySMESHGUI->SetActiveDialogBox((QDialog*)this);
266 // Costruction of the logical filter
267 SMESH_TypeFilter* aMeshOrSubMeshFilter = new SMESH_TypeFilter (MESHorSUBMESH);
268 SMESH_TypeFilter* aSmeshGroupFilter = new SMESH_TypeFilter (GROUP);
270 QPtrList<SUIT_SelectionFilter> aListOfFilters;
271 if (aMeshOrSubMeshFilter) aListOfFilters.append(aMeshOrSubMeshFilter);
272 if (aSmeshGroupFilter) aListOfFilters.append(aSmeshGroupFilter);
274 myMeshOrSubMeshOrGroupFilter =
275 new SMESH_LogicalFilter(aListOfFilters, SMESH_LogicalFilter::LO_OR);
279 /* signals and slots connections */
280 connect(buttonOk, SIGNAL(clicked()), this, SLOT(ClickOnOk()));
281 connect(buttonCancel, SIGNAL(clicked()), this, SLOT(ClickOnCancel()));
282 connect(buttonApply, SIGNAL(clicked()), this, SLOT(ClickOnApply()));
283 connect(GroupConstructors, SIGNAL(clicked(int)), SLOT(ConstructorsClicked(int)));
285 connect(SelectElementsButton, SIGNAL (clicked()), this, SLOT(SetEditCurrentArgument()));
286 connect(SelectButton1, SIGNAL (clicked()), this, SLOT(SetEditCurrentArgument()));
287 connect(SelectButton2, SIGNAL (clicked()), this, SLOT(SetEditCurrentArgument()));
289 connect(mySMESHGUI, SIGNAL (SignalDeactivateActiveDialog()), this, SLOT(DeactivateActiveDialog()));
290 connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
291 /* to close dialog if study change */
292 connect(mySMESHGUI, SIGNAL (SignalCloseAllDialogs()), this, SLOT(ClickOnCancel()));
293 connect(LineEditElements, SIGNAL(textChanged(const QString&)), SLOT(onTextChange(const QString&)));
294 connect(CheckBoxMesh, SIGNAL(toggled(bool)), SLOT(onSelectMesh(bool)));
296 /* Move widget on the botton right corner of main widget */
298 mySMESHGUI->DefineDlgPosition(this, x, y);
300 this->show(); /* displays Dialog */
302 ConstructorsClicked(0);
306 //=================================================================================
307 // function : ~SMESHGUI_TranslationDlg()
308 // purpose : Destroys the object and frees any allocated resources
309 //=================================================================================
310 SMESHGUI_TranslationDlg::~SMESHGUI_TranslationDlg()
312 // no need to delete child widgets, Qt does it all for us
315 //=================================================================================
318 //=================================================================================
319 void SMESHGUI_TranslationDlg::Init (bool ResetControls)
323 myEditCurrentArgument = 0;
324 LineEditElements->clear();
328 buttonOk->setEnabled(false);
329 buttonApply->setEnabled(false);
332 myMesh = SMESH::SMESH_Mesh::_nil();
335 SpinBox1_1->SetValue(0.0);
336 SpinBox1_2->SetValue(0.0);
337 SpinBox1_3->SetValue(0.0);
338 SpinBox2_1->SetValue(0.0);
339 SpinBox2_2->SetValue(0.0);
340 SpinBox2_3->SetValue(0.0);
342 CheckBoxCopy->setChecked(false);
343 CheckBoxMesh->setChecked(false);
348 //=================================================================================
349 // function : ConstructorsClicked()
350 // purpose : Radio button management
351 //=================================================================================
352 void SMESHGUI_TranslationDlg::ConstructorsClicked (int constructorId)
354 disconnect(mySelectionMgr, 0, this, 0);
356 switch (constructorId) {
359 TextLabel1->setText(tr("SMESH_POINT_1"));
360 TextLabel1_1->setText(tr("SMESH_X"));
361 TextLabel1_2->setText(tr("SMESH_Y"));
362 TextLabel1_3->setText(tr("SMESH_Z"));
364 SelectButton1->show();
366 SelectButton2->show();
367 TextLabel2_1->show();
369 TextLabel2_2->show();
371 TextLabel2_3->show();
377 TextLabel1->setText(tr("SMESH_VECTOR"));
378 TextLabel1_1->setText(tr("SMESH_DX"));
379 TextLabel1_2->setText(tr("SMESH_DY"));
380 TextLabel1_3->setText(tr("SMESH_DZ"));
382 SelectButton1->hide();
384 SelectButton2->hide();
385 TextLabel2_1->hide();
387 TextLabel2_2->hide();
389 TextLabel2_3->hide();
395 if (myEditCurrentArgument != (QWidget*)LineEditElements) {
396 SMESH::SetPointRepresentation(false);
397 if (!CheckBoxMesh->isChecked())
399 myViewWindow->SetSelectionMode( CellSelection );
402 myEditCurrentArgument = (QWidget*)LineEditElements;
403 LineEditElements->setFocus();
405 if (CheckBoxMesh->isChecked())
408 connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
411 //=================================================================================
412 // function : ClickOnApply()
414 //=================================================================================
415 void SMESHGUI_TranslationDlg::ClickOnApply()
417 if (mySMESHGUI->isActiveStudyLocked())
420 if (myNbOkElements) {
421 QStringList aListElementsId = QStringList::split(" ", myElementsId, false);
423 SMESH::long_array_var anElementsId = new SMESH::long_array;
425 anElementsId->length(aListElementsId.count());
426 for (int i = 0; i < aListElementsId.count(); i++)
427 anElementsId[i] = aListElementsId[i].toInt();
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();
440 bool toCreateCopy = CheckBoxCopy->isChecked();
443 SMESH::SMESH_MeshEditor_var aMeshEditor = myMesh->GetMeshEditor();
444 QApplication::setOverrideCursor(Qt::waitCursor);
445 aMeshEditor->Translate(anElementsId.inout(), aVector, toCreateCopy);
446 QApplication::restoreOverrideCursor();
450 mySelectionMgr->clearSelected();
453 ConstructorsClicked(GetConstructorId());
457 //=================================================================================
458 // function : ClickOnOk()
460 //=================================================================================
461 void SMESHGUI_TranslationDlg::ClickOnOk()
467 //=================================================================================
468 // function : ClickOnCancel()
470 //=================================================================================
471 void SMESHGUI_TranslationDlg::ClickOnCancel()
473 disconnect(mySelectionMgr, 0, this, 0);
474 mySelectionMgr->clearFilters();
475 mySelectionMgr->clearSelected();
476 SMESH::SetPointRepresentation(false);
477 myViewWindow->SetSelectionMode( ActorSelection );
478 mySMESHGUI->ResetState();
482 //=======================================================================
483 // function : onTextChange()
485 //=======================================================================
486 void SMESHGUI_TranslationDlg::onTextChange (const QString& theNewText)
488 QLineEdit* send = (QLineEdit*)sender();
493 if (send == LineEditElements)
496 buttonOk->setEnabled(false);
497 buttonApply->setEnabled(false);
499 // hilight entered elements
500 SMDS_Mesh* aMesh = 0;
502 aMesh = myActor->GetObject()->GetMesh();
505 //mySelectionMgr->clearSelected();
506 //mySelectionMgr->AddIObject(myActor->getIO());
508 aList.Append(myActor->getIO());
509 mySelectionMgr->setSelectedObjects(aList, false);
511 TColStd_IndexedMapOfInteger selectedIndices;
512 TColStd_MapOfInteger newIndices;
513 mySelector->GetIndex( myActor->getIO(), selectedIndices );
515 QStringList aListId = QStringList::split(" ", theNewText, false);
517 if (send == LineEditElements) {
518 for (int i = 0; i < aListId.count(); i++) {
519 const SMDS_MeshElement * e = aMesh->FindElement(aListId[ i ].toInt());
521 //if (!mySelectionMgr->IsIndexSelected(myActor->getIO(), e->GetID())) {
522 if (selectedIndices.Add(e->GetID())) {
523 //mySelectionMgr->AddOrRemoveIndex (myActor->getIO(), e->GetID(), true);
524 newIndices.Add(e->GetID());
530 if (newIndices.Extent() > 0){
531 mySelector->AddOrRemoveIndex( myActor->getIO(), newIndices, true );
532 myViewWindow->highlight( myActor->getIO(), true, true );
535 myElementsId = theNewText;
539 if (myNbOkElements) {
540 buttonOk->setEnabled(true);
541 buttonApply->setEnabled(true);
547 //=================================================================================
548 // function : SelectionIntoArgument()
549 // purpose : Called when selection as changed or other case
550 //=================================================================================
551 void SMESHGUI_TranslationDlg::SelectionIntoArgument()
557 QString aString = "";
560 if (myEditCurrentArgument == (QWidget*)LineEditElements) {
561 LineEditElements->setText(aString);
563 buttonOk->setEnabled(false);
564 buttonApply->setEnabled(false);
568 if (!GroupButtons->isEnabled()) // inactive
573 mySelectionMgr->selectedObjects(aList,SVTK_Viewer::Type());
575 int nbSel = aList.Extent();
579 Handle(SALOME_InteractiveObject) IO = aList.First();
580 myMesh = SMESH::GetMeshByIO(IO);
581 if (myMesh->_is_nil())
584 myActor = SMESH::FindActorByObject(myMesh);
586 myActor = SMESH::FindActorByEntry(IO->getEntry());
592 if (myEditCurrentArgument == (QWidget*)LineEditElements) {
595 if (CheckBoxMesh->isChecked()) {
596 SMESH::GetNameOfSelectedIObjects( mySelectionMgr, aString );
598 if (!SMESH::IObjectToInterface<SMESH::SMESH_Mesh>(IO)->_is_nil()) { //MESH
600 SMDS_Mesh* aSMDSMesh = myActor->GetObject()->GetMesh();
604 for (int i = aSMDSMesh->MinElementID(); i <= aSMDSMesh->MaxElementID(); i++) {
605 const SMDS_MeshElement * e = aSMDSMesh->FindElement(i);
607 myElementsId += QString(" %1").arg(i);
611 } else if (!SMESH::IObjectToInterface<SMESH::SMESH_subMesh>(IO)->_is_nil()) { //SUBMESH
613 SMESH::SMESH_subMesh_var aSubMesh = SMESH::IObjectToInterface<SMESH::SMESH_subMesh>(IO);
615 // get IDs from submesh
616 SMESH::long_array_var anElementsIds = new SMESH::long_array;
617 anElementsIds = aSubMesh->GetElementsId();
618 for (int i = 0; i < anElementsIds->length(); i++) {
619 myElementsId += QString(" %1").arg(anElementsIds[i]);
621 aNbUnits = anElementsIds->length();
624 SMESH::SMESH_GroupBase_var aGroup =
625 SMESH::IObjectToInterface<SMESH::SMESH_GroupBase>(IO);
626 if (aGroup->_is_nil())
629 // get IDs from smesh group
630 SMESH::long_array_var anElementsIds = new SMESH::long_array;
631 anElementsIds = aGroup->GetListOfID();
632 for (int i = 0; i < anElementsIds->length(); i++) {
633 myElementsId += QString(" %1").arg(anElementsIds[i]);
635 aNbUnits = anElementsIds->length();
638 aNbUnits = SMESH::GetNameOfSelectedElements(mySelector, myActor->getIO(), aString);
639 myElementsId = aString;
645 myNbOkElements = true;
647 aNbUnits = SMESH::GetNameOfSelectedNodes(mySelector, myActor->getIO(), aString);
651 SMDS_Mesh* aMesh = myActor->GetObject()->GetMesh();
655 const SMDS_MeshNode * n = aMesh->FindNode(aString.toInt());
663 if (myEditCurrentArgument == (QWidget*)SpinBox1_1) {
664 SpinBox1_1->SetValue(x);
665 SpinBox1_2->SetValue(y);
666 SpinBox2_3->SetValue(z);
667 } else if (myEditCurrentArgument == (QWidget*)SpinBox2_1) {
668 SpinBox2_1->SetValue(x);
669 SpinBox2_2->SetValue(y);
670 SpinBox2_3->SetValue(z);
675 if (myEditCurrentArgument == (QWidget*)LineEditElements)
676 LineEditElements->setText(aString);
680 if (myNbOkElements) {
681 buttonOk->setEnabled(true);
682 buttonApply->setEnabled(true);
686 //=================================================================================
687 // function : SetEditCurrentArgument()
689 //=================================================================================
690 void SMESHGUI_TranslationDlg::SetEditCurrentArgument()
692 QPushButton* send = (QPushButton*)sender();
694 disconnect(mySelectionMgr, 0, this, 0);
695 mySelectionMgr->clearSelected();
696 mySelectionMgr->clearFilters();
698 if (send == SelectElementsButton) {
699 myEditCurrentArgument = (QWidget*)LineEditElements;
700 SMESH::SetPointRepresentation(false);
701 if (CheckBoxMesh->isChecked()) {
702 myViewWindow->SetSelectionMode( ActorSelection );
703 mySelectionMgr->installFilter(myMeshOrSubMeshOrGroupFilter);
706 myViewWindow->SetSelectionMode( CellSelection );
708 } else if (send == SelectButton1) {
709 myEditCurrentArgument = (QWidget*)SpinBox1_1;
710 SMESH::SetPointRepresentation(true);
712 myViewWindow->SetSelectionMode( NodeSelection );
713 } else if (send == SelectButton2) {
714 myEditCurrentArgument = (QWidget*)SpinBox2_1;
715 SMESH::SetPointRepresentation(true);
717 myViewWindow->SetSelectionMode( NodeSelection );
720 myEditCurrentArgument->setFocus();
721 connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
722 SelectionIntoArgument();
725 //=================================================================================
726 // function : DeactivateActiveDialog()
728 //=================================================================================
729 void SMESHGUI_TranslationDlg::DeactivateActiveDialog()
731 if (GroupConstructors->isEnabled()) {
732 GroupConstructors->setEnabled(false);
733 GroupArguments->setEnabled(false);
734 GroupButtons->setEnabled(false);
735 mySMESHGUI->ResetState();
736 mySMESHGUI->SetActiveDialogBox(0);
740 //=================================================================================
741 // function : ActivateThisDialog()
743 //=================================================================================
744 void SMESHGUI_TranslationDlg::ActivateThisDialog()
746 /* Emit a signal to deactivate the active dialog */
747 mySMESHGUI->EmitSignalDeactivateDialog();
748 GroupConstructors->setEnabled(true);
749 GroupArguments->setEnabled(true);
750 GroupButtons->setEnabled(true);
752 mySMESHGUI->SetActiveDialogBox((QDialog*)this);
754 myViewWindow->SetSelectionMode( CellSelection );
756 SelectionIntoArgument();
759 //=================================================================================
760 // function : enterEvent()
762 //=================================================================================
763 void SMESHGUI_TranslationDlg::enterEvent (QEvent*)
765 if (!GroupConstructors->isEnabled())
766 ActivateThisDialog();
769 //=================================================================================
770 // function : closeEvent()
772 //=================================================================================
773 void SMESHGUI_TranslationDlg::closeEvent (QCloseEvent*)
775 /* same than click on cancel button */
776 this->ClickOnCancel();
779 //=======================================================================
780 //function : hideEvent
781 //purpose : caused by ESC key
782 //=======================================================================
783 void SMESHGUI_TranslationDlg::hideEvent (QHideEvent*)
789 //=======================================================================
790 //function : onSelectMesh
792 //=======================================================================
793 void SMESHGUI_TranslationDlg::onSelectMesh (bool toSelectMesh)
796 TextLabelElements->setText(tr("SMESH_NAME"));
798 TextLabelElements->setText(tr("SMESH_ID_ELEMENTS"));
800 if (myEditCurrentArgument != LineEditElements) {
801 LineEditElements->clear();
805 mySelectionMgr->clearFilters();
806 SMESH::SetPointRepresentation(false);
809 myViewWindow->SetSelectionMode( ActorSelection );
810 mySelectionMgr->installFilter(myMeshOrSubMeshOrGroupFilter);
811 LineEditElements->setReadOnly(true);
813 myViewWindow->SetSelectionMode( CellSelection );
814 LineEditElements->setReadOnly(false);
815 onTextChange(LineEditElements->text());
818 SelectionIntoArgument();
821 //=================================================================================
822 // function : GetConstructorId()
824 //=================================================================================
825 int SMESHGUI_TranslationDlg::GetConstructorId()
827 if (GroupConstructors != NULL && GroupConstructors->selected() != NULL)
828 return GroupConstructors->id(GroupConstructors->selected());