Salome HOME
RNC: EDF 1618 Modified sketcher to allow creation of arcs of circle with the destinat...
[modules/geom.git] / src / OperationGUI / OperationGUI_FilletDlg.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   : OperationGUI_FilletDlg.cxx
25 // Author : Damien COQUERET, Open CASCADE S.A.S.
26 //
27 #include "OperationGUI_FilletDlg.h"
28
29 #include <DlgRef.h>
30 #include <GeometryGUI.h>
31 #include <GEOMBase.h>
32
33 #include <SUIT_Desktop.h>
34 #include <SUIT_Session.h>
35 #include <SUIT_ResourceMgr.h>
36 #include <SUIT_ViewWindow.h>
37 #include <SUIT_ViewManager.h>
38 #include <SalomeApp_Application.h>
39 #include <LightApp_SelectionMgr.h>
40 #include <OCCViewer_ViewModel.h>
41
42 // OCCT Includes
43 #include <TColStd_MapOfInteger.hxx>
44 #include <TColStd_IndexedMapOfInteger.hxx>
45
46 #include <GEOMImpl_Types.hxx>
47
48 //=================================================================================
49 // class    : OperationGUI_FilletDlg()
50 // purpose  : Constructs a OperationGUI_FilletDlg 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 OperationGUI_FilletDlg::OperationGUI_FilletDlg (GeometryGUI* theGeometryGUI, QWidget* parent)
56   : GEOMBase_Skeleton(theGeometryGUI, parent, false),
57     myInitial(true)
58 {
59   SUIT_ResourceMgr* aResMgr = myGeomGUI->getApp()->resourceMgr();
60   QPixmap image0 (aResMgr->loadPixmap("GEOM", tr("ICON_DLG_FILLET_ALL")));
61   QPixmap image1 (aResMgr->loadPixmap("GEOM", tr("ICON_DLG_FILLET_EDGE")));
62   QPixmap image2 (aResMgr->loadPixmap("GEOM", tr("ICON_DLG_FILLET_FACE")));
63
64   QPixmap iconSelect (aResMgr->loadPixmap("GEOM", tr("ICON_SELECT")));
65
66   setWindowTitle(tr("GEOM_FILLET_TITLE"));
67
68   /***************************************************************/
69   mainFrame()->GroupConstructors->setTitle(tr("GEOM_FILLET"));
70   mainFrame()->RadioButton1->setIcon(image0);
71   mainFrame()->RadioButton2->setIcon(image1);
72   mainFrame()->RadioButton3->setIcon(image2);
73
74   Group1 = new DlgRef_1Sel1Spin(centralWidget());
75   Group1->GroupBox1->setTitle(tr("GEOM_FILLET_ALL"));
76   Group1->TextLabel1->setText(tr("GEOM_MAIN_OBJECT"));
77   Group1->TextLabel2->setText(tr("GEOM_RADIUS"));
78   Group1->PushButton1->setIcon(iconSelect);
79   Group1->LineEdit1->setReadOnly(true);
80
81   Group2 = new DlgRef_2Sel3Spin2Rb(centralWidget());
82   Group2->GroupBox1->setTitle(tr("GEOM_FILLET_EDGES"));
83   Group2->TextLabel1->setText(tr("GEOM_MAIN_OBJECT"));
84   Group2->TextLabel2->setText(tr("SELECTED_EDGES"));
85   Group2->TextLabel3->setText(tr("GEOM_RADIUS"));
86   Group2->TextLabel4->setText(tr("GEOM_R1"));
87   Group2->TextLabel5->setText(tr("GEOM_R2"));
88   Group2->PushButton1->setIcon(iconSelect);
89   Group2->PushButton2->setIcon(iconSelect);
90   Group2->LineEdit1->setReadOnly(true);
91   Group2->LineEdit2->setReadOnly(true);
92
93   Group3 = new DlgRef_2Sel3Spin2Rb(centralWidget());
94   Group3->GroupBox1->setTitle(tr("GEOM_FILLET_FACES"));
95   Group3->TextLabel1->setText(tr("GEOM_MAIN_OBJECT"));
96   Group3->TextLabel2->setText(tr("SELECTED_FACES"));
97   Group3->TextLabel3->setText(tr("GEOM_RADIUS"));
98   Group3->TextLabel4->setText(tr("GEOM_R1"));
99   Group3->TextLabel5->setText(tr("GEOM_R2"));
100   Group3->PushButton1->setIcon(iconSelect);
101   Group3->PushButton2->setIcon(iconSelect);
102   Group3->LineEdit1->setReadOnly(true);
103   Group3->LineEdit2->setReadOnly(true);
104
105   QVBoxLayout* layout = new QVBoxLayout(centralWidget());
106   layout->setMargin(0); layout->setSpacing(6);
107   layout->addWidget(Group1);
108   layout->addWidget(Group2);
109   layout->addWidget(Group3);
110   /***************************************************************/
111
112   // Set range of spinboxes
113   double SpecificStep = 10.0;
114   initSpinBox(Group1->SpinBox_DX, 0.001, COORD_MAX, SpecificStep, "length_precision" );
115   initSpinBox(Group2->SpinBox_DX, 0.001, COORD_MAX, SpecificStep, "length_precision" );
116   initSpinBox(Group2->SpinBox_DY, 0.001, COORD_MAX, SpecificStep, "length_precision" );
117   initSpinBox(Group2->SpinBox_DZ, 0.001, COORD_MAX, SpecificStep, "length_precision" );
118   initSpinBox(Group3->SpinBox_DX, 0.001, COORD_MAX, SpecificStep, "length_precision" );
119   initSpinBox(Group3->SpinBox_DY, 0.001, COORD_MAX, SpecificStep, "length_precision" );
120   initSpinBox(Group3->SpinBox_DZ, 0.001, COORD_MAX, SpecificStep, "length_precision" );
121
122   setHelpFileName("fillet_operation_page.html");
123
124   // Initialisation
125   Init();
126 }
127
128 //=================================================================================
129 // function : ~OperationGUI_FilletDlg()
130 // purpose  : Destroys the object and frees any allocated resources
131 //=================================================================================
132 OperationGUI_FilletDlg::~OperationGUI_FilletDlg()
133 {
134 }
135
136 //=================================================================================
137 // function : Init()
138 // purpose  :
139 //=================================================================================
140 void OperationGUI_FilletDlg::Init()
141 {
142   // Set Initial values of spinboxes
143   Group1->SpinBox_DX->setValue(5);
144   Group2->SpinBox_DX->setValue(5);
145   Group2->SpinBox_DY->setValue(5);
146   Group2->SpinBox_DZ->setValue(5);
147   Group3->SpinBox_DX->setValue(5);
148   Group3->SpinBox_DY->setValue(5);
149   Group3->SpinBox_DZ->setValue(5);
150
151   // Clear line edits
152   Group1->LineEdit1->setText("");
153   Group2->LineEdit1->setText("");
154   Group2->LineEdit2->setText("");
155   Group3->LineEdit1->setText("");
156   Group3->LineEdit2->setText("");
157
158   myShape = GEOM::GEOM_Object::_nil();
159
160   myFaces.Clear();
161   myEdges.Clear();
162
163   // signals and slots connections
164
165   // main buttons
166   connect(buttonOk(),    SIGNAL(clicked()), this, SLOT(ClickOnOk()   ));
167   connect(buttonApply(), SIGNAL(clicked()), this, SLOT(ClickOnApply()));
168
169   // group box
170   connect(this,          SIGNAL(constructorsClicked(int)), this, SLOT(ConstructorsClicked(int)));
171
172   // push buttons
173   connect(Group1->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
174   connect(Group2->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
175   connect(Group3->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
176   connect(Group2->PushButton2, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
177   connect(Group3->PushButton2, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
178
179   // line edits
180   connect(Group1->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
181   connect(Group2->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
182   connect(Group3->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
183
184   // spin boxes
185   connect(Group1->SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox(double)));
186   connect(Group2->SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox(double)));
187   connect(Group2->SpinBox_DY, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox(double)));
188   connect(Group2->SpinBox_DZ, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox(double)));
189   connect(Group3->SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox(double)));
190   connect(Group3->SpinBox_DY, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox(double)));
191   connect(Group3->SpinBox_DZ, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox(double)));
192
193   // radio buttons
194   connect(Group2->RadioButton1, SIGNAL(clicked()), this, SLOT(RadioButtonClicked()));
195   connect(Group2->RadioButton2, SIGNAL(clicked()), this, SLOT(RadioButtonClicked()));
196   connect(Group3->RadioButton1, SIGNAL(clicked()), this, SLOT(RadioButtonClicked()));
197   connect(Group3->RadioButton2, SIGNAL(clicked()), this, SLOT(RadioButtonClicked()));
198
199   initName(tr("GEOM_FILLET"));
200
201   myConstructorId = -1;
202   ConstructorsClicked(0);
203 }
204
205 //=================================================================================
206 // function : ConstructorsClicked()
207 // purpose  : Radio button management
208 //=================================================================================
209 void OperationGUI_FilletDlg::ConstructorsClicked (int constructorId)
210 {
211   if (myGeomGUI->getApp()->desktop()->activeWindow()->getViewManager()->getType()
212       != OCCViewer_Viewer::Type()) {
213     mainFrame()->RadioButton1->setChecked(true);
214     return;
215   }
216
217   if (myConstructorId == constructorId)
218     return;
219
220   // Get radius from previous widget
221   QString R = "5", R1 = "5", R2 = "5";
222   if      (myConstructorId == 0) {
223     R = Group1->SpinBox_DX->text();
224   }
225   else if (myConstructorId == 1) {
226     R = Group2->SpinBox_DX->text();
227     R1 = Group2->SpinBox_DY->text();
228     R2 = Group2->SpinBox_DZ->text();
229   }
230   else {
231     R = Group3->SpinBox_DX->text();
232     R1 = Group3->SpinBox_DY->text();
233     R2 = Group3->SpinBox_DZ->text();
234   }
235
236   myConstructorId = constructorId;
237
238   switch (constructorId) {
239   case 0:
240     Group2->hide();
241     Group3->hide();
242     Group1->show();
243     Group1->SpinBox_DX->setText(R);
244     break;
245   case 1:
246     Group1->hide();
247     Group3->hide();
248     Group2->show();
249     Group2->SpinBox_DX->setText(R);
250     Group2->SpinBox_DY->setText(R1);
251     Group2->SpinBox_DZ->setText(R2);
252     break;
253   case 2:
254     Group1->hide();
255     Group2->hide();
256     Group3->show();
257     Group3->SpinBox_DX->setText(R);
258     Group3->SpinBox_DY->setText(R1);
259     Group3->SpinBox_DZ->setText(R2);
260     break;
261   default:
262     break;
263   }
264
265   if      (constructorId == 0) Group1->PushButton1->click();
266   else if (constructorId == 1) Group2->PushButton1->click();
267   else                         Group3->PushButton1->click();
268
269   enableWidgets();
270
271   if (myInitial) {
272     myInitial = false;
273     SelectionIntoArgument();
274   }
275   else {
276     if (!myShape->_is_nil()) {
277       myEditCurrentArgument->setText(GEOMBase::GetName(myShape));
278       GEOMBase_Skeleton::LineEditReturnPressed();
279       switch (getConstructorId()) {
280       case 1:
281         if (myEdges.Extent() == 0)
282           Group2->PushButton2->click();
283         break;
284       case 2:
285         if (myFaces.Extent() == 0)
286           Group3->PushButton2->click();
287         break;
288       default:
289         break;
290       }
291     }
292     else
293       myEditCurrentArgument->setText("");
294
295     displayPreview();
296   }
297
298   qApp->processEvents();
299   updateGeometry();
300   resize(minimumSizeHint());
301   SelectionIntoArgument();
302 }
303
304 //=================================================================================
305 // function : ClickOnOk()
306 // purpose  :
307 //=================================================================================
308 void OperationGUI_FilletDlg::ClickOnOk()
309 {
310   if (ClickOnApply())
311     ClickOnCancel();
312 }
313
314 //=================================================================================
315 // function : ClickOnApply()
316 // purpose  :
317 //=================================================================================
318 bool OperationGUI_FilletDlg::ClickOnApply()
319 {
320   if (!onAccept())
321     return false;
322
323   initName();
324   // activate selection and connect selection manager
325   ConstructorsClicked(getConstructorId());
326   return true;
327 }
328
329 //=================================================================================
330 // function : SelectionIntoArgument()
331 // purpose  : Called when selection is changed or on dialog initialization or activation
332 //=================================================================================
333 void OperationGUI_FilletDlg::SelectionIntoArgument()
334 {
335   erasePreview();
336   myEditCurrentArgument->setText("");
337
338   LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
339   SALOME_ListIO aSelList;
340   aSelMgr->selectedObjects(aSelList);
341
342   // If selection of main object is activated
343   if (myEditCurrentArgument == Group1->LineEdit1 ||
344       myEditCurrentArgument == Group2->LineEdit1 ||
345       myEditCurrentArgument == Group3->LineEdit1)
346   {
347     myShape = GEOM::GEOM_Object::_nil();
348     if (aSelList.Extent() == 1) {
349       Standard_Boolean aResult = Standard_False;
350       GEOM::GEOM_Object_var anObj =
351         GEOMBase::ConvertIOinGEOMObject(aSelList.First(), aResult);
352
353       if (aResult && !anObj->_is_nil()) {
354         myShape = anObj;
355         myEditCurrentArgument->setText(GEOMBase::GetName(anObj));
356         displayPreview();
357       }
358     }
359
360     enableWidgets();
361   }
362   // If face or edge selection is activated
363   else if (myEditCurrentArgument == Group2->LineEdit2 ||
364            myEditCurrentArgument == Group3->LineEdit2)
365   {
366     if (myEditCurrentArgument == Group2->LineEdit2) myEdges.Clear();
367     else myFaces.Clear();
368     if (aSelList.Extent() == 1) {
369       Standard_Boolean aResult = Standard_False;
370       GEOM::GEOM_Object_var anObj =
371         GEOMBase::ConvertIOinGEOMObject(aSelList.First(), aResult);
372
373       if (aResult && !anObj->_is_nil()) {
374         TColStd_IndexedMapOfInteger anIndexes;
375         aSelMgr->GetIndexes(aSelList.First(), anIndexes);
376
377         if (anIndexes.Extent() > 0) {
378           QString aName;
379           if (anIndexes.Extent() == 1) {
380             int anIndex = anIndexes(1);
381
382             aName = QString(GEOMBase::GetName(anObj)) + QString(":%1").arg(anIndex);
383           }
384           else {
385             aName = tr("GEOM_MEN_POPUP_NAME").arg(anIndexes.Extent());
386           }
387
388           myEditCurrentArgument->setText(aName);
389
390           if (myConstructorId == 1)
391             myEdges = anIndexes;
392           else
393             myFaces = anIndexes;
394
395           displayPreview();
396         }
397       }
398     }
399   }
400
401   // clear selection
402   if (!(myEditCurrentArgument == Group2->LineEdit2 ||
403         myEditCurrentArgument == Group3->LineEdit2)) {
404     disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
405     myGeomGUI->getApp()->selectionMgr()->clearSelected();
406     connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
407             this, SLOT(SelectionIntoArgument()));
408   }
409
410   switch (getConstructorId()) {
411   case 1:
412     if (myEditCurrentArgument == Group2->LineEdit1) {
413       if (!myShape->_is_nil() && myEdges.Extent() == 0)
414         Group2->PushButton2->click();
415     }
416     break;
417   case 2:
418     if (myEditCurrentArgument == Group3->LineEdit1) {
419       if (!myShape->_is_nil() && myFaces.Extent() == 0)
420         Group3->PushButton2->click();
421     }
422     break;
423   default:
424     break;
425   }
426 }
427
428 //=================================================================================
429 // function : SetEditCurrentArgument()
430 // purpose  :
431 //=================================================================================
432 void OperationGUI_FilletDlg::SetEditCurrentArgument()
433 {
434   QPushButton* send = (QPushButton*)sender();
435
436   if (send == Group1->PushButton1) {
437     myEditCurrentArgument = Group1->LineEdit1;
438   }
439   else if (send == Group2->PushButton1) {
440     myEditCurrentArgument = Group2->LineEdit1;
441     Group2->PushButton2->setDown(false);
442     Group2->LineEdit2->setEnabled(false);
443   }
444   else if (send == Group2->PushButton2) {
445     myEditCurrentArgument = Group2->LineEdit2;
446     Group2->PushButton1->setDown(false);
447     Group2->LineEdit1->setEnabled(false);
448   }
449   else if (send == Group3->PushButton1) {
450     myEditCurrentArgument = Group3->LineEdit1;
451     Group3->PushButton2->setDown(false);
452     Group3->LineEdit2->setEnabled(false);
453   }
454   else if (send == Group3->PushButton2) {
455     myEditCurrentArgument = Group3->LineEdit2;
456     Group3->PushButton1->setDown(false);
457     Group3->LineEdit1->setEnabled(false);
458   }
459
460   // enable line edit
461   myEditCurrentArgument->setEnabled(true);
462   myEditCurrentArgument->setFocus();
463   // after setFocus(), because it will be setDown(false) when loses focus
464   send->setDown(true);
465
466   activateSelection();
467
468   // seems we need it only to avoid preview disappearing, caused by selection mode change
469   displayPreview();
470 }
471
472 //=================================================================================
473 // function : LineEditReturnPressed()
474 // purpose  :
475 //=================================================================================
476 void OperationGUI_FilletDlg::LineEditReturnPressed()
477 {
478   QLineEdit* send = (QLineEdit*)sender();
479
480   if (send == Group1->LineEdit1)
481     myEditCurrentArgument = Group1->LineEdit1;
482   else if (send == Group2->LineEdit1)
483     myEditCurrentArgument = Group2->LineEdit1;
484   else if (send == Group3->LineEdit1)
485     myEditCurrentArgument = Group3->LineEdit1;
486   else
487     return;
488
489   GEOMBase_Skeleton::LineEditReturnPressed();
490 }
491
492 //=================================================================================
493 // function : ActivateThisDialog()
494 // purpose  :
495 //=================================================================================
496 void OperationGUI_FilletDlg::ActivateThisDialog()
497 {
498   GEOMBase_Skeleton::ActivateThisDialog();
499   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
500            this, SLOT( SelectionIntoArgument() ) );
501
502   ConstructorsClicked( getConstructorId() );
503 }
504
505 //=================================================================================
506 // function : enterEvent()
507 // purpose  :
508 //=================================================================================
509 void OperationGUI_FilletDlg::enterEvent (QEvent*)
510 {
511   if (!mainFrame()->GroupConstructors->isEnabled())
512     this->ActivateThisDialog();
513 }
514
515 //=================================================================================
516 // function : ValueChangedInSpinBox()
517 // purpose  :
518 //=================================================================================
519 void OperationGUI_FilletDlg::ValueChangedInSpinBox (double)
520 {
521   displayPreview();
522 }
523
524 //=================================================================================
525 // function : activateSelection
526 // purpose  : Activate selection in accordance with myEditCurrentArgument
527 //=================================================================================
528 void OperationGUI_FilletDlg::activateSelection()
529 {
530   disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
531
532   if (!myShape->_is_nil() && myEditCurrentArgument == Group2->LineEdit2)
533     localSelection(myShape, TopAbs_EDGE);
534   else if (!myShape->_is_nil() && myEditCurrentArgument == Group3->LineEdit2)
535     localSelection(myShape, TopAbs_FACE);
536   else {
537     TColStd_MapOfInteger aMap;
538     aMap.Add(GEOM_SHELL);
539     aMap.Add(GEOM_SOLID);
540     aMap.Add(GEOM_COMPOUND);
541     globalSelection(aMap);
542   }
543
544   connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
545           this, SLOT(SelectionIntoArgument()));
546 }
547
548 //=================================================================================
549 // function : enableWidgets
550 // purpose  : Enable widgets of faces in accordance with value of main object
551 //=================================================================================
552 void OperationGUI_FilletDlg::enableWidgets()
553 {
554   int anId = getConstructorId();
555
556   bool toEnable = !myShape->_is_nil();
557
558   if (anId == 1) {
559     //Group2->LineEdit2->setEnabled(toEnable);
560     Group2->PushButton2->setEnabled(toEnable);
561
562     if (!toEnable) {
563       Group2->LineEdit2->setText("");
564       myEdges.Clear();
565     }
566   }
567   else if (anId == 2) {
568     //Group3->LineEdit2->setEnabled(toEnable);
569     Group3->PushButton2->setEnabled(toEnable);
570
571     if (!toEnable) {
572       Group3->LineEdit2->setText("");
573       myFaces.Clear();
574     }
575   }
576 }
577
578 //=================================================================================
579 // function : createOperation
580 // purpose  :
581 //=================================================================================
582 GEOM::GEOM_IOperations_ptr OperationGUI_FilletDlg::createOperation()
583 {
584   return getGeomEngine()->GetILocalOperations(getStudyId());
585 }
586
587 //=================================================================================
588 // function : isValid()
589 // purpose  : Verify validity of input data
590 //=================================================================================
591 bool OperationGUI_FilletDlg::isValid (QString& msg)
592 {
593   bool ok = true;
594   switch (getConstructorId())
595   {
596     case 0:
597       ok = Group1->SpinBox_DX->isValid( msg, !IsPreview() ) && ok;
598       return !myShape->_is_nil() && ok;
599     case 1:
600       if (Group2->RadioButton1->isChecked())
601         ok = Group2->SpinBox_DX->isValid( msg, !IsPreview() );
602       else
603       {
604         ok = Group2->SpinBox_DY->isValid( msg, !IsPreview() ) && ok;
605         ok = Group2->SpinBox_DZ->isValid( msg, !IsPreview() ) && ok;
606       }
607       return !myShape->_is_nil() && myEdges.Extent() > 0 && ok;
608     case 2:
609       if (Group3->RadioButton1->isChecked())
610         ok = Group3->SpinBox_DX->isValid( msg, !IsPreview() );
611       else
612       {
613         ok = Group3->SpinBox_DY->isValid( msg, !IsPreview() ) && ok;
614         ok = Group3->SpinBox_DZ->isValid( msg, !IsPreview() ) && ok;
615       }
616       return !myShape->_is_nil() && myFaces.Extent() > 0 && ok;
617     default: return false;
618   }
619 }
620
621 //=================================================================================
622 // function : execute
623 // purpose  :
624 //=================================================================================
625 bool OperationGUI_FilletDlg::execute (ObjectList& objects)
626 {
627   QStringList aParameters;
628   GEOM::GEOM_Object_var anObj;
629
630   int anId = getConstructorId();
631
632   GEOM::GEOM_ILocalOperations_var anOper = GEOM::GEOM_ILocalOperations::_narrow(getOperation());
633
634   if (anId == 0) {
635     anObj = anOper->MakeFilletAll(myShape, getRadius());
636     if (!anObj->_is_nil())
637       aParameters << Group1->SpinBox_DX->text();
638   }
639   else if (anId == 1) {
640     GEOM::ListOfLong_var aList = new GEOM::ListOfLong;
641     aList->length(myEdges.Extent());
642
643     for (int i = 1, n = myEdges.Extent(); i <= n; i++)
644       aList[ i - 1 ] = myEdges(i);
645
646     if (Group2->RadioButton1->isChecked())
647     {
648       anObj = anOper->MakeFilletEdges(myShape, getRadius(), aList);
649       if (!anObj->_is_nil())
650         aParameters << Group2->SpinBox_DX->text();
651     }
652     else
653     {
654       anObj = anOper->MakeFilletEdgesR1R2(myShape,
655                                           Group2->SpinBox_DY->value(),
656                                           Group2->SpinBox_DZ->value(),
657                                           aList);
658       if (!anObj->_is_nil())
659       {
660         aParameters << Group2->SpinBox_DY->text();
661         aParameters << Group2->SpinBox_DZ->text();
662       }
663     }
664   }
665   else if (anId == 2) {
666     GEOM::ListOfLong_var aList = new GEOM::ListOfLong;
667     aList->length(myFaces.Extent());
668
669     for (int i = 1, n = myFaces.Extent(); i <= n; i++)
670       aList[ i - 1 ] = myFaces(i);
671
672     if (Group3->RadioButton1->isChecked()) {
673       anObj = anOper->MakeFilletFaces(myShape, getRadius(), aList);
674       if (!anObj->_is_nil())
675         aParameters << Group3->SpinBox_DX->text();
676     }
677     else {
678       anObj = anOper->MakeFilletFacesR1R2(myShape,
679                                           Group3->SpinBox_DY->value(),
680                                           Group3->SpinBox_DZ->value(), aList);
681       if (!anObj->_is_nil())
682       {
683         aParameters << Group3->SpinBox_DY->text();
684         aParameters << Group3->SpinBox_DZ->text();
685       }
686     }
687   }
688
689   if (!anObj->_is_nil())
690   {
691     if (!IsPreview())
692       anObj->SetParameters(aParameters.join(":").toLatin1().constData());
693     objects.push_back(anObj._retn());
694   }
695
696   return true;
697 }
698
699 //=================================================================================
700 // function : getRadius
701 // purpose  : Get radius
702 //=================================================================================
703 double OperationGUI_FilletDlg::getRadius() const
704 {
705   int anId = getConstructorId();
706   if      (anId == 0) return Group1->SpinBox_DX->value();
707   else if (anId == 1) return Group2->SpinBox_DX->value();
708   else                return Group3->SpinBox_DX->value();
709 }
710
711 //=================================================================================
712 // function : RadiobuttonClicked
713 // purpose  :
714 //=================================================================================
715 void OperationGUI_FilletDlg::RadioButtonClicked()
716 {
717   const QObject* s = sender();
718
719   bool flag = s == Group2->RadioButton1 || s == Group3->RadioButton1;
720
721   Group2->RadioButton1->blockSignals(true);
722   Group2->RadioButton2->blockSignals(true);
723   Group3->RadioButton1->blockSignals(true);
724   Group3->RadioButton2->blockSignals(true);
725
726   Group2->SpinBox_DX->setEnabled(flag);
727   Group2->SpinBox_DY->setEnabled(!flag);
728   Group2->SpinBox_DZ->setEnabled(!flag);
729   Group2->RadioButton1->setChecked(flag);
730   Group2->RadioButton2->setChecked(!flag);
731   Group3->SpinBox_DX->setEnabled(flag);
732   Group3->SpinBox_DY->setEnabled(!flag);
733   Group3->SpinBox_DZ->setEnabled(!flag);
734   Group3->RadioButton1->setChecked(flag);
735   Group3->RadioButton2->setChecked(!flag);
736
737   Group2->RadioButton1->blockSignals(false);
738   Group2->RadioButton2->blockSignals(false);
739   Group3->RadioButton1->blockSignals(false);
740   Group3->RadioButton2->blockSignals(false);
741
742   displayPreview();
743 }