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