]> SALOME platform Git repositories - modules/geom.git/blob - src/RepairGUI/RepairGUI_SewingDlg.cxx
Salome HOME
45d07d50af0f9bdcb79cfbf7beb181d2e1227871
[modules/geom.git] / src / RepairGUI / RepairGUI_SewingDlg.cxx
1 //  GEOM GEOMGUI : GUI for Geometry component
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
21 //
22 //
23 //
24 //  File   : RepairGUI_SewingDlg.cxx
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 using namespace std;
30 #include "RepairGUI_SewingDlg.h"
31
32 #include "QAD_RightFrame.h"
33 #include "QAD_Desktop.h"
34 #include "QAD_MessageBox.h"
35 #include "OCCViewer_Viewer3d.h"
36 #include "SALOME_ListIteratorOfListIO.hxx"
37
38 #include "GEOMImpl_Types.hxx"
39
40 #include <TopAbs.hxx>
41
42 #define DEFAULT_TOLERANCE_VALUE 1e-07
43
44
45 //=================================================================================
46 // class    : RepairGUI_SewingDlg()
47 // purpose  : Constructs a RepairGUI_SewingDlg  which is a child of 'parent', with the
48 //            name 'name' and widget flags set to 'f'.
49 //            The dialog will by default be modeless, unless you set 'modal' to
50 //            TRUE to construct a modal dialog.
51 //=================================================================================
52 RepairGUI_SewingDlg::RepairGUI_SewingDlg(QWidget* parent, const char* name, SALOME_Selection* Sel, bool modal, WFlags fl)
53   :GEOMBase_Skeleton(parent, name, Sel, modal, WStyle_Customize | WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu)
54 {
55   QPixmap image0(QAD_Desktop::getResourceManager()->loadPixmap("GEOM",tr("ICON_DLG_SEWING")));
56   QPixmap image1(QAD_Desktop::getResourceManager()->loadPixmap("GEOM",tr("ICON_SELECT")));
57
58   setCaption(tr("GEOM_SEWING_TITLE"));
59
60   /***************************************************************/
61   GroupConstructors->setTitle(tr("GEOM_SEWING_TITLE"));
62   RadioButton1->setPixmap(image0);
63   RadioButton2->close(TRUE);
64   RadioButton3->close(TRUE);
65
66   GroupPoints = new DlgRef_1Sel_Ext(this, "GroupPoints");
67   GroupPoints->GroupBox1->setTitle(tr("GEOM_SEWING"));
68   GroupPoints->TextLabel1->setText(tr("GEOM_SELECTED_SHAPE"));
69   GroupPoints->PushButton1->setPixmap(image1);
70   GroupPoints->LineEdit1->setReadOnly( true );
71
72   Layout1->addWidget(GroupPoints, 1, 0);
73
74   QGridLayout* aLay = new QGridLayout( 0, 2, 2, 0, 6, "aLay" );
75   myTolEdt = new QAD_SpinBoxDbl( GroupPoints->GroupBox1, 0, 100, 1e-7, 10, 1e-10 );
76   myTolEdt->setValue( DEFAULT_TOLERANCE_VALUE );
77   QLabel* aLbl1 = new QLabel( tr( "GEOM_TOLERANCE" ), GroupPoints->GroupBox1 );
78         myFreeBoundBtn = new QPushButton( tr( "GEOM_DETECT" ), GroupPoints->GroupBox1 );
79   QLabel* aLbl2 = new QLabel( tr( "GEOM_FREE_BOUNDARIES" ), GroupPoints->GroupBox1 );
80   aLay->addWidget( aLbl1, 0, 0 );
81   aLay->addWidget( myTolEdt, 0, 1 );
82   aLay->addWidget( aLbl2, 1, 0 );
83   aLay->addWidget( myFreeBoundBtn, 1, 1 );
84
85   GroupPoints->getGroupBoxLayout()->addLayout( aLay, 3, 0 );
86   /***************************************************************/
87
88   Init();
89 }
90
91
92 //=================================================================================
93 // function : ~RepairGUI_SewingDlg()
94 // purpose  : Destroys the object and frees any allocated resources
95 //=================================================================================
96 RepairGUI_SewingDlg::~RepairGUI_SewingDlg()
97 {
98 }
99
100
101 //=================================================================================
102 // function : Init()
103 // purpose  :
104 //=================================================================================
105 void RepairGUI_SewingDlg::Init()
106 {
107   /* init variables */
108   myEditCurrentArgument = GroupPoints->LineEdit1;
109
110   myObject = GEOM::GEOM_Object::_nil();
111
112   myGeomGUI->SetState( 0 );
113   initSelection();
114
115   myClosed = -1;
116   myOpen = -1;
117         
118   /* signals and slots connections */
119   connect(buttonCancel, SIGNAL(clicked()), this, SLOT(ClickOnCancel()));
120   connect(myGeomGUI, SIGNAL(SignalDeactivateActiveDialog()), this, SLOT(DeactivateActiveDialog()));
121   connect(myGeomGUI, SIGNAL(SignalCloseAllDialogs()), this, SLOT(ClickOnCancel()));
122
123   connect(buttonOk, SIGNAL(clicked()), this, SLOT(ClickOnOk()));
124   connect(buttonApply, SIGNAL(clicked()), this, SLOT(ClickOnApply()));
125
126   connect(GroupPoints->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
127   connect(GroupPoints->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
128
129   connect(mySelection, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
130
131   connect(myFreeBoundBtn, SIGNAL(clicked()), this, SLOT(onDetect()));
132 }
133
134
135 //=================================================================================
136 // function : ClickOnOk()
137 // purpose  : Same than click on apply but close this dialog.
138 //=================================================================================
139 void RepairGUI_SewingDlg::ClickOnOk()
140 {
141   if ( ClickOnApply() )
142     ClickOnCancel();
143 }
144
145
146
147 //=================================================================================
148 // function : ClickOnApply()
149 // purpose  :
150 //=================================================================================
151 bool RepairGUI_SewingDlg::ClickOnApply()
152 {
153   if ( !onAccept() )
154         return false;
155
156   GroupPoints->LineEdit1->setText("");
157   myObject = GEOM::GEOM_Object::_nil();
158
159   initSelection();
160
161   return true;
162 }
163
164
165 //=================================================================================
166 // function : ClickOnCancel()
167 // purpose  :
168 //=================================================================================
169 void RepairGUI_SewingDlg::ClickOnCancel()
170 {
171   GEOMBase_Skeleton::ClickOnCancel();
172 }
173
174
175 //=================================================================================
176 // function : SelectionIntoArgument()
177 // purpose  : Called when selection
178 //=================================================================================
179 void RepairGUI_SewingDlg::SelectionIntoArgument()
180 {
181         erasePreview();
182   myEditCurrentArgument->setText("");
183   myObject = GEOM::GEOM_Object::_nil();
184
185   if ( mySelection->IObjectCount() == 1 )
186         {
187                 Handle(SALOME_InteractiveObject) anIO = mySelection->firstIObject();
188                 Standard_Boolean aRes;
189                 myObject = GEOMBase::ConvertIOinGEOMObject( anIO, aRes );
190                 if ( aRes )
191                         myEditCurrentArgument->setText( GEOMBase::GetName( myObject ) );
192         }
193 }
194
195 //=================================================================================
196 // function : SetEditCurrentArgument()
197 // purpose  :
198 //=================================================================================
199 void RepairGUI_SewingDlg::SetEditCurrentArgument()
200 {
201         const QObject* send = sender();
202   if ( send == GroupPoints->PushButton1 )
203   {
204         myEditCurrentArgument->setFocus();
205         SelectionIntoArgument();
206   }
207 }
208
209
210 //=================================================================================
211 // function : LineEditReturnPressed()
212 // purpose  :
213 //=================================================================================
214 void RepairGUI_SewingDlg::LineEditReturnPressed()
215 {
216         const QObject* send = sender();
217   if( send == GroupPoints->LineEdit1 )
218   {
219     myEditCurrentArgument = GroupPoints->LineEdit1;
220           GEOMBase_Skeleton::LineEditReturnPressed();
221         }
222 }
223
224
225 //=================================================================================
226 // function : DeactivateActiveDialog()
227 // purpose  :
228 //=================================================================================
229 void RepairGUI_SewingDlg::DeactivateActiveDialog()
230 {
231   myGeomGUI->SetState( -1 );
232   GEOMBase_Skeleton::DeactivateActiveDialog();
233 }
234
235
236 //=================================================================================
237 // function : ActivateThisDialog()
238 // purpose  :
239 //=================================================================================
240 void RepairGUI_SewingDlg::ActivateThisDialog()
241 {
242   GEOMBase_Skeleton::ActivateThisDialog();
243   connect(mySelection, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
244
245   GroupPoints->LineEdit1->setText("");
246   myObject = GEOM::GEOM_Object::_nil();
247
248   myClosed = -1;
249   myOpen = -1;
250
251   myGeomGUI->SetState( 0 );
252   initSelection();
253 }
254
255
256 //=================================================================================
257 // function : enterEvent()
258 // purpose  : Mouse enter onto the dialog to activate it
259 //=================================================================================
260 void RepairGUI_SewingDlg::enterEvent(QEvent* e)
261 {
262   if ( !GroupConstructors->isEnabled() )
263     ActivateThisDialog();
264 }
265
266
267 //=================================================================================
268 // function : closeEvent()
269 // purpose  :
270 //=================================================================================
271 void RepairGUI_SewingDlg::closeEvent(QCloseEvent* e)
272 {
273   myGeomGUI->SetState( -1 );
274   GEOMBase_Skeleton::closeEvent( e );
275 }
276
277 //=================================================================================
278 // function : createOperation
279 // purpose  :
280 //=================================================================================
281 GEOM::GEOM_IOperations_ptr RepairGUI_SewingDlg::createOperation()
282 {
283   return getGeomEngine()->GetIHealingOperations( getStudyId() );
284 }
285
286 //=================================================================================
287 // function : isValid
288 // purpose  :
289 //=================================================================================
290 bool RepairGUI_SewingDlg::isValid( QString& msg )
291 {
292   myClosed = -1;
293   return !myObject->_is_nil() && ( IsPreview() || myTolEdt->value() > 0. );
294 }
295
296 //=================================================================================
297 // function : execute
298 // purpose  :
299 //=================================================================================
300 bool RepairGUI_SewingDlg::execute( ObjectList& objects )
301 {
302   bool aResult = false;
303   if ( IsPreview() ) // called from onDetect(): detect free boundary edges, highlight them (add to objects), display message dialog
304   {
305     GEOM::ListOfGO_var aClosed, anOpen;
306
307     aResult = GEOM::GEOM_IHealingOperations::_narrow( getOperation() )->GetFreeBoundary( myObject, aClosed, anOpen );
308
309     if ( aResult )
310     {
311       myClosed = aClosed->length();
312       myOpen = anOpen->length();
313       int i;
314       for ( i = 0; i < myClosed; i++ )
315         objects.push_back( aClosed[i]._retn() );
316       for ( i = 0; i < myOpen; i++ )
317         objects.push_back( anOpen[i]._retn() );
318     }
319     else
320       myClosed = -1;
321   }
322   else
323   {
324     GEOM::GEOM_Object_var anObj = GEOM::GEOM_IHealingOperations::_narrow( getOperation() )->Sew( myObject, myTolEdt->value() );
325     aResult = !anObj->_is_nil();
326     if ( aResult )
327       objects.push_back( anObj._retn() );
328   }
329
330   return aResult;
331 }
332
333 //=================================================================================
334 // function : initSelection
335 // purpose  :
336 //=================================================================================
337 void RepairGUI_SewingDlg::initSelection()
338 {
339   TColStd_MapOfInteger aTypes;
340   aTypes.Add( GEOM_SHELL );
341   aTypes.Add( GEOM_SOLID );
342   aTypes.Add( GEOM_COMPOUND );
343   globalSelection( aTypes );
344 }
345
346 //=================================================================================
347 // function : onDetect
348 // purpose  :
349 //=================================================================================
350 void RepairGUI_SewingDlg::onDetect()
351 {
352   displayPreview( false, true, true, 3 );
353
354   // field myClosed,myOpen is initialized in execute() method, called by displayPreview().
355   QString msg;
356   if ( myClosed != -1 )
357     msg = tr( "GEOM_FREE_BOUNDS_MSG" ).arg( myClosed + myOpen ).arg( myClosed ).arg( myOpen );
358   else
359     msg = tr( "GEOM_FREE_BOUNDS_ERROR" );
360   QAD_MessageBox::info1( this, tr( "GEOM_FREE_BOUNDS_TLT" ), msg, "Close" );
361 }