1 // Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 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
22 // SMESH SMESHGUI : GUI for SMESH component
23 // File : SMESHGUI_RotationDlg.cxx
24 // Author : Michael ZORIN
28 #include "SMESHGUI_RotationDlg.h"
31 #include "SMESHGUI_SpinBox.h"
32 #include "SMESHGUI_Utils.h"
33 #include "SMESHGUI_VTKUtils.h"
34 #include "SMESHGUI_MeshUtils.h"
35 #include "SMESHGUI_IdValidator.h"
37 #include "SMESH_Actor.h"
38 #include "SMESH_TypeFilter.hxx"
39 #include "SMESH_LogicalFilter.hxx"
40 #include "SMDS_Mesh.hxx"
42 #include "SUIT_Desktop.h"
43 #include "SUIT_Session.h"
44 #include "SUIT_MessageBox.h"
46 #include "LightApp_Application.h"
48 #include "SVTK_ViewModel.h"
49 #include "SVTK_ViewWindow.h"
50 #include "SVTK_Selector.h"
51 #include "SVTK_Selection.h"
52 #include "SALOME_ListIO.hxx"
53 #include "SALOMEDSClient_SObject.hxx"
55 #include "utilities.h"
58 #include <TColStd_MapOfInteger.hxx>
59 #include <TColStd_IndexedMapOfInteger.hxx>
62 #include <qapplication.h>
63 #include <qbuttongroup.h>
64 #include <qgroupbox.h>
66 #include <qlineedit.h>
67 #include <qpushbutton.h>
68 #include <qradiobutton.h>
69 #include <qcheckbox.h>
74 #include "SALOMEconfig.h"
75 #include CORBA_SERVER_HEADER(SMESH_Group)
76 #include CORBA_SERVER_HEADER(SMESH_MeshEditor)
80 enum { MOVE_ELEMS_BUTTON = 0, COPY_ELEMS_BUTTON, MAKE_MESH_BUTTON }; //!< action type
82 //=================================================================================
83 // class : SMESHGUI_RotationDlg()
85 //=================================================================================
86 SMESHGUI_RotationDlg::SMESHGUI_RotationDlg( 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 ) )
93 QPixmap image0 (SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap("SMESH", tr("ICON_DLG_MESH_ROTATION")));
94 QPixmap image1 (SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap("SMESH", tr("ICON_SELECT")));
97 setName("SMESHGUI_RotationDlg");
99 setCaption(tr("SMESH_ROTATION_TITLE"));
100 setSizeGripEnabled(TRUE);
101 SMESHGUI_RotationDlgLayout = new QGridLayout(this);
102 SMESHGUI_RotationDlgLayout->setSpacing(6);
103 SMESHGUI_RotationDlgLayout->setMargin(11);
105 /***************************************************************/
106 GroupConstructors = new QButtonGroup(this, "GroupConstructors");
107 GroupConstructors->setSizePolicy(QSizePolicy((QSizePolicy::SizeType)5,
108 (QSizePolicy::SizeType)0, 0, 0,
109 GroupConstructors->sizePolicy().hasHeightForWidth()));
110 GroupConstructors->setTitle(tr("SMESH_ROTATION"));
111 GroupConstructors->setExclusive(TRUE);
112 GroupConstructors->setColumnLayout(0, Qt::Vertical);
113 GroupConstructors->layout()->setSpacing(0);
114 GroupConstructors->layout()->setMargin(0);
115 GroupConstructorsLayout = new QGridLayout(GroupConstructors->layout());
116 GroupConstructorsLayout->setAlignment(Qt::AlignTop);
117 GroupConstructorsLayout->setSpacing(6);
118 GroupConstructorsLayout->setMargin(11);
119 RadioButton1= new QRadioButton(GroupConstructors, "RadioButton1");
120 RadioButton1->setText(tr("" ));
121 RadioButton1->setPixmap(image0);
122 RadioButton1->setSizePolicy(QSizePolicy((QSizePolicy::SizeType)1,
123 (QSizePolicy::SizeType)0,
124 RadioButton1->sizePolicy().hasHeightForWidth()));
125 RadioButton1->setMinimumSize(QSize(50, 0));
126 GroupConstructorsLayout->addWidget(RadioButton1, 0, 0);
127 QSpacerItem* spacer = new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
128 GroupConstructorsLayout->addItem(spacer, 0, 1);
129 SMESHGUI_RotationDlgLayout->addWidget(GroupConstructors, 0, 0);
131 /***************************************************************/
132 GroupButtons = new QGroupBox(this, "GroupButtons");
133 GroupButtons->setSizePolicy(QSizePolicy((QSizePolicy::SizeType)7,
134 (QSizePolicy::SizeType)0, 0, 0,
135 GroupButtons->sizePolicy().hasHeightForWidth()));
136 GroupButtons->setGeometry(QRect(10, 10, 281, 48));
137 GroupButtons->setTitle(tr("" ));
138 GroupButtons->setColumnLayout(0, Qt::Vertical);
139 GroupButtons->layout()->setSpacing(0);
140 GroupButtons->layout()->setMargin(0);
141 GroupButtonsLayout = new QGridLayout(GroupButtons->layout());
142 GroupButtonsLayout->setAlignment(Qt::AlignTop);
143 GroupButtonsLayout->setSpacing(6);
144 GroupButtonsLayout->setMargin(11);
145 buttonHelp = new QPushButton(GroupButtons, "buttonHelp");
146 buttonHelp->setText(tr("SMESH_BUT_HELP" ));
147 buttonHelp->setAutoDefault(TRUE);
148 GroupButtonsLayout->addWidget(buttonHelp, 0, 4);
149 buttonCancel = new QPushButton(GroupButtons, "buttonCancel");
150 buttonCancel->setText(tr("SMESH_BUT_CLOSE"));
151 buttonCancel->setAutoDefault(TRUE);
152 GroupButtonsLayout->addWidget(buttonCancel, 0, 3);
153 buttonApply = new QPushButton(GroupButtons, "buttonApply");
154 buttonApply->setText(tr("SMESH_BUT_APPLY"));
155 buttonApply->setAutoDefault(TRUE);
156 GroupButtonsLayout->addWidget(buttonApply, 0, 1);
157 QSpacerItem* spacer_9 = new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
158 GroupButtonsLayout->addItem(spacer_9, 0, 2);
159 buttonOk = new QPushButton(GroupButtons, "buttonOk");
160 buttonOk->setText(tr("SMESH_BUT_APPLY_AND_CLOSE"));
161 buttonOk->setAutoDefault(TRUE);
162 buttonOk->setDefault(TRUE);
163 GroupButtonsLayout->addWidget(buttonOk, 0, 0);
164 SMESHGUI_RotationDlgLayout->addWidget(GroupButtons, 2, 0);
166 /***************************************************************/
167 GroupArguments = new QGroupBox(this, "GroupArguments");
168 GroupArguments->setTitle(tr("SMESH_ARGUMENTS"));
169 GroupArguments->setColumnLayout(0, Qt::Vertical);
170 GroupArguments->layout()->setSpacing(0);
171 GroupArguments->layout()->setMargin(0);
172 GroupArgumentsLayout = new QGridLayout(GroupArguments->layout());
173 GroupArgumentsLayout->setAlignment(Qt::AlignTop);
174 GroupArgumentsLayout->setSpacing(6);
175 GroupArgumentsLayout->setMargin(11);
177 // Controls for elements selection
178 TextLabelElements = new QLabel(GroupArguments, "TextLabelElements");
179 TextLabelElements->setText(tr("SMESH_ID_ELEMENTS" ));
180 //TextLabelElements->setFixedWidth(74);
181 GroupArgumentsLayout->addWidget(TextLabelElements, 0, 0);
183 SelectElementsButton = new QPushButton(GroupArguments, "SelectElementsButton");
184 SelectElementsButton->setText(tr("" ));
185 SelectElementsButton->setPixmap(image1);
186 SelectElementsButton->setToggleButton(FALSE);
187 GroupArgumentsLayout->addWidget(SelectElementsButton, 0, 1);
189 LineEditElements = new QLineEdit(GroupArguments, "LineEditElements");
190 LineEditElements->setValidator(new SMESHGUI_IdValidator(this, "validator"));
191 GroupArgumentsLayout->addMultiCellWidget(LineEditElements, 0, 0, 2, 3);
193 // Control for the whole mesh selection
194 CheckBoxMesh = new QCheckBox(GroupArguments, "CheckBoxMesh");
195 CheckBoxMesh->setText(tr("SMESH_SELECT_WHOLE_MESH" ));
196 GroupArgumentsLayout->addMultiCellWidget(CheckBoxMesh, 1, 1, 0, 3);
198 // Controls for axis defining
199 GroupAxis = new QGroupBox(GroupArguments, "GroupAxis");
200 GroupAxis->setTitle(tr("SMESH_AXIS"));
201 GroupAxis->setColumnLayout(0, Qt::Vertical);
202 GroupAxis->layout()->setSpacing(0);
203 GroupAxis->layout()->setMargin(0);
204 QGridLayout* GroupAxisLayout = new QGridLayout(GroupAxis->layout());
205 GroupAxisLayout->setAlignment(Qt::AlignTop);
206 GroupAxisLayout->setSpacing(6);
207 GroupAxisLayout->setMargin(11);
209 TextLabelPoint = new QLabel(GroupAxis, "TextLabelPoint");
210 TextLabelPoint->setText(tr("SMESH_POINT"));
211 GroupAxisLayout->addWidget(TextLabelPoint, 0, 0);
213 SelectPointButton = new QPushButton(GroupAxis, "SelectPointButton");
214 SelectPointButton->setPixmap(image1);
215 GroupAxisLayout->addWidget(SelectPointButton, 0, 1);
217 TextLabelX = new QLabel(GroupAxis, "TextLabelX");
218 TextLabelX->setAlignment( Qt::AlignRight | Qt::AlignVCenter | Qt::ExpandTabs );
219 TextLabelX->setText(tr("SMESH_X"));
220 GroupAxisLayout->addWidget(TextLabelX, 0, 2);
222 SpinBox_X = new SMESHGUI_SpinBox(GroupAxis, "SpinBox_X");
223 GroupAxisLayout->addWidget(SpinBox_X, 0, 3);
225 TextLabelY = new QLabel(GroupAxis, "TextLabelY");
226 TextLabelY->setAlignment( Qt::AlignRight | Qt::AlignVCenter | Qt::ExpandTabs );
227 TextLabelY->setText(tr("SMESH_Y"));
228 GroupAxisLayout->addWidget(TextLabelY, 0, 4);
230 SpinBox_Y = new SMESHGUI_SpinBox(GroupAxis, "SpinBox_Y");
231 GroupAxisLayout->addWidget(SpinBox_Y, 0, 5);
233 TextLabelZ = new QLabel(GroupAxis, "TextLabelZ");
234 TextLabelZ->setAlignment( Qt::AlignRight | Qt::AlignVCenter | Qt::ExpandTabs );
235 TextLabelZ->setText(tr("SMESH_Z"));
236 GroupAxisLayout->addWidget(TextLabelZ, 0, 6);
238 SpinBox_Z = new SMESHGUI_SpinBox(GroupAxis, "SpinBox_Z");
239 GroupAxisLayout->addWidget(SpinBox_Z, 0, 7);
241 TextLabelVector = new QLabel(GroupAxis, "TextLabelVector");
242 TextLabelVector->setText(tr("SMESH_VECTOR"));
243 GroupAxisLayout->addWidget(TextLabelVector, 1, 0);
245 SelectVectorButton = new QPushButton(GroupAxis, "SelectVectorButton");
246 SelectVectorButton->setPixmap(image1);
247 GroupAxisLayout->addWidget(SelectVectorButton, 1, 1);
249 TextLabelDX = new QLabel(GroupAxis, "TextLabelDX");
250 TextLabelDX->setAlignment( Qt::AlignRight | Qt::AlignVCenter | Qt::ExpandTabs );
251 TextLabelDX->setText(tr("SMESH_DX"));
252 GroupAxisLayout->addWidget(TextLabelDX, 1, 2);
254 SpinBox_DX = new SMESHGUI_SpinBox(GroupAxis, "SpinBox_DX");
255 GroupAxisLayout->addWidget(SpinBox_DX, 1, 3);
257 TextLabelDY = new QLabel(GroupAxis, "TextLabelDY");
258 TextLabelDY->setAlignment( Qt::AlignRight | Qt::AlignVCenter | Qt::ExpandTabs );
259 TextLabelDY->setText(tr("SMESH_DY"));
260 GroupAxisLayout->addWidget(TextLabelDY, 1, 4);
262 SpinBox_DY = new SMESHGUI_SpinBox(GroupAxis, "SpinBox_DY");
263 GroupAxisLayout->addWidget(SpinBox_DY, 1, 5);
265 TextLabelDZ = new QLabel(GroupAxis, "TextLabelDZ");
266 TextLabelDZ->setAlignment( Qt::AlignRight | Qt::AlignVCenter | Qt::ExpandTabs );
267 TextLabelDZ->setText(tr("SMESH_DZ"));
268 GroupAxisLayout->addWidget(TextLabelDZ, 1, 6);
270 SpinBox_DZ = new SMESHGUI_SpinBox(GroupAxis, "SpinBox_DZ");
271 GroupAxisLayout->addWidget(SpinBox_DZ, 1, 7);
273 GroupArgumentsLayout->addMultiCellWidget(GroupAxis, 2, 2, 0, 3);
275 // Controls for angle defining
276 TextLabelAngle = new QLabel(GroupArguments, "TextLabelAngle");
277 TextLabelAngle->setText(tr("SMESH_ANGLE"));
278 GroupArgumentsLayout->addMultiCellWidget(TextLabelAngle, 3, 3, 0, 2);
280 SpinBox_Angle = new SMESHGUI_SpinBox(GroupArguments, "SpinBox_Angle");
281 GroupArgumentsLayout->addWidget(SpinBox_Angle, 3, 2);
284 ActionGroup = new QButtonGroup(1, Qt::Horizontal, GroupArguments, "ActionGroup");
285 ActionGroup->setExclusive(true);
286 ActionGroup->insert(new QRadioButton(tr("SMESH_MOVE_ELEMENTS"),ActionGroup), MOVE_ELEMS_BUTTON);
287 ActionGroup->insert(new QRadioButton(tr("SMESH_COPY_ELEMENTS"),ActionGroup), COPY_ELEMS_BUTTON);
288 ActionGroup->insert(new QRadioButton(tr("SMESH_CREATE_MESH" ),ActionGroup), MAKE_MESH_BUTTON);
289 GroupArgumentsLayout->addMultiCellWidget(ActionGroup, 4, 6, 0, 2);
291 // CheckBox for groups generation
292 MakeGroupsCheck = new QCheckBox(tr("SMESH_MAKE_GROUPS"), GroupArguments);
293 GroupArgumentsLayout->addWidget(MakeGroupsCheck, 5, 3);
295 // Name of a mesh to create
296 LineEditNewMesh = new QLineEdit(GroupArguments, "LineEditNewMesh");
297 GroupArgumentsLayout->addWidget(LineEditNewMesh, 6, 3);
299 SMESHGUI_RotationDlgLayout->addWidget(GroupArguments, 1, 0);
301 /* Initialisations */
302 SpinBox_X->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, 3);
303 SpinBox_Y->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, 3);
304 SpinBox_Z->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, 3);
305 SpinBox_DX->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, 3);
306 SpinBox_DY->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, 3);
307 SpinBox_DZ->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, 3);
309 SpinBox_Angle->RangeStepAndValidator(-360.0, +360.0, 5.0, 3);
311 GroupArguments->show();
313 RadioButton1->setChecked(TRUE);
315 mySelector = (SMESH::GetViewWindow( mySMESHGUI ))->GetSelector();
317 mySMESHGUI->SetActiveDialogBox((QDialog*)this);
319 // Costruction of the logical filter
320 SMESH_TypeFilter* aMeshOrSubMeshFilter = new SMESH_TypeFilter (MESHorSUBMESH);
321 SMESH_TypeFilter* aSmeshGroupFilter = new SMESH_TypeFilter (GROUP);
323 QPtrList<SUIT_SelectionFilter> aListOfFilters;
324 if (aMeshOrSubMeshFilter) aListOfFilters.append(aMeshOrSubMeshFilter);
325 if (aSmeshGroupFilter) aListOfFilters.append(aSmeshGroupFilter);
327 myMeshOrSubMeshOrGroupFilter =
328 new SMESH_LogicalFilter (aListOfFilters, SMESH_LogicalFilter::LO_OR);
330 myHelpFileName = "rotation_page.html";
334 /* signals and slots connections */
335 connect(buttonOk, SIGNAL(clicked()), this, SLOT(ClickOnOk()));
336 connect(buttonCancel, SIGNAL(clicked()), this, SLOT(ClickOnCancel()));
337 connect(buttonApply, SIGNAL(clicked()), this, SLOT(ClickOnApply()));
338 connect(buttonHelp, SIGNAL(clicked()), this, SLOT(ClickOnHelp()));
339 connect(GroupConstructors, SIGNAL(clicked(int)), SLOT(ConstructorsClicked(int)));
341 connect(SelectElementsButton, SIGNAL (clicked()), this, SLOT(SetEditCurrentArgument()));
342 connect(SelectPointButton, SIGNAL (clicked()), this, SLOT(SetEditCurrentArgument()));
343 connect(SelectVectorButton, SIGNAL (clicked()), this, SLOT(SetEditCurrentArgument()));
345 connect(SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(onVectorChanged()));
346 connect(SpinBox_DY, SIGNAL(valueChanged(double)), this, SLOT(onVectorChanged()));
347 connect(SpinBox_DZ, SIGNAL(valueChanged(double)), this, SLOT(onVectorChanged()));
349 connect(mySMESHGUI, SIGNAL (SignalDeactivateActiveDialog()), this, SLOT(DeactivateActiveDialog()));
350 connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
351 /* to close dialog if study change */
352 connect(mySMESHGUI, SIGNAL (SignalCloseAllDialogs()), this, SLOT(ClickOnCancel()));
353 connect(LineEditElements, SIGNAL(textChanged(const QString&)), SLOT(onTextChange(const QString&)));
354 connect(CheckBoxMesh, SIGNAL(toggled(bool)), SLOT(onSelectMesh(bool)));
355 connect(ActionGroup, SIGNAL(clicked(int)), SLOT(onActionClicked(int)));
357 this->show(); /* displays Dialog */
359 ConstructorsClicked(0);
360 //SelectionIntoArgument();
361 onActionClicked(MOVE_ELEMS_BUTTON);
365 //=================================================================================
366 // function : ~SMESHGUI_RotationDlg()
367 // purpose : Destroys the object and frees any allocated resources
368 //=================================================================================
369 SMESHGUI_RotationDlg::~SMESHGUI_RotationDlg()
371 // no need to delete child widgets, Qt does it all for us
374 //=================================================================================
377 //=================================================================================
378 void SMESHGUI_RotationDlg::Init (bool ResetControls)
382 myEditCurrentArgument = (QWidget*)LineEditElements;
383 LineEditElements->setFocus();
387 buttonOk->setEnabled(false);
388 buttonApply->setEnabled(false);
391 myMesh = SMESH::SMESH_Mesh::_nil();
394 SpinBox_X->SetValue(0.0);
395 SpinBox_Y->SetValue(0.0);
396 SpinBox_Z->SetValue(0.0);
397 SpinBox_DX->SetValue(0.0);
398 SpinBox_DY->SetValue(0.0);
399 SpinBox_DZ->SetValue(0.0);
401 SpinBox_Angle->SetValue(45);
403 ((QRadioButton*) ActionGroup->find( MOVE_ELEMS_BUTTON ))->setChecked(TRUE);
404 CheckBoxMesh->setChecked(false);
405 // MakeGroupsCheck->setChecked(false);
406 // MakeGroupsCheck->setEnabled(false);
407 // onSelectMesh(false);
410 onSelectMesh(CheckBoxMesh->isChecked());
413 //=================================================================================
414 // function : ConstructorsClicked()
415 // purpose : Radio button management
416 //=================================================================================
417 void SMESHGUI_RotationDlg::ConstructorsClicked (int constructorId)
421 //=================================================================================
422 // function : ClickOnApply()
424 //=================================================================================
425 void SMESHGUI_RotationDlg::ClickOnApply()
427 if (mySMESHGUI->isActiveStudyLocked())
430 if (myNbOkElements && IsAxisOk()) {
431 QStringList aListElementsId = QStringList::split(" ", myElementsId, false);
433 SMESH::long_array_var anElementsId = new SMESH::long_array;
435 anElementsId->length(aListElementsId.count());
436 for (int i = 0; i < aListElementsId.count(); i++)
437 anElementsId[i] = aListElementsId[i].toInt();
439 SMESH::AxisStruct anAxis;
441 anAxis.x = SpinBox_X->GetValue();
442 anAxis.y = SpinBox_Y->GetValue();
443 anAxis.z = SpinBox_Z->GetValue();;
444 anAxis.vx = SpinBox_DX->GetValue();
445 anAxis.vy = SpinBox_DY->GetValue();
446 anAxis.vz = SpinBox_DZ->GetValue();
448 double anAngle = (SpinBox_Angle->GetValue())*PI/180;
449 int actionButton = ActionGroup->id( ActionGroup->selected() );
450 bool makeGroups = ( MakeGroupsCheck->isEnabled() && MakeGroupsCheck->isChecked() );
452 SMESH::SMESH_MeshEditor_var aMeshEditor = myMesh->GetMeshEditor();
453 QApplication::setOverrideCursor(Qt::waitCursor);
454 switch ( actionButton ) {
455 case MOVE_ELEMS_BUTTON:
456 aMeshEditor->Rotate(anElementsId, anAxis, anAngle, false);
458 case COPY_ELEMS_BUTTON:
460 SMESH::ListOfGroups_var groups =
461 aMeshEditor->RotateMakeGroups(anElementsId, anAxis, anAngle);
463 aMeshEditor->Rotate(anElementsId, anAxis, anAngle, true);
465 case MAKE_MESH_BUTTON:
466 SMESH::SMESH_Mesh_var mesh =
467 aMeshEditor->RotateMakeMesh(anElementsId, anAxis, anAngle, makeGroups,
468 LineEditNewMesh->text().latin1());
470 QApplication::restoreOverrideCursor();
475 if ( MakeGroupsCheck->isEnabled() && MakeGroupsCheck->isChecked() ||
476 actionButton == MAKE_MESH_BUTTON )
477 mySMESHGUI->updateObjBrowser(true); // new groups may appear
479 //ConstructorsClicked(GetConstructorId());
480 SelectionIntoArgument();
484 //=================================================================================
485 // function : ClickOnOk()
487 //=================================================================================
488 void SMESHGUI_RotationDlg::ClickOnOk()
494 //=================================================================================
495 // function : ClickOnCancel()
497 //=================================================================================
498 void SMESHGUI_RotationDlg::ClickOnCancel()
500 disconnect(mySelectionMgr, 0, this, 0);
501 mySelectionMgr->clearFilters();
502 //mySelectionMgr->clearSelected();
503 SMESH::SetPointRepresentation(false);
504 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
505 aViewWindow->SetSelectionMode(ActorSelection);
506 mySMESHGUI->ResetState();
510 //=================================================================================
511 // function : ClickOnHelp()
513 //=================================================================================
514 void SMESHGUI_RotationDlg::ClickOnHelp()
516 LightApp_Application* app = (LightApp_Application*)(SUIT_Session::session()->activeApplication());
518 app->onHelpContextModule(mySMESHGUI ? app->moduleName(mySMESHGUI->moduleName()) : QString(""), myHelpFileName);
522 platform = "winapplication";
524 platform = "application";
526 SUIT_MessageBox::warn1(0, QObject::tr("WRN_WARNING"),
527 QObject::tr("EXTERNAL_BROWSER_CANNOT_SHOW_PAGE").
528 arg(app->resourceMgr()->stringValue("ExternalBrowser", platform)).arg(myHelpFileName),
529 QObject::tr("BUT_OK"));
533 //=======================================================================
534 // function : onTextChange()
536 //=======================================================================
537 void SMESHGUI_RotationDlg::onTextChange (const QString& theNewText)
539 QLineEdit* send = (QLineEdit*)sender();
544 if (send == LineEditElements)
547 buttonOk->setEnabled(false);
548 buttonApply->setEnabled(false);
550 // hilight entered elements
551 SMDS_Mesh* aMesh = 0;
553 aMesh = myActor->GetObject()->GetMesh();
556 if (send == LineEditElements) {
557 Handle(SALOME_InteractiveObject) anIO = myActor->getIO();
559 TColStd_MapOfInteger newIndices;
561 QStringList aListId = QStringList::split(" ", theNewText, false);
562 for (int i = 0; i < aListId.count(); i++) {
563 const SMDS_MeshElement * e = aMesh->FindElement(aListId[ i ].toInt());
565 newIndices.Add(e->GetID());
569 mySelector->AddOrRemoveIndex( anIO, newIndices, false );
570 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
571 aViewWindow->highlight( anIO, true, true );
573 myElementsId = theNewText;
577 if (myNbOkElements && IsAxisOk()) {
578 buttonOk->setEnabled(true);
579 buttonApply->setEnabled(true);
585 //=================================================================================
586 // function : SelectionIntoArgument()
587 // purpose : Called when selection as changed or other case
588 //=================================================================================
589 void SMESHGUI_RotationDlg::SelectionIntoArgument()
595 QString aString = "";
598 if (myEditCurrentArgument == (QWidget*)LineEditElements) {
599 LineEditElements->setText(aString);
601 buttonOk->setEnabled(false);
602 buttonApply->setEnabled(false);
606 if (!GroupButtons->isEnabled()) // inactive
611 mySelectionMgr->selectedObjects(aList,SVTK_Viewer::Type());
613 int nbSel = aList.Extent();
617 Handle(SALOME_InteractiveObject) IO = aList.First();
618 myMesh = SMESH::GetMeshByIO(IO);
619 if (myMesh->_is_nil())
622 myActor = SMESH::FindActorByObject(myMesh);
624 myActor = SMESH::FindActorByEntry(IO->getEntry());
630 if (myEditCurrentArgument == (QWidget*)LineEditElements) {
633 // MakeGroups is available if there are groups and "Copy"
634 if ( myMesh->NbGroups() == 0 ) {
635 MakeGroupsCheck->setChecked(false);
636 MakeGroupsCheck->setEnabled(false);
638 else if ( ActionGroup->id( ActionGroup->selected() ) != MOVE_ELEMS_BUTTON ) {
639 MakeGroupsCheck->setEnabled(true);
641 if (CheckBoxMesh->isChecked()) {
642 SMESH::GetNameOfSelectedIObjects(mySelectionMgr, aString);
644 if (!SMESH::IObjectToInterface<SMESH::SMESH_Mesh>(IO)->_is_nil()) { //MESH
646 SMDS_Mesh* aSMDSMesh = myActor->GetObject()->GetMesh();
650 for (int i = aSMDSMesh->MinElementID(); i <= aSMDSMesh->MaxElementID(); i++) {
651 const SMDS_MeshElement * e = aSMDSMesh->FindElement(i);
653 myElementsId += QString(" %1").arg(i);
657 } else if (!SMESH::IObjectToInterface<SMESH::SMESH_subMesh>(IO)->_is_nil()) { //SUBMESH
659 SMESH::SMESH_subMesh_var aSubMesh = SMESH::IObjectToInterface<SMESH::SMESH_subMesh>(IO);
661 // get IDs from submesh
662 SMESH::long_array_var anElementsIds = new SMESH::long_array;
663 anElementsIds = aSubMesh->GetElementsId();
664 for (int i = 0; i < anElementsIds->length(); i++) {
665 myElementsId += QString(" %1").arg(anElementsIds[i]);
667 aNbUnits = anElementsIds->length();
670 SMESH::SMESH_GroupBase_var aGroup =
671 SMESH::IObjectToInterface<SMESH::SMESH_GroupBase>(IO);
672 if (aGroup->_is_nil())
675 // get IDs from smesh group
676 SMESH::long_array_var anElementsIds = new SMESH::long_array;
677 anElementsIds = aGroup->GetListOfID();
678 for (int i = 0; i < anElementsIds->length(); i++) {
679 myElementsId += QString(" %1").arg(anElementsIds[i]);
681 aNbUnits = anElementsIds->length();
684 aNbUnits = SMESH::GetNameOfSelectedElements(mySelector, IO, aString);
685 myElementsId = aString;
691 myNbOkElements = true;
693 aNbUnits = SMESH::GetNameOfSelectedNodes(mySelector, IO, aString);
697 SMDS_Mesh* aMesh = myActor->GetObject()->GetMesh();
701 const SMDS_MeshNode * n = aMesh->FindNode(aString.toInt());
709 if (myEditCurrentArgument == (QWidget*)SpinBox_X) {
710 SpinBox_X->SetValue(x);
711 SpinBox_Y->SetValue(y);
712 SpinBox_Z->SetValue(z);
713 } else if (myEditCurrentArgument == (QWidget*)SpinBox_DX) {
714 SpinBox_DX->SetValue(x - SpinBox_X->GetValue());
715 SpinBox_DY->SetValue(y - SpinBox_Y->GetValue());
716 SpinBox_DZ->SetValue(z - SpinBox_Z->GetValue());
721 if (myEditCurrentArgument == (QWidget*)LineEditElements) {
722 LineEditElements->setText(aString);
723 LineEditElements->repaint();
729 if (myNbOkElements && IsAxisOk()) {
730 buttonOk->setEnabled(true);
731 buttonApply->setEnabled(true);
735 //=================================================================================
736 // function : SetEditCurrentArgument()
738 //=================================================================================
739 void SMESHGUI_RotationDlg::SetEditCurrentArgument()
741 QPushButton* send = (QPushButton*)sender();
743 disconnect(mySelectionMgr, 0, this, 0);
744 mySelectionMgr->clearSelected();
745 mySelectionMgr->clearFilters();
747 switch (myConstructorId) {
748 case 0: /* default constructor */
750 SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI );
751 if (send == SelectElementsButton) {
752 myEditCurrentArgument = (QWidget*)LineEditElements;
753 SMESH::SetPointRepresentation(false);
754 if (CheckBoxMesh->isChecked()) {
756 aViewWindow->SetSelectionMode(ActorSelection);
757 mySelectionMgr->installFilter(myMeshOrSubMeshOrGroupFilter);
760 aViewWindow->SetSelectionMode( CellSelection );
762 } else if (send == SelectPointButton) {
763 myEditCurrentArgument = (QWidget*)SpinBox_X;
764 SMESH::SetPointRepresentation(true);
766 aViewWindow->SetSelectionMode( NodeSelection );
767 } else if (send == SelectVectorButton) {
768 myEditCurrentArgument = (QWidget*)SpinBox_DX;
769 SMESH::SetPointRepresentation(true);
771 aViewWindow->SetSelectionMode( NodeSelection );
777 myEditCurrentArgument->setFocus();
778 connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
779 SelectionIntoArgument();
782 //=================================================================================
783 // function : DeactivateActiveDialog()
785 //=================================================================================
786 void SMESHGUI_RotationDlg::DeactivateActiveDialog()
788 if (GroupConstructors->isEnabled()) {
789 GroupConstructors->setEnabled(false);
790 GroupArguments->setEnabled(false);
791 GroupButtons->setEnabled(false);
792 mySMESHGUI->ResetState();
793 mySMESHGUI->SetActiveDialogBox(0);
797 //=================================================================================
798 // function : ActivateThisDialog()
800 //=================================================================================
801 void SMESHGUI_RotationDlg::ActivateThisDialog()
803 /* Emit a signal to deactivate the active dialog */
804 mySMESHGUI->EmitSignalDeactivateDialog();
805 GroupConstructors->setEnabled(true);
806 GroupArguments->setEnabled(true);
807 GroupButtons->setEnabled(true);
809 mySMESHGUI->SetActiveDialogBox((QDialog*)this);
811 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
812 aViewWindow->SetSelectionMode( CellSelection );
813 SelectionIntoArgument();
816 //=================================================================================
817 // function : enterEvent()
819 //=================================================================================
820 void SMESHGUI_RotationDlg::enterEvent (QEvent*)
822 if (!GroupConstructors->isEnabled())
823 ActivateThisDialog();
826 //=================================================================================
827 // function : closeEvent()
829 //=================================================================================
830 void SMESHGUI_RotationDlg::closeEvent (QCloseEvent*)
832 /* same than click on cancel button */
833 this->ClickOnCancel();
836 //=================================================================================
837 // function : hideEvent()
838 // purpose : caused by ESC key
839 //=================================================================================
840 void SMESHGUI_RotationDlg::hideEvent (QHideEvent*)
846 //=================================================================================
847 // function : onSelectMesh()
849 //=================================================================================
850 void SMESHGUI_RotationDlg::onSelectMesh (bool toSelectMesh)
853 TextLabelElements->setText(tr("SMESH_NAME"));
855 TextLabelElements->setText(tr("SMESH_ID_ELEMENTS"));
857 if (myEditCurrentArgument != LineEditElements) {
858 LineEditElements->clear();
862 mySelectionMgr->clearFilters();
863 SMESH::SetPointRepresentation(false);
866 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
867 aViewWindow->SetSelectionMode(ActorSelection);
868 mySelectionMgr->installFilter(myMeshOrSubMeshOrGroupFilter);
869 LineEditElements->setReadOnly(true);
871 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
872 aViewWindow->SetSelectionMode( CellSelection );
873 LineEditElements->setReadOnly(false);
874 onTextChange(LineEditElements->text());
877 SelectionIntoArgument();
880 //=================================================================================
881 // function : IsAxisOk()
883 //=================================================================================
884 bool SMESHGUI_RotationDlg::IsAxisOk()
886 return (SpinBox_DX->GetValue() != 0 ||
887 SpinBox_DY->GetValue() != 0 ||
888 SpinBox_DZ->GetValue() != 0);
891 //=================================================================================
892 // function : onVectorChanged()
894 //=================================================================================
895 void SMESHGUI_RotationDlg::onVectorChanged()
898 buttonOk->setEnabled(true);
899 buttonApply->setEnabled(true);
901 buttonOk->setEnabled(false);
902 buttonApply->setEnabled(false);
907 //=======================================================================
908 //function : onActionClicked
909 //purpose : slot called when an action type changed
910 //=======================================================================
912 void SMESHGUI_RotationDlg::onActionClicked(int button)
915 case MOVE_ELEMS_BUTTON:
916 MakeGroupsCheck->setEnabled(false);
917 LineEditNewMesh->setEnabled(false);
919 case COPY_ELEMS_BUTTON:
920 LineEditNewMesh->setEnabled(false);
921 MakeGroupsCheck->setText( tr("SMESH_MAKE_GROUPS"));
922 if ( myMesh->_is_nil() || myMesh->NbGroups() > 0)
923 MakeGroupsCheck->setEnabled(true);
925 MakeGroupsCheck->setEnabled(false);
927 case MAKE_MESH_BUTTON:
928 LineEditNewMesh->setEnabled(true);
929 MakeGroupsCheck->setText( tr("SMESH_COPY_GROUPS"));
930 if ( myMesh->_is_nil() || myMesh->NbGroups() > 0)
931 MakeGroupsCheck->setEnabled(true);
933 MakeGroupsCheck->setEnabled(false);
939 //=======================================================================
940 //function : setNewMeshName
941 //purpose : update contents of LineEditNewMesh
942 //=======================================================================
944 void SMESHGUI_RotationDlg::setNewMeshName()
946 LineEditNewMesh->setText("");
947 if ( LineEditNewMesh->isEnabled() && !myMesh->_is_nil() ) {
949 if ( CheckBoxMesh->isChecked() ) {
950 name = LineEditElements->text();
953 _PTR(SObject) meshSO = SMESH::FindSObject( myMesh );
954 name = meshSO->GetName();
956 if ( !name.isEmpty() )
957 LineEditNewMesh->setText( SMESH::UniqueMeshName( name.latin1(), "rotated"));
961 //=================================================================================
962 // function : keyPressEvent()
964 //=================================================================================
965 void SMESHGUI_RotationDlg::keyPressEvent( QKeyEvent* e )
967 QDialog::keyPressEvent( e );
968 if ( e->isAccepted() )
971 if ( e->key() == Key_F1 )