1 // Copyright (C) 2007-2010 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
23 // SMESH SMESHGUI : GUI for SMESH component
24 // File : SMESHGUI_RevolutionDlg.cxx
25 // Author : Michael ZORIN, Open CASCADE S.A.S.
28 #include "SMESHGUI_RevolutionDlg.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"
36 #include "SMESHGUI_MeshEditPreview.h"
37 #include "SMESHGUI_FilterDlg.h"
39 #include <SMESH_Actor.h>
40 #include <SMESH_TypeFilter.hxx>
41 #include <SMESH_LogicalFilter.hxx>
42 #include <SMDS_Mesh.hxx>
44 // SALOME GUI includes
45 #include <SUIT_ResourceMgr.h>
46 #include <SUIT_Session.h>
47 #include <SUIT_MessageBox.h>
48 #include <SUIT_Desktop.h>
49 #include <SUIT_OverrideCursor.h>
51 #include <LightApp_Application.h>
52 #include <LightApp_SelectionMgr.h>
53 #include <SalomeApp_Application.h>
54 #include <SalomeApp_IntSpinBox.h>
56 #include <SVTK_ViewWindow.h>
57 #include <SVTK_Selector.h>
58 #include <SALOME_ListIO.hxx>
59 #include <VTKViewer_CellLocationsArray.h>
62 #include <TColStd_MapOfInteger.hxx>
65 #include <QApplication>
66 #include <QButtonGroup>
70 #include <QPushButton>
71 #include <QRadioButton>
73 #include <QHBoxLayout>
74 #include <QVBoxLayout>
75 #include <QGridLayout>
80 #include <SALOMEconfig.h>
81 #include CORBA_SERVER_HEADER(SMESH_Group)
82 #include CORBA_SERVER_HEADER(SMESH_MeshEditor)
87 //=================================================================================
88 // class : SMESHGUI_RevolutionDlg()
90 //=================================================================================
91 SMESHGUI_RevolutionDlg::SMESHGUI_RevolutionDlg( SMESHGUI* theModule )
92 : QDialog( SMESH::GetDesktop( theModule ) ),
93 mySMESHGUI( theModule ),
94 mySelectionMgr( SMESH::GetSelectionMgr( theModule ) ),
95 myVectorDefinition(NONE_SELECT),
97 mySelectedObject(SMESH::SMESH_IDSource::_nil()),
100 mySimulation = new SMESHGUI_MeshEditPreview(SMESH::GetViewWindow( mySMESHGUI ));
102 SUIT_ResourceMgr* mgr = SMESH::GetResourceMgr( mySMESHGUI );
103 QPixmap image0 ( mgr->loadPixmap("SMESH", tr("ICON_DLG_EDGE")));
104 QPixmap image1 ( mgr->loadPixmap("SMESH", tr("ICON_DLG_TRIANGLE")));
105 QPixmap image2 ( mgr->loadPixmap("SMESH", tr("ICON_SELECT")));
108 setAttribute(Qt::WA_DeleteOnClose, true);
109 setWindowTitle(tr("REVOLUTION_AROUND_AXIS"));
110 setSizeGripEnabled(true);
112 QVBoxLayout* SMESHGUI_RevolutionDlgLayout = new QVBoxLayout(this);
113 SMESHGUI_RevolutionDlgLayout->setSpacing(SPACING);
114 SMESHGUI_RevolutionDlgLayout->setMargin(MARGIN);
116 /***************************************************************/
117 ConstructorsBox = new QGroupBox(tr("SMESH_REVOLUTION"), this);
118 GroupConstructors = new QButtonGroup(this);
119 QHBoxLayout* ConstructorsBoxLayout = new QHBoxLayout(ConstructorsBox);
120 ConstructorsBoxLayout->setSpacing(SPACING);
121 ConstructorsBoxLayout->setMargin(MARGIN);
123 RadioButton1 = new QRadioButton(ConstructorsBox);
124 RadioButton1->setIcon(image0);
125 RadioButton2 = new QRadioButton(ConstructorsBox);
126 RadioButton2->setIcon(image1);
128 ConstructorsBoxLayout->addWidget(RadioButton1);
129 ConstructorsBoxLayout->addWidget(RadioButton2);
130 GroupConstructors->addButton(RadioButton1, 0);
131 GroupConstructors->addButton(RadioButton2, 1);
133 /***************************************************************/
134 GroupArguments = new QGroupBox(tr("REVOLUTION_1D"), this);
135 QGridLayout* GroupArgumentsLayout = new QGridLayout(GroupArguments);
136 GroupArgumentsLayout->setSpacing(SPACING);
137 GroupArgumentsLayout->setMargin(MARGIN);
139 myIdValidator = new SMESHGUI_IdValidator(this);
141 // Controls for elements selection
142 TextLabelElements = new QLabel(tr("SMESH_ID_ELEMENTS"), GroupArguments);
144 SelectElementsButton = new QPushButton(GroupArguments);
145 SelectElementsButton->setIcon(image2);
147 LineEditElements = new QLineEdit(GroupArguments);
148 LineEditElements->setValidator(myIdValidator);
149 myFilterBtn = new QPushButton( tr( "SMESH_BUT_FILTER" ), GroupArguments );
150 connect(myFilterBtn, SIGNAL(clicked()), this, SLOT(setFilters()));
152 // Control for the whole mesh selection
153 CheckBoxMesh = new QCheckBox(tr("SMESH_SELECT_WHOLE_MESH"), GroupArguments);
155 // Controls for axis defining
156 GroupAxis = new QGroupBox(tr("SMESH_AXIS"), GroupArguments);
157 QGridLayout* GroupAxisLayout = new QGridLayout(GroupAxis);
158 GroupAxisLayout->setSpacing(SPACING);
159 GroupAxisLayout->setMargin(MARGIN);
161 TextLabelPoint = new QLabel(tr("SMESH_POINT"), GroupAxis);
162 SelectPointButton = new QPushButton(GroupAxis);
163 SelectPointButton->setIcon(image2);
165 TextLabelX = new QLabel(tr("SMESH_X"), GroupAxis);
166 SpinBox_X = new SMESHGUI_SpinBox(GroupAxis);
168 TextLabelY = new QLabel(tr("SMESH_Y"), GroupAxis);
169 SpinBox_Y = new SMESHGUI_SpinBox(GroupAxis);
171 TextLabelZ = new QLabel(tr("SMESH_Z"), GroupAxis);
172 SpinBox_Z = new SMESHGUI_SpinBox(GroupAxis);
174 TextLabelVector = new QLabel(tr("SMESH_VECTOR"), GroupAxis);
175 SelectVectorButton = new QPushButton(GroupAxis);
176 SelectVectorButton->setIcon(image2);
178 TextLabelDX = new QLabel(tr("SMESH_DX"), GroupAxis);
179 SpinBox_DX = new SMESHGUI_SpinBox(GroupAxis);
181 TextLabelDY = new QLabel(tr("SMESH_DY"), GroupAxis);
182 SpinBox_DY = new SMESHGUI_SpinBox(GroupAxis);
184 TextLabelDZ = new QLabel(tr("SMESH_DZ"), GroupAxis);
185 SpinBox_DZ = new SMESHGUI_SpinBox(GroupAxis);
187 GroupAxisLayout->addWidget(TextLabelPoint, 0, 0);
188 GroupAxisLayout->addWidget(SelectPointButton, 0, 1);
189 GroupAxisLayout->addWidget(TextLabelX, 0, 2);
190 GroupAxisLayout->addWidget(SpinBox_X, 0, 3);
191 GroupAxisLayout->addWidget(TextLabelY, 0, 4);
192 GroupAxisLayout->addWidget(SpinBox_Y, 0, 5);
193 GroupAxisLayout->addWidget(TextLabelZ, 0, 6);
194 GroupAxisLayout->addWidget(SpinBox_Z, 0, 7);
195 GroupAxisLayout->addWidget(TextLabelVector, 1, 0);
196 GroupAxisLayout->addWidget(SelectVectorButton, 1, 1);
197 GroupAxisLayout->addWidget(TextLabelDX, 1, 2);
198 GroupAxisLayout->addWidget(SpinBox_DX, 1, 3);
199 GroupAxisLayout->addWidget(TextLabelDY, 1, 4);
200 GroupAxisLayout->addWidget(SpinBox_DY, 1, 5);
201 GroupAxisLayout->addWidget(TextLabelDZ, 1, 6);
202 GroupAxisLayout->addWidget(SpinBox_DZ, 1, 7);
204 // Controls for angle defining & number of steps defining
205 GroupAngleBox = new QGroupBox(tr("SMESH_ANGLE"), GroupArguments);
206 GroupAngle = new QButtonGroup(GroupAngleBox);
207 QGridLayout* GroupAngleLayout = new QGridLayout(GroupAngleBox);
208 GroupAngleLayout->setSpacing(6);
209 GroupAngleLayout->setMargin(11);
211 RadioButton3 = new QRadioButton(tr("ANGLE_BY_STEP"), GroupAngleBox);
212 RadioButton4 = new QRadioButton(tr("TOTAL_ANGLE"), GroupAngleBox);
213 GroupAngle->addButton(RadioButton3, 0);
214 GroupAngle->addButton(RadioButton4, 1);
216 TextLabelAngle = new QLabel(tr("SMESH_ANGLE"), GroupAngleBox);
217 SpinBox_Angle = new SMESHGUI_SpinBox(GroupAngleBox);
219 TextLabelNbSteps = new QLabel(tr("SMESH_NUMBEROFSTEPS"), GroupAngleBox);
220 SpinBox_NbSteps = new SalomeApp_IntSpinBox(GroupAngleBox);
222 GroupAngleLayout->addWidget(RadioButton3, 0, 0);
223 GroupAngleLayout->addWidget(RadioButton4, 0, 1);
224 GroupAngleLayout->addWidget(TextLabelAngle, 1, 0);
225 GroupAngleLayout->addWidget(SpinBox_Angle, 1, 1);
226 GroupAngleLayout->addWidget(TextLabelNbSteps, 2, 0);
227 GroupAngleLayout->addWidget(SpinBox_NbSteps, 2, 1);
229 // Controls for tolerance defining
230 TextLabelTolerance = new QLabel(tr("SMESH_TOLERANCE"), GroupArguments);
231 SpinBox_Tolerance = new SMESHGUI_SpinBox(GroupArguments);
233 // Control for mesh preview
234 CheckBoxPreview = new QCheckBox(tr("PREVIEW"), GroupArguments);
236 // CheckBox for groups generation
237 MakeGroupsCheck = new QCheckBox(tr("SMESH_MAKE_GROUPS"), GroupArguments);
238 MakeGroupsCheck->setChecked(true);
240 GroupArgumentsLayout->addWidget(TextLabelElements, 0, 0);
241 GroupArgumentsLayout->addWidget(SelectElementsButton, 0, 1);
242 GroupArgumentsLayout->addWidget(LineEditElements, 0, 2);
243 GroupArgumentsLayout->addWidget(myFilterBtn, 0, 3);
244 GroupArgumentsLayout->addWidget(CheckBoxMesh, 1, 0, 1, 4);
245 GroupArgumentsLayout->addWidget(GroupAxis, 2, 0, 1, 4);
246 GroupArgumentsLayout->addWidget(GroupAngleBox, 3, 0, 1, 4);
247 GroupArgumentsLayout->addWidget(TextLabelTolerance, 4, 0, 1, 2);
248 GroupArgumentsLayout->addWidget(SpinBox_Tolerance, 4, 2, 1, 2);
249 GroupArgumentsLayout->addWidget(CheckBoxPreview, 5, 0, 1, 4);
250 GroupArgumentsLayout->addWidget(MakeGroupsCheck, 6, 0, 1, 4);
252 /***************************************************************/
253 GroupButtons = new QGroupBox(this);
254 QHBoxLayout* GroupButtonsLayout = new QHBoxLayout(GroupButtons);
255 GroupButtonsLayout->setSpacing(SPACING);
256 GroupButtonsLayout->setMargin(MARGIN);
258 buttonOk = new QPushButton(tr("SMESH_BUT_APPLY_AND_CLOSE"), GroupButtons);
259 buttonOk->setAutoDefault(true);
260 buttonOk->setDefault(true);
261 buttonApply = new QPushButton(tr("SMESH_BUT_APPLY"), GroupButtons);
262 buttonApply->setAutoDefault(true);
263 buttonCancel = new QPushButton(tr("SMESH_BUT_CLOSE"), GroupButtons);
264 buttonCancel->setAutoDefault(true);
265 buttonHelp = new QPushButton(tr("SMESH_BUT_HELP"), GroupButtons);
266 buttonHelp->setAutoDefault(true);
268 GroupButtonsLayout->addWidget(buttonOk);
269 GroupButtonsLayout->addSpacing(10);
270 GroupButtonsLayout->addWidget(buttonApply);
271 GroupButtonsLayout->addSpacing(10);
272 GroupButtonsLayout->addStretch();
273 GroupButtonsLayout->addWidget(buttonCancel);
274 GroupButtonsLayout->addWidget(buttonHelp);
276 /***************************************************************/
277 SMESHGUI_RevolutionDlgLayout->addWidget(ConstructorsBox);
278 SMESHGUI_RevolutionDlgLayout->addWidget(GroupArguments);
279 SMESHGUI_RevolutionDlgLayout->addWidget(GroupButtons);
281 /* Initialisations */
282 SpinBox_X->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, "length_precision");
283 SpinBox_Y->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, "length_precision");
284 SpinBox_Z->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, "length_precision");
285 SpinBox_DX->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, "length_precision");
286 SpinBox_DY->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, "length_precision");
287 SpinBox_DZ->RangeStepAndValidator(COORD_MIN, COORD_MAX, 10.0, "length_precision");
289 RadioButton3->setChecked(true);
291 SpinBox_Angle->RangeStepAndValidator(COORD_MIN, COORD_MAX, 5.0, "angle_precision");
293 SpinBox_NbSteps->setRange(1, 999999);
295 SpinBox_Tolerance->RangeStepAndValidator(0.0, COORD_MAX, 0.00001, "len_tol_precision");
297 RadioButton1->setChecked(true);
299 mySelector = (SMESH::GetViewWindow( mySMESHGUI ))->GetSelector();
301 mySMESHGUI->SetActiveDialogBox((QDialog*)this);
303 // Costruction of the logical filter
304 SMESH_TypeFilter* aMeshOrSubMeshFilter = new SMESH_TypeFilter (MESHorSUBMESH);
305 SMESH_TypeFilter* aSmeshGroupFilter = new SMESH_TypeFilter (GROUP);
307 QList<SUIT_SelectionFilter*> aListOfFilters;
308 if (aMeshOrSubMeshFilter) aListOfFilters.append(aMeshOrSubMeshFilter);
309 if (aSmeshGroupFilter) aListOfFilters.append(aSmeshGroupFilter);
311 myMeshOrSubMeshOrGroupFilter =
312 new SMESH_LogicalFilter (aListOfFilters, SMESH_LogicalFilter::LO_OR);
314 myHelpFileName = "revolution_page.html";
318 /*Create menu to vector selection*/
319 SelectVectorMenu = new QMenu(this);
320 myMenuActions[SelectVectorMenu->addAction( tr( "MEN_POINT_SELECT" ) )] = POINT_SELECT;
321 myMenuActions[SelectVectorMenu->addAction( tr( "MEN_FACE_SELECT" ) )] = FACE_SELECT;
322 connect( SelectVectorMenu, SIGNAL( triggered( QAction* ) ), SLOT( onSelectVectorMenu( QAction* ) ) );
324 /* signals and slots connections */
325 connect(buttonOk, SIGNAL(clicked()), this, SLOT(ClickOnOk()));
326 connect(buttonCancel, SIGNAL(clicked()), this, SLOT(ClickOnCancel()));
327 connect(buttonApply, SIGNAL(clicked()), this, SLOT(ClickOnApply()));
328 connect(buttonHelp, SIGNAL(clicked()), this, SLOT(ClickOnHelp()));
329 connect(GroupConstructors, SIGNAL(buttonClicked(int)), SLOT(ConstructorsClicked(int)));
331 connect(SelectElementsButton, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
332 connect(SelectPointButton, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
333 connect(SelectVectorButton, SIGNAL(clicked()), this, SLOT(onSelectVectorButton()));
335 connect(SpinBox_X, SIGNAL(valueChanged(double)), this, SLOT(toDisplaySimulation()));
336 connect(SpinBox_Y, SIGNAL(valueChanged(double)), this, SLOT(toDisplaySimulation()));
337 connect(SpinBox_Z, SIGNAL(valueChanged(double)), this, SLOT(toDisplaySimulation()));
339 connect(SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(onVectorChanged()));
340 connect(SpinBox_DY, SIGNAL(valueChanged(double)), this, SLOT(onVectorChanged()));
341 connect(SpinBox_DZ, SIGNAL(valueChanged(double)), this, SLOT(onVectorChanged()));
343 connect(mySMESHGUI, SIGNAL(SignalDeactivateActiveDialog()), this, SLOT(DeactivateActiveDialog()));
344 connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
345 /* to close dialog if study change */
346 connect(mySMESHGUI, SIGNAL(SignalCloseAllDialogs()), this, SLOT(ClickOnCancel()));
347 connect(LineEditElements, SIGNAL(textChanged(const QString&)), SLOT(onTextChange(const QString&)));
348 connect(CheckBoxMesh, SIGNAL(toggled(bool)), SLOT(onSelectMesh(bool)));
350 connect(GroupAngle, SIGNAL(buttonClicked(int)), this, SLOT(toDisplaySimulation()));
351 connect(SpinBox_Angle, SIGNAL(valueChanged(double)), this, SLOT(toDisplaySimulation()));
352 connect(SpinBox_NbSteps, SIGNAL(valueChanged(int)), this, SLOT(toDisplaySimulation()));
353 connect(SpinBox_Tolerance, SIGNAL(valueChanged(double)), this, SLOT(toDisplaySimulation()));
354 connect(CheckBoxPreview, SIGNAL(toggled(bool)), this, SLOT(onDisplaySimulation(bool)));
356 connect(SpinBox_Angle, SIGNAL(textChanged(const QString&)), this, SLOT(onAngleTextChange(const QString&)));
358 ConstructorsClicked(0);
359 SelectionIntoArgument();
362 //=================================================================================
363 // function : ~SMESHGUI_RevolutionDlg()
364 // purpose : Destroys the object and frees any allocated resources
365 //=================================================================================
366 SMESHGUI_RevolutionDlg::~SMESHGUI_RevolutionDlg()
370 myFilterDlg->setParent( 0 );
376 //=================================================================================
379 //=================================================================================
380 void SMESHGUI_RevolutionDlg::Init (bool ResetControls)
384 myEditCurrentArgument = 0;
385 LineEditElements->clear();
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);
402 SpinBox_NbSteps->setValue(1);
403 SpinBox_Tolerance->SetValue(1e-05);
405 CheckBoxMesh->setChecked(false);
407 CheckBoxPreview->setChecked(false);
408 onDisplaySimulation(false);
412 //=================================================================================
413 // function : ConstructorsClicked()
414 // purpose : Radio button management
415 //=================================================================================
416 void SMESHGUI_RevolutionDlg::ConstructorsClicked (int constructorId)
418 disconnect(mySelectionMgr, 0, this, 0);
421 mySelectionMgr->selectedObjects( io );
423 mySelectionMgr->setSelectedObjects( aList );*/
425 buttonApply->setEnabled(false);
426 buttonOk->setEnabled(false);
427 mySimulation->SetVisibility(false);
429 Selection_Mode aSelMode = ActorSelection;
431 switch (constructorId) {
434 GroupArguments->setTitle(tr("REVOLUTION_1D"));
435 aSelMode = EdgeSelection;
440 GroupArguments->setTitle(tr("REVOLUTION_2D"));
441 aSelMode = FaceSelection;
446 if (myEditCurrentArgument != (QWidget*)LineEditElements) {
447 SMESH::SetPointRepresentation(false);
450 if (!CheckBoxMesh->isChecked())
452 LineEditElements->clear();
455 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
456 aViewWindow->SetSelectionMode(aSelMode);
459 myEditCurrentArgument = (QWidget*)LineEditElements;
460 LineEditElements->setFocus();
462 if (CheckBoxMesh->isChecked())
465 connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
466 // mySelectionMgr->setSelectedObjects( io );
469 //=================================================================================
470 // function : ClickOnApply()
472 //=================================================================================
473 bool SMESHGUI_RevolutionDlg::ClickOnApply()
475 if (mySMESHGUI->isActiveStudyLocked())
481 if (myNbOkElements && IsAxisOk()) {
482 QStringList aListElementsId = myElementsId.split(" ", QString::SkipEmptyParts);
484 SMESH::long_array_var anElementsId = new SMESH::long_array;
486 anElementsId->length(aListElementsId.count());
487 for (int i = 0; i < aListElementsId.count(); i++)
488 anElementsId[i] = aListElementsId[i].toInt();
490 SMESH::AxisStruct anAxis;
492 anAxis.x = SpinBox_X->GetValue();
493 anAxis.y = SpinBox_Y->GetValue();
494 anAxis.z = SpinBox_Z->GetValue();;
495 anAxis.vx = SpinBox_DX->GetValue();
496 anAxis.vy = SpinBox_DY->GetValue();
497 anAxis.vz = SpinBox_DZ->GetValue();
499 double anAngle = (SpinBox_Angle->GetValue())*PI/180;
500 long aNbSteps = (long)SpinBox_NbSteps->value();
501 double aTolerance = SpinBox_Tolerance->GetValue();
503 if ( GroupAngle->checkedId() == 1 )
504 anAngle = anAngle/aNbSteps;
506 QStringList aParameters;
507 aParameters << SpinBox_X->text();
508 aParameters << SpinBox_Y->text();
509 aParameters << SpinBox_Z->text();
510 aParameters << SpinBox_DX->text();
511 aParameters << SpinBox_DY->text();
512 aParameters << SpinBox_DZ->text();
513 aParameters << SpinBox_Angle->text();
514 aParameters << SpinBox_NbSteps->text();
515 aParameters << SpinBox_Tolerance->text();
518 SUIT_OverrideCursor aWaitCursor;
519 SMESH::SMESH_MeshEditor_var aMeshEditor = myMesh->GetMeshEditor();
521 if ( MakeGroupsCheck->isEnabled() && MakeGroupsCheck->isChecked() ) {
522 if( CheckBoxMesh->isChecked() ) {
523 if( GetConstructorId() == 0 )
524 SMESH::ListOfGroups_var groups =
525 aMeshEditor->RotationSweepObject1DMakeGroups(mySelectedObject, anAxis,
526 anAngle, aNbSteps, aTolerance);
528 SMESH::ListOfGroups_var groups =
529 aMeshEditor->RotationSweepObject2DMakeGroups(mySelectedObject, anAxis,
530 anAngle, aNbSteps, aTolerance);
533 SMESH::ListOfGroups_var groups =
534 aMeshEditor->RotationSweepMakeGroups(anElementsId.inout(), anAxis,
535 anAngle, aNbSteps, aTolerance);
538 if( CheckBoxMesh->isChecked() ) {
539 if( GetConstructorId() == 0 )
540 aMeshEditor->RotationSweepObject1D(mySelectedObject, anAxis, anAngle, aNbSteps, aTolerance);
542 aMeshEditor->RotationSweepObject2D(mySelectedObject, anAxis, anAngle, aNbSteps, aTolerance);
545 aMeshEditor->RotationSweep(anElementsId.inout(), anAxis, anAngle, aNbSteps, aTolerance);
548 myMesh->SetParameters( aParameters.join(":").toLatin1().constData() );
553 SMESH::Update(myIO, SMESH::eDisplay);
554 if ( MakeGroupsCheck->isEnabled() && MakeGroupsCheck->isChecked() )
555 mySMESHGUI->updateObjBrowser(true); // new groups may appear
557 ConstructorsClicked(GetConstructorId());
558 mySelectedObject = SMESH::SMESH_IDSource::_nil();
559 SelectionIntoArgument();
561 SMESHGUI::Modified();
567 //=================================================================================
568 // function : ClickOnOk()
570 //=================================================================================
571 void SMESHGUI_RevolutionDlg::ClickOnOk()
577 //=================================================================================
578 // function : ClickOnCancel()
580 //=================================================================================
581 void SMESHGUI_RevolutionDlg::ClickOnCancel()
586 void SMESHGUI_RevolutionDlg::reject()
591 //=================================================================================
592 // function : ClickOnHelp()
594 //=================================================================================
595 void SMESHGUI_RevolutionDlg::ClickOnHelp()
597 LightApp_Application* app = (LightApp_Application*)(SUIT_Session::session()->activeApplication());
599 app->onHelpContextModule(mySMESHGUI ? app->moduleName(mySMESHGUI->moduleName()) : QString(""), myHelpFileName);
603 platform = "winapplication";
605 platform = "application";
607 SUIT_MessageBox::warning(this, tr("WRN_WARNING"),
608 tr("EXTERNAL_BROWSER_CANNOT_SHOW_PAGE").
609 arg(app->resourceMgr()->stringValue("ExternalBrowser",
611 arg(myHelpFileName));
615 //=======================================================================
616 // function : onAngleTextChange()
618 //=======================================================================
619 void SMESHGUI_RevolutionDlg::onAngleTextChange (const QString& theNewText)
622 SpinBox_Angle->text().toDouble( &isNumber );
624 RadioButton3->setChecked( true );
625 RadioButton4->setEnabled( isNumber );
628 //=======================================================================
629 // function : onTextChange()
631 //=======================================================================
632 void SMESHGUI_RevolutionDlg::onTextChange (const QString& theNewText)
634 QLineEdit* send = (QLineEdit*)sender();
639 if (send == LineEditElements)
642 buttonOk->setEnabled(false);
643 buttonApply->setEnabled(false);
645 // hilight entered elements
646 SMDS_Mesh* aMesh = 0;
648 aMesh = myActor->GetObject()->GetMesh();
651 if (send == LineEditElements) {
652 Handle(SALOME_InteractiveObject) anIO = myActor->getIO();
654 TColStd_MapOfInteger newIndices;
656 QStringList aListId = theNewText.split(" ", QString::SkipEmptyParts);
658 for (int i = 0; i < aListId.count(); i++) {
659 const SMDS_MeshElement * e = aMesh->FindElement(aListId[ i ].toInt());
661 newIndices.Add(e->GetID());
665 mySelector->AddOrRemoveIndex(myActor->getIO(), newIndices, false);
666 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
667 aViewWindow->highlight( myActor->getIO(), true, true );
669 myElementsId = theNewText;
673 if (myNbOkElements && IsAxisOk()) {
674 buttonOk->setEnabled(true);
675 buttonApply->setEnabled(true);
677 onDisplaySimulation(true);
682 //=================================================================================
683 // function : SelectionIntoArgument()
684 // purpose : Called when selection as changed or other case
685 //=================================================================================
686 void SMESHGUI_RevolutionDlg::SelectionIntoArgument()
691 QString aString = "";
694 if (myEditCurrentArgument == (QWidget*)LineEditElements) {
695 LineEditElements->setText(aString);
697 buttonOk->setEnabled(false);
698 buttonApply->setEnabled(false);
702 if (!GroupButtons->isEnabled()) // inactive
706 const SALOME_ListIO& aList = mySelector->StoredIObjects();
708 int nbSel = aList.Extent();
712 Handle(SALOME_InteractiveObject) IO = aList.First();
713 SMESH::SMESH_Mesh_var aMeshVar = SMESH::GetMeshByIO(IO);
714 if (aMeshVar->_is_nil())
717 SMESH_Actor* anActor = SMESH::FindActorByObject(aMeshVar);
719 anActor = SMESH::FindActorByEntry(IO->getEntry());
720 if (!anActor && !CheckBoxMesh->isChecked())
725 if (myEditCurrentArgument == (QWidget*)LineEditElements) {
731 // MakeGroups is available if there are groups
732 if ( myMesh->NbGroups() == 0 ) {
733 MakeGroupsCheck->setChecked(false);
734 MakeGroupsCheck->setEnabled(false);
736 MakeGroupsCheck->setEnabled(true);
739 if (CheckBoxMesh->isChecked()) {
740 SMESH::GetNameOfSelectedIObjects(mySelectionMgr, aString);
742 if (!SMESH::IObjectToInterface<SMESH::SMESH_IDSource>(IO)->_is_nil())
743 mySelectedObject = SMESH::IObjectToInterface<SMESH::SMESH_IDSource>(IO);
747 aNbUnits = SMESH::GetNameOfSelectedElements(mySelector, IO, aString);
748 myElementsId = aString;
752 myNbOkElements = true;
755 SMDS_Mesh* aMesh = anActor->GetObject()->GetMesh();
759 bool isNodeSelected = (myEditCurrentArgument == (QWidget*)SpinBox_X ||
760 (myEditCurrentArgument == (QWidget*)SpinBox_DX &&
761 myVectorDefinition==POINT_SELECT));
763 bool isFaceSelected = (myEditCurrentArgument == (QWidget*)SpinBox_DX &&
764 myVectorDefinition==FACE_SELECT);
767 aNbUnits = SMESH::GetNameOfSelectedNodes(mySelector, IO, aString);
769 else if(isFaceSelected){
770 aNbUnits = SMESH::GetNameOfSelectedElements(mySelector, IO, aString);
777 const SMDS_MeshNode * n = aMesh->FindNode(aString.toInt());
785 if (myEditCurrentArgument == (QWidget*)SpinBox_X) {
786 SpinBox_X->SetValue(x);
787 SpinBox_Y->SetValue(y);
788 SpinBox_Z->SetValue(z);
789 } else if (myEditCurrentArgument == (QWidget*)SpinBox_DX) {
790 SpinBox_DX->SetValue(x - SpinBox_X->GetValue());
791 SpinBox_DY->SetValue(y - SpinBox_Y->GetValue());
792 SpinBox_DZ->SetValue(z - SpinBox_Z->GetValue());
795 else if(isFaceSelected){
796 const SMDS_MeshFace* face = dynamic_cast<const SMDS_MeshFace*>(aMesh->FindElement(aString.toInt()));
800 gp_XYZ aNormale = SMESH::getNormale(face);
801 SpinBox_DX->SetValue(aNormale.X());
802 SpinBox_DY->SetValue(aNormale.Y());
803 SpinBox_DZ->SetValue(aNormale.Z());
809 if (myEditCurrentArgument == (QWidget*)LineEditElements)
810 LineEditElements->setText(aString);
814 if (myNbOkElements && IsAxisOk()) {
815 buttonOk->setEnabled(true);
816 buttonApply->setEnabled(true);
819 onDisplaySimulation(true);
822 //=================================================================================
823 // function : SetEditCurrentArgument()
825 //=================================================================================
826 void SMESHGUI_RevolutionDlg::SetEditCurrentArgument()
828 QPushButton* send = (QPushButton*)sender();
830 disconnect(mySelectionMgr, 0, this, 0);
831 mySelectionMgr->clearSelected();
832 mySelectionMgr->clearFilters();
834 if (send == SelectElementsButton) {
835 mySimulation->SetVisibility(false);
836 myEditCurrentArgument = (QWidget*)LineEditElements;
837 SMESH::SetPointRepresentation(false);
838 if (CheckBoxMesh->isChecked()) {
839 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
840 aViewWindow->SetSelectionMode(ActorSelection);
841 mySelectionMgr->installFilter(myMeshOrSubMeshOrGroupFilter);
843 int aConstructorId = GetConstructorId();
844 if (aConstructorId == 0)
846 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
847 aViewWindow->SetSelectionMode(EdgeSelection);
849 else if (aConstructorId == 1)
851 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
852 aViewWindow->SetSelectionMode(FaceSelection);
855 } else if (send == SelectPointButton) {
856 myEditCurrentArgument = (QWidget*)SpinBox_X;
857 SMESH::SetPointRepresentation(true);
858 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
859 aViewWindow->SetSelectionMode(NodeSelection);
862 myEditCurrentArgument->setFocus();
863 connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
864 SelectionIntoArgument();
867 //=================================================================================
868 // function : DeactivateActiveDialog()
870 //=================================================================================
871 void SMESHGUI_RevolutionDlg::DeactivateActiveDialog()
873 if (ConstructorsBox->isEnabled()) {
874 ConstructorsBox->setEnabled(false);
875 GroupArguments->setEnabled(false);
876 GroupButtons->setEnabled(false);
877 mySMESHGUI->ResetState();
878 mySMESHGUI->SetActiveDialogBox(0);
882 //=================================================================================
883 // function : ActivateThisDialog()
885 //=================================================================================
886 void SMESHGUI_RevolutionDlg::ActivateThisDialog()
888 /* Emit a signal to deactivate the active dialog */
889 mySMESHGUI->EmitSignalDeactivateDialog();
890 ConstructorsBox->setEnabled(true);
891 GroupArguments->setEnabled(true);
892 GroupButtons->setEnabled(true);
894 mySMESHGUI->SetActiveDialogBox((QDialog*)this);
896 ConstructorsClicked(GetConstructorId());
897 SelectionIntoArgument();
900 //=================================================================================
901 // function : enterEvent()
903 //=================================================================================
904 void SMESHGUI_RevolutionDlg::enterEvent (QEvent*)
906 if (!ConstructorsBox->isEnabled())
907 ActivateThisDialog();
910 //=================================================================================
911 // function : closeEvent()
913 //=================================================================================
914 void SMESHGUI_RevolutionDlg::closeEvent (QCloseEvent*)
916 /* same than click on cancel button */
917 disconnect(mySelectionMgr, 0, this, 0);
918 mySelectionMgr->clearFilters();
919 //mySelectionMgr->clearSelected();
920 if (SMESH::GetCurrentVtkView()) {
921 SMESH::RemoveFilters(); // PAL6938 -- clean all mesh entity filters
922 SMESH::SetPointRepresentation(false);
924 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
925 aViewWindow->SetSelectionMode(ActorSelection);
926 mySMESHGUI->ResetState();
929 //=======================================================================
930 //function : onSelectMesh
932 //=======================================================================
933 void SMESHGUI_RevolutionDlg::onSelectMesh (bool toSelectMesh)
936 myIDs = LineEditElements->text();
937 TextLabelElements->setText(tr("SMESH_NAME"));
940 TextLabelElements->setText(tr("SMESH_ID_ELEMENTS"));
941 myFilterBtn->setEnabled(!toSelectMesh);
943 if (myEditCurrentArgument != LineEditElements) {
944 LineEditElements->clear();
945 mySimulation->SetVisibility(false);
949 mySelectionMgr->clearFilters();
950 SMESH::SetPointRepresentation(false);
953 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
954 aViewWindow->SetSelectionMode(ActorSelection);
955 mySelectionMgr->installFilter(myMeshOrSubMeshOrGroupFilter);
956 LineEditElements->setReadOnly(true);
957 LineEditElements->setValidator(0);
959 int aConstructorId = GetConstructorId();
960 if (aConstructorId == 0)
962 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
963 aViewWindow->SetSelectionMode(EdgeSelection);
965 else if (aConstructorId == 1)
967 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
968 aViewWindow->SetSelectionMode(FaceSelection);
971 LineEditElements->setReadOnly(false);
972 LineEditElements->setValidator(myIdValidator);
973 onTextChange(LineEditElements->text());
974 mySimulation->SetVisibility(false);
977 SelectionIntoArgument();
980 LineEditElements->setText( myIDs );
983 //=================================================================================
984 // function : GetConstructorId()
986 //=================================================================================
987 int SMESHGUI_RevolutionDlg::GetConstructorId()
989 return GroupConstructors->checkedId();
992 //=================================================================================
993 // function : IsAxisOk()
995 //=================================================================================
996 bool SMESHGUI_RevolutionDlg::IsAxisOk()
998 return (SpinBox_DX->GetValue() != 0 ||
999 SpinBox_DY->GetValue() != 0 ||
1000 SpinBox_DZ->GetValue() != 0);
1003 //=================================================================================
1004 // function : onVectorChanged()
1006 //=================================================================================
1007 void SMESHGUI_RevolutionDlg::onVectorChanged()
1010 buttonOk->setEnabled(true);
1011 buttonApply->setEnabled(true);
1013 buttonOk->setEnabled(false);
1014 buttonApply->setEnabled(false);
1016 onDisplaySimulation(true);
1019 //=================================================================================
1020 // function : keyPressEvent()
1022 //=================================================================================
1023 void SMESHGUI_RevolutionDlg::keyPressEvent( QKeyEvent* e )
1025 QDialog::keyPressEvent( e );
1026 if ( e->isAccepted() )
1029 if ( e->key() == Qt::Key_F1 ) {
1035 //=================================================================================
1036 // function : toDisplaySimulation()
1038 //=================================================================================
1039 void SMESHGUI_RevolutionDlg::toDisplaySimulation()
1041 onDisplaySimulation(true);
1044 //=================================================================================
1045 // function : onDisplaySimulation()
1047 //=================================================================================
1048 void SMESHGUI_RevolutionDlg::onDisplaySimulation(bool toDisplayPreview)
1050 if (CheckBoxPreview->isChecked() && toDisplayPreview)
1053 if (myNbOkElements && IsAxisOk())
1055 QStringList aListElementsId = myElementsId.split(" ", QString::SkipEmptyParts);
1057 SMESH::long_array_var anElementsId = new SMESH::long_array;
1059 anElementsId->length(aListElementsId.count());
1060 for (int i = 0; i < aListElementsId.count(); i++)
1061 anElementsId[i] = aListElementsId[i].toInt();
1063 SMESH::AxisStruct anAxis;
1065 anAxis.x = SpinBox_X->GetValue();
1066 anAxis.y = SpinBox_Y->GetValue();
1067 anAxis.z = SpinBox_Z->GetValue();
1068 anAxis.vx = SpinBox_DX->GetValue();
1069 anAxis.vy = SpinBox_DY->GetValue();
1070 anAxis.vz = SpinBox_DZ->GetValue();
1072 double anAngle = (SpinBox_Angle->GetValue())*PI/180;
1073 long aNbSteps = (long)SpinBox_NbSteps->value();
1074 double aTolerance = SpinBox_Tolerance->GetValue();
1076 if (GroupAngle->checkedId() == 1)
1077 anAngle = anAngle/aNbSteps;
1080 SUIT_OverrideCursor aWaitCursor;
1081 SMESH::SMESH_MeshEditor_var aMeshEditor = myMesh->GetMeshEditPreviewer();
1082 if( CheckBoxMesh->isChecked() ) {
1083 if( GetConstructorId() == 0 )
1084 aMeshEditor->RotationSweepObject1D(mySelectedObject, anAxis,
1085 anAngle, aNbSteps, aTolerance);
1087 aMeshEditor->RotationSweepObject2D(mySelectedObject, anAxis,
1088 anAngle, aNbSteps, aTolerance);
1091 aMeshEditor->RotationSweep(anElementsId.inout(),
1096 SMESH::MeshPreviewStruct_var aMeshPreviewStruct = aMeshEditor->GetPreviewData();
1097 mySimulation->SetData(aMeshPreviewStruct._retn());
1102 mySimulation->SetVisibility(false);
1108 mySimulation->SetVisibility(false);
1112 //=================================================================================
1113 // function : onSelectVectorButton()
1115 //=================================================================================
1116 void SMESHGUI_RevolutionDlg::onSelectVectorButton(){
1117 if(SelectVectorMenu) {
1118 SelectVectorMenu->exec( QCursor::pos() );
1122 //=================================================================================
1123 // function : onSelectVectorMenu()
1125 //=================================================================================
1126 void SMESHGUI_RevolutionDlg::onSelectVectorMenu( QAction* action){
1130 disconnect(mySelectionMgr, 0, this, 0);
1132 switch(myMenuActions[action]) {
1134 SMESH::SetPointRepresentation(true);
1135 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
1136 aViewWindow->SetSelectionMode(NodeSelection);
1140 SMESH::SetPointRepresentation(false);
1141 if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
1142 aViewWindow->SetSelectionMode(FaceSelection);
1146 myVectorDefinition = myMenuActions[action];
1147 myEditCurrentArgument = (QWidget*)SpinBox_DX;
1148 myEditCurrentArgument->setFocus();
1149 connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
1150 SelectionIntoArgument();
1153 //=================================================================================
1154 // function : setFilters()
1155 // purpose : SLOT. Called when "Filter" button pressed.
1156 //=================================================================================
1157 void SMESHGUI_RevolutionDlg::setFilters()
1159 if(myMesh->_is_nil()) {
1160 SUIT_MessageBox::critical(this,
1162 tr("NO_MESH_SELECTED"));
1168 types.append( SMESH::EDGE );
1169 types.append( SMESH::FACE );
1170 myFilterDlg = new SMESHGUI_FilterDlg( mySMESHGUI, types );
1172 myFilterDlg->Init( GetConstructorId() ? SMESH::FACE : SMESH::EDGE );
1174 myFilterDlg->SetSelection();
1175 myFilterDlg->SetMesh( myMesh );
1176 myFilterDlg->SetSourceWg( LineEditElements );
1178 myFilterDlg->show();
1181 //=================================================================================
1182 // function : isValid
1184 //=================================================================================
1185 bool SMESHGUI_RevolutionDlg::isValid()
1189 ok = SpinBox_X->isValid( msg, true ) && ok;
1190 ok = SpinBox_Y->isValid( msg, true ) && ok;
1191 ok = SpinBox_Z->isValid( msg, true ) && ok;
1192 ok = SpinBox_DX->isValid( msg, true ) && ok;
1193 ok = SpinBox_DY->isValid( msg, true ) && ok;
1194 ok = SpinBox_DZ->isValid( msg, true ) && ok;
1195 ok = SpinBox_Angle->isValid( msg, true ) && ok;
1196 ok = SpinBox_NbSteps->isValid( msg, true ) && ok;
1197 ok = SpinBox_Tolerance->isValid( msg, true ) && ok;
1200 QString str( tr( "SMESH_INCORRECT_INPUT" ) );
1201 if ( !msg.isEmpty() )
1203 SUIT_MessageBox::critical( this, tr( "SMESH_ERROR" ), str );