]> SALOME platform Git repositories - modules/geom.git/blob - src/RepairGUI/RepairGUI_LimitToleranceDlg.cxx
Salome HOME
0021189: [CEA 451] areCoordsInside implementation in GE
[modules/geom.git] / src / RepairGUI / RepairGUI_LimitToleranceDlg.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 //  GEOM RepairGUI : GUI for Geometry component
23 //  File   : RepairGUI_LimitToleranceDlg.cxx
24
25 #include "RepairGUI_LimitToleranceDlg.h"
26
27 #include <DlgRef.h>
28 #include <GeometryGUI.h>
29 #include <GEOMBase.h>
30 #include <SalomeApp_DoubleSpinBox.h>
31
32 #include <SalomeApp_Application.h>
33 #include <LightApp_SelectionMgr.h>
34 #include <SalomeApp_Study.h>
35 #include <SalomeApp_Tools.h>
36 #include <SUIT_Session.h>
37 #include <SUIT_Desktop.h>
38 #include <SUIT_MessageBox.h>
39 #include <SUIT_OverrideCursor.h>
40 #include <SUIT_ResourceMgr.h>
41 #include <SUIT_ViewWindow.h>
42 #include <SUIT_ViewManager.h>
43 #include <OCCViewer_ViewModel.h>
44 #include <SALOME_ListIteratorOfListIO.hxx>
45
46 #include <GEOMImpl_Types.hxx>
47
48 #include <TCollection_AsciiString.hxx>
49
50 #define DEFAULT_TOLERANCE_VALUE 1e-07
51
52 //=================================================================================
53 // class    : RepairGUI_LimitToleranceDlg()
54 // purpose  : Constructs a RepairGUI_LimitToleranceDlg  which is a child of 'parent', with the
55 //            name 'name' and widget flags set to 'f'.
56 //            The dialog will by default be modeless, unless you set 'modal' to
57 //            TRUE to construct a modal dialog.
58 //=================================================================================
59 RepairGUI_LimitToleranceDlg::RepairGUI_LimitToleranceDlg(GeometryGUI* theGeometryGUI,
60                                                          QWidget* parent, bool modal)
61   : GEOMBase_Skeleton(theGeometryGUI, parent, modal)
62 {
63   QPixmap image0 (SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM", tr("ICON_DLG_LIMIT_TOLERANCE")));
64   QPixmap image1 (SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM", tr("ICON_SELECT")));
65
66   setWindowTitle(tr("GEOM_LIMIT_TOLERANCE_TITLE"));
67
68   /***************************************************************/
69   mainFrame()->GroupConstructors->setTitle(tr("GEOM_LIMIT_TOLERANCE_TITLE"));
70   mainFrame()->RadioButton1->setIcon(image0);
71   mainFrame()->RadioButton2->setAttribute(Qt::WA_DeleteOnClose);
72   mainFrame()->RadioButton3->setAttribute(Qt::WA_DeleteOnClose);
73   mainFrame()->RadioButton2->close();
74   mainFrame()->RadioButton3->close();
75
76   GroupPoints = new DlgRef_1SelExt(centralWidget());
77   GroupPoints->GroupBox1->setTitle(tr("GEOM_ARGUMENTS"));
78   GroupPoints->TextLabel1->setText(tr("GEOM_SELECTED_SHAPE"));
79   GroupPoints->PushButton1->setIcon(image1);
80   GroupPoints->LineEdit1->setReadOnly(true);
81
82   QLabel* aTolLab = new QLabel(tr("GEOM_TOLERANCE"), GroupPoints->Box);
83   myTolEdt = new SalomeApp_DoubleSpinBox(GroupPoints->Box);
84   initSpinBox(myTolEdt, 0., 100., DEFAULT_TOLERANCE_VALUE, "len_tol_precision");
85   myTolEdt->setValue(DEFAULT_TOLERANCE_VALUE);
86
87   QGridLayout* boxLayout = new QGridLayout(GroupPoints->Box);
88   boxLayout->setMargin(0); boxLayout->setSpacing(6);
89   boxLayout->addWidget(aTolLab,  0, 0);
90   boxLayout->addWidget(myTolEdt, 0, 2);
91
92   QVBoxLayout* layout = new QVBoxLayout(centralWidget());
93   layout->setMargin(0); layout->setSpacing(6);
94   layout->addWidget(GroupPoints);
95
96   setHelpFileName("limit_tolerance_operation_page.html");
97
98   Init();
99 }
100
101
102 //=================================================================================
103 // function : ~RepairGUI_LimitToleranceDlg()
104 // purpose  : Destroys the object and frees any allocated resources
105 //=================================================================================
106 RepairGUI_LimitToleranceDlg::~RepairGUI_LimitToleranceDlg()
107 {
108 }
109
110
111 //=================================================================================
112 // function : Init()
113 // purpose  :
114 //=================================================================================
115 void RepairGUI_LimitToleranceDlg::Init()
116 {
117   /* init variables */
118   myEditCurrentArgument = GroupPoints->LineEdit1;
119
120   myObject = GEOM::GEOM_Object::_nil();
121
122   //myGeomGUI->SetState(0);
123   //globalSelection(GEOM_COMPOUND);
124
125   mainFrame()->GroupBoxPublish->show();
126
127   /* signals and slots connections */
128   connect(buttonOk(),    SIGNAL(clicked()), this, SLOT(ClickOnOk()));
129   connect(buttonApply(), SIGNAL(clicked()), this, SLOT(ClickOnApply()));
130
131   connect(GroupPoints->PushButton1,  SIGNAL(clicked()),       this, SLOT(SetEditCurrentArgument()));
132   connect(GroupPoints->LineEdit1,    SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
133
134   connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
135           this, SLOT(SelectionIntoArgument()));
136
137   initName(tr("LIMIT_TOLERANCE_NEW_OBJ_NAME"));
138
139   ConstructorsClicked(0);
140
141   activateSelection();
142   updateButtonState();
143 }
144
145
146 //=================================================================================
147 // function : ConstructorsClicked()
148 // purpose  : Radio button management
149 //=================================================================================
150 void RepairGUI_LimitToleranceDlg::ConstructorsClicked(int constructorId)
151 {
152   disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
153
154   GroupPoints->show();
155   GroupPoints->LineEdit1->setText("");
156   myEditCurrentArgument = GroupPoints->LineEdit1;
157   myEditCurrentArgument->setFocus();
158
159   connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
160            this, SLOT(SelectionIntoArgument()));
161
162   qApp->processEvents();
163   updateGeometry();
164   resize(minimumSizeHint());
165
166   updateButtonState();
167   activateSelection();
168   SelectionIntoArgument();
169 }
170
171
172 //=================================================================================
173 // function : ClickOnOk()
174 // purpose  : Same than click on apply but close this dialog.
175 //=================================================================================
176 void RepairGUI_LimitToleranceDlg::ClickOnOk()
177 {
178   if (ClickOnApply())
179     ClickOnCancel();
180 }
181
182 //=================================================================================
183 // function : ClickOnApply()
184 // purpose  :
185 //=================================================================================
186 bool RepairGUI_LimitToleranceDlg::ClickOnApply()
187 {
188   if (!onAcceptLocal())
189     return false;
190
191   initName();
192
193   ConstructorsClicked(0);
194
195   return true;
196 }
197
198 //=================================================================================
199 // function : SelectionIntoArgument()
200 // purpose  : Called when selection
201 //=================================================================================
202 void RepairGUI_LimitToleranceDlg::SelectionIntoArgument()
203 {
204   myEditCurrentArgument->setText("");
205   myObject = GEOM::GEOM_Object::_nil();
206
207   LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
208   SALOME_ListIO aSelList;
209   aSelMgr->selectedObjects(aSelList);
210
211   if (aSelList.Extent() == 1) {
212     Handle(SALOME_InteractiveObject) anIO = aSelList.First();
213     myObject = GEOMBase::ConvertIOinGEOMObject( anIO );
214     if ( !CORBA::is_nil( myObject ) )
215       myEditCurrentArgument->setText(GEOMBase::GetName(myObject));
216   }
217   updateButtonState();
218 }
219
220 //=================================================================================
221 // function : SetEditCurrentArgument()
222 // purpose  :
223 //=================================================================================
224 void RepairGUI_LimitToleranceDlg::SetEditCurrentArgument()
225 {
226   const QObject* send = sender();
227   if (send == GroupPoints->PushButton1)  {
228     myEditCurrentArgument->setFocus();
229     SelectionIntoArgument();
230   }
231 }
232
233 //=================================================================================
234 // function : LineEditReturnPressed()
235 // purpose  :
236 //=================================================================================
237 void RepairGUI_LimitToleranceDlg::LineEditReturnPressed()
238 {
239   const QObject* send = sender();
240   if (send == GroupPoints->LineEdit1) {
241     myEditCurrentArgument = GroupPoints->LineEdit1;
242     GEOMBase_Skeleton::LineEditReturnPressed();
243   }
244 }
245
246 //=================================================================================
247 // function : ActivateThisDialog()
248 // purpose  :
249 //=================================================================================
250 void RepairGUI_LimitToleranceDlg::ActivateThisDialog()
251 {
252   GEOMBase_Skeleton::ActivateThisDialog();
253   connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
254            this, SLOT(SelectionIntoArgument()));
255   activateSelection();
256 }
257
258 //=================================================================================
259 // function : enterEvent()
260 // purpose  : Mouse enter onto the dialog to activate it
261 //=================================================================================
262 void RepairGUI_LimitToleranceDlg::enterEvent(QEvent*)
263 {
264   if (!mainFrame()->GroupConstructors->isEnabled())
265     ActivateThisDialog();
266 }
267
268 //=================================================================================
269 // function : createOperation
270 // purpose  :
271 //=================================================================================
272 GEOM::GEOM_IOperations_ptr RepairGUI_LimitToleranceDlg::createOperation()
273 {
274   return getGeomEngine()->GetIHealingOperations(getStudyId());
275 }
276
277 //=================================================================================
278 // function : isValid
279 // purpose  :
280 //=================================================================================
281 bool RepairGUI_LimitToleranceDlg::isValid(QString& msg)
282 {
283   double v = myTolEdt->value();
284   bool ok = myTolEdt->isValid(msg, true);
285   return !myObject->_is_nil() && (v > 0.) && ok;
286 }
287
288 //=================================================================================
289 // function : execute
290 // purpose  :
291 //=================================================================================
292 bool RepairGUI_LimitToleranceDlg::execute(ObjectList& objects)
293 {
294   bool aResult = false;
295   objects.clear();
296
297   GEOM::GEOM_IHealingOperations_var anOper = GEOM::GEOM_IHealingOperations::_narrow(getOperation());
298   GEOM::GEOM_Object_var anObj = anOper->LimitTolerance(myObject, myTolEdt->value());
299   aResult = !anObj->_is_nil();
300   if (aResult) {
301     QStringList aParameters;
302     aParameters << myTolEdt->text();
303     anObj->SetParameters(aParameters.join(":").toLatin1().constData());
304     objects.push_back(anObj._retn());
305   }
306
307   return aResult;
308 }
309
310 //================================================================
311 // Function : onAccept
312 // Purpose  : This method should be called from dialog's slots onOk() and onApply()
313 //            It perfroms user input validation, then it
314 //            performs a proper operation and manages transactions, etc.
315 //================================================================
316 bool RepairGUI_LimitToleranceDlg::onAcceptLocal()
317 {
318   if (!getStudy() || !(getStudy()->studyDS()))
319     return false;
320
321   _PTR(Study) aStudy = getStudy()->studyDS();
322
323   bool aLocked = aStudy->GetProperties()->IsLocked();
324   if (aLocked) {
325     MESSAGE("GEOMBase_Helper::onAccept - ActiveStudy is locked");
326     SUIT_MessageBox::warning(this, tr("WRN_WARNING"), tr("WRN_STUDY_LOCKED"), tr("BUT_OK"));
327     return false;
328   }
329
330   QString msg;
331   if (!isValid(msg)) {
332     showError(msg);
333     return false;
334   }
335
336   try {
337     if (openCommand()) {
338       SUIT_OverrideCursor wc;
339
340       myGeomGUI->getApp()->putInfo("");
341       ObjectList objects;
342
343       if (!execute(objects)) {
344         wc.suspend();
345         abortCommand();
346         showError();
347       }
348       else {
349         const int nbObjs = objects.size();
350         for (ObjectList::iterator it = objects.begin(); it != objects.end(); ++it) {
351           QString aName = getNewObjectName();
352           if (nbObjs > 1) {
353             if (aName.isEmpty())
354               aName = getPrefix(*it);
355             aName = GEOMBase::GetDefaultName(aName);
356           }
357           else {
358             // PAL6521: use a prefix, if some dialog box doesn't reimplement getNewObjectName()
359             if (aName.isEmpty())
360               aName = GEOMBase::GetDefaultName(getPrefix(*it));
361           }
362           addInStudy(*it, aName.toLatin1().data());
363           display(*it, false);
364         }
365
366         if (nbObjs) {
367           commitCommand();
368           updateObjBrowser();
369           myGeomGUI->getApp()->putInfo(QObject::tr("GEOM_PRP_DONE"));
370         }
371         else {
372           abortCommand();
373         }
374
375         // JFA 28.12.2004 BEGIN // To enable warnings
376         GEOM::GEOM_IHealingOperations_var anOper = GEOM::GEOM_IHealingOperations::_narrow(getOperation());
377         if (!CORBA::is_nil(anOper) && !anOper->IsDone()) {
378           wc.suspend();
379           QString msgw = QObject::tr(anOper->GetErrorCode());
380           SUIT_MessageBox::warning(this, tr("WRN_WARNING"), msgw, tr("BUT_OK"));
381         }
382         // JFA 28.12.2004 END
383       }
384     }
385   }
386   catch(const SALOME::SALOME_Exception& e) {
387     SalomeApp_Tools::QtCatchCorbaException(e);
388     abortCommand();
389   }
390
391   updateViewer();
392   activateSelection();
393   updateButtonState();
394
395   return true;
396 }
397
398 //=================================================================================
399 // function : activateSelection
400 // purpose  : Activate selection
401 //=================================================================================
402 void RepairGUI_LimitToleranceDlg::activateSelection()
403 {
404   disconnect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
405              this, SLOT(SelectionIntoArgument()));
406
407   globalSelection(GEOM_ALLSHAPES);
408   if (myObject->_is_nil())
409     SelectionIntoArgument();
410
411   connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
412           this, SLOT(SelectionIntoArgument()));
413   updateViewer();
414 }
415
416 //=================================================================================
417 // function : updateButtonState
418 // purpose  : Update button state
419 //=================================================================================
420 void RepairGUI_LimitToleranceDlg::updateButtonState()
421 {
422   bool hasMainObj = !myObject->_is_nil();
423   buttonOk()->setEnabled(hasMainObj);
424   buttonApply()->setEnabled(hasMainObj);
425 }
426
427 //=================================================================================
428 // function : restoreSubShapes
429 // purpose  :
430 //=================================================================================
431 void RepairGUI_LimitToleranceDlg::restoreSubShapes(SALOMEDS::Study_ptr   theStudy,
432                                                    SALOMEDS::SObject_ptr theSObject)
433 {
434   if (mainFrame()->CheckBoxRestoreSS->isChecked()) {
435     // empty list of arguments means that all arguments should be restored
436     getGeomEngine()->RestoreSubShapesSO(theStudy, theSObject, GEOM::ListOfGO(),
437                                         GEOM::FSM_GetInPlace, /*theInheritFirstArg=*/true,
438                                         mainFrame()->CheckBoxAddPrefix->isChecked());
439   }
440 }