Salome HOME
Merge from V5_1_main branch 24/11/2010
[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 }
302
303 //=================================================================================
304 // function : ClickOnOk()
305 // purpose  :
306 //=================================================================================
307 void OperationGUI_FilletDlg::ClickOnOk()
308 {
309   if (ClickOnApply())
310     ClickOnCancel();
311 }
312
313 //=================================================================================
314 // function : ClickOnApply()
315 // purpose  :
316 //=================================================================================
317 bool OperationGUI_FilletDlg::ClickOnApply()
318 {
319   if (!onAccept())
320     return false;
321
322   initName();
323   // activate selection and connect selection manager
324   ConstructorsClicked(getConstructorId());
325   return true;
326 }
327
328 //=================================================================================
329 // function : SelectionIntoArgument()
330 // purpose  : Called when selection is changed or on dialog initialization or activation
331 //=================================================================================
332 void OperationGUI_FilletDlg::SelectionIntoArgument()
333 {
334   erasePreview();
335   myEditCurrentArgument->setText("");
336
337   LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
338   SALOME_ListIO aSelList;
339   aSelMgr->selectedObjects(aSelList);
340
341   // If selection of main object is activated
342   if (myEditCurrentArgument == Group1->LineEdit1 ||
343       myEditCurrentArgument == Group2->LineEdit1 ||
344       myEditCurrentArgument == Group3->LineEdit1)
345   {
346     myShape = GEOM::GEOM_Object::_nil();
347     if (aSelList.Extent() == 1) {
348       Standard_Boolean aResult = Standard_False;
349       GEOM::GEOM_Object_var anObj =
350         GEOMBase::ConvertIOinGEOMObject(aSelList.First(), aResult);
351
352       if (aResult && !anObj->_is_nil()) {
353         myShape = anObj;
354         myEditCurrentArgument->setText(GEOMBase::GetName(anObj));
355         displayPreview();
356       }
357     }
358
359     enableWidgets();
360   }
361   // If face or edge selection is activated
362   else if (myEditCurrentArgument == Group2->LineEdit2 ||
363            myEditCurrentArgument == Group3->LineEdit2)
364   {
365     if (myEditCurrentArgument == Group2->LineEdit2) myEdges.Clear();
366     else myFaces.Clear();
367     if (aSelList.Extent() == 1) {
368       Standard_Boolean aResult = Standard_False;
369       GEOM::GEOM_Object_var anObj =
370         GEOMBase::ConvertIOinGEOMObject(aSelList.First(), aResult);
371
372       if (aResult && !anObj->_is_nil()) {
373         TColStd_IndexedMapOfInteger anIndexes;
374         aSelMgr->GetIndexes(aSelList.First(), anIndexes);
375
376         if (anIndexes.Extent() > 0) {
377           QString aName;
378           if (anIndexes.Extent() == 1) {
379             int anIndex = anIndexes(1);
380
381             aName = QString(GEOMBase::GetName(anObj)) + QString(":%1").arg(anIndex);
382           }
383           else {
384             aName = tr("GEOM_MEN_POPUP_NAME").arg(anIndexes.Extent());
385           }
386
387           myEditCurrentArgument->setText(aName);
388
389           if (myConstructorId == 1)
390             myEdges = anIndexes;
391           else
392             myFaces = anIndexes;
393
394           displayPreview();
395         }
396       }
397     }
398   }
399
400   // clear selection of the faces or edges
401   if (!(myEditCurrentArgument == Group2->LineEdit2 ||
402         myEditCurrentArgument == Group3->LineEdit2)) {
403     disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
404     myGeomGUI->getApp()->selectionMgr()->clearSelected();
405     connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
406             this, SLOT(SelectionIntoArgument()));
407   }
408
409   switch (getConstructorId()) {
410   case 1:
411     if (myEditCurrentArgument == Group2->LineEdit1) {
412       if (!myShape->_is_nil() && myEdges.Extent() == 0)
413         Group2->PushButton2->click();
414     }
415     break;
416   case 2:
417     if (myEditCurrentArgument == Group3->LineEdit1) {
418       if (!myShape->_is_nil() && myFaces.Extent() == 0)
419         Group3->PushButton2->click();
420     }
421     break;
422   default:
423     break;
424   }
425
426   //rnv: To fix the bug IPAL22041 TC5.1.5: "Fillet Construcion" dialog loses current selection.
427   // Restore selection of the main shape, if need,
428   // because it was canceled.
429   aSelMgr->selectedObjects(aSelList);
430   if (aSelList.Extent() == 0 && !myShape->_is_nil()) {
431     disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
432     ObjectList list;
433         list.push_back(myShape);
434     selectObjects(list);
435     connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
436             this, SLOT(SelectionIntoArgument()));
437   }
438 }
439
440 //=================================================================================
441 // function : SetEditCurrentArgument()
442 // purpose  :
443 //=================================================================================
444 void OperationGUI_FilletDlg::SetEditCurrentArgument()
445 {
446   QPushButton* send = (QPushButton*)sender();
447
448   if (send == Group1->PushButton1) {
449     myEditCurrentArgument = Group1->LineEdit1;
450   }
451   else if (send == Group2->PushButton1) {
452     myEditCurrentArgument = Group2->LineEdit1;
453     Group2->PushButton2->setDown(false);
454     Group2->LineEdit2->setEnabled(false);
455   }
456   else if (send == Group2->PushButton2) {
457     myEditCurrentArgument = Group2->LineEdit2;
458     Group2->PushButton1->setDown(false);
459     Group2->LineEdit1->setEnabled(false);
460   }
461   else if (send == Group3->PushButton1) {
462     myEditCurrentArgument = Group3->LineEdit1;
463     Group3->PushButton2->setDown(false);
464     Group3->LineEdit2->setEnabled(false);
465   }
466   else if (send == Group3->PushButton2) {
467     myEditCurrentArgument = Group3->LineEdit2;
468     Group3->PushButton1->setDown(false);
469     Group3->LineEdit1->setEnabled(false);
470   }
471
472   // enable line edit
473   myEditCurrentArgument->setEnabled(true);
474   myEditCurrentArgument->setFocus();
475   // after setFocus(), because it will be setDown(false) when loses focus
476   send->setDown(true);
477
478   activateSelection();
479
480   // seems we need it only to avoid preview disappearing, caused by selection mode change
481   displayPreview();
482 }
483
484 //=================================================================================
485 // function : LineEditReturnPressed()
486 // purpose  :
487 //=================================================================================
488 void OperationGUI_FilletDlg::LineEditReturnPressed()
489 {
490   QLineEdit* send = (QLineEdit*)sender();
491
492   if (send == Group1->LineEdit1)
493     myEditCurrentArgument = Group1->LineEdit1;
494   else if (send == Group2->LineEdit1)
495     myEditCurrentArgument = Group2->LineEdit1;
496   else if (send == Group3->LineEdit1)
497     myEditCurrentArgument = Group3->LineEdit1;
498   else
499     return;
500
501   GEOMBase_Skeleton::LineEditReturnPressed();
502 }
503
504 //=================================================================================
505 // function : ActivateThisDialog()
506 // purpose  :
507 //=================================================================================
508 void OperationGUI_FilletDlg::ActivateThisDialog()
509 {
510   GEOMBase_Skeleton::ActivateThisDialog();
511   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
512            this, SLOT( SelectionIntoArgument() ) );
513
514   ConstructorsClicked( getConstructorId() );
515 }
516
517 //=================================================================================
518 // function : enterEvent()
519 // purpose  :
520 //=================================================================================
521 void OperationGUI_FilletDlg::enterEvent (QEvent*)
522 {
523   if (!mainFrame()->GroupConstructors->isEnabled())
524     this->ActivateThisDialog();
525 }
526
527 //=================================================================================
528 // function : ValueChangedInSpinBox()
529 // purpose  :
530 //=================================================================================
531 void OperationGUI_FilletDlg::ValueChangedInSpinBox (double)
532 {
533   displayPreview();
534 }
535
536 //=================================================================================
537 // function : activateSelection
538 // purpose  : Activate selection in accordance with myEditCurrentArgument
539 //=================================================================================
540 void OperationGUI_FilletDlg::activateSelection()
541 {
542   disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
543
544   if (!myShape->_is_nil() && myEditCurrentArgument == Group2->LineEdit2)
545     localSelection(myShape, TopAbs_EDGE);
546   else if (!myShape->_is_nil() && myEditCurrentArgument == Group3->LineEdit2)
547     localSelection(myShape, TopAbs_FACE);
548   else {
549     TColStd_MapOfInteger aMap;
550     aMap.Add(GEOM_SHELL);
551     aMap.Add(GEOM_SOLID);
552     aMap.Add(GEOM_COMPOUND);
553     globalSelection(aMap);
554   }
555
556   connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
557           this, SLOT(SelectionIntoArgument()));
558 }
559
560 //=================================================================================
561 // function : enableWidgets
562 // purpose  : Enable widgets of faces in accordance with value of main object
563 //=================================================================================
564 void OperationGUI_FilletDlg::enableWidgets()
565 {
566   int anId = getConstructorId();
567
568   bool toEnable = !myShape->_is_nil();
569
570   if (anId == 1) {
571     //Group2->LineEdit2->setEnabled(toEnable);
572     Group2->PushButton2->setEnabled(toEnable);
573
574     if (!toEnable) {
575       Group2->LineEdit2->setText("");
576       myEdges.Clear();
577     }
578   }
579   else if (anId == 2) {
580     //Group3->LineEdit2->setEnabled(toEnable);
581     Group3->PushButton2->setEnabled(toEnable);
582
583     if (!toEnable) {
584       Group3->LineEdit2->setText("");
585       myFaces.Clear();
586     }
587   }
588 }
589
590 //=================================================================================
591 // function : createOperation
592 // purpose  :
593 //=================================================================================
594 GEOM::GEOM_IOperations_ptr OperationGUI_FilletDlg::createOperation()
595 {
596   return getGeomEngine()->GetILocalOperations(getStudyId());
597 }
598
599 //=================================================================================
600 // function : isValid()
601 // purpose  : Verify validity of input data
602 //=================================================================================
603 bool OperationGUI_FilletDlg::isValid (QString& msg)
604 {
605   bool ok = true;
606   switch (getConstructorId())
607   {
608     case 0:
609       ok = Group1->SpinBox_DX->isValid( msg, !IsPreview() ) && ok;
610       return !myShape->_is_nil() && ok;
611     case 1:
612       if (Group2->RadioButton1->isChecked())
613         ok = Group2->SpinBox_DX->isValid( msg, !IsPreview() );
614       else
615       {
616         ok = Group2->SpinBox_DY->isValid( msg, !IsPreview() ) && ok;
617         ok = Group2->SpinBox_DZ->isValid( msg, !IsPreview() ) && ok;
618       }
619       return !myShape->_is_nil() && myEdges.Extent() > 0 && ok;
620     case 2:
621       if (Group3->RadioButton1->isChecked())
622         ok = Group3->SpinBox_DX->isValid( msg, !IsPreview() );
623       else
624       {
625         ok = Group3->SpinBox_DY->isValid( msg, !IsPreview() ) && ok;
626         ok = Group3->SpinBox_DZ->isValid( msg, !IsPreview() ) && ok;
627       }
628       return !myShape->_is_nil() && myFaces.Extent() > 0 && ok;
629     default: return false;
630   }
631 }
632
633 //=================================================================================
634 // function : execute
635 // purpose  :
636 //=================================================================================
637 bool OperationGUI_FilletDlg::execute (ObjectList& objects)
638 {
639   QStringList aParameters;
640   GEOM::GEOM_Object_var anObj;
641
642   int anId = getConstructorId();
643
644   GEOM::GEOM_ILocalOperations_var anOper = GEOM::GEOM_ILocalOperations::_narrow(getOperation());
645
646   if (anId == 0) {
647     anObj = anOper->MakeFilletAll(myShape, getRadius());
648     if (!anObj->_is_nil())
649       aParameters << Group1->SpinBox_DX->text();
650   }
651   else if (anId == 1) {
652     GEOM::ListOfLong_var aList = new GEOM::ListOfLong;
653     aList->length(myEdges.Extent());
654
655     for (int i = 1, n = myEdges.Extent(); i <= n; i++)
656       aList[ i - 1 ] = myEdges(i);
657
658     if (Group2->RadioButton1->isChecked())
659     {
660       anObj = anOper->MakeFilletEdges(myShape, getRadius(), aList);
661       if (!anObj->_is_nil())
662         aParameters << Group2->SpinBox_DX->text();
663     }
664     else
665     {
666       anObj = anOper->MakeFilletEdgesR1R2(myShape,
667                                           Group2->SpinBox_DY->value(),
668                                           Group2->SpinBox_DZ->value(),
669                                           aList);
670       if (!anObj->_is_nil())
671       {
672         aParameters << Group2->SpinBox_DY->text();
673         aParameters << Group2->SpinBox_DZ->text();
674       }
675     }
676   }
677   else if (anId == 2) {
678     GEOM::ListOfLong_var aList = new GEOM::ListOfLong;
679     aList->length(myFaces.Extent());
680
681     for (int i = 1, n = myFaces.Extent(); i <= n; i++)
682       aList[ i - 1 ] = myFaces(i);
683
684     if (Group3->RadioButton1->isChecked()) {
685       anObj = anOper->MakeFilletFaces(myShape, getRadius(), aList);
686       if (!anObj->_is_nil())
687         aParameters << Group3->SpinBox_DX->text();
688     }
689     else {
690       anObj = anOper->MakeFilletFacesR1R2(myShape,
691                                           Group3->SpinBox_DY->value(),
692                                           Group3->SpinBox_DZ->value(), aList);
693       if (!anObj->_is_nil())
694       {
695         aParameters << Group3->SpinBox_DY->text();
696         aParameters << Group3->SpinBox_DZ->text();
697       }
698     }
699   }
700
701   if (!anObj->_is_nil())
702   {
703     if (!IsPreview())
704       anObj->SetParameters(aParameters.join(":").toLatin1().constData());
705     objects.push_back(anObj._retn());
706   }
707
708   return true;
709 }
710
711 //=================================================================================
712 // function : getRadius
713 // purpose  : Get radius
714 //=================================================================================
715 double OperationGUI_FilletDlg::getRadius() const
716 {
717   int anId = getConstructorId();
718   if      (anId == 0) return Group1->SpinBox_DX->value();
719   else if (anId == 1) return Group2->SpinBox_DX->value();
720   else                return Group3->SpinBox_DX->value();
721 }
722
723 //=================================================================================
724 // function : RadiobuttonClicked
725 // purpose  :
726 //=================================================================================
727 void OperationGUI_FilletDlg::RadioButtonClicked()
728 {
729   const QObject* s = sender();
730
731   bool flag = s == Group2->RadioButton1 || s == Group3->RadioButton1;
732
733   Group2->RadioButton1->blockSignals(true);
734   Group2->RadioButton2->blockSignals(true);
735   Group3->RadioButton1->blockSignals(true);
736   Group3->RadioButton2->blockSignals(true);
737
738   Group2->SpinBox_DX->setEnabled(flag);
739   Group2->SpinBox_DY->setEnabled(!flag);
740   Group2->SpinBox_DZ->setEnabled(!flag);
741   Group2->RadioButton1->setChecked(flag);
742   Group2->RadioButton2->setChecked(!flag);
743   Group3->SpinBox_DX->setEnabled(flag);
744   Group3->SpinBox_DY->setEnabled(!flag);
745   Group3->SpinBox_DZ->setEnabled(!flag);
746   Group3->RadioButton1->setChecked(flag);
747   Group3->RadioButton2->setChecked(!flag);
748
749   Group2->RadioButton1->blockSignals(false);
750   Group2->RadioButton2->blockSignals(false);
751   Group3->RadioButton1->blockSignals(false);
752   Group3->RadioButton2->blockSignals(false);
753
754   displayPreview();
755 }