Salome HOME
RNC: EDF 1542: Take into account orientation in newly created MakeVertexOnCurveByLeng...
[modules/geom.git] / src / BasicGUI / BasicGUI_CurveDlg.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   : BasicGUI_CurveDlg.cxx
25 // Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
26 //
27 #include "BasicGUI_CurveDlg.h"
28
29 #include <DlgRef.h>
30 #include <GeometryGUI.h>
31 #include <GEOMBase.h>
32
33 #include <SUIT_ResourceMgr.h>
34 #include <SUIT_Session.h>
35 #include <SalomeApp_Application.h>
36 #include <SalomeApp_Study.h>
37 #include <LightApp_SelectionMgr.h>
38
39 #include <SALOME_ListIteratorOfListIO.hxx>
40 #include <SALOME_ListIO.hxx>
41
42 #include <TopoDS_Shape.hxx>
43 #include <TopoDS.hxx>
44 #include <TopExp.hxx>
45 #include <TColStd_IndexedMapOfInteger.hxx>
46 #include <TopTools_IndexedMapOfShape.hxx>
47
48 #include <GEOMImpl_Types.hxx>
49
50 //=================================================================================
51 // class    : BasicGUI_CurveDlg()
52 // purpose  : Constructs a BasicGUI_CurveDlg which is a child of 'parent', with the
53 //            name 'name' and widget flags set to 'f'.
54 //            The dialog will by default be modeless, unless you set 'modal' to
55 //            TRUE to construct a modal dialog.
56 //=================================================================================
57 BasicGUI_CurveDlg::BasicGUI_CurveDlg( GeometryGUI* theGeometryGUI, QWidget* parent,
58                                       bool modal, Qt::WindowFlags fl )
59   : GEOMBase_Skeleton( theGeometryGUI, parent, modal, fl )
60 {
61   QPixmap image0( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_POLYLINE" ) ) );
62   QPixmap image2( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_SPLINE" ) ) );
63   QPixmap image3( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_BEZIER" ) ) );
64   QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
65
66   setWindowTitle( tr( "GEOM_CURVE_TITLE" ) );
67
68   /***************************************************************/
69   mainFrame()->RadioButton1->setIcon( image0 );
70   mainFrame()->RadioButton2->setIcon( image3 );
71   mainFrame()->RadioButton3->setIcon( image2 );
72
73   GroupPoints = new DlgRef_1Sel1Check( centralWidget() );
74
75   GroupPoints->GroupBox1->setTitle( tr( "GEOM_NODES" ) );
76   GroupPoints->TextLabel1->setText( tr( "GEOM_POINTS" ) );
77   GroupPoints->PushButton1->setIcon( image1 );
78   GroupPoints->PushButton1->setDown( true );
79
80   GroupPoints->LineEdit1->setReadOnly( true );
81
82   GroupPoints->CheckButton1->setText( tr( "GEOM_IS_CLOSED" ) );
83   GroupPoints->CheckButton1->setChecked(false);
84   GroupPoints->CheckButton1->hide();
85
86   QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
87   layout->setMargin( 0 ); layout->setSpacing( 6 );
88   layout->addWidget( GroupPoints );
89   /***************************************************************/
90
91   setHelpFileName( "create_curve_page.html" );
92
93   Init();
94 }
95
96
97 //=================================================================================
98 // function : ~BasicGUI_CurveDlg()
99 // purpose  : Destroys the object and frees any allocated resources
100 //=================================================================================
101 BasicGUI_CurveDlg::~BasicGUI_CurveDlg()
102 {
103 }
104
105
106 //=================================================================================
107 // function : Init()
108 // purpose  :
109 //=================================================================================
110 void BasicGUI_CurveDlg::Init()
111 {
112   /* init variables */
113   myEditCurrentArgument = GroupPoints->LineEdit1;
114
115   myPoints = new GEOM::ListOfGO();
116   myPoints->length( 0 );
117
118   globalSelection(); // close local contexts, if any
119   localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
120
121   /* signals and slots connections */
122   connect( myGeomGUI, SIGNAL( SignalDeactivateActiveDialog() ), this, SLOT( DeactivateActiveDialog( ) ) );
123   connect( myGeomGUI, SIGNAL( SignalCloseAllDialogs() ),        this, SLOT( ClickOnCancel() ) );
124
125   connect( buttonOk(),     SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
126   connect( buttonApply(),  SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
127
128   connect( this,           SIGNAL( constructorsClicked( int ) ), this, SLOT( ConstructorsClicked( int ) ) );
129
130   connect( GroupPoints->PushButton1, SIGNAL( clicked() ),       this, SLOT( SetEditCurrentArgument() ) );
131   connect( GroupPoints->LineEdit1,   SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
132
133   connect( GroupPoints->CheckButton1,SIGNAL( toggled(bool) ),   this, SLOT( CheckButtonToggled() ) );
134
135   connect( myGeomGUI->getApp()->selectionMgr(),
136            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
137
138   initName( tr( "GEOM_CURVE" ) );
139   resize(100,100);
140   ConstructorsClicked( 0 );
141 }
142
143 //=================================================================================
144 // function : ConstructorsClicked()
145 // purpose  :
146 //=================================================================================
147 void BasicGUI_CurveDlg::ConstructorsClicked( int id )
148 {
149   QString aTitle = tr( id == 0 ? "GEOM_POLYLINE" : id == 1 ? "GEOM_BEZIER" : "GEOM_INTERPOL" );
150   mainFrame()->GroupConstructors->setTitle( aTitle );
151
152   if (id == 2) // b-spline
153     GroupPoints->CheckButton1->show();
154   else
155     GroupPoints->CheckButton1->hide();
156
157   myPoints = new GEOM::ListOfGO();
158   myPoints->length( 0 );
159
160   myEditCurrentArgument->setText( "" );
161   qApp->processEvents();
162   updateGeometry();
163   resize( minimumSizeHint() );
164   SelectionIntoArgument();
165 }
166
167
168 //=================================================================================
169 // function : SetEditCurrentArgument()
170 // purpose  :
171 //=================================================================================
172 void BasicGUI_CurveDlg::SetEditCurrentArgument()
173 {
174   if ( sender() == GroupPoints->PushButton1 )
175     myEditCurrentArgument = GroupPoints->LineEdit1;
176   myEditCurrentArgument->setFocus();
177   SelectionIntoArgument();
178 }
179
180
181 //=================================================================================
182 // function : LineEditReturnPressed()
183 // purpose  :
184 //=================================================================================
185 void BasicGUI_CurveDlg::LineEditReturnPressed()
186 {
187   if ( sender() == GroupPoints->LineEdit1 )
188   {
189     myEditCurrentArgument = GroupPoints->LineEdit1;
190     GEOMBase_Skeleton::LineEditReturnPressed();
191   }
192 }
193
194 //=================================================================================
195 // function : CheckButtonToggled()
196 // purpose  :
197 //=================================================================================
198 void BasicGUI_CurveDlg::CheckButtonToggled()
199 {
200   displayPreview();
201 }
202
203 //=================================================================================
204 // function : ClickOnOk()
205 // purpose  :
206 //=================================================================================
207 void BasicGUI_CurveDlg::ClickOnOk()
208 {
209   if ( ClickOnApply() )
210     ClickOnCancel();
211 }
212
213 //=================================================================================
214 // function : ClickOnApply()
215 // purpose  :
216 //=================================================================================
217 bool BasicGUI_CurveDlg::ClickOnApply()
218 {
219   if ( !onAccept() )
220     return false;
221
222   initName();
223   globalSelection(); // close local contexts, if any
224   localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
225   return true;
226 }
227
228 //=================================================================================
229 /*! function : isPointInList()
230  *  purpose  : Check is point (theObject) in the list \a thePoints.
231  * \author enk
232  * \retval -1, if point not in list, else 1 in list
233  */
234 //=================================================================================
235 static int isPointInList( std::list<GEOM::GEOM_Object_var>& thePoints,
236                           GEOM::GEOM_Object_var& theObject )
237 {
238   int len = thePoints.size();
239
240   if ( len < 1 ) {
241     return -1;
242   }
243
244   for ( std::list<GEOM::GEOM_Object_var>::iterator i = thePoints.begin(); i != thePoints.end(); i++ ) {
245     if ( std::string( (*i)->GetEntry() ) == std::string( theObject->GetEntry() ) ) {
246       return 1;
247     }
248   }
249
250   return -1;
251 }
252 //=================================================================================
253 /*! function : removeUnnecessaryPnt()
254  *  purpose  : Remove unnecessary points from list \a theOldPoints
255  * \author enk
256  * \li \a theOldPoints - ordered sequence with unnecessary point
257  * \li \a theNewPoints - not ordered sequence with necessary points
258  */
259 //=================================================================================
260 static void removeUnnecessaryPnt( std::list<GEOM::GEOM_Object_var>& theOldPoints,
261                                   GEOM::ListOfGO_var& theNewPoints )
262 {
263   std::list<GEOM::GEOM_Object_var> objs_to_remove;
264   for ( std::list<GEOM::GEOM_Object_var>::iterator i = theOldPoints.begin(); i != theOldPoints.end(); i++ ) {
265     bool found = false;
266     for ( int j = 0; j < theNewPoints->length() && !found ; j++ ) {
267       if ( std::string( (*i)->GetEntry() ) == std::string( theNewPoints[j]->GetEntry() ) ) {
268         found = true;
269       }
270     }
271     if ( !found ) {
272       objs_to_remove.push_back( *i );
273       //cout << "removed: " << (*i)->GetEntry() << endl;
274     }
275   }
276   for ( std::list<GEOM::GEOM_Object_var>::iterator i = objs_to_remove.begin(); i != objs_to_remove.end(); i++ ) {
277     theOldPoints.remove( *i );
278   }
279 }
280
281 //=================================================================================
282 // function : SelectionIntoArgument()
283 // purpose  : Called when selection as changed or other case
284 //=================================================================================
285 void BasicGUI_CurveDlg::SelectionIntoArgument()
286 {
287   myEditCurrentArgument->setText( "" );
288
289   SalomeApp_Application* app = myGeomGUI->getApp();
290   SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>(app->activeStudy());
291   _PTR(Study) aDStudy = appStudy->studyDS();
292   GEOM::GEOM_IShapesOperations_var aShapesOp = getGeomEngine()->GetIShapesOperations(getStudyId());
293
294   int anIndex;
295   TopoDS_Shape aShape;
296   TColStd_IndexedMapOfInteger aMapIndexes;
297   GEOM::GEOM_Object_var anObject;
298   std::list<GEOM::GEOM_Object_var> aList;
299   LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
300   SALOME_ListIO selected;
301   aSelMgr->selectedObjects(selected, QString::null, false);
302
303   int IOC = selected.Extent();
304   // bool is_append = myPoints->length() < IOC; // if true - add point, else remove
305   // myPoints->length( IOC ); // this length may be greater than number of objects,
306                            // that will actually be put into myPoints
307
308   for (SALOME_ListIteratorOfListIO anIt (selected); anIt.More(); anIt.Next()) {
309     GEOM::GEOM_Object_var aSelectedObject = GEOMBase::ConvertIOinGEOMObject( anIt.Value() );
310     if (!CORBA::is_nil(aSelectedObject) ) {
311       if (GEOMBase::GetShape(aSelectedObject, aShape, TopAbs_SHAPE) && !aShape.IsNull()) {
312         aSelMgr->GetIndexes(anIt.Value(), aMapIndexes);
313
314         if (aMapIndexes.Extent() > 0) {
315           for (int ii = 1; ii <= aMapIndexes.Extent(); ii++) {
316             anIndex = aMapIndexes(ii);
317             QString aName = GEOMBase::GetName( aSelectedObject );
318             aName = aName + ":vertex_" + QString::number( anIndex );
319             anObject = aShapesOp->GetSubShape( aSelectedObject, anIndex );
320             //Find Object in study
321             _PTR(SObject) obj ( aDStudy->FindObjectID( anIt.Value()->getEntry() ) );
322             bool inStudy = false;
323             _PTR(ChildIterator) iit( aDStudy->NewChildIterator( obj ) );
324             for (; iit->More() && !inStudy; iit->Next()) {
325               _PTR(SObject) child( iit->Value() );
326               QString aChildName = child->GetName().c_str();
327               if ( aChildName == aName ) {
328                 inStudy = true;
329                 CORBA::Object_var corbaObj = GeometryGUI::ClientSObjectToObject( iit->Value() );
330                 anObject = GEOM::GEOM_Object::_narrow( corbaObj );
331               }
332             }
333
334             if ( !inStudy )
335               GeometryGUI::GetGeomGen()->AddInStudy( GeometryGUI::ClientStudyToStudy( aDStudy ),
336                                                      anObject, aName.toLatin1().data(), aSelectedObject );
337
338             int pos = isPointInList( myOrderedSel, anObject );
339             if ( pos == -1 ) {
340               myOrderedSel.push_back( anObject );
341             }
342             //              if (!inStudy)
343             aList.push_back(anObject);
344           }
345         }
346         else { // aMap.Extent() == 0
347           if ( aShape.ShapeType() == TopAbs_VERTEX ) {
348             int pos = isPointInList( myOrderedSel, aSelectedObject );
349             if ( pos == -1 )
350               myOrderedSel.push_back( aSelectedObject );
351             aList.push_back( aSelectedObject );
352           }
353         }
354       }
355     }
356   }
357
358   myPoints->length( aList.size()  );
359
360   int k = 0;
361   for ( std::list<GEOM::GEOM_Object_var>::iterator j = aList.begin(); j != aList.end(); j++ )
362     myPoints[k++] = *j;
363
364   if ( IOC == 0 )
365     myOrderedSel.clear();
366   else
367     removeUnnecessaryPnt( myOrderedSel, myPoints );
368
369   // if ( myOrderedSel.size() == myPoints->length() ) {
370   myPoints->length( myOrderedSel.size()  );
371   k = 0;
372   for ( std::list<GEOM::GEOM_Object_var>::iterator j = myOrderedSel.begin(); j != myOrderedSel.end(); j++ )
373     myPoints[k++] = *j;
374   //  }
375
376   if ( myPoints->length() > 0  )
377     GroupPoints->LineEdit1->setText( QString::number( myPoints->length() ) + "_" + tr( "GEOM_POINT" ) + tr( "_S_" ) );
378
379   displayPreview();
380 }
381
382
383 //=================================================================================
384 // function : ActivateThisDialog()
385 // purpose  :
386 //=================================================================================
387 void BasicGUI_CurveDlg::ActivateThisDialog()
388 {
389   GEOMBase_Skeleton::ActivateThisDialog();
390   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
391            this, SLOT( SelectionIntoArgument() ) );
392
393   globalSelection(); // close local contexts, if any
394   localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
395
396   ConstructorsClicked( getConstructorId() );
397 }
398
399 //=================================================================================
400 // function : DeactivateActiveDialog()
401 // purpose  : public slot to deactivate if active
402 //=================================================================================
403 void BasicGUI_CurveDlg::DeactivateActiveDialog()
404 {
405   // myGeomGUI->SetState( -1 );
406   GEOMBase_Skeleton::DeactivateActiveDialog();
407 }
408
409 //=================================================================================
410 // function : enterEvent()
411 // purpose  :
412 //=================================================================================
413 void BasicGUI_CurveDlg::enterEvent( QEvent* )
414 {
415   if ( !mainFrame()->GroupConstructors->isEnabled() )
416     ActivateThisDialog();
417 }
418
419 //=================================================================================
420 // function : createOperation
421 // purpose  :
422 //=================================================================================
423 GEOM::GEOM_IOperations_ptr BasicGUI_CurveDlg::createOperation()
424 {
425   return myGeomGUI->GetGeomGen()->GetICurvesOperations( getStudyId() );
426 }
427
428 //=================================================================================
429 // function : isValid
430 // purpose  :
431 //=================================================================================
432 bool BasicGUI_CurveDlg::isValid( QString& msg )
433 {
434   return myPoints->length() > 1;
435 }
436
437 //=================================================================================
438 // function : execute
439 // purpose  :
440 //=================================================================================
441 bool BasicGUI_CurveDlg::execute( ObjectList& objects )
442 {
443   bool res = false;
444
445   GEOM::GEOM_Object_var anObj;
446
447   GEOM::GEOM_ICurvesOperations_var anOper = GEOM::GEOM_ICurvesOperations::_narrow( getOperation() );
448
449   switch ( getConstructorId() ) {
450   case 0 :
451     anObj = anOper->MakePolyline( myPoints );
452     res = true;
453     break;
454   case 1 :
455     anObj = anOper->MakeSplineBezier( myPoints );
456     res = true;
457     break;
458   case 2 :
459     anObj = anOper->MakeSplineInterpolation( myPoints, GroupPoints->CheckButton1->isChecked() );
460     res = true;
461     break;
462   }
463
464   if ( !anObj->_is_nil() )
465     objects.push_back( anObj._retn() );
466
467   return res;
468 }