Salome HOME
Merge from BR_WIN_INDUS_514 04/10/2010
[modules/geom.git] / src / TransformationGUI / TransformationGUI_MultiRotationDlg.cxx
1 //  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 // GEOM GEOMGUI : GUI for Geometry component
24 // File   : TransformationGUI_MultiRotationDlg.cxx
25 // Author : Damien COQUERET, Open CASCADE S.A.S.
26 //
27 #include "TransformationGUI_MultiRotationDlg.h"
28
29 #include <DlgRef.h>
30 #include <GeometryGUI.h>
31 #include <GEOMBase.h>
32
33 #include <SUIT_Session.h>
34 #include <SUIT_ResourceMgr.h>
35 #include <SalomeApp_Application.h>
36 #include <LightApp_SelectionMgr.h>
37
38 // OCCT Includes
39 #include <TopoDS_Shape.hxx>
40 #include <TopoDS_Edge.hxx>
41 #include <TopoDS.hxx>
42 #include <TopExp.hxx>
43 #include <TColStd_IndexedMapOfInteger.hxx>
44 #include <TopTools_IndexedMapOfShape.hxx>
45
46 #include <GEOMImpl_Types.hxx>
47
48 //=================================================================================
49 // class    : TransformationGUI_MultiRotationDlg()
50 // purpose  : Constructs a TransformationGUI_MultiRotationDlg which is a child of 'parent', with the
51 //            name 'name' and widget flags set to 'f'.
52 //            The dialog will by default be modeless, unless you set 'modal' to
53 //            TRUE to construct a modal dialog.
54 //=================================================================================
55 TransformationGUI_MultiRotationDlg::TransformationGUI_MultiRotationDlg
56 (GeometryGUI* theGeometryGUI, QWidget* parent, bool modal, Qt::WindowFlags fl)
57   : GEOMBase_Skeleton(theGeometryGUI, parent, modal, fl),
58     myInitial(true)
59 {
60   SUIT_ResourceMgr* aResMgr = myGeomGUI->getApp()->resourceMgr();
61   QPixmap image0 (aResMgr->loadPixmap("GEOM", tr("ICON_DLG_MULTIROTATION_SIMPLE")));
62   QPixmap image1 (aResMgr->loadPixmap("GEOM", tr("ICON_DLG_MULTIROTATION_DOUBLE")));
63   QPixmap image2 (aResMgr->loadPixmap("GEOM", tr("ICON_SELECT")));
64
65   setWindowTitle(tr("GEOM_MULTIROTATION_TITLE"));
66
67   /***************************************************************/
68   mainFrame()->GroupConstructors->setTitle(tr("GEOM_MULTIROTATION"));
69   mainFrame()->RadioButton1->setIcon(image0);
70   mainFrame()->RadioButton2->setIcon(image1);
71   mainFrame()->RadioButton3->setAttribute(Qt::WA_DeleteOnClose);
72   mainFrame()->RadioButton3->close();
73
74   GroupPoints = new DlgRef_2Sel1SpinInt(centralWidget());
75   GroupPoints->GroupBox1->setTitle(tr("GEOM_MULTIROTATION_SIMPLE"));
76   GroupPoints->TextLabel1->setText(tr("GEOM_MAIN_OBJECT"));
77   GroupPoints->TextLabel2->setText(tr("GEOM_VECTOR"));
78   GroupPoints->TextLabel3->setText(tr("GEOM_NB_TIMES"));
79   GroupPoints->PushButton1->setIcon(image2);
80   GroupPoints->PushButton2->setIcon(image2);
81   GroupPoints->LineEdit1->setReadOnly(true);
82   GroupPoints->LineEdit2->setReadOnly(true);
83
84   GroupDimensions = new DlgRef_2Sel4Spin1Check(centralWidget());
85   GroupDimensions->GroupBox1->setTitle(tr("GEOM_MULTIROTATION_DOUBLE"));
86   GroupDimensions->TextLabel1->setText(tr("GEOM_MAIN_OBJECT"));
87   GroupDimensions->TextLabel2->setText(tr("GEOM_VECTOR"));
88   GroupDimensions->TextLabel3->setText(tr("GEOM_ANGLE"));
89   GroupDimensions->TextLabel4->setText(tr("GEOM_NB_TIMES"));
90   GroupDimensions->TextLabel5->setText(tr("GEOM_STEP"));
91   GroupDimensions->TextLabel6->setText(tr("GEOM_NB_TIMES"));
92   GroupDimensions->CheckButton1->setText(tr("GEOM_REVERSE"));
93   GroupDimensions->PushButton1->setIcon(image2);
94   GroupDimensions->PushButton2->setIcon(image2);
95   GroupDimensions->LineEdit1->setReadOnly(true);
96   GroupDimensions->LineEdit2->setReadOnly(true);
97
98   QVBoxLayout* layout = new QVBoxLayout(centralWidget());
99   layout->setMargin(0); layout->setSpacing(6);
100   layout->addWidget(GroupPoints);
101   layout->addWidget(GroupDimensions);
102   /***************************************************************/
103
104   setHelpFileName("multi_rotation_operation_page.html");
105
106   Init();
107 }
108
109 //=================================================================================
110 // function : ~TransformationGUI_MultiRotationDlg()
111 // purpose  : Destroys the object and frees any allocated resources
112 //=================================================================================
113 TransformationGUI_MultiRotationDlg::~TransformationGUI_MultiRotationDlg()
114 {
115   // no need to delete child widgets, Qt does it all for us
116 }
117
118 //=================================================================================
119 // function : Init()
120 // purpose  :
121 //=================================================================================
122 void TransformationGUI_MultiRotationDlg::Init()
123 {
124   // Get setting of step value from file configuration
125   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
126   double step = resMgr->doubleValue("Geometry", "SettingsGeomStep", 100);
127
128   int SpecificStep1 = 5;
129   int SpecificStep2 = 1;
130   // min, max, step and decimals for spin boxes & initial values
131   initSpinBox(GroupPoints->SpinBox_DX, 1, 999, SpecificStep2);
132   GroupPoints->SpinBox_DX->setValue(myNbTimes1);
133
134   initSpinBox(GroupDimensions->SpinBox_DX1, COORD_MIN, COORD_MAX, SpecificStep1, "angle_precision" );
135   initSpinBox(GroupDimensions->SpinBox_DY1, 1, 999, SpecificStep2);
136   initSpinBox(GroupDimensions->SpinBox_DX2, COORD_MIN, COORD_MAX, step,"length_precision" );
137   initSpinBox(GroupDimensions->SpinBox_DY2, 1, 999, SpecificStep2);
138   GroupDimensions->SpinBox_DX1->setValue(myAng);
139   GroupDimensions->SpinBox_DY1->setValue(myNbTimes1);
140   GroupDimensions->SpinBox_DX2->setValue(myStep);
141   GroupDimensions->SpinBox_DY2->setValue(myNbTimes2);
142
143   // init variables
144   myAng = 45.0;
145   myStep = 50.0;
146   myNbTimes1 = myNbTimes2 = 2;
147
148   GroupPoints->LineEdit1->setText("");
149   GroupPoints->LineEdit2->setText("");
150
151   GroupDimensions->LineEdit1->setText("");
152   GroupDimensions->LineEdit2->setText("");
153
154   myBase = myVector = GEOM::GEOM_Object::_nil();
155
156   // signals and slots connections
157   connect(buttonOk(),    SIGNAL(clicked()), this, SLOT(ClickOnOk()));
158   connect(buttonApply(), SIGNAL(clicked()), this, SLOT(ClickOnApply()));
159
160   connect(this,          SIGNAL(constructorsClicked(int)), this, SLOT(ConstructorsClicked(int)));
161
162   connect(GroupPoints->PushButton1,     SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
163   connect(GroupPoints->PushButton2,     SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
164   connect(GroupDimensions->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
165   connect(GroupDimensions->PushButton2, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
166
167   connect(GroupPoints->LineEdit1,     SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
168   connect(GroupPoints->LineEdit2,     SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
169   connect(GroupDimensions->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
170   connect(GroupDimensions->LineEdit2, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
171
172   connect(GroupPoints->SpinBox_DX,      SIGNAL(valueChanged(int)),    this, SLOT(ValueChangedInSpinBox(int)));
173   connect(GroupDimensions->SpinBox_DX1, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox(double)));
174   connect(GroupDimensions->SpinBox_DY1, SIGNAL(valueChanged(int)),    this, SLOT(ValueChangedInSpinBox(int)));
175   connect(GroupDimensions->SpinBox_DX2, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox(double)));
176   connect(GroupDimensions->SpinBox_DY2, SIGNAL(valueChanged(int)),    this, SLOT(ValueChangedInSpinBox(int)));
177
178   connect(GroupDimensions->SpinBox_DX1,SIGNAL(textChanged( const QString& )),
179           this, SLOT(TextValueChangedInSpinBox( const QString& )));
180
181   connect(myGeomGUI, SIGNAL(SignalDefaultStepValueChanged(double)), this, SLOT(SetDoubleSpinBoxStep(double)));
182
183   connect(GroupDimensions->CheckButton1, SIGNAL(toggled(bool)), this, SLOT(ReverseAngle()));
184
185   initName(tr("GEOM_MULTIROTATION"));
186
187   ConstructorsClicked(0);
188 }
189
190 //=================================================================================
191 // function : SetDoubleSpinBoxStep()
192 // purpose  : Double spin box management
193 //=================================================================================
194 void TransformationGUI_MultiRotationDlg::SetDoubleSpinBoxStep (double step)
195 {
196   GroupDimensions->SpinBox_DX2->setSingleStep(step);
197   
198   // san: Commented so as not to override specific step settings
199   //GroupPoints->SpinBox_DX->setSingleStep((int)step);
200   //GroupDimensions->SpinBox_DX1->setSingleStep(step);
201   //GroupDimensions->SpinBox_DY1->setSingleStep((int)step);
202   //GroupDimensions->SpinBox_DY2->setSingleStep((int)step);
203 }
204
205 //=================================================================================
206 // function : ConstructorsClicked()
207 // purpose  : Radio button management
208 //=================================================================================
209 void TransformationGUI_MultiRotationDlg::ConstructorsClicked (int constructorId)
210 {
211   disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
212
213   switch (constructorId) {
214   case 0: // Rotate simple
215     {
216       GroupDimensions->hide();
217       GroupPoints->show();
218
219       GroupPoints->LineEdit1->setText("");
220       GroupPoints->LineEdit2->setText("");
221       myBase = myVector = GEOM::GEOM_Object::_nil();
222
223       GroupPoints->SpinBox_DX->setValue(myNbTimes1);
224
225       GroupPoints->PushButton1->click();
226     }
227     break;
228   case 1: // Rotate double
229     {
230       GroupPoints->hide();
231       GroupDimensions->show();
232
233       GroupDimensions->LineEdit1->setText("");
234       GroupDimensions->LineEdit2->setText("");
235       myBase = myVector = GEOM::GEOM_Object::_nil();
236
237       GroupDimensions->SpinBox_DX1->setValue(myAng);
238       GroupDimensions->SpinBox_DY1->setValue(myNbTimes1);
239       GroupDimensions->SpinBox_DX2->setValue(myStep);
240       GroupDimensions->SpinBox_DY2->setValue(myNbTimes2);
241
242       GroupDimensions->PushButton1->click();
243     }
244     break;
245   }
246
247   qApp->processEvents();
248   updateGeometry();
249   resize(minimumSizeHint());
250
251   if (myInitial) {
252     myInitial = false;
253     SelectionIntoArgument();
254   }
255   else {
256     displayPreview();
257   }
258 }
259
260 //=================================================================================
261 // function : ClickOnOk()
262 // purpose  :
263 //=================================================================================
264 void TransformationGUI_MultiRotationDlg::ClickOnOk()
265 {
266   if (ClickOnApply())
267     ClickOnCancel();
268 }
269
270 //=================================================================================
271 // function : ClickOnApply()
272 // purpose  :
273 //=================================================================================
274 bool TransformationGUI_MultiRotationDlg::ClickOnApply()
275 {
276   if (!onAccept())
277     return false;
278
279   initName();
280   // activate selection and connect selection manager
281   ConstructorsClicked(getConstructorId());
282   return true;
283 }
284
285 //=================================================================================
286 // function : SelectionIntoArgument()
287 // purpose  : Called when selection is changed or on dialog initialization or activation
288 //=================================================================================
289 void TransformationGUI_MultiRotationDlg::SelectionIntoArgument()
290 {
291   erasePreview();
292   myEditCurrentArgument->setText("");
293
294   if (myEditCurrentArgument == GroupPoints->LineEdit1 ||
295       myEditCurrentArgument == GroupDimensions->LineEdit1)
296     myBase = GEOM::GEOM_Object::_nil();
297   else if (myEditCurrentArgument == GroupPoints->LineEdit2 ||
298            myEditCurrentArgument == GroupDimensions->LineEdit2)
299     myVector = GEOM::GEOM_Object::_nil();
300
301   LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
302   SALOME_ListIO aSelList;
303   aSelMgr->selectedObjects(aSelList);
304
305   if (aSelList.Extent() != 1)
306     return;
307
308   // nbSel == 1
309   Standard_Boolean testResult = Standard_False;;
310   GEOM::GEOM_Object_var aSelectedObject =
311     GEOMBase::ConvertIOinGEOMObject(aSelList.First(), testResult);
312
313   if (!testResult || CORBA::is_nil(aSelectedObject) || !GEOMBase::IsShape(aSelectedObject))
314     return;
315
316   QString aName = GEOMBase::GetName(aSelectedObject);
317
318   if (myEditCurrentArgument == GroupPoints->LineEdit1 ||
319       myEditCurrentArgument == GroupDimensions->LineEdit1)
320     myBase = aSelectedObject;
321   else if (myEditCurrentArgument == GroupPoints->LineEdit2 ||
322            myEditCurrentArgument == GroupDimensions->LineEdit2) {
323     TopoDS_Shape aShape;
324
325     if (GEOMBase::GetShape(aSelectedObject, aShape, TopAbs_SHAPE) && !aShape.IsNull()) {
326       TColStd_IndexedMapOfInteger aMap;
327       aSelMgr->GetIndexes(aSelList.First(), aMap);
328       if (aMap.Extent() == 1) {
329         int anIndex = aMap(1);
330         aName += QString(":edge_%1").arg(anIndex);
331
332         //Find SubShape Object in Father
333         GEOM::GEOM_Object_var aFindedObject = findObjectInFather(aSelectedObject, aName);
334
335         if (aFindedObject->_is_nil()) { // Object not found in study
336           GEOM::GEOM_IShapesOperations_var aShapesOp =
337             getGeomEngine()->GetIShapesOperations(getStudyId());
338           myVector = aShapesOp->GetSubShape(aSelectedObject, anIndex);
339         }
340         else {
341           myVector = aFindedObject; // get existing object
342         }
343       }
344       else {
345         if (aShape.ShapeType() != TopAbs_EDGE) {
346           aSelectedObject = GEOM::GEOM_Object::_nil();
347           aName = "";
348         }
349         myVector = aSelectedObject;
350       }
351     }
352   }
353   myEditCurrentArgument->setText(aName);
354
355   if (myEditCurrentArgument == GroupPoints->LineEdit1) {
356     if (!myBase->_is_nil() && myVector->_is_nil())
357       GroupPoints->PushButton2->click();
358   }
359   else if (myEditCurrentArgument == GroupPoints->LineEdit2) {
360     if (!myVector->_is_nil() && myBase->_is_nil())
361       GroupPoints->PushButton1->click();
362   }
363   else if (myEditCurrentArgument == GroupDimensions->LineEdit1) {
364     if (!myBase->_is_nil() && myVector->_is_nil())
365       GroupDimensions->PushButton2->click();
366   }
367   else if (myEditCurrentArgument == GroupDimensions->LineEdit2) {
368     if (!myVector->_is_nil() && myBase->_is_nil())
369       GroupDimensions->PushButton1->click();
370   }
371
372   // clear selection
373   disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
374   myGeomGUI->getApp()->selectionMgr()->clearSelected();
375   connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
376           this, SLOT(SelectionIntoArgument()));
377
378   displayPreview();
379 }
380
381 //=================================================================================
382 // function : SetEditCurrentArgument()
383 // purpose  :
384 //=================================================================================
385 void TransformationGUI_MultiRotationDlg::SetEditCurrentArgument()
386 {
387   QPushButton* send = (QPushButton*)sender();
388
389   disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
390   globalSelection(GEOM_ALLSHAPES);
391
392   if (send == GroupPoints->PushButton1) {
393     myEditCurrentArgument = GroupPoints->LineEdit1;
394
395     GroupPoints->PushButton2->setDown(false);
396     GroupPoints->LineEdit2->setEnabled(false);
397   }
398   else if (send == GroupPoints->PushButton2) {
399     myEditCurrentArgument = GroupPoints->LineEdit2;
400
401     localSelection(GEOM::GEOM_Object::_nil(), TopAbs_EDGE);
402
403     GroupPoints->PushButton1->setDown(false);
404     GroupPoints->LineEdit1->setEnabled(false);
405   }
406   else if (send == GroupDimensions->PushButton1) {
407     myEditCurrentArgument = GroupDimensions->LineEdit1;
408
409     GroupDimensions->PushButton2->setDown(false);
410     GroupDimensions->LineEdit2->setEnabled(false);
411   }
412   else if (send == GroupDimensions->PushButton2) {
413     myEditCurrentArgument = GroupDimensions->LineEdit2;
414
415     localSelection(GEOM::GEOM_Object::_nil(), TopAbs_EDGE);
416
417     GroupDimensions->PushButton1->setDown(false);
418     GroupDimensions->LineEdit1->setEnabled(false);
419   }
420   connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
421           this, SLOT(SelectionIntoArgument()));
422
423   // enable line edit
424   myEditCurrentArgument->setEnabled(true);
425   myEditCurrentArgument->setFocus();
426   // after setFocus(), because it will be setDown(false) when loses focus
427   send->setDown(true);
428
429   // seems we need it only to avoid preview disappearing, caused by selection mode change
430   displayPreview();
431 }
432
433 //=================================================================================
434 // function : LineEditReturnPressed()
435 // purpose  :
436 //=================================================================================
437 void TransformationGUI_MultiRotationDlg::LineEditReturnPressed()
438 {
439   QLineEdit* send = (QLineEdit*)sender();
440   if (send == GroupPoints->LineEdit1 || send == GroupDimensions->LineEdit1 ||
441       send == GroupPoints->LineEdit2 || send == GroupDimensions->LineEdit2) {
442     myEditCurrentArgument = send;
443     GEOMBase_Skeleton::LineEditReturnPressed();
444   }
445 }
446
447 //=================================================================================
448 // function : ActivateThisDialog()
449 // purpose  :
450 //=================================================================================
451 void TransformationGUI_MultiRotationDlg::ActivateThisDialog()
452 {
453   GEOMBase_Skeleton::ActivateThisDialog();
454   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
455            this, SLOT( SelectionIntoArgument() ) );
456
457   ConstructorsClicked( getConstructorId() );
458 }
459
460 //=================================================================================
461 // function : enterEvent()
462 // purpose  :
463 //=================================================================================
464 void TransformationGUI_MultiRotationDlg::enterEvent (QEvent*)
465 {
466   if (!mainFrame()->GroupConstructors->isEnabled())
467     ActivateThisDialog();
468 }
469
470 //=================================================================================
471 // function : TextValueChangedInSpinBox()
472 // purpose  :
473 //=================================================================================
474 void TransformationGUI_MultiRotationDlg::TextValueChangedInSpinBox(const QString& s){
475   bool isDigit;
476   s.toDouble(&isDigit);
477   if(!isDigit)
478     GroupDimensions->CheckButton1->setChecked(false);
479   GroupDimensions->CheckButton1->setEnabled(isDigit);
480 }
481
482 //=================================================================================
483 // function : ValueChangedInSpinBox()
484 // purpose  :
485 //=================================================================================
486 void TransformationGUI_MultiRotationDlg::ValueChangedInSpinBox (double newValue)
487 {
488   QObject* send = (QObject*)sender();
489
490   if (send == GroupDimensions->SpinBox_DX1)
491     myAng = newValue;
492   else if (send == GroupDimensions->SpinBox_DX2)
493     myStep = newValue;
494
495   displayPreview();
496 }
497
498 //=================================================================================
499 // function : ValueChangedInSpinBox()
500 // purpose  :
501 //=================================================================================
502 void TransformationGUI_MultiRotationDlg::ValueChangedInSpinBox (int newValue)
503 {
504   QObject* send = (QObject*)sender();
505
506   if (send == GroupPoints->SpinBox_DX || send == GroupDimensions->SpinBox_DY1)
507     myNbTimes1 = newValue;
508   else if (send == GroupDimensions->SpinBox_DY2)
509     myNbTimes2 = newValue;
510
511   displayPreview();
512 }
513
514 //=================================================================================
515 // function : ReverseAngle()
516 // purpose  : 'state' not used here
517 //=================================================================================
518 void TransformationGUI_MultiRotationDlg::ReverseAngle()
519 {
520   myAng = -myAng;
521
522   int aConstructorId = getConstructorId();
523
524   if (aConstructorId == 1)
525     GroupDimensions->SpinBox_DX1->setValue(myAng);
526
527   displayPreview();
528 }
529
530 //=================================================================================
531 // function : createOperation
532 // purpose  :
533 //=================================================================================
534 GEOM::GEOM_IOperations_ptr TransformationGUI_MultiRotationDlg::createOperation()
535 {
536   return getGeomEngine()->GetITransformOperations(getStudyId());
537 }
538
539 //=================================================================================
540 // function : isValid
541 // purpose  :
542 //=================================================================================
543 bool TransformationGUI_MultiRotationDlg::isValid (QString& msg)
544 {
545   bool ok = true;
546   switch(getConstructorId()){
547   case 0:
548     ok = GroupPoints->SpinBox_DX->isValid( msg, !IsPreview() ) && ok;
549     break;
550   case 1:                                           
551     ok = GroupDimensions->SpinBox_DX1->isValid( msg, !IsPreview() ) && ok;
552     ok = GroupDimensions->SpinBox_DY1->isValid( msg, !IsPreview() ) && ok;
553     ok = GroupDimensions->SpinBox_DX2->isValid( msg, !IsPreview() ) && ok;
554     ok = GroupDimensions->SpinBox_DY2->isValid( msg, !IsPreview() ) && ok;        
555     break;
556   }
557   return !(myBase->_is_nil() || myVector->_is_nil()) && ok;
558 }
559
560 //=================================================================================
561 // function : execute
562 // purpose  :
563 //=================================================================================
564 bool TransformationGUI_MultiRotationDlg::execute (ObjectList& objects)
565 {
566   bool res = false;
567
568   GEOM::GEOM_Object_var anObj;
569   QStringList aParameters;
570
571   GEOM::GEOM_ITransformOperations_var anOper = GEOM::GEOM_ITransformOperations::_narrow(getOperation());
572
573   switch (getConstructorId()) {
574   case 0:
575     if (!CORBA::is_nil(myBase) && !CORBA::is_nil(myVector)) {
576       anObj = anOper->MultiRotate1D(myBase, myVector, myNbTimes1);
577       if(!IsPreview())
578         aParameters<<GroupPoints->SpinBox_DX->text();
579       res = true;
580     }
581     break;
582   case 1:
583     if (!CORBA::is_nil(myBase) && !CORBA::is_nil(myVector)) {
584       anObj = anOper->MultiRotate2D(myBase, myVector, myAng, myNbTimes1, myStep, myNbTimes2);
585       if(!IsPreview()) {
586         aParameters<<GroupDimensions->SpinBox_DX1->text();
587         aParameters<<GroupDimensions->SpinBox_DY1->text();
588         aParameters<<GroupDimensions->SpinBox_DX2->text();
589         aParameters<<GroupDimensions->SpinBox_DY2->text();
590       }
591       res = true;
592     }
593     break;
594   }
595
596   if (!anObj->_is_nil()) {
597     if(!IsPreview())
598       anObj->SetParameters(aParameters.join(":").toLatin1().constData());
599     objects.push_back(anObj._retn());
600   }
601
602   return res;
603 }
604
605 //=================================================================================
606 // function : addSubshapeToStudy
607 // purpose  : virtual method to add new SubObjects if local selection
608 //=================================================================================
609 void TransformationGUI_MultiRotationDlg::addSubshapesToStudy()
610 {
611   QMap<QString, GEOM::GEOM_Object_var> objMap;
612
613   switch (getConstructorId()) {
614   case 0:
615     objMap[GroupPoints->LineEdit2->text()] = myVector;
616     break;
617   case 1:
618     objMap[GroupDimensions->LineEdit2->text()] = myVector;
619     break;
620   }
621   addSubshapesToFather(objMap);
622 }