Salome HOME
Update copyright notes (for 2010)
[modules/geom.git] / src / TransformationGUI / TransformationGUI_RotationDlg.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_RotationDlg.cxx
25 // Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
26 //
27 #include "TransformationGUI_RotationDlg.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_RotationDlg()
50 // purpose  : Constructs a TransformationGUI_RotationDlg 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_RotationDlg::TransformationGUI_RotationDlg
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_ROTATION")));
62   QPixmap image1 (aResMgr->loadPixmap("GEOM", tr("ICON_SELECT")));
63   QPixmap image2 (aResMgr->loadPixmap("GEOM", tr("ICON_DLG_ROTATION_THREE_POINTS")));
64
65   setWindowTitle(tr("GEOM_ROTATION_TITLE"));
66
67   /***************************************************************/
68   mainFrame()->GroupConstructors->setTitle(tr("GEOM_ROTATION"));
69   mainFrame()->RadioButton1->setIcon(image0);
70   mainFrame()->RadioButton2->setIcon(image2);
71   mainFrame()->RadioButton3->setAttribute(Qt::WA_DeleteOnClose);
72   mainFrame()->RadioButton3->close();
73
74   GroupPoints = new DlgRef_4Sel1Spin2Check(centralWidget());
75   GroupPoints->GroupBox1->setTitle(tr("GEOM_ARGUMENTS"));
76   GroupPoints->TextLabel1->setText(tr("GEOM_OBJECTS"));
77   GroupPoints->TextLabel2->setText(tr("GEOM_AXIS"));
78   GroupPoints->TextLabel3->setText(tr("GEOM_ANGLE"));
79   GroupPoints->TextLabel4->setText(tr("GEOM_POINT_I").arg(1));
80   GroupPoints->TextLabel5->setText(tr("GEOM_POINT_I").arg(2));
81
82   GroupPoints->LineEdit1->setReadOnly(true);
83   GroupPoints->LineEdit2->setReadOnly(true);
84   GroupPoints->LineEdit4->setReadOnly(true);
85   GroupPoints->LineEdit5->setReadOnly(true);
86   GroupPoints->PushButton1->setIcon(image1);
87   GroupPoints->PushButton2->setIcon(image1);
88   GroupPoints->PushButton4->setIcon(image1);
89   GroupPoints->PushButton5->setIcon(image1);
90   GroupPoints->CheckButton1->setText(tr("GEOM_CREATE_COPY"));
91   GroupPoints->CheckButton2->setText(tr("GEOM_REVERSE"));
92
93   QVBoxLayout* layout = new QVBoxLayout(centralWidget());
94   layout->setMargin(0); layout->setSpacing(6);
95   layout->addWidget(GroupPoints);
96   /***************************************************************/
97
98   setHelpFileName("rotation_operation_page.html");
99
100   // Activate Create a Copy mode
101   GroupPoints->CheckButton1->setChecked(true);
102   CreateCopyModeChanged(true);
103
104   Init();
105 }
106
107 //=================================================================================
108 // function : ~TransformationGUI_RotationDlg()
109 // purpose  : Destroys the object and frees any allocated resources
110 //=================================================================================
111 TransformationGUI_RotationDlg::~TransformationGUI_RotationDlg()
112 {
113   // no need to delete child widgets, Qt does it all for us
114 }
115
116 //=================================================================================
117 // function : Init()
118 // purpose  :
119 //=================================================================================
120 void TransformationGUI_RotationDlg::Init()
121 {
122   double anAngle = 0;
123   double SpecificStep = 5;
124
125   // min, max, step and decimals for spin boxes & initial values
126   initSpinBox(GroupPoints->SpinBox_DX, COORD_MIN, COORD_MAX, SpecificStep, "angle_precision" );
127   GroupPoints->SpinBox_DX->setValue(anAngle);
128
129   // init variables
130   GroupPoints->LineEdit1->setText("");
131   GroupPoints->LineEdit2->setText("");
132   GroupPoints->LineEdit4->setText("");
133   GroupPoints->LineEdit5->setText("");
134
135   myAxis = myCentPoint = myPoint1 = myPoint2 = GEOM::GEOM_Object::_nil();
136
137   mainFrame()->GroupBoxPublish->show();
138
139   // signals and slots connections
140   connect(buttonOk(),    SIGNAL(clicked()), this, SLOT(ClickOnOk()));
141   connect(buttonApply(), SIGNAL(clicked()), this, SLOT(ClickOnApply()));
142
143   connect(this, SIGNAL(constructorsClicked(int)), this, SLOT(ConstructorsClicked(int)));
144
145   connect(GroupPoints->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
146   connect(GroupPoints->PushButton2, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
147   connect(GroupPoints->PushButton4, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
148   connect(GroupPoints->PushButton5, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
149
150   connect(GroupPoints->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
151   connect(GroupPoints->LineEdit2, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
152
153   connect(GroupPoints->SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
154
155   connect(GroupPoints->SpinBox_DX, SIGNAL(textChanged( const QString& )),
156           this, SLOT(TextValueChangedInSpinBox( const QString&)));
157
158   connect(GroupPoints->CheckButton1, SIGNAL(toggled(bool)), this, SLOT(CreateCopyModeChanged(bool)));
159   connect(GroupPoints->CheckButton2, SIGNAL(toggled(bool)), this, SLOT(onReverse()));
160
161   initName(tr("GEOM_ROTATION"));
162
163   ConstructorsClicked(0);
164 }
165
166 //=================================================================================
167 // function : ConstructorsClicked()
168 // purpose  : Radio button management
169 //=================================================================================
170 void TransformationGUI_RotationDlg::ConstructorsClicked (int constructorId)
171 {
172   disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
173
174   switch (constructorId) {
175   case 0: // rotation an object angle and axis
176     {
177       GroupPoints->ShowRows(2, 3, false);
178       GroupPoints->TextLabel2->setText(tr("GEOM_AXIS"));
179       GroupPoints->LineEdit2->clear();
180       GroupPoints->ShowRows(4, 4, true);
181
182       myAxis = GEOM::GEOM_Object::_nil();
183
184       GroupPoints->PushButton1->click();
185     }
186     break;
187   case 1: // rotation an object by 3 points
188     {
189       GroupPoints->ShowRows(4, 4, false);
190       GroupPoints->ShowRows(2, 3, true);
191       GroupPoints->TextLabel2->setText(tr("GEOM_CENTRAL_POINT"));
192       GroupPoints->TextLabel4->setText(tr("GEOM_POINT_I").arg(1));
193       GroupPoints->TextLabel5->setText(tr("GEOM_POINT_I").arg(2));
194
195       GroupPoints->LineEdit2->clear();
196       GroupPoints->LineEdit4->clear();
197       GroupPoints->LineEdit5->clear();
198
199       myCentPoint = myPoint1 = myPoint2 = GEOM::GEOM_Object::_nil();
200
201       GroupPoints->PushButton1->click();
202     }
203     break;
204   }
205
206   qApp->processEvents();
207   updateGeometry();
208   resize(minimumSizeHint());
209
210   if (myInitial) {
211     myInitial = false;
212     SelectionIntoArgument();
213   }
214   else {
215     displayPreview();
216   }
217 }
218
219 //=================================================================================
220 // function : ClickOnOk()
221 // purpose  :
222 //=================================================================================
223 void TransformationGUI_RotationDlg::ClickOnOk()
224 {
225   if (ClickOnApply())
226     ClickOnCancel();
227 }
228
229 //=================================================================================
230 // function : ClickOnApply()
231 // purpose  :
232 //=================================================================================
233 bool TransformationGUI_RotationDlg::ClickOnApply()
234 {
235   if (!onAccept(GroupPoints->CheckButton1->isChecked()))
236     return false;
237
238   initName();
239   // activate selection and connect selection manager
240   ConstructorsClicked(getConstructorId());
241   return true;
242 }
243
244 //=================================================================================
245 // function : SelectionIntoArgument()
246 // purpose  : Called when selection is changed or on dialog initialization or activation
247 //=================================================================================
248 void TransformationGUI_RotationDlg::SelectionIntoArgument()
249 {
250   erasePreview();
251   myEditCurrentArgument->setText("");
252
253   if (myEditCurrentArgument == GroupPoints->LineEdit1)
254     myObjects.length(0);
255   else if (myEditCurrentArgument == GroupPoints->LineEdit2 && getConstructorId() == 0)
256     myAxis = GEOM::GEOM_Object::_nil();
257   else if (myEditCurrentArgument == GroupPoints->LineEdit2 && getConstructorId() == 1)
258     myCentPoint = GEOM::GEOM_Object::_nil();
259   else if (myEditCurrentArgument == GroupPoints->LineEdit4)
260     myPoint1 = GEOM::GEOM_Object::_nil();
261   else if (myEditCurrentArgument == GroupPoints->LineEdit5)
262     myPoint2 = GEOM::GEOM_Object::_nil();
263
264   LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
265   SALOME_ListIO aSelList;
266   aSelMgr->selectedObjects(aSelList);
267   GEOM::GEOM_Object_var aSelectedObject;
268
269   QString aName;
270
271   if (myEditCurrentArgument == GroupPoints->LineEdit1) {
272     int aNbSel = GEOMBase::GetNameOfSelectedIObjects(aSelList, aName);
273     if (aNbSel < 1)
274       return;
275
276     GEOMBase::ConvertListOfIOInListOfGO(aSelList, myObjects);
277     if (!myObjects.length())
278       return;
279   }
280   else {
281     if (aSelList.Extent() != 1)
282       return;
283
284     // nbSel == 1
285     Standard_Boolean testResult = Standard_False;
286     aSelectedObject = GEOMBase::ConvertIOinGEOMObject(aSelList.First(), testResult);
287
288     if (!testResult || CORBA::is_nil(aSelectedObject))
289       return;
290
291     aName = GEOMBase::GetName(aSelectedObject);
292
293     // Get Selected object if selected subshape
294     TopoDS_Shape aShape;
295     if (GEOMBase::GetShape(aSelectedObject, aShape, TopAbs_SHAPE) && !aShape.IsNull())
296     {
297       TopAbs_ShapeEnum aNeedType = TopAbs_VERTEX;
298       if (myEditCurrentArgument == GroupPoints->LineEdit2 && getConstructorId() == 0)
299         aNeedType = TopAbs_EDGE;
300
301       TColStd_IndexedMapOfInteger aMap;
302       aSelMgr->GetIndexes(aSelList.First(), aMap);
303       if (aMap.Extent() == 1)
304       {
305         int anIndex = aMap(1);
306         if (aNeedType == TopAbs_EDGE)
307           aName += QString(":edge_%1").arg(anIndex);
308         else
309           aName += QString(":vertex_%1").arg(anIndex);
310
311         //Find SubShape Object in Father
312         GEOM::GEOM_Object_var aFindedObject = findObjectInFather(aSelectedObject, aName);
313
314         if (aFindedObject == GEOM::GEOM_Object::_nil()) { // Object not found in study
315           GEOM::GEOM_IShapesOperations_var aShapesOp =
316             getGeomEngine()->GetIShapesOperations(getStudyId());
317           aSelectedObject = aShapesOp->GetSubShape(aSelectedObject, anIndex);
318         }
319         else {
320           aSelectedObject = aFindedObject; // get Object from study
321         }
322       }
323       else // Global Selection
324       {
325         if (aShape.ShapeType() != aNeedType) {
326           aSelectedObject = GEOM::GEOM_Object::_nil();
327           aName = "";
328         }
329       }
330     }
331   }
332   
333   myEditCurrentArgument->setText(aName);
334
335   if (myEditCurrentArgument == GroupPoints->LineEdit1) {
336     /*    if (myObjects.length()) {
337       if (getConstructorId() == 0 && myAxis->_is_nil() || getConstructorId() == 1 && myCentPoint->_is_nil() )
338         GroupPoints->PushButton2->click();
339         }*/   // here commented, because multiple objects can be selected IPAL 21437
340   }
341   else if (myEditCurrentArgument == GroupPoints->LineEdit2 && getConstructorId() == 0) {
342     myAxis = aSelectedObject;
343     if (!myAxis->_is_nil() && !myObjects.length())
344       GroupPoints->PushButton1->click();
345   }
346   else if (myEditCurrentArgument == GroupPoints->LineEdit2 && getConstructorId() == 1) {
347     myCentPoint = aSelectedObject;
348     if (!myCentPoint->_is_nil() && myPoint1->_is_nil())
349       GroupPoints->PushButton4->click();
350   }
351   else if (myEditCurrentArgument == GroupPoints->LineEdit4) {
352     myPoint1 = aSelectedObject;
353     if (!myPoint1->_is_nil() && myPoint2->_is_nil())
354       GroupPoints->PushButton5->click();
355   }
356   else if (myEditCurrentArgument == GroupPoints->LineEdit5) {
357     myPoint2 = aSelectedObject;
358     if (!myPoint2->_is_nil() && !myObjects.length())
359       GroupPoints->PushButton1->click();
360   }
361
362   // clear selection
363   /*  disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
364   myGeomGUI->getApp()->selectionMgr()->clearSelected();
365   connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
366   this, SLOT(SelectionIntoArgument()));*/
367   // here commented, because multiple objects can be selected IPAL 21437
368
369   displayPreview();
370 }
371
372 //=================================================================================
373 // function : SetEditCurrentArgument()
374 // purpose  :
375 //=================================================================================
376 void TransformationGUI_RotationDlg::SetEditCurrentArgument()
377 {
378   QPushButton* send = (QPushButton*)sender();
379
380   disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
381   globalSelection();
382
383   if (send == GroupPoints->PushButton1) {
384     myEditCurrentArgument = GroupPoints->LineEdit1;
385
386     GroupPoints->PushButton2->setDown(false);
387     GroupPoints->PushButton4->setDown(false);
388     GroupPoints->PushButton5->setDown(false);
389     GroupPoints->LineEdit2->setEnabled(false);
390     GroupPoints->LineEdit4->setEnabled(false);
391     GroupPoints->LineEdit5->setEnabled(false);
392   }
393   else if (send == GroupPoints->PushButton2) {
394     myEditCurrentArgument = GroupPoints->LineEdit2;
395
396     GroupPoints->PushButton1->setDown(false);
397     GroupPoints->PushButton4->setDown(false);
398     GroupPoints->PushButton5->setDown(false);
399     GroupPoints->LineEdit1->setEnabled(false);
400     GroupPoints->LineEdit4->setEnabled(false);
401     GroupPoints->LineEdit5->setEnabled(false);
402
403     if (getConstructorId() == 0)
404       localSelection(GEOM::GEOM_Object::_nil(), TopAbs_EDGE);
405     else
406       localSelection(GEOM::GEOM_Object::_nil(), TopAbs_VERTEX);
407   }
408   else if (send == GroupPoints->PushButton4) {
409     myEditCurrentArgument = GroupPoints->LineEdit4;
410
411     GroupPoints->PushButton1->setDown(false);
412     GroupPoints->PushButton2->setDown(false);
413     GroupPoints->PushButton5->setDown(false);
414     GroupPoints->LineEdit1->setEnabled(false);
415     GroupPoints->LineEdit2->setEnabled(false);
416     GroupPoints->LineEdit5->setEnabled(false);
417
418     localSelection(GEOM::GEOM_Object::_nil(), TopAbs_VERTEX);
419   }
420   else if (send == GroupPoints->PushButton5) {
421     myEditCurrentArgument = GroupPoints->LineEdit5;
422
423     GroupPoints->PushButton1->setDown(false);
424     GroupPoints->PushButton2->setDown(false);
425     GroupPoints->PushButton4->setDown(false);
426     GroupPoints->LineEdit1->setEnabled(false);
427     GroupPoints->LineEdit2->setEnabled(false);
428     GroupPoints->LineEdit4->setEnabled(false);
429
430     localSelection(GEOM::GEOM_Object::_nil(), TopAbs_VERTEX);
431   }
432   connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
433           this, SLOT(SelectionIntoArgument()));
434
435   // enable line edit
436   myEditCurrentArgument->setEnabled(true);
437   myEditCurrentArgument->setFocus();
438   // after setFocus(), because it will be setDown(false) when loses focus
439   send->setDown(true);
440
441   // seems we need it only to avoid preview disappearing, caused by selection mode change
442   displayPreview();
443 }
444
445 //=================================================================================
446 // function : LineEditReturnPressed()
447 // purpose  :
448 //=================================================================================
449 void TransformationGUI_RotationDlg::LineEditReturnPressed()
450 {
451   QLineEdit* send = (QLineEdit*)sender();
452   if (send == GroupPoints->LineEdit1 ||
453       send == GroupPoints->LineEdit2) {
454     myEditCurrentArgument = send;
455     GEOMBase_Skeleton::LineEditReturnPressed();
456   }
457 }
458
459 //=================================================================================
460 // function : ActivateThisDialog()
461 // purpose  :
462 //=================================================================================
463 void TransformationGUI_RotationDlg::ActivateThisDialog()
464 {
465   GEOMBase_Skeleton::ActivateThisDialog();
466   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
467            this, SLOT( SelectionIntoArgument() ) );
468
469   ConstructorsClicked( getConstructorId() );
470 }
471
472 //=================================================================================
473 // function : enterEvent()
474 // purpose  :
475 //=================================================================================
476 void TransformationGUI_RotationDlg::enterEvent (QEvent*)
477 {
478   if (!mainFrame()->GroupConstructors->isEnabled())
479     ActivateThisDialog();
480 }
481
482 void TransformationGUI_RotationDlg::TextValueChangedInSpinBox( const QString& s)
483 {
484   bool isDigit = true;
485   s.toDouble(&isDigit);
486   if(!isDigit) {
487     GroupPoints->CheckButton2->setChecked(false);
488   }
489   GroupPoints->CheckButton2->setEnabled(isDigit); 
490 }
491
492 //=================================================================================
493 // function : ValueChangedInSpinBox()
494 // purpose  :
495 //=================================================================================
496 void TransformationGUI_RotationDlg::ValueChangedInSpinBox()
497 {
498   displayPreview();
499 }
500
501 //=================================================================================
502 // function : createOperation
503 // purpose  :
504 //=================================================================================
505 GEOM::GEOM_IOperations_ptr TransformationGUI_RotationDlg::createOperation()
506 {
507   return getGeomEngine()->GetITransformOperations(getStudyId());
508 }
509
510 //=================================================================================
511 // function : isValid
512 // purpose  :
513 //=================================================================================
514 bool TransformationGUI_RotationDlg::isValid (QString& msg)
515 {
516   switch (getConstructorId()) {
517   case 0: {
518     bool ok = GroupPoints->SpinBox_DX->isValid( msg, !IsPreview() );
519     return myObjects.length() > 0 && !(myAxis->_is_nil()) && ok;
520     break;
521   }
522   case 1:
523     return myObjects.length() > 0 && !(myCentPoint->_is_nil() || myPoint1->_is_nil() || myPoint2->_is_nil());
524     break;
525   default:
526     break;
527   }
528   return false;
529 }
530
531 //=================================================================================
532 // function : execute
533 // purpose  :
534 //=================================================================================
535 bool TransformationGUI_RotationDlg::execute (ObjectList& objects)
536 {
537   bool res = false;
538   bool toCreateCopy = IsPreview() || GroupPoints->CheckButton1->isChecked();
539
540   GEOM::GEOM_Object_var anObj;
541
542   GEOM::GEOM_ITransformOperations_var anOper = GEOM::GEOM_ITransformOperations::_narrow(getOperation());
543
544   switch (getConstructorId()) {
545   case 0:
546     {
547       QStringList aParameters;
548       aParameters<<GroupPoints->SpinBox_DX->text();
549       if (toCreateCopy) {
550         for (int i = 0; i < myObjects.length(); i++) {
551           myCurrObject = myObjects[i];
552           anObj = anOper->RotateCopy(myObjects[i], myAxis, GetAngle() * PI180);
553           if (!anObj->_is_nil()) {
554             if(!IsPreview()) {
555               anObj->SetParameters(aParameters.join(":").toLatin1().constData());
556             }
557             objects.push_back(anObj._retn());
558           }
559         }
560       }
561       else {
562         for (int i = 0; i < myObjects.length(); i++) {
563           myCurrObject = myObjects[i];
564           anObj = anOper->Rotate(myObjects[i], myAxis, GetAngle() * PI180);
565           if (!anObj->_is_nil()) {
566             if(!IsPreview()) {
567               anObj->SetParameters(aParameters.join(":").toLatin1().constData());
568               updateAttributes(anObj, aParameters);
569             }
570             objects.push_back(anObj._retn());
571           }
572         }
573       }
574       res = true;
575       break;
576     }
577   case 1:
578     {
579       if (toCreateCopy) {
580         for (int i = 0; i < myObjects.length(); i++) {
581           myCurrObject = myObjects[i];
582           anObj = anOper->RotateThreePointsCopy(myObjects[i], myCentPoint, myPoint1, myPoint2);
583           if (!anObj->_is_nil())
584             objects.push_back(anObj._retn());
585         }
586       }
587       else {
588         for (int i = 0; i < myObjects.length(); i++) {
589           myCurrObject = myObjects[i];
590           anObj = anOper->RotateThreePoints(myObjects[i], myCentPoint, myPoint1, myPoint2);
591           if (!anObj->_is_nil())
592             objects.push_back(anObj._retn());
593         }
594       }
595       res = true;
596       break;
597     }
598   }
599
600   return res;
601 }
602
603 //=================================================================================
604 // function : restoreSubShapes
605 // purpose  :
606 //=================================================================================
607 void TransformationGUI_RotationDlg::restoreSubShapes (SALOMEDS::Study_ptr   theStudy,
608                                                       SALOMEDS::SObject_ptr theSObject)
609 {
610   if (mainFrame()->CheckBoxRestoreSS->isChecked()) {
611     // we pass here the first operation argument (object) through the list of arguments
612     // because the rotation operation place its arguments in the data structure in another order,
613     // and we need to point the first argument directly
614     GEOM::ListOfGO_var anArgs = new GEOM::ListOfGO;
615     anArgs->length(1);
616     anArgs[0] = myCurrObject;
617     getGeomEngine()->RestoreSubShapesSO(theStudy, theSObject, anArgs,
618                                         /*theFindMethod=*/GEOM::FSM_Transformed,
619                                         /*theInheritFirstArg=*/true,
620                                         mainFrame()->CheckBoxAddPrefix->isChecked());
621   }
622 }
623
624 //=================================================================================
625 // function : GetAngle()
626 // purpose  :
627 //=================================================================================
628 double TransformationGUI_RotationDlg::GetAngle() const
629 {
630   return GroupPoints->SpinBox_DX->value();
631 }
632
633 //=================================================================================
634 // function :  CreateCopyModeChanged()
635 // purpose  :
636 //=================================================================================
637 void TransformationGUI_RotationDlg::CreateCopyModeChanged (bool isCreateCopy)
638 {
639   mainFrame()->GroupBoxName->setEnabled(isCreateCopy);
640 }
641
642 //=================================================================================
643 // function :  onReverse()
644 // purpose  :
645 //=================================================================================
646 void TransformationGUI_RotationDlg::onReverse()
647 {
648   double anOldValue = GroupPoints->SpinBox_DX->value();
649   GroupPoints->SpinBox_DX->setValue(-anOldValue);
650 }
651
652 //=================================================================================
653 // function : addSubshapesToStudy
654 // purpose  : virtual method to add new SubObjects if local selection
655 //=================================================================================
656 void TransformationGUI_RotationDlg::addSubshapesToStudy()
657 {
658   bool toCreateCopy = IsPreview() || GroupPoints->CheckButton1->isChecked();
659   if (toCreateCopy) {
660     QMap<QString, GEOM::GEOM_Object_var> objMap;
661     switch (getConstructorId()) {
662     case 0:
663       objMap[GroupPoints->LineEdit2->text()] = myAxis;
664       break;
665     case 1:
666       objMap[GroupPoints->LineEdit2->text()] = myCentPoint;
667       objMap[GroupPoints->LineEdit4->text()] = myPoint1;
668       objMap[GroupPoints->LineEdit5->text()] = myPoint2;
669       break;
670     }
671     addSubshapesToFather(objMap);
672   }
673 }