Salome HOME
Merge from V5_1_main 14/05/2010
[modules/geom.git] / src / TransformationGUI / TransformationGUI_ScaleDlg.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_ScaleDlg.cxx
25 // Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
26 //
27 #include "TransformationGUI_ScaleDlg.h"
28
29 #include <DlgRef.h>
30 #include <GeometryGUI.h>
31 #include <GEOMBase.h>
32
33 #include <SalomeApp_DoubleSpinBox.h>
34 #include <SUIT_Session.h>
35 #include <SUIT_ResourceMgr.h>
36 #include <SalomeApp_Application.h>
37 #include <LightApp_SelectionMgr.h>
38
39 // OCCT Includes
40 #include <TopoDS_Shape.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_ScaleDlg()
50 // purpose  : Constructs a TransformationGUI_ScaleDlg 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_ScaleDlg::TransformationGUI_ScaleDlg (GeometryGUI* theGeometryGUI, QWidget* parent,
56                                                         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 image1 (aResMgr->loadPixmap("GEOM", tr("ICON_DLG_SCALE")));
62   QPixmap image2 (aResMgr->loadPixmap("GEOM", tr("ICON_DLG_SCALE_ALONG_AXES")));
63   QPixmap image3 (aResMgr->loadPixmap("GEOM", tr("ICON_SELECT")));
64
65   setWindowTitle(tr("GEOM_SCALE_TITLE"));
66
67   // Constructors
68   mainFrame()->GroupConstructors->setTitle(tr("GEOM_SCALE"));
69   mainFrame()->RadioButton1->setIcon(image1);
70   mainFrame()->RadioButton2->setIcon(image2);
71   mainFrame()->RadioButton3->setAttribute(Qt::WA_DeleteOnClose);
72   mainFrame()->RadioButton3->close();
73
74   // Own widgets
75   GroupBox1 = new QGroupBox(tr("GEOM_ARGUMENTS"), this);
76   QGridLayout* OwnLayout = new QGridLayout(GroupBox1);
77   OwnLayout->setSpacing(6);
78   OwnLayout->setMargin(11);
79
80   TextLabel1 = new QLabel(tr("GEOM_OBJECTS"), GroupBox1);
81   PushButton1 = new QPushButton(GroupBox1);
82   PushButton1->setIcon(image3);
83   PushButton1->setSizePolicy(QSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed));
84   LineEdit1 = new QLineEdit(GroupBox1);
85   LineEdit1->setReadOnly(true);
86   LineEdit1->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed));
87
88   TextLabel2 = new QLabel(tr("GEOM_CENTRAL_POINT"), GroupBox1);
89   PushButton2 = new QPushButton(GroupBox1);
90   PushButton2->setIcon(image3);
91   PushButton2->setSizePolicy(QSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed));
92   LineEdit2 = new QLineEdit(GroupBox1);
93   LineEdit2->setReadOnly(true);
94   LineEdit2->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed));
95
96   TextLabel3 = new QLabel(tr("GEOM_SCALE_FACTOR"), GroupBox1);
97   SpinBox_FX = new SalomeApp_DoubleSpinBox(GroupBox1);
98
99   TextLabel4 = new QLabel(tr("GEOM_SCALE_FACTOR_Y"), GroupBox1);
100   SpinBox_FY = new SalomeApp_DoubleSpinBox(GroupBox1);
101
102   TextLabel5 = new QLabel(tr("GEOM_SCALE_FACTOR_Z"), GroupBox1);
103   SpinBox_FZ = new SalomeApp_DoubleSpinBox(GroupBox1);
104
105   CheckBoxCopy = new QCheckBox(tr("GEOM_CREATE_COPY"), GroupBox1);
106   CheckBoxCopy->setChecked(true);
107
108   // Layouting
109   OwnLayout->addWidget(TextLabel1,   0, 0);
110   OwnLayout->addWidget(PushButton1,  0, 1);
111   OwnLayout->addWidget(LineEdit1,    0, 2, 1, 2);
112   OwnLayout->addWidget(TextLabel2,   1, 0);
113   OwnLayout->addWidget(PushButton2,  1, 1);
114   OwnLayout->addWidget(LineEdit2,    1, 2, 1, 2);
115   OwnLayout->addWidget(TextLabel3,   2, 0);
116   OwnLayout->addWidget(SpinBox_FX,   2, 2);
117   OwnLayout->addWidget(TextLabel4,   3, 0);
118   OwnLayout->addWidget(SpinBox_FY,   3, 2);
119   OwnLayout->addWidget(TextLabel5,   4, 0);
120   OwnLayout->addWidget(SpinBox_FZ,   4, 2);
121   OwnLayout->addWidget(CheckBoxCopy, 5, 0, 1, 4);
122
123   QVBoxLayout* layout = new QVBoxLayout(centralWidget());
124   layout->setMargin(0); layout->setSpacing(6);
125   layout->addWidget(GroupBox1);
126
127   setHelpFileName("scale_operation_page.html");
128
129   // Modification of an existing object by offset is not allowed
130   CheckBoxCopy->hide();
131
132   // Activate Create a Copy mode
133   CreateCopyModeChanged(true);
134
135   // Allowed inheritance of children and visual properties by the scaling result
136   mainFrame()->GroupBoxPublish->show();
137
138   Init();
139 }
140
141 //=================================================================================
142 // function : ~TransformationGUI_ScaleDlg()
143 // purpose  : Destroys the object and frees any allocated resources
144 //=================================================================================
145 TransformationGUI_ScaleDlg::~TransformationGUI_ScaleDlg()
146 {
147 }
148
149 //=================================================================================
150 // function : Init()
151 // purpose  :
152 //=================================================================================
153 void TransformationGUI_ScaleDlg::Init()
154 {
155   // Min, max, step and decimals for spin boxes & initial values
156   double aFactor = 2.0;
157   double SpecificStep = 0.5;
158
159   initSpinBox(SpinBox_FX, COORD_MIN, COORD_MAX, SpecificStep, "parametric_precision" );
160   initSpinBox(SpinBox_FY, COORD_MIN, COORD_MAX, SpecificStep, "parametric_precision" );
161   initSpinBox(SpinBox_FZ, COORD_MIN, COORD_MAX, SpecificStep, "parametric_precision" );
162   SpinBox_FX->setValue(aFactor);
163   SpinBox_FY->setValue(aFactor);
164   SpinBox_FZ->setValue(aFactor);
165
166   // init variables
167   LineEdit1->setText("");
168   LineEdit2->setText("");
169
170   myPoint = GEOM::GEOM_Object::_nil();
171
172   // Signals and slots connections
173   connect(buttonOk(),        SIGNAL(clicked()), this, SLOT(ClickOnOk()));
174   connect(buttonApply(),     SIGNAL(clicked()), this, SLOT(ClickOnApply()));
175   connect(this, SIGNAL(constructorsClicked(int)), this, SLOT(ConstructorsClicked(int)));
176
177   connect(PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
178   connect(PushButton2, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
179
180   connect(LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
181   connect(LineEdit2, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
182
183   connect(SpinBox_FX, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
184   connect(SpinBox_FY, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
185   connect(SpinBox_FZ, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
186   
187   // san : Commented so as not to override specific step settings
188   //connect(myGeomGUI, SIGNAL(SignalDefaultStepValueChanged(double)), this, SLOT(SetDoubleSpinBoxStep(double)));
189
190   connect(CheckBoxCopy, SIGNAL(toggled(bool)), this, SLOT(CreateCopyModeChanged(bool)));
191
192   initName(tr("GEOM_SCALE"));
193
194   ConstructorsClicked(0);
195 }
196
197 //=================================================================================
198 // function : ConstructorsClicked()
199 // purpose  : Radio button management
200 //=================================================================================
201 void TransformationGUI_ScaleDlg::ConstructorsClicked (int constructorId)
202 {
203   disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
204
205   switch (constructorId) {
206   case 0: // translation an object by dx, dy, dz
207     TextLabel3->setText(tr("GEOM_SCALE_FACTOR"));
208     TextLabel4->hide();
209     TextLabel5->hide();
210     SpinBox_FY->hide();
211     SpinBox_FZ->hide();
212
213     PushButton1->click();
214     break;
215   case 1: // translation an object by 2 points
216     TextLabel3->setText(tr("GEOM_SCALE_FACTOR_X"));
217     TextLabel4->show();
218     TextLabel5->show();
219     SpinBox_FY->show();
220     SpinBox_FZ->show();
221
222     PushButton1->click();
223     break;
224   default:
225     break;
226   }
227
228   qApp->processEvents();
229   updateGeometry();
230   resize(minimumSizeHint());
231
232   if (myInitial) {
233     myInitial = false;
234     SelectionIntoArgument();
235   }
236   else {
237     displayPreview();
238   }
239 }
240
241 //=================================================================================
242 // function : ClickOnOk()
243 // purpose  :
244 //=================================================================================
245 void TransformationGUI_ScaleDlg::ClickOnOk()
246 {
247   if (ClickOnApply())
248     ClickOnCancel();
249 }
250
251 //=================================================================================
252 // function : ClickOnApply()
253 // purpose  :
254 //=================================================================================
255 bool TransformationGUI_ScaleDlg::ClickOnApply()
256 {
257   if (!onAccept(CheckBoxCopy->isChecked()))
258     return false;
259
260   initName(tr("GEOM_SCALE"));
261   // activate selection and connect selection manager
262   ConstructorsClicked(getConstructorId());
263   return true;
264 }
265
266 //=================================================================================
267 // function : SelectionIntoArgument()
268 // purpose  : Called when selection is changed or on dialog initialization or activation
269 //=================================================================================
270 void TransformationGUI_ScaleDlg::SelectionIntoArgument()
271 {
272   erasePreview();
273   myEditCurrentArgument->setText("");
274
275   if (myEditCurrentArgument == LineEdit1)
276     myObjects.length(0);
277   else if (myEditCurrentArgument == LineEdit2)
278     myPoint = GEOM::GEOM_Object::_nil();
279
280   LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
281   SALOME_ListIO aSelList;
282   aSelMgr->selectedObjects(aSelList);
283
284   QString aName;
285
286   if (myEditCurrentArgument == LineEdit1)
287   {
288     int aNbSel = GEOMBase::GetNameOfSelectedIObjects(aSelList, aName);
289     if (aNbSel < 1)
290       return;
291
292     GEOMBase::ConvertListOfIOInListOfGO(aSelList, myObjects);
293     if (!myObjects.length())
294       return;
295     else
296       myEditCurrentArgument->setText(aName);
297   }
298   else if (myEditCurrentArgument == LineEdit2)
299   {
300     GEOM::GEOM_Object_var aSelectedObject = GEOM::GEOM_Object::_nil();
301     if (aSelList.Extent() == 1)
302     {
303       Standard_Boolean testResult = Standard_False;
304       aSelectedObject = GEOMBase::ConvertIOinGEOMObject(aSelList.First(), testResult);
305       if (testResult)
306       {
307         aName = GEOMBase::GetName(aSelectedObject);
308
309         TopoDS_Shape aShape;
310         if (GEOMBase::GetShape(aSelectedObject, aShape, TopAbs_SHAPE) && !aShape.IsNull())
311         {
312           TColStd_IndexedMapOfInteger aMap;
313           aSelMgr->GetIndexes(aSelList.First(), aMap);
314           if (aMap.Extent() == 1)
315           {
316             int anIndex = aMap(1);
317             aName += QString(":vertex_%1").arg(anIndex);
318
319             //Find SubShape Object in Father
320             GEOM::GEOM_Object_var aFindedObject = findObjectInFather(aSelectedObject, aName);
321
322             if (aFindedObject == GEOM::GEOM_Object::_nil()) { // Object not found in study
323               GEOM::GEOM_IShapesOperations_var aShapesOp =
324                 getGeomEngine()->GetIShapesOperations(getStudyId());
325               aSelectedObject = aShapesOp->GetSubShape(aSelectedObject, anIndex);
326             }
327             else
328               aSelectedObject = aFindedObject; // get Object from study
329           }
330           else // Global Selection
331           {
332             if (aShape.ShapeType() != TopAbs_VERTEX) {
333               aSelectedObject = GEOM::GEOM_Object::_nil();
334               aName = "";
335             }
336           }
337         }
338       }
339     }
340
341     myPoint = aSelectedObject;
342     myEditCurrentArgument->setText(aName);
343
344     if (!myPoint->_is_nil() && !myObjects.length())
345       PushButton1->click();
346   }
347
348   // clear selection
349   /*  disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
350   myGeomGUI->getApp()->selectionMgr()->clearSelected();
351   connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
352   this, SLOT(SelectionIntoArgument()));*/
353   // here commented, because multiple objects can be selected IPAL 21437
354
355   displayPreview();
356 }
357
358 //=================================================================================
359 // function : SetEditCurrentArgument()
360 // purpose  :
361 //=================================================================================
362 void TransformationGUI_ScaleDlg::SetEditCurrentArgument()
363 {
364   QPushButton* send = (QPushButton*)sender();
365
366   disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
367   globalSelection();
368
369   if (send == PushButton1) {
370     myEditCurrentArgument = LineEdit1;
371
372     PushButton2->setDown(false);
373     LineEdit2->setEnabled(false);
374   }
375   else if (send == PushButton2) {
376     myEditCurrentArgument = LineEdit2;
377
378     localSelection(GEOM::GEOM_Object::_nil(), TopAbs_VERTEX);
379
380     PushButton1->setDown(false);
381     LineEdit1->setEnabled(false);
382   }
383   connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
384           this, SLOT(SelectionIntoArgument()));
385
386   // enable line edit
387   myEditCurrentArgument->setEnabled(true);
388   myEditCurrentArgument->setFocus();
389   // after setFocus(), because it will be setDown(false) when loses focus
390   send->setDown(true);
391
392   // seems we need it only to avoid preview disappearing, caused by selection mode change
393   displayPreview();
394 }
395
396 //=================================================================================
397 // function : LineEditReturnPressed()
398 // purpose  :
399 //=================================================================================
400 void TransformationGUI_ScaleDlg::LineEditReturnPressed()
401 {
402   QLineEdit* send = (QLineEdit*)sender();
403   if (send == LineEdit1 || send == LineEdit2)
404   {
405     myEditCurrentArgument = send;
406     GEOMBase_Skeleton::LineEditReturnPressed();
407   }
408 }
409
410 //=================================================================================
411 // function : ActivateThisDialog()
412 // purpose  :
413 //=================================================================================
414 void TransformationGUI_ScaleDlg::ActivateThisDialog()
415 {
416   GEOMBase_Skeleton::ActivateThisDialog();
417   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
418            this, SLOT( SelectionIntoArgument() ) );
419
420   ConstructorsClicked( getConstructorId() );
421 }
422
423 //=================================================================================
424 // function : enterEvent()
425 // purpose  :
426 //=================================================================================
427 void TransformationGUI_ScaleDlg::enterEvent (QEvent*)
428 {
429   if (!mainFrame()->GroupConstructors->isEnabled())
430     ActivateThisDialog();
431 }
432
433 //=================================================================================
434 // function : ValueChangedInSpinBox()
435 // purpose  :
436 //=================================================================================
437 void TransformationGUI_ScaleDlg::ValueChangedInSpinBox()
438 {
439   displayPreview();
440 }
441
442 //=================================================================================
443 // function : SetDoubleSpinBoxStep()
444 // purpose  : Double spin box management
445 //=================================================================================
446 void TransformationGUI_ScaleDlg::SetDoubleSpinBoxStep(double step)
447 {
448   SpinBox_FX->setSingleStep(step);
449   SpinBox_FY->setSingleStep(step);
450   SpinBox_FZ->setSingleStep(step);
451 }
452
453 //=================================================================================
454 // function : createOperation
455 // purpose  :
456 //=================================================================================
457 GEOM::GEOM_IOperations_ptr TransformationGUI_ScaleDlg::createOperation()
458 {
459   return getGeomEngine()->GetITransformOperations(getStudyId());
460 }
461
462 //=================================================================================
463 // function : isValid
464 // purpose  :
465 //=================================================================================
466 bool TransformationGUI_ScaleDlg::isValid (QString& msg)
467 {
468   // && !myPoint->_is_nil()
469   if (getConstructorId() == 0) {
470     bool ok = SpinBox_FX->isValid( msg, !IsPreview() );
471     return myObjects.length() > 0 && fabs(SpinBox_FX->value()) > 0.00001 && ok;
472   }
473
474   bool ok = true;
475   ok = SpinBox_FX->isValid( msg, !IsPreview() ) && ok;
476   ok = SpinBox_FY->isValid( msg, !IsPreview() ) && ok;
477   ok = SpinBox_FZ->isValid( msg, !IsPreview() ) && ok;
478   return myObjects.length() > 0 &&
479     fabs(SpinBox_FX->value()) > 0.00001 &&
480     fabs(SpinBox_FY->value()) > 0.00001 &&
481     fabs(SpinBox_FZ->value()) > 0.00001 && ok;
482 }
483
484 //=================================================================================
485 // function : execute
486 // purpose  :
487 //=================================================================================
488 bool TransformationGUI_ScaleDlg::execute (ObjectList& objects)
489 {
490   bool toCreateCopy = IsPreview() || CheckBoxCopy->isChecked();
491
492   GEOM::GEOM_Object_var anObj;
493
494   GEOM::GEOM_ITransformOperations_var anOper = GEOM::GEOM_ITransformOperations::_narrow(getOperation());
495
496   switch (getConstructorId())
497   {
498   case 0:
499     {
500       if (toCreateCopy)
501       {
502         for (int i = 0; i < myObjects.length(); i++)
503         {
504           anObj = anOper->ScaleShapeCopy(myObjects[i], myPoint, SpinBox_FX->value());
505           if (!anObj->_is_nil()) {
506             if(!IsPreview()) 
507               anObj->SetParameters(SpinBox_FX->text().toLatin1().constData());
508             objects.push_back(anObj._retn());
509           }
510         }
511       }
512       else
513       {
514         for (int i = 0; i < myObjects.length(); i++)
515         {
516           anObj = anOper->ScaleShape(myObjects[i], myPoint, SpinBox_FX->value());
517           if (!anObj->_is_nil())
518             objects.push_back(anObj._retn());
519         }
520       }
521     }
522     break;
523   case 1:
524     {
525       if (toCreateCopy)
526       {
527         for (int i = 0; i < myObjects.length(); i++)
528         {
529           anObj = anOper->ScaleShapeAlongAxesCopy(myObjects[i], myPoint, SpinBox_FX->value(),
530                                                   SpinBox_FY->value(), SpinBox_FZ->value());
531           if (!anObj->_is_nil())
532             if(!IsPreview()) {
533               QStringList aParameters;
534               aParameters<<SpinBox_FX->text();
535               aParameters<<SpinBox_FY->text();
536               aParameters<<SpinBox_FZ->text();
537               anObj->SetParameters(aParameters.join(":").toLatin1().constData());
538             }
539             objects.push_back(anObj._retn());
540         }
541       }
542       else
543       {
544         for (int i = 0; i < myObjects.length(); i++)
545         {
546           anObj = anOper->ScaleShapeAlongAxes(myObjects[i], myPoint, SpinBox_FX->value(),
547                                               SpinBox_FY->value(), SpinBox_FZ->value());
548           if (!anObj->_is_nil())
549             objects.push_back(anObj._retn());
550         }
551       }
552     }
553     break;
554   default:
555     break;
556   }
557
558   return true;
559 }
560
561 //=================================================================================
562 // function : restoreSubShapes
563 // purpose  :
564 //=================================================================================
565 void TransformationGUI_ScaleDlg::restoreSubShapes (SALOMEDS::Study_ptr   theStudy,
566                                                    SALOMEDS::SObject_ptr theSObject)
567 {
568   if (mainFrame()->CheckBoxRestoreSS->isChecked()) {
569     // empty list of arguments means that all arguments should be restored
570     getGeomEngine()->RestoreSubShapesSO(theStudy, theSObject, GEOM::ListOfGO(),
571                                         /*theFindMethod=*/GEOM::FSM_Transformed,
572                                         /*theInheritFirstArg=*/true,
573                                         mainFrame()->CheckBoxAddPrefix->isChecked());
574   }
575 }
576
577 //=================================================================================
578 // function :  CreateCopyModeChanged()
579 // purpose  :
580 //=================================================================================
581 void TransformationGUI_ScaleDlg::CreateCopyModeChanged (bool isCreateCopy)
582 {
583   mainFrame()->GroupBoxName->setEnabled(isCreateCopy);
584 }
585
586 //=================================================================================
587 // function : addSubshapesToStudy
588 // purpose  : virtual method to add new SubObjects if local selection
589 //=================================================================================
590 void TransformationGUI_ScaleDlg::addSubshapesToStudy()
591 {
592   bool toCreateCopy = IsPreview() || CheckBoxCopy->isChecked();
593   if (toCreateCopy)
594   {
595     if (!myPoint->_is_nil())
596     {
597       QMap<QString, GEOM::GEOM_Object_var> objMap;
598       objMap[LineEdit2->text()] = myPoint;
599       addSubshapesToFather(objMap);
600     }
601   }
602 }