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.salome-platform.org/ or email : webmaster.salome@opencascade.com
24 // File : SMESHGUI_SymmetryDlg.cxx
25 // Author : Michael ZORIN
29 #include "SMESHGUI_SymmetryDlg.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"
45 #include "SUIT_Session.h"
46 #include "SUIT_MessageBox.h"
48 #include "LightApp_Application.h"
50 #include "SVTK_ViewModel.h"
51 #include "SVTK_ViewWindow.h"
52 #include "SVTK_Selector.h"
53 #include "SVTK_Selection.h"
54 #include "SALOME_ListIO.hxx"
56 #include "utilities.h"
59 #include <TColStd_MapOfInteger.hxx>
60 #include <TColStd_IndexedMapOfInteger.hxx>
63 #include <qapplication.h>
64 #include <qbuttongroup.h>
65 #include <qgroupbox.h>
67 #include <qlineedit.h>
68 #include <qpushbutton.h>
69 #include <qradiobutton.h>
70 #include <qcheckbox.h>
75 #include "SALOMEconfig.h"
76 #include CORBA_SERVER_HEADER(SMESH_Group)
77 #include CORBA_SERVER_HEADER(SMESH_MeshEditor)
81 //=================================================================================
82 // class : SMESHGUI_SymmetryDlg()
84 //=================================================================================
85 SMESHGUI_SymmetryDlg::SMESHGUI_SymmetryDlg( SMESHGUI* theModule, const char* name,
86 bool modal, WFlags fl)
87 : QDialog( SMESH::GetDesktop( theModule ), name, modal, WStyle_Customize | WStyle_NormalBorder |
88 WStyle_Title | WStyle_SysMenu | Qt::WDestructiveClose),
89 mySMESHGUI( theModule ),
90 mySelectionMgr( SMESH::GetSelectionMgr( theModule ) )
92 QPixmap image0 (SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap("SMESH", tr("ICON_SMESH_SYMMETRY_POINT")));
93 QPixmap image1 (SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap("SMESH", tr("ICON_SMESH_SYMMETRY_AXIS")));
94 QPixmap image2 (SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap("SMESH", tr("ICON_SMESH_SYMMETRY_PLANE")));
95 QPixmap image3 (SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap("SMESH", tr("ICON_SELECT")));
98 setName("SMESHGUI_SymmetryDlg");
100 setCaption(tr("SMESH_SYMMETRY"));
101 setSizeGripEnabled(TRUE);
102 SMESHGUI_SymmetryDlgLayout = new QGridLayout(this);
103 SMESHGUI_SymmetryDlgLayout->setSpacing(6);
104 SMESHGUI_SymmetryDlgLayout->setMargin(11);
106 /***************************************************************/
107 GroupConstructors = new QButtonGroup(this, "GroupConstructors");
108 GroupConstructors->setSizePolicy(QSizePolicy((QSizePolicy::SizeType)5,
109 (QSizePolicy::SizeType)0, 0, 0,
110 GroupConstructors->sizePolicy().hasHeightForWidth()));
111 GroupConstructors->setTitle(tr("SMESH_SYMMETRY" ));
112 GroupConstructors->setExclusive(TRUE);
113 GroupConstructors->setColumnLayout(0, Qt::Vertical);
114 GroupConstructors->layout()->setSpacing(0);
115 GroupConstructors->layout()->setMargin(0);
116 GroupConstructorsLayout = new QGridLayout(GroupConstructors->layout());
117 GroupConstructorsLayout->setAlignment(Qt::AlignTop);
118 GroupConstructorsLayout->setSpacing(6);
119 GroupConstructorsLayout->setMargin(11);
120 QHBoxLayout* RBLayout = new QHBoxLayout(0, 0, 6, "Layout2");
121 RadioButton1= new QRadioButton(GroupConstructors, "RadioButton1");
122 RadioButton1->setText(tr("" ));
123 RadioButton1->setPixmap(image0);
124 RBLayout->addWidget(RadioButton1);
125 RadioButton2= new QRadioButton(GroupConstructors, "RadioButton2");
126 RadioButton2->setText(tr("" ));
127 RadioButton2->setPixmap(image1);
128 RBLayout->addWidget(RadioButton2);
129 RadioButton3= new QRadioButton(GroupConstructors, "RadioButton3");
130 RadioButton3->setText(tr("" ));
131 RadioButton3->setPixmap(image2);
132 RBLayout->addWidget(RadioButton3);
133 GroupConstructorsLayout->addLayout(RBLayout, 0, 0);
134 SMESHGUI_SymmetryDlgLayout->addWidget(GroupConstructors, 0, 0);
136 /***************************************************************/
137 GroupButtons = new QGroupBox(this, "GroupButtons");
138 GroupButtons->setSizePolicy(QSizePolicy((QSizePolicy::SizeType)7,
139 (QSizePolicy::SizeType)0, 0, 0,
140 GroupButtons->sizePolicy().hasHeightForWidth()));
141 GroupButtons->setGeometry(QRect(10, 10, 281, 48));
142 GroupButtons->setTitle(tr("" ));
143 GroupButtons->setColumnLayout(0, Qt::Vertical);
144 GroupButtons->layout()->setSpacing(0);
145 GroupButtons->layout()->setMargin(0);
146 GroupButtonsLayout = new QGridLayout(GroupButtons->layout());
147 GroupButtonsLayout->setAlignment(Qt::AlignTop);
148 GroupButtonsLayout->setSpacing(6);
149 GroupButtonsLayout->setMargin(11);
150 buttonHelp = new QPushButton(GroupButtons, "buttonHelp");
151 buttonHelp->setText(tr("SMESH_BUT_HELP" ));
152 buttonHelp->setAutoDefault(TRUE);
153 GroupButtonsLayout->addWidget(buttonHelp, 0, 4);
154 buttonCancel = new QPushButton(GroupButtons, "buttonCancel");
155 buttonCancel->setText(tr("SMESH_BUT_CLOSE" ));
156 buttonCancel->setAutoDefault(TRUE);
157 GroupButtonsLayout->addWidget(buttonCancel, 0, 3);
158 buttonApply = new QPushButton(GroupButtons, "buttonApply");
159 buttonApply->setText(tr("SMESH_BUT_APPLY" ));
160 buttonApply->setAutoDefault(TRUE);
161 GroupButtonsLayout->addWidget(buttonApply, 0, 1);
162 QSpacerItem* spacer_9 = new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
163 GroupButtonsLayout->addItem(spacer_9, 0, 2);
164 buttonOk = new QPushButton(GroupButtons, "buttonOk");
165 buttonOk->setText(tr("SMESH_BUT_OK" ));
166 buttonOk->setAutoDefault(TRUE);
167 buttonOk->setDefault(TRUE);
168 GroupButtonsLayout->addWidget(buttonOk, 0, 0);
169 SMESHGUI_SymmetryDlgLayout->addWidget(GroupButtons, 2, 0);
171 /***************************************************************/
172 GroupArguments = new QGroupBox(this, "GroupArguments");
173 GroupArguments->setTitle(tr("SMESH_ARGUMENTS"));
174 GroupArguments->setColumnLayout(0, Qt::Vertical);
175 GroupArguments->layout()->setSpacing(0);
176 GroupArguments->layout()->setMargin(0);
177 GroupArgumentsLayout = new QGridLayout(GroupArguments->layout());
178 GroupArgumentsLayout->setAlignment(Qt::AlignTop);
179 GroupArgumentsLayout->setSpacing(6);
180 GroupArgumentsLayout->setMargin(11);
182 // Controls for elements selection
183 TextLabelElements = new QLabel(GroupArguments, "TextLabelElements");
184 TextLabelElements->setText(tr("SMESH_ID_ELEMENTS" ));
185 TextLabelElements->setFixedWidth(74);
186 GroupArgumentsLayout->addWidget(TextLabelElements, 0, 0);
188 SelectElementsButton = new QPushButton(GroupArguments, "SelectElementsButton");
189 SelectElementsButton->setText(tr("" ));
190 SelectElementsButton->setPixmap(image3);
191 SelectElementsButton->setToggleButton(FALSE);
192 GroupArgumentsLayout->addWidget(SelectElementsButton, 0, 1);
194 LineEditElements = new QLineEdit(GroupArguments, "LineEditElements");
195 LineEditElements->setValidator(new SMESHGUI_IdValidator(this, "validator"));
196 GroupArgumentsLayout->addWidget(LineEditElements, 0, 2);
198 // Control for the whole mesh selection
199 CheckBoxMesh = new QCheckBox(GroupArguments, "CheckBoxMesh");
200 CheckBoxMesh->setText(tr("SMESH_SELECT_WHOLE_MESH" ));
201 GroupArgumentsLayout->addMultiCellWidget(CheckBoxMesh, 1, 1, 0, 2);
203 // Controls for mirror selection
204 GroupMirror = new QGroupBox(GroupArguments, "GroupMirror");
205 GroupMirror->setColumnLayout(0, Qt::Vertical);
206 GroupMirror->layout()->setSpacing(0);
207 GroupMirror->layout()->setMargin(0);
208 QGridLayout* GroupMirrorLayout = new QGridLayout(GroupMirror->layout());
209 GroupMirrorLayout->setAlignment(Qt::AlignTop);
210 GroupMirrorLayout->setSpacing(6);
211 GroupMirrorLayout->setMargin(11);
213 TextLabelPoint = new QLabel(GroupMirror, "TextLabelPoint");
214 TextLabelPoint->setText(tr("SMESH_POINT"));
215 GroupMirrorLayout->addWidget(TextLabelPoint, 0, 0);
217 SelectPointButton = new QPushButton(GroupMirror, "SelectPointButton");
218 SelectPointButton->setPixmap(image3);
219 GroupMirrorLayout->addWidget(SelectPointButton, 0, 1);
221 TextLabelX = new QLabel(GroupMirror, "TextLabelX");
222 TextLabelX->setAlignment( Qt::AlignRight | Qt::AlignVCenter | Qt::ExpandTabs );
223 TextLabelX->setText(tr("SMESH_X"));
224 GroupMirrorLayout->addWidget(TextLabelX, 0, 2);
226 SpinBox_X = new SMESHGUI_SpinBox(GroupMirror, "SpinBox_X");
227 GroupMirrorLayout->addWidget(SpinBox_X, 0, 3);
229 TextLabelY = new QLabel(GroupMirror, "TextLabelY");
230 TextLabelY->setAlignment( Qt::AlignRight | Qt::AlignVCenter | Qt::ExpandTabs );
231 TextLabelY->setText(tr("SMESH_Y"));
232 GroupMirrorLayout->addWidget(TextLabelY, 0, 4);
234 SpinBox_Y = new SMESHGUI_SpinBox(GroupMirror, "SpinBox_Y");
235 GroupMirrorLayout->addWidget(SpinBox_Y, 0, 5);
237 TextLabelZ = new QLabel(GroupMirror, "TextLabelZ");
238 TextLabelZ->setAlignment( Qt::AlignRight | Qt::AlignVCenter | Qt::ExpandTabs );
239 TextLabelZ->setText(tr("SMESH_Z"));
240 GroupMirrorLayout->addWidget(TextLabelZ, 0, 6);
242 SpinBox_Z = new SMESHGUI_SpinBox(GroupMirror, "SpinBox_Z");
243 GroupMirrorLayout->addWidget(SpinBox_Z, 0, 7);
245 TextLabelVector = new QLabel(GroupMirror, "TextLabelVector");
246 GroupMirrorLayout->addWidget(TextLabelVector, 1, 0);
248 SelectVectorButton = new QPushButton(GroupMirror, "SelectVectorButton");
249 SelectVectorButton->setPixmap(image3);
250 GroupMirrorLayout->addWidget(SelectVectorButton, 1, 1);
252 TextLabelDX = new QLabel(GroupMirror, "TextLabelDX");
253 TextLabelDX->setText(tr("SMESH_DX"));
254 GroupMirrorLayout->addWidget(TextLabelDX, 1, 2);
256 SpinBox_DX = new SMESHGUI_SpinBox(GroupMirror, "SpinBox_DX");
257 GroupMirrorLayout->addWidget(SpinBox_DX, 1, 3);
259 TextLabelDY = new QLabel(GroupMirror, "TextLabelDY");
260 TextLabelDY->setText(tr("SMESH_DY"));
261 GroupMirrorLayout->addWidget(TextLabelDY, 1, 4);
263 SpinBox_DY = new SMESHGUI_SpinBox(GroupMirror, "SpinBox_DY");
264 GroupMirrorLayout->addWidget(SpinBox_DY, 1, 5);
266 TextLabelDZ = new QLabel(GroupMirror, "TextLabelDZ");
267 TextLabelDZ->setText(tr("SMESH_DZ"));
268 GroupMirrorLayout->addWidget(TextLabelDZ, 1, 6);
270 SpinBox_DZ = new SMESHGUI_SpinBox(GroupMirror, "SpinBox_DZ");
271 GroupMirrorLayout->addWidget(SpinBox_DZ, 1, 7);
273 GroupArgumentsLayout->addMultiCellWidget(GroupMirror, 2, 2, 0, 2);
275 // Controls for "Create a copy" option
276 CheckBoxCopy = new QCheckBox(GroupArguments, "CheckBoxCopy");
277 CheckBoxCopy->setText(tr("SMESH_CREATE_COPY"));
278 GroupArgumentsLayout->addMultiCellWidget(CheckBoxCopy, 3, 3, 0, 2);
280 // CheckBox for groups generation
281 MakeGroupsCheck = new QCheckBox(tr("SMESH_MAKE_GROUPS"), GroupArguments);
282 MakeGroupsCheck->setChecked(false);
283 GroupArgumentsLayout->addMultiCellWidget(MakeGroupsCheck, 4, 4, 0, 2);
285 SMESHGUI_SymmetryDlgLayout->addWidget(GroupArguments, 1, 0);
287 /* Initialisations */
288 SpinBox_X->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, 3);
289 SpinBox_Y->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, 3);
290 SpinBox_Z->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, 3);
291 SpinBox_DX->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, 3);
292 SpinBox_DY->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, 3);
293 SpinBox_DZ->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, 3);
295 GroupArguments->show();
296 RadioButton1->setChecked(TRUE);
298 mySelector = (SMESH::GetViewWindow( mySMESHGUI ))->GetSelector();
300 mySMESHGUI->SetActiveDialogBox((QDialog*)this);
302 // Costruction of the logical filter
303 SMESH_TypeFilter* aMeshOrSubMeshFilter = new SMESH_TypeFilter (MESHorSUBMESH);
304 SMESH_TypeFilter* aSmeshGroupFilter = new SMESH_TypeFilter (GROUP);
306 QPtrList<SUIT_SelectionFilter> aListOfFilters;
307 if (aMeshOrSubMeshFilter) aListOfFilters.append(aMeshOrSubMeshFilter);
308 if (aSmeshGroupFilter) aListOfFilters.append(aSmeshGroupFilter);
310 myMeshOrSubMeshOrGroupFilter =
311 new SMESH_LogicalFilter (aListOfFilters, SMESH_LogicalFilter::LO_OR);
313 myHelpFileName = "/files/symmetry.htm";
317 /* signals and slots connections */
318 connect(buttonOk, SIGNAL(clicked()), this, SLOT(ClickOnOk()));
319 connect(buttonCancel, SIGNAL(clicked()), this, SLOT(ClickOnCancel()));
320 connect(buttonApply, SIGNAL(clicked()), this, SLOT(ClickOnApply()));
321 connect(buttonHelp, SIGNAL(clicked()), this, SLOT(ClickOnHelp()));
322 connect(GroupConstructors, SIGNAL(clicked(int)), SLOT(ConstructorsClicked(int)));
324 connect(SelectElementsButton, SIGNAL (clicked()), this, SLOT(SetEditCurrentArgument()));
325 connect(SelectPointButton, SIGNAL (clicked()), this, SLOT(SetEditCurrentArgument()));
326 connect(SelectVectorButton, SIGNAL (clicked()), this, SLOT(SetEditCurrentArgument()));
328 connect(SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(onVectorChanged()));
329 connect(SpinBox_DY, SIGNAL(valueChanged(double)), this, SLOT(onVectorChanged()));
330 connect(SpinBox_DZ, SIGNAL(valueChanged(double)), this, SLOT(onVectorChanged()));
332 connect(mySMESHGUI, SIGNAL(SignalDeactivateActiveDialog()), this, SLOT(DeactivateActiveDialog()));
333 connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
334 /* to close dialog if study change */
335 connect(mySMESHGUI, SIGNAL(SignalCloseAllDialogs()), this, SLOT(ClickOnCancel()));
336 connect(LineEditElements, SIGNAL(textChanged(const QString&)), SLOT(onTextChange(const QString&)));
337 connect(CheckBoxMesh, SIGNAL(toggled(bool)), SLOT(onSelectMesh(bool)));
338 connect(CheckBoxCopy, SIGNAL(toggled(bool)), SLOT(onCopyChecked(bool)));
340 this->show(); /* displays Dialog */
342 ConstructorsClicked(0);
343 SelectionIntoArgument();
347 //=================================================================================
348 // function : ~SMESHGUI_SymmetryDlg()
349 // purpose : Destroys the object and frees any allocated resources
350 //=================================================================================
351 SMESHGUI_SymmetryDlg::~SMESHGUI_SymmetryDlg()
353 // no need to delete child widgets, Qt does it all for us
356 //=================================================================================
359 //=================================================================================
360 void SMESHGUI_SymmetryDlg::Init (bool ResetControls)
364 myEditCurrentArgument = 0;
365 LineEditElements->clear();
369 buttonOk->setEnabled(false);
370 buttonApply->setEnabled(false);
373 myMesh = SMESH::SMESH_Mesh::_nil();
376 SpinBox_X->SetValue(0.0);
377 SpinBox_Y->SetValue(0.0);
378 SpinBox_Z->SetValue(0.0);
379 SpinBox_DX->SetValue(0.0);
380 SpinBox_DY->SetValue(0.0);
381 SpinBox_DZ->SetValue(0.0);
383 CheckBoxCopy->setChecked(false);
384 CheckBoxMesh->setChecked(false);
385 MakeGroupsCheck->setChecked(false);
386 MakeGroupsCheck->setEnabled(false);
391 //=================================================================================
392 // function : ConstructorsClicked()
393 // purpose : Radio button management
394 //=================================================================================
395 void SMESHGUI_SymmetryDlg::ConstructorsClicked (int constructorId)
397 disconnect(mySelectionMgr, 0, this, 0);
399 if (constructorId != 0 && !TextLabelVector->isVisible()) {
400 TextLabelVector->show();
401 SelectVectorButton->show();
410 switch (constructorId) {
413 GroupMirror->setTitle(tr("SMESH_POINT"));
415 TextLabelVector->hide();
416 SelectVectorButton->hide();
427 GroupMirror->setTitle(tr("SMESH_AXIS"));
428 TextLabelVector->setText(tr("SMESH_VECTOR"));
433 GroupMirror->setTitle(tr("SMESH_PLANE"));
434 TextLabelVector->setText(tr("SMESH_NORMAL"));
439 if (myEditCurrentArgument != (QWidget*)LineEditElements) {
440 SMESH::SetPointRepresentation(false);
441 if (!CheckBoxMesh->isChecked())
443 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
444 aViewWindow->SetSelectionMode(CellSelection);
448 myEditCurrentArgument = (QWidget*)LineEditElements;
449 LineEditElements->setFocus();
451 if (CheckBoxMesh->isChecked())
454 connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
457 //=================================================================================
458 // function : ClickOnApply()
460 //=================================================================================
461 void SMESHGUI_SymmetryDlg::ClickOnApply()
463 if (mySMESHGUI->isActiveStudyLocked())
466 if (myNbOkElements && IsMirrorOk()) {
467 QStringList aListElementsId = QStringList::split(" ", myElementsId, false);
469 SMESH::long_array_var anElementsId = new SMESH::long_array;
471 anElementsId->length(aListElementsId.count());
472 for (int i = 0; i < aListElementsId.count(); i++)
473 anElementsId[i] = aListElementsId[i].toInt();
475 SMESH::AxisStruct aMirror;
477 aMirror.x = SpinBox_X->GetValue();
478 aMirror.y = SpinBox_Y->GetValue();
479 aMirror.z = SpinBox_Z->GetValue();
480 if (GetConstructorId() == 0) {
481 aMirror.vx = aMirror.vy = aMirror.vz = 0;
483 aMirror.vx = SpinBox_DX->GetValue();
484 aMirror.vy = SpinBox_DY->GetValue();
485 aMirror.vz = SpinBox_DZ->GetValue();
488 bool toCreateCopy = CheckBoxCopy->isChecked();
490 SMESH::SMESH_MeshEditor::MirrorType aMirrorType;
492 if (GetConstructorId() == 0)
493 aMirrorType = SMESH::SMESH_MeshEditor::POINT;
494 if (GetConstructorId() == 1)
495 aMirrorType = SMESH::SMESH_MeshEditor::AXIS;
496 if (GetConstructorId() == 2)
497 aMirrorType = SMESH::SMESH_MeshEditor::PLANE;
500 SMESH::SMESH_MeshEditor_var aMeshEditor = myMesh->GetMeshEditor();
501 QApplication::setOverrideCursor(Qt::waitCursor);
502 if ( MakeGroupsCheck->isEnabled() && MakeGroupsCheck->isChecked() )
503 SMESH::ListOfGroups_var groups =
504 aMeshEditor->MirrorMakeGroups(anElementsId, aMirror, aMirrorType);
506 aMeshEditor->Mirror(anElementsId, aMirror, aMirrorType, toCreateCopy);
507 QApplication::restoreOverrideCursor();
512 if ( MakeGroupsCheck->isEnabled() && MakeGroupsCheck->isChecked() )
513 mySMESHGUI->updateObjBrowser(true); // new groups may appear
515 ConstructorsClicked(GetConstructorId());
516 SelectionIntoArgument();
520 //=================================================================================
521 // function : ClickOnOk()
523 //=================================================================================
524 void SMESHGUI_SymmetryDlg::ClickOnOk()
530 //=================================================================================
531 // function : ClickOnCancel()
533 //=================================================================================
534 void SMESHGUI_SymmetryDlg::ClickOnCancel()
536 disconnect(mySelectionMgr, 0, this, 0);
537 mySelectionMgr->clearFilters();
538 //mySelectionMgr->clearSelected();
539 SMESH::SetPointRepresentation(false);
540 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
541 aViewWindow->SetSelectionMode(ActorSelection);
542 mySMESHGUI->ResetState();
546 //=================================================================================
547 // function : ClickOnHelp()
549 //=================================================================================
550 void SMESHGUI_SymmetryDlg::ClickOnHelp()
552 LightApp_Application* app = (LightApp_Application*)(SUIT_Session::session()->activeApplication());
554 app->onHelpContextModule(mySMESHGUI ? app->moduleName(mySMESHGUI->moduleName()) : QString(""), myHelpFileName);
558 platform = "winapplication";
560 platform = "application";
562 SUIT_MessageBox::warn1(0, QObject::tr("WRN_WARNING"),
563 QObject::tr("EXTERNAL_BROWSER_CANNOT_SHOW_PAGE").
564 arg(app->resourceMgr()->stringValue("ExternalBrowser", platform)).arg(myHelpFileName),
565 QObject::tr("BUT_OK"));
569 //=======================================================================
570 // function : onTextChange()
572 //=======================================================================
573 void SMESHGUI_SymmetryDlg::onTextChange (const QString& theNewText)
575 QLineEdit* send = (QLineEdit*)sender();
580 if (send == LineEditElements)
583 buttonOk->setEnabled(false);
584 buttonApply->setEnabled(false);
586 // hilight entered elements
587 SMDS_Mesh* aMesh = 0;
589 aMesh = myActor->GetObject()->GetMesh();
592 Handle(SALOME_InteractiveObject) anIO = myActor->getIO();
594 TColStd_MapOfInteger newIndices;
596 QStringList aListId = QStringList::split(" ", theNewText, false);
598 if (send == LineEditElements) {
599 for (int i = 0; i < aListId.count(); i++) {
600 const SMDS_MeshElement * e = aMesh->FindElement(aListId[ i ].toInt());
602 newIndices.Add(e->GetID());
606 mySelector->AddOrRemoveIndex( anIO, newIndices, false );
607 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
608 aViewWindow->highlight( anIO, true, true );
610 myElementsId = theNewText;
614 if (myNbOkElements && IsMirrorOk()) {
615 buttonOk->setEnabled(true);
616 buttonApply->setEnabled(true);
622 //=================================================================================
623 // function : SelectionIntoArgument()
624 // purpose : Called when selection as changed or other case
625 //=================================================================================
626 void SMESHGUI_SymmetryDlg::SelectionIntoArgument()
632 QString aString = "";
635 if (myEditCurrentArgument == (QWidget*)LineEditElements) {
636 LineEditElements->setText(aString);
638 buttonOk->setEnabled(false);
639 buttonApply->setEnabled(false);
643 if (!GroupButtons->isEnabled()) // inactive
648 mySelectionMgr->selectedObjects(aList,SVTK_Viewer::Type());
650 int nbSel = aList.Extent();
654 Handle(SALOME_InteractiveObject) IO = aList.First();
655 myMesh = SMESH::GetMeshByIO(IO);
656 if(myMesh->_is_nil())
659 myActor = SMESH::FindActorByObject(myMesh);
661 myActor = SMESH::FindActorByEntry(IO->getEntry());
667 if (myEditCurrentArgument == (QWidget*)LineEditElements) {
670 // MakeGroups is available if there are groups and "Copy"
671 if ( myMesh->NbGroups() == 0 ) {
672 MakeGroupsCheck->setChecked(false);
673 MakeGroupsCheck->setEnabled(false);
675 else if (CheckBoxCopy->isChecked() ) {
676 MakeGroupsCheck->setEnabled(true);
678 if (CheckBoxMesh->isChecked()) {
679 SMESH::GetNameOfSelectedIObjects(mySelectionMgr, aString);
681 if (!SMESH::IObjectToInterface<SMESH::SMESH_Mesh>(IO)->_is_nil()) { //MESH
683 SMDS_Mesh* aSMDSMesh = myActor->GetObject()->GetMesh();
687 for (int i = aSMDSMesh->MinElementID(); i <= aSMDSMesh->MaxElementID(); i++) {
688 const SMDS_MeshElement * e = aSMDSMesh->FindElement(i);
690 myElementsId += QString(" %1").arg(i);
694 } else if (!SMESH::IObjectToInterface<SMESH::SMESH_subMesh>(IO)->_is_nil()) { //SUBMESH
696 SMESH::SMESH_subMesh_var aSubMesh = SMESH::IObjectToInterface<SMESH::SMESH_subMesh>(IO);
698 // get IDs from submesh
699 SMESH::long_array_var anElementsIds = new SMESH::long_array;
700 anElementsIds = aSubMesh->GetElementsId();
701 for (int i = 0; i < anElementsIds->length(); i++) {
702 myElementsId += QString(" %1").arg(anElementsIds[i]);
704 aNbUnits = anElementsIds->length();
707 SMESH::SMESH_GroupBase_var aGroup =
708 SMESH::IObjectToInterface<SMESH::SMESH_GroupBase>(IO);
709 if (aGroup->_is_nil())
712 // get IDs from smesh group
713 SMESH::long_array_var anElementsIds = new SMESH::long_array;
714 anElementsIds = aGroup->GetListOfID();
715 for (int i = 0; i < anElementsIds->length(); i++) {
716 myElementsId += QString(" %1").arg(anElementsIds[i]);
718 aNbUnits = anElementsIds->length();
721 aNbUnits = SMESH::GetNameOfSelectedElements( mySelector, IO, aString);
722 myElementsId = aString;
728 myNbOkElements = true;
730 aNbUnits = SMESH::GetNameOfSelectedNodes(mySelector, IO, aString);
734 SMDS_Mesh* aMesh = myActor->GetObject()->GetMesh();
738 const SMDS_MeshNode * n = aMesh->FindNode(aString.toInt());
746 if (myEditCurrentArgument == (QWidget*)SpinBox_X) {
747 SpinBox_X->SetValue(x);
748 SpinBox_Y->SetValue(y);
749 SpinBox_Z->SetValue(z);
750 } else if (myEditCurrentArgument == (QWidget*)SpinBox_DX) {
751 SpinBox_DX->SetValue(x - SpinBox_X->GetValue());
752 SpinBox_DY->SetValue(y - SpinBox_Y->GetValue());
753 SpinBox_DZ->SetValue(z - SpinBox_Z->GetValue());
758 if (myEditCurrentArgument == (QWidget*)LineEditElements)
759 LineEditElements->setText(aString);
763 if (myNbOkElements && IsMirrorOk()) {
764 buttonOk->setEnabled(true);
765 buttonApply->setEnabled(true);
769 //=================================================================================
770 // function : SetEditCurrentArgument()
772 //=================================================================================
773 void SMESHGUI_SymmetryDlg::SetEditCurrentArgument()
775 QPushButton* send = (QPushButton*)sender();
777 disconnect(mySelectionMgr, 0, this, 0);
778 mySelectionMgr->clearSelected();
779 mySelectionMgr->clearFilters();
781 if (send == SelectElementsButton) {
782 myEditCurrentArgument = (QWidget*)LineEditElements;
783 SMESH::SetPointRepresentation(false);
784 if (CheckBoxMesh->isChecked()) {
785 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
786 aViewWindow->SetSelectionMode(ActorSelection);
787 mySelectionMgr->installFilter(myMeshOrSubMeshOrGroupFilter);
789 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
790 aViewWindow->SetSelectionMode(CellSelection);
792 } else if (send == SelectPointButton) {
793 myEditCurrentArgument = (QWidget*)SpinBox_X;
794 SMESH::SetPointRepresentation(true);
795 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
796 aViewWindow->SetSelectionMode(NodeSelection);
797 } else if (send == SelectVectorButton) {
798 myEditCurrentArgument = (QWidget*)SpinBox_DX;
799 SMESH::SetPointRepresentation(true);
801 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
802 aViewWindow->SetSelectionMode(NodeSelection);
806 myEditCurrentArgument->setFocus();
807 connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
808 SelectionIntoArgument();
811 //=================================================================================
812 // function : DeactivateActiveDialog()
814 //=================================================================================
815 void SMESHGUI_SymmetryDlg::DeactivateActiveDialog()
817 if (GroupConstructors->isEnabled()) {
818 GroupConstructors->setEnabled(false);
819 GroupArguments->setEnabled(false);
820 GroupButtons->setEnabled(false);
821 mySMESHGUI->ResetState();
822 mySMESHGUI->SetActiveDialogBox(0);
826 //=================================================================================
827 // function : ActivateThisDialog()
829 //=================================================================================
830 void SMESHGUI_SymmetryDlg::ActivateThisDialog()
832 /* Emit a signal to deactivate the active dialog */
833 mySMESHGUI->EmitSignalDeactivateDialog();
834 GroupConstructors->setEnabled(true);
835 GroupArguments->setEnabled(true);
836 GroupButtons->setEnabled(true);
838 mySMESHGUI->SetActiveDialogBox((QDialog*)this);
840 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
841 aViewWindow->SetSelectionMode(CellSelection);
842 SelectionIntoArgument();
845 //=================================================================================
846 // function : enterEvent()
848 //=================================================================================
849 void SMESHGUI_SymmetryDlg::enterEvent (QEvent*)
851 if (!GroupConstructors->isEnabled())
852 ActivateThisDialog();
855 //=================================================================================
856 // function : closeEvent()
858 //=================================================================================
859 void SMESHGUI_SymmetryDlg::closeEvent (QCloseEvent*)
861 /* same than click on cancel button */
862 this->ClickOnCancel();
865 //=======================================================================
866 // function : hideEvent()
867 // purpose : caused by ESC key
868 //=======================================================================
869 void SMESHGUI_SymmetryDlg::hideEvent (QHideEvent*)
875 //=======================================================================
876 //function : onSelectMesh
878 //=======================================================================
879 void SMESHGUI_SymmetryDlg::onSelectMesh (bool toSelectMesh)
882 TextLabelElements->setText(tr("SMESH_NAME"));
884 TextLabelElements->setText(tr("SMESH_ID_ELEMENTS"));
886 if (myEditCurrentArgument != LineEditElements) {
887 LineEditElements->clear();
891 mySelectionMgr->clearFilters();
892 SMESH::SetPointRepresentation(false);
895 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
896 aViewWindow->SetSelectionMode(ActorSelection);
897 mySelectionMgr->installFilter(myMeshOrSubMeshOrGroupFilter);
898 LineEditElements->setReadOnly(true);
900 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
901 aViewWindow->SetSelectionMode(CellSelection);
902 LineEditElements->setReadOnly(false);
903 onTextChange(LineEditElements->text());
906 SelectionIntoArgument();
909 //=================================================================================
910 // function : GetConstructorId()
912 //=================================================================================
913 int SMESHGUI_SymmetryDlg::GetConstructorId()
915 if (GroupConstructors != NULL && GroupConstructors->selected() != NULL)
916 return GroupConstructors->id(GroupConstructors->selected());
920 //=================================================================================
921 // function : IsMirrorOk()
923 //=================================================================================
924 bool SMESHGUI_SymmetryDlg::IsMirrorOk()
928 if (GetConstructorId() != 0)
929 isOk = (SpinBox_DX->GetValue() != 0 ||
930 SpinBox_DY->GetValue() != 0 ||
931 SpinBox_DZ->GetValue() != 0);
936 //=================================================================================
937 // function : onVectorChanged()
939 //=================================================================================
940 void SMESHGUI_SymmetryDlg::onVectorChanged()
943 buttonOk->setEnabled(true);
944 buttonApply->setEnabled(true);
946 buttonOk->setEnabled(false);
947 buttonApply->setEnabled(false);
951 //=======================================================================
952 //function : onCopyChecked
953 //purpose : slot called when Copy checkBox is checked
954 //=======================================================================
956 void SMESHGUI_SymmetryDlg::onCopyChecked(bool isOn)
958 // enable "MakeGroupsCheck"
959 if ( !myMesh->_is_nil() && myMesh->NbGroups() == 0)
961 MakeGroupsCheck->setEnabled(isOn);
964 //=================================================================================
965 // function : keyPressEvent()
967 //=================================================================================
968 void SMESHGUI_SymmetryDlg::keyPressEvent( QKeyEvent* e )
970 QDialog::keyPressEvent( e );
971 if ( e->isAccepted() )
974 if ( e->key() == Key_F1 )