Salome HOME
fa6ae3d15f4abf17413d12524e4b19425cea7b74
[modules/hydro.git] / src / HYDROCurveCreator / CurveCreator_Widget.cxx
1 // Copyright (C) 2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "CurveCreator_Widget.h"
21 #include "CurveCreator_TreeView.h"
22 #include "CurveCreator_ICurve.hxx"
23 //#include "CurveCreator_CurveEditor.hxx"
24 #include "CurveCreator.hxx"
25 //#include "CurveCreator_NewPointDlg.h"
26 #include "CurveCreator_NewSectionDlg.h"
27 #include "CurveCreator_Utils.h"
28
29 #include <SUIT_Session.h>
30 #include <SUIT_Desktop.h>
31 #include <SUIT_ResourceMgr.h>
32 #include <SUIT_ViewManager.h>
33
34 #include <OCCViewer_ViewWindow.h>
35 #include <OCCViewer_ViewManager.h>
36 #include <OCCViewer_ViewPort3d.h>
37
38 #include <BRep_Tool.hxx>
39 #include <TopoDS.hxx>
40 #include <TopoDS_Vertex.hxx>
41 #include <TopoDS_Wire.hxx>
42 #include <TopoDS_Edge.hxx>
43 #include <gp_Lin.hxx>
44 #include <gp_Dir.hxx>
45 #include <TopExp_Explorer.hxx>
46
47 #include <GeomAPI_ProjectPointOnCurve.hxx>
48
49 #include <AIS_ListOfInteractive.hxx>
50 #include <AIS_ListIteratorOfListOfInteractive.hxx>
51 #include <AIS_Shape.hxx>
52 #include <AIS_Point.hxx>
53 #include <AIS_Line.hxx>
54 #include <Geom_Point.hxx>
55 #include <Geom_BSplineCurve.hxx>
56 #include <Geom_Line.hxx>
57 #include <StdSelect_BRepOwner.hxx>
58
59 #include <QHBoxLayout>
60 #include <QVBoxLayout>
61 #include <QLabel>
62 #include <QLineEdit>
63 #include <QGroupBox>
64 #include <QToolButton>
65 #include <QToolBar>
66 #include <QAction>
67 #include <QMenu>
68 #include <QMouseEvent>
69 #include <QApplication>
70 #include <QTableWidget>
71
72 const double LOCAL_SELECTION_TOLERANCE = 0.0001;
73 const int SECTION_NAME_COLUMN_WIDTH = 75;
74 const int POINT_INDEX_COLUMN_WIDTH = 40;
75
76 const int SCENE_PIXEL_TOLERANCE = 10;
77
78 CurveCreator_Widget::CurveCreator_Widget(QWidget* parent,
79                                          CurveCreator_ICurve *theCurve,
80                                          Qt::WindowFlags fl)
81 : QWidget(parent), myNewSectionEditor(NULL), myCurve(theCurve), mySection(0),
82   myDragStarted( false ), myDragInteractionStyle( SUIT_ViewModel::STANDARD ),
83   myOCCViewer( 0 )
84 {
85   myNewSectionEditor = new CurveCreator_NewSectionDlg( this );
86   myNewSectionEditor->hide();
87   connect( myNewSectionEditor, SIGNAL(addSection()), this, SLOT(onAddNewSection()) );
88   connect( myNewSectionEditor, SIGNAL(modifySection()), this, SLOT(onModifySection()) );
89   connect( myNewSectionEditor, SIGNAL(cancelSection()), this, SLOT(onCancelSection()) );
90
91   QGroupBox* aSectionGroup = new QGroupBox(tr("Sections"),this);
92
93   mySectionView = new CurveCreator_TreeView(myCurve, aSectionGroup);
94   connect( mySectionView, SIGNAL(selectionChanged()), this, SLOT( onSelectionChanged() ) );
95   connect( mySectionView, SIGNAL(sectionEntered(int)), this, SLOT(onEditSection(int)) );
96   connect( mySectionView, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(onContextMenu(QPoint)) );
97
98   myLocalPointView = new QTableWidget();
99   myLocalPointView->setVisible( false );
100   myLocalPointView->setColumnCount( 4 );
101   myLocalPointView->setColumnWidth( 0, SECTION_NAME_COLUMN_WIDTH );
102   myLocalPointView->setColumnWidth( 1, POINT_INDEX_COLUMN_WIDTH );
103   QStringList aLabels;
104   //aLabels << tr( "SECTION_LABEL" ) << tr( "IDENTIFIER_LABEL" ) << tr( "X_POSITION_LBL" ) << tr( "Y_POSITION_LBL" );
105   aLabels << tr( "Section" ) << "Index" << tr( "X" ) << tr( "Y" );
106   myLocalPointView->setHorizontalHeaderLabels( aLabels );
107   connect( myLocalPointView, SIGNAL( cellChanged( int, int ) ),
108            this, SLOT( onCellChanged( int, int ) ) );
109
110   QToolBar* aTB = new QToolBar(tr("TOOL_BAR_TLT"), aSectionGroup);
111 //    QToolButton* anUndoBtn = new QToolButton(aTB);
112
113   SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
114   QPixmap anUndoPixmap(aResMgr->loadPixmap("GEOM", tr("ICON_CC_UNDO")));
115   QPixmap aRedoPixmap(aResMgr->loadPixmap("GEOM", tr("ICON_CC_REDO")));
116   QPixmap aNewSectionPixmap(aResMgr->loadPixmap("GEOM", tr("ICON_CC_NEW_SECTION")));
117   QPixmap aNewPointPixmap(aResMgr->loadPixmap("GEOM", tr("ICON_CC_NEW_POINT")));
118   QPixmap anEditPointsPixmap(aResMgr->loadPixmap("GEOM", tr("ICON_CC_EDIT_POINTS")));
119   QPixmap aDetectPointsPixmap(aResMgr->loadPixmap("GEOM", tr("ICON_CC_EDIT_POINTS")));
120   QPixmap aPolylinePixmap(aResMgr->loadPixmap("GEOM", tr("ICON_CC_POLYLINE")));
121   QPixmap aSplinePixmap(aResMgr->loadPixmap("GEOM", tr("ICON_CC_SPLINE")));
122   QPixmap aRemovePixmap(aResMgr->loadPixmap("GEOM", tr("ICON_CC_DELETE")));
123   QPixmap aJoinPixmap(aResMgr->loadPixmap("GEOM", tr("ICON_CC_JOIN")));
124   QPixmap aStepUpPixmap(aResMgr->loadPixmap("GEOM", tr("ICON_CC_ARROW_UP")));
125   QPixmap aStepDownPixmap(aResMgr->loadPixmap("GEOM", tr("ICON_CC_ARROW_DOWN")));
126
127   QAction* anAct = createAction( UNDO_ID, tr("UNDO"), anUndoPixmap, tr("UNDO_TLT"), 
128                                  QKeySequence(Qt::ControlModifier|Qt::Key_Z) );
129   connect(anAct, SIGNAL(triggered()), this, SLOT(onUndo()) );
130   aTB->addAction(anAct);
131
132   anAct = createAction( REDO_ID, tr("REDO"), aRedoPixmap, tr("REDO_TLT"), 
133                         QKeySequence(Qt::ControlModifier|Qt::Key_Y) );
134   connect(anAct, SIGNAL(triggered()), this, SLOT(onRedo()) );
135   aTB->addAction(anAct);
136
137   aTB->addSeparator();
138
139   anAct = createAction( NEW_SECTION_ID, tr("NEW_SECTION"), aNewSectionPixmap, tr("NEW_SECTION_TLT"), 
140                         QKeySequence(Qt::ControlModifier|Qt::Key_N) );
141   connect(anAct, SIGNAL(triggered()), this, SLOT(onNewSection()) );
142   aTB->addAction(anAct);
143   aTB->addSeparator();
144
145   anAct = createAction( ADDITION_MODE_ID, tr("ADDITION_MODE"), aNewPointPixmap, tr("ADDITION_MODE_TLT"), 
146                         QKeySequence() );
147   anAct->setCheckable(true);
148   connect(anAct, SIGNAL(triggered(bool)), this, SLOT(onAdditionMode(bool)) );
149   connect(anAct, SIGNAL(toggled(bool)), this, SLOT(onModeChanged(bool)) );
150   aTB->addAction(anAct);
151   
152   anAct = createAction( MODIFICATION_MODE_ID, tr("MODIFICATION_MODE"), anEditPointsPixmap, tr("MODIFICATION_MODE_TLT"), 
153                         QKeySequence() );
154   anAct->setCheckable(true);
155   connect(anAct, SIGNAL(triggered(bool)), this, SLOT(onModificationMode(bool)) );
156   connect(anAct, SIGNAL(toggled(bool)), this, SLOT(onModeChanged(bool)) );
157   aTB->addAction(anAct);
158
159   anAct = createAction( DETECTION_MODE_ID, tr("DETECTION_MODE"), aDetectPointsPixmap, tr("DETECTION_MODE_TLT"), 
160                         QKeySequence() );
161   anAct->setCheckable(true);
162   connect(anAct, SIGNAL(triggered(bool)), this, SLOT(onDetectionMode(bool)) );
163   connect(anAct, SIGNAL(toggled(bool)), this, SLOT(onModeChanged(bool)) );
164   aTB->addAction(anAct);
165
166   anAct = createAction( CLOSE_SECTIONS_ID, tr("CLOSE_SECTIONS"), QPixmap(), tr("CLOSE_SECTIONS_TLT"), 
167                         QKeySequence(Qt::ControlModifier|Qt::Key_W) );
168   connect(anAct, SIGNAL(triggered()), this, SLOT(onCloseSections()) );
169
170   anAct = createAction( UNCLOSE_SECTIONS_ID, tr("UNCLOSE_SECTIONS"), QPixmap(), 
171                         tr("UNCLOSE_SECTIONS_TLT"), QKeySequence(Qt::ControlModifier|Qt::Key_S) );
172   connect(anAct, SIGNAL(triggered()), this, SLOT(onUncloseSections()) );
173
174   anAct = createAction( SET_SECTIONS_POLYLINE_ID, tr("SET_SECTIONS_POLYLINE"), 
175                         aPolylinePixmap, tr("SET_POLYLINE_TLT"), 
176                         QKeySequence(Qt::ControlModifier|Qt::Key_E) );
177   connect(anAct, SIGNAL(triggered()), this, SLOT(onSetPolyline()) );
178
179   anAct = createAction( SET_SECTIONS_SPLINE_ID, tr("SET_SECTIONS_SPLINE"), aSplinePixmap, 
180                         tr("SET_SPLINE_TLT"), QKeySequence(Qt::ControlModifier|Qt::Key_R) );
181   connect(anAct, SIGNAL(triggered()), this, SLOT(onSetSpline()) );
182
183   anAct = createAction( REMOVE_ID, tr("REMOVE"), aRemovePixmap, tr("REMOVE_TLT"), 
184                         QKeySequence(Qt::ControlModifier|Qt::Key_Delete ) );
185   connect(anAct, SIGNAL(triggered()), this, SLOT(onRemove()) );
186   aTB->addAction(anAct);
187   aTB->addSeparator();
188
189   anAct = createAction( JOIN_ID, tr("JOIN"), aJoinPixmap, tr("JOIN_TLT"), 
190                         QKeySequence(Qt::ControlModifier|Qt::Key_Plus ) );
191   connect( anAct, SIGNAL(triggered()), this, SLOT(onJoin()) );
192   aTB->addAction(anAct);
193   aTB->addSeparator();
194
195   anAct = createAction( CLEAR_ALL_ID, tr("CLEAR_ALL"), QPixmap(), tr("CLEAR_ALL_TLT"), 
196                         QKeySequence(Qt::ControlModifier | Qt::ShiftModifier | Qt::Key_Delete ) );
197   connect( anAct, SIGNAL(triggered()), this, SLOT( onClearAll()) );
198
199   anAct = createAction( JOIN_ALL_ID, tr("JOIN_ALL"), QPixmap(), tr("JOIN_ALL_TLT"), 
200                         QKeySequence(Qt::ControlModifier | Qt::ShiftModifier | Qt::Key_Plus ) );
201   connect( anAct, SIGNAL(triggered()), this, SLOT(onJoinAll()) );
202
203   QVBoxLayout* aSectLayout = new QVBoxLayout();
204   aSectLayout->setMargin( 5 );
205   aSectLayout->setSpacing( 5 );
206   aSectLayout->addWidget(aTB);
207   aSectLayout->addWidget(mySectionView);
208   aSectLayout->addWidget( myLocalPointView );
209   aSectionGroup->setLayout(aSectLayout);
210   QVBoxLayout* aLay = new QVBoxLayout();
211   aLay->setMargin( 0 );
212   aLay->setSpacing( 5 );
213 //    aLay->addLayout(aNameLayout);
214   aLay->addWidget(aSectionGroup);
215   setLayout(aLay);
216   onSelectionChanged();
217 }
218
219 /**
220  * Set an OCC viewer
221  */
222 void CurveCreator_Widget::setOCCViewer( OCCViewer_Viewer* theViewer )
223 {
224   if ( myOCCViewer == theViewer )
225     return;
226
227   if ( myOCCViewer ) {
228     OCCViewer_ViewManager* aViewManager = dynamic_cast<OCCViewer_ViewManager*>
229                                                     ( myOCCViewer->getViewManager() );
230     disconnect( aViewManager, SIGNAL( mousePress( SUIT_ViewWindow*, QMouseEvent* ) ),
231            this, SLOT( onMousePress( SUIT_ViewWindow*, QMouseEvent* ) ) );
232     disconnect( aViewManager, SIGNAL( mouseRelease( SUIT_ViewWindow*, QMouseEvent* ) ),
233            this, SLOT( onMouseRelease( SUIT_ViewWindow*, QMouseEvent* ) ) );
234     disconnect( aViewManager, SIGNAL( mouseMove( SUIT_ViewWindow*, QMouseEvent* ) ),
235            this, SLOT( onMouseMove( SUIT_ViewWindow*, QMouseEvent* ) ) );
236     // all local contexts should be closed if the viewer is not more used
237     setLocalPointContext( false, true );
238   }
239
240   myOCCViewer = theViewer;
241   if ( myOCCViewer ) {
242     OCCViewer_ViewManager* aViewManager = dynamic_cast<OCCViewer_ViewManager*>
243                                                     ( myOCCViewer->getViewManager() );
244     connect( aViewManager, SIGNAL( mousePress( SUIT_ViewWindow*, QMouseEvent* ) ),
245            this, SLOT( onMousePress( SUIT_ViewWindow*, QMouseEvent* ) ) );
246     connect( aViewManager, SIGNAL( mouseRelease( SUIT_ViewWindow*, QMouseEvent* ) ),
247            this, SLOT( onMouseRelease( SUIT_ViewWindow*, QMouseEvent* ) ) );
248     connect( aViewManager, SIGNAL( mouseMove( SUIT_ViewWindow*, QMouseEvent* ) ),
249            this, SLOT( onMouseMove( SUIT_ViewWindow*, QMouseEvent* ) ) );
250   }
251 }
252
253 /**
254  * Returns current OCC viewer
255  */
256 OCCViewer_Viewer* CurveCreator_Widget::getOCCViewer()
257 {
258   return myOCCViewer;
259 }
260
261 //=======================================================================
262 // function: getUniqSectionName
263 // purpose: return unique section name
264 //=======================================================================
265 std::string CurveCreator_Widget::getUniqSectionName( CurveCreator_ICurve* theCurve ) const
266 {
267   for( int i = 0 ; i < 1000000 ; i++ ){
268       char aBuffer[255];
269       sprintf( aBuffer, "Section_%d", i+1 );
270       std::string aName(aBuffer);
271       int j;
272       for( j = 0 ; j < theCurve->getNbSections() ; j++ ){
273         if( theCurve->getSectionName(j) == aName )
274             break;
275       }
276       if( j == theCurve->getNbSections() )
277           return aName;
278   }
279   return "";
280 }
281
282 void CurveCreator_Widget::setCurve( CurveCreator_ICurve* theCurve )
283 {
284   myCurve = theCurve;
285   mySectionView->setCurve(myCurve);
286   onSelectionChanged();
287   updateUndoRedo();
288 }
289
290 void CurveCreator_Widget::onSelectionChanged()
291 {
292   QList<ActionId> anEnabledAct;
293   if( myCurve ){
294     anEnabledAct << NEW_SECTION_ID << MODIFICATION_MODE_ID;
295     if ( removeEnabled() )
296       anEnabledAct << REMOVE_ID;
297     QList<int> aSelSections = mySectionView->getSelectedSections();
298     QList< QPair< int, int > > aSelPoints = mySectionView->getSelectedPoints();
299     CurveCreator_TreeView::SelectionType aSelType = mySectionView->getSelectionType();
300     switch( aSelType ){
301     case CurveCreator_TreeView::ST_NOSEL:{
302       break;
303     }
304     case CurveCreator_TreeView::ST_SECTIONS:{
305       /*if( aSelSections[0] > 0 ){
306         anEnabledAct << UP_ID;
307       }*/
308       if( aSelSections.size() == 1 ){
309         anEnabledAct << ADDITION_MODE_ID << DETECTION_MODE_ID;
310       }
311       switch ( getActionMode() ) {
312         case AdditionMode: {
313           mySection = -1;
314           myPointNum = -1;
315           QList<int> aSelSection = mySectionView->getSelectedSections();
316           if( aSelSection.size() > 0 ){
317             mySection = aSelSection[0];
318             myPointNum = myCurve->getNbPoints(mySection);
319           }
320         }
321         break;
322         case ModificationMode: {
323          anEnabledAct << CLOSE_SECTIONS_ID << UNCLOSE_SECTIONS_ID << SET_SECTIONS_POLYLINE_ID << SET_SECTIONS_SPLINE_ID;
324           int aSectCnt = myCurve->getNbSections();
325           if( aSectCnt > 0 )
326             anEnabledAct << CLEAR_ALL_ID;
327           if( aSectCnt > 1 )
328             anEnabledAct << JOIN_ALL_ID;
329           if( aSelSections.size() > 1 ){
330             anEnabledAct << JOIN_ID;
331           }
332         }
333         break;
334         case DetectionMode: {
335         }
336         break;
337         case NoneMode:
338         default:
339         break;
340       }
341       /*if( aSelSections[ aSelSections.size() - 1 ] < ( myCurve->getNbSections() - 1 ) ){
342         anEnabledAct << DOWN_ID;
343       }*/
344       break;
345     }
346     /*case CurveCreator_TreeView::ST_POINTS_ONE_SECTION:{
347       if( aSelPoints[0].second > 0 ){
348         anEnabledAct << UP_ID;
349       }
350       int aLastIndex = aSelPoints.size()-1;
351       int aSect = aSelPoints[0].first;
352       if( aSelPoints[aLastIndex].second < (myCurve->getNbPoints(aSect) - 1)){
353         anEnabledAct << DOWN_ID;
354       }
355       if( aSelPoints.size() == 1){
356         anEnabledAct << INSERT_POINT_BEFORE_ID << INSERT_POINT_AFTER_ID;
357       }
358       break;
359     }*/
360
361     }
362     
363     /*int aSelObjsCnt = aSelPoints.size() + aSelSections.size();
364     if( aSelObjsCnt > 0 ){
365       anEnabledAct << REMOVE_ID;
366     }
367     if( (myCurve->getNbSections() + myCurve->getNbPoints()) > 0 ){
368       anEnabledAct << REMOVE_ALL_ID;
369     }*/
370     if( myCurve->getNbSections() > 1 ){
371       anEnabledAct << JOIN_ALL_ID;
372     }
373   }
374   QList<ActionId> anIds = myActionMap.keys();
375   for( int i = 0 ; i < anIds.size() ; i++ ){
376     if( myActionMap.contains(anIds[i]) ){
377       if( anEnabledAct.contains(anIds[i]) ){
378         myActionMap[anIds[i]]->setEnabled(true);
379       }
380       else{
381         myActionMap[anIds[i]]->setEnabled(false);
382       }
383     }
384   }
385   updateUndoRedo();
386   emit selectionChanged();
387 }
388
389 void CurveCreator_Widget::onAdditionMode(bool checked)
390 {
391   OCCViewer_Viewer* aViewer = getOCCViewer();
392   if( !myCurve || !aViewer )
393     return;
394
395   Handle(AIS_InteractiveContext) aContext = aViewer->getAISContext();
396   OCCViewer_ViewManager* aViewManager = dynamic_cast<OCCViewer_ViewManager*>
397                                                     (aViewer->getViewManager());
398 //  if ( aViewManager->getType() == OCCViewer_Viewer::Type() ) {
399   if( aViewer ) {
400     if (checked) {
401 /*      myGuiState = aViewWindow->saveState();
402       aViewer->enableMultiselection(false);
403       aViewer->enableSelection(false);*/
404     } else {
405 /*      aViewer->enableMultiselection(true);
406       aViewer->enableSelection(true);
407       aViewWindow->restoreState( myGuiState );*/
408       return;
409     }
410   }
411
412   mySection= -1;
413   myPointNum = -1;
414   QList<int> aSelSection = mySectionView->getSelectedSections();
415   if( aSelSection.size() > 0 ){
416     mySection = aSelSection[0];
417   }
418   else{
419     QList< QPair<int,int> > aSelPoints = mySectionView->getSelectedPoints();
420     if( aSelPoints.size() > 0 ){
421       mySection = aSelPoints[0].first;
422       myPointNum = aSelPoints[0].second + 1;
423     }
424   }
425 //  emit subOperationStarted( myNewPointEditor );
426 }
427
428 void CurveCreator_Widget::onModificationMode(bool checked)
429 {
430   myLocalPointView->setVisible( checked );
431 }
432
433 void CurveCreator_Widget::onDetectionMode(bool checked)
434 {
435 }
436
437 void CurveCreator_Widget::onModeChanged(bool checked)
438 {
439   ActionMode aMode = NoneMode;
440   if (checked) {
441     QAction* anAction = (QAction*)sender();
442     switch(myActionMap.key(anAction)) {
443       case ADDITION_MODE_ID:
444         aMode = AdditionMode;
445         if (myActionMap[MODIFICATION_MODE_ID]->isChecked())
446           myActionMap[MODIFICATION_MODE_ID]->trigger();
447         else if (myActionMap[DETECTION_MODE_ID]->isChecked())
448           myActionMap[DETECTION_MODE_ID]->trigger();
449         break;
450       case MODIFICATION_MODE_ID:
451         aMode = ModificationMode;
452         if (myActionMap[ADDITION_MODE_ID]->isChecked())
453           myActionMap[ADDITION_MODE_ID]->trigger();
454         else if (myActionMap[DETECTION_MODE_ID]->isChecked())
455           myActionMap[DETECTION_MODE_ID]->trigger();
456         break;
457       case DETECTION_MODE_ID:
458         aMode = DetectionMode;
459         if (myActionMap[ADDITION_MODE_ID]->isChecked())
460           myActionMap[ADDITION_MODE_ID]->trigger();
461         else if (myActionMap[MODIFICATION_MODE_ID]->isChecked())
462           myActionMap[MODIFICATION_MODE_ID]->trigger();
463         break;
464     }
465   }
466   onSelectionChanged();
467   setLocalPointContext( aMode == ModificationMode, true );
468 }
469
470 void CurveCreator_Widget::onAddNewPoint(const CurveCreator::Coordinates& theCoords)
471 {
472   if( !myCurve )
473     return;
474   //myCurve->addPoints(theCoords, mySection, myPointNum );
475   //mySectionView->pointsAdded( mySection, myPointNum );
476   //myPointNum++;
477   QList<int> aSections = mySectionView->getSelectedSections();
478   if( aSections.size() == 0 ){
479     return;
480   }
481   int aSection = aSections[0];
482   myCurve->addPoints(theCoords, aSection); // add to the end of section
483   mySectionView->pointsAdded( aSection, myCurve->getNbPoints( aSection ) );
484   onSelectionChanged();
485   updateUndoRedo();
486 }
487
488 void CurveCreator_Widget::onNewSection()
489 {
490   if( !myCurve )
491     return;
492   myNewSectionEditor->clear();
493   myNewSectionEditor->setEditMode(false);
494   QString aSectName = QString( getUniqSectionName(myCurve).c_str() );
495   myNewSectionEditor->setSectionParameters(aSectName, true, CurveCreator::Polyline );
496   emit subOperationStarted( myNewSectionEditor );
497 }
498
499 void CurveCreator_Widget::onAddNewSection()
500 {
501   if( !myCurve )
502     return;
503   myCurve->addSection( myNewSectionEditor->getName().toStdString(), myNewSectionEditor->getSectionType(),
504                       myNewSectionEditor->isClosed() );
505   mySectionView->sectionAdded( -1 ); // add a new section to the end of list
506   QString aNewName = QString(getUniqSectionName(myCurve).c_str());
507   myNewSectionEditor->setSectionName(aNewName);
508   onSelectionChanged();
509   updateUndoRedo();
510   onCancelSection();
511 }
512
513 void CurveCreator_Widget::onCancelSection()
514 {
515   emit subOperationFinished( myNewSectionEditor );
516 }
517
518 QAction* CurveCreator_Widget::createAction( ActionId theId, const QString& theName, const QPixmap& theImage,
519                                             const QString& theToolTip, const QKeySequence& theShortcut )
520 {
521   QAction* anAct = new QAction(theName,this);
522   if( !theImage.isNull() ){
523     anAct->setIcon(theImage);
524   }
525   anAct->setShortcut(theShortcut);
526   anAct->setToolTip(theToolTip);
527   myActionMap[theId] = anAct;
528   return anAct;
529 }
530
531 QAction* CurveCreator_Widget::getAction(ActionId theId)
532 {
533   if( myActionMap.contains(theId) )
534     return myActionMap[theId];
535   return NULL;
536 }
537
538 CurveCreator_Widget::ActionMode CurveCreator_Widget::getActionMode() const
539 {
540   ActionMode aMode = NoneMode;
541
542   if ( myActionMap[ADDITION_MODE_ID]->isChecked() )
543     aMode = AdditionMode;
544   else if ( myActionMap[MODIFICATION_MODE_ID]->isChecked() )
545     aMode = ModificationMode;
546   else if ( myActionMap[DETECTION_MODE_ID]->isChecked() )
547     aMode = DetectionMode;
548
549   return aMode;
550 }
551
552 void CurveCreator_Widget::onEditSection( int theSection )
553 {
554   if( !myCurve )
555     return;
556   mySection = theSection;
557   QString aSectName = QString::fromStdString( myCurve->getSectionName(theSection));
558   bool isClosed = myCurve->isClosed(theSection);
559   CurveCreator::SectionType aType = myCurve->getSectionType(theSection);
560   myNewSectionEditor->setEditMode(true);
561   myNewSectionEditor->setSectionParameters( aSectName, isClosed, aType );
562
563   emit subOperationStarted( myNewSectionEditor );
564 }
565
566 void CurveCreator_Widget::onModifySection()
567 {
568   if( !myCurve )
569     return;
570   QString aName = myNewSectionEditor->getName();
571   bool isClosed = myNewSectionEditor->isClosed();
572   CurveCreator::SectionType aSectType = myNewSectionEditor->getSectionType();
573 //  myCurve->startOperation();
574   myCurve->setClosed( isClosed, mySection );
575   myCurve->setSectionName( mySection , aName.toStdString() );
576   myCurve->setSectionType( mySection, aSectType );
577 //  myCurve->finishOperation();
578   mySectionView->sectionChanged(mySection);
579   updateUndoRedo();
580   onCancelSection();
581 }
582
583 /*void CurveCreator_Widget::onEditPoint( int theSection, int thePoint )
584 {
585   if( !myNewPointEditor || !myEdit )
586     return;
587   mySection = theSection;
588   myPointNum = thePoint;
589   QString aSectName = QString::fromStdString( myCurve->getSectionName(theSection));
590   myNewPointEditor->setEditMode(true);
591   myNewPointEditor->setSectionName(aSectName);
592   myNewPointEditor->setDimension( myCurve->getDimension() );
593   CurveCreator::Coordinates aCoords = myCurve->getCoordinates(theSection,thePoint);
594   myNewPointEditor->setCoordinates(aCoords);
595   emit subOperationStarted( myNewPointEditor );
596 }
597
598 void CurveCreator_Widget::onModifyPoint()
599 {
600   if( !myEdit )
601     return;
602   CurveCreator::Coordinates aCoords = myNewPointEditor->getCoordinates();
603   myEdit->setCoordinates( aCoords, mySection, myPointNum );
604   mySectionView->pointDataChanged( mySection, myPointNum );
605   updateUndoRedo();
606   onCancelPoint();
607 }*/
608
609 void CurveCreator_Widget::onJoin()
610 {
611   if( !myCurve )
612     return;
613   QList<int> aSections = mySectionView->getSelectedSections();
614   if( aSections.size() == 0 ){
615     return;
616   }
617   int aMainSect = aSections[0];
618   int aMainSectSize = myCurve->getNbPoints(aMainSect);
619 //  myCurve->startOperation();
620   for( int i = 1 ; i < aSections.size() ; i++ ){
621     int aSectNum = aSections[i] - (i-1);
622     myCurve->join( aMainSect, aSectNum );
623     mySectionView->sectionsRemoved( aSectNum );
624   }
625 //  myCurve->finishOperation();
626   int aNewSectSize = myCurve->getNbPoints(aMainSect);
627   if( aNewSectSize != aMainSectSize )
628     mySectionView->pointsAdded( aMainSect, aMainSectSize, aNewSectSize-aMainSectSize );
629   updateUndoRedo();
630 }
631
632 void CurveCreator_Widget::onRemove()
633 {
634   if( !myCurve )
635     return;
636
637   switch( getActionMode() ) {
638     case NoneMode:
639       removeSection();
640     break;
641     case ModificationMode:
642       removePoint();
643     break;
644     default:
645       break;
646   }
647 }
648
649 void CurveCreator_Widget::onClearAll()
650 {
651   if( !myCurve )
652     return;
653   myCurve->clear();
654   mySectionView->reset();
655   onSelectionChanged();
656   updateUndoRedo();
657 }
658
659 void CurveCreator_Widget::onJoinAll()
660 {
661   if( !myCurve )
662     return;
663   myCurve->join();
664   mySectionView->reset();
665   onSelectionChanged();
666   updateUndoRedo();
667 }
668
669 void CurveCreator_Widget::onUndoSettings()
670 {
671
672 }
673
674 void CurveCreator_Widget::onSetSpline()
675 {
676   if( !myCurve )
677     return;
678   QList<int> aSelSections = mySectionView->getSelectedSections();
679 //  myCurve->startOperation();
680   for( int i = 0 ; i < aSelSections.size() ; i++ ){
681     myCurve->setSectionType(aSelSections[i], CurveCreator::Spline );
682     mySectionView->sectionChanged(aSelSections[i]);
683   }
684 //  myCurve->finishOperation();
685   updateUndoRedo();
686 }
687
688 void CurveCreator_Widget::onSetPolyline()
689 {
690   if( !myCurve )
691     return;
692 //  myCurve->startOperation();
693   QList<int> aSelSections = mySectionView->getSelectedSections();
694   for( int i = 0 ; i < aSelSections.size() ; i++ ){
695     myCurve->setSectionType( aSelSections[i], CurveCreator::Polyline );
696     mySectionView->sectionChanged( aSelSections[i] );
697   }
698 //  myCurve->finishOperation();
699   updateUndoRedo();
700 }
701
702 void CurveCreator_Widget::onCloseSections()
703 {
704   if( !myCurve )
705     return;
706 //  myCurve->startOperation();
707   QList<int> aSelSections = mySectionView->getSelectedSections();
708   for( int i = 0 ; i < aSelSections.size() ; i++ ){
709     myCurve->setClosed(true, aSelSections[i]);
710     mySectionView->sectionChanged(aSelSections[i]);
711   }
712 //  myCurve->finishOperation();
713   updateUndoRedo();
714 }
715
716 void CurveCreator_Widget::onUncloseSections()
717 {
718   if( !myCurve )
719     return;
720 //  myCurve->startOperation();
721   QList<int> aSelSections = mySectionView->getSelectedSections();
722   for( int i = 0 ; i < aSelSections.size() ; i++ ){
723     myCurve->setClosed(false, aSelSections[i]);
724     mySectionView->sectionChanged(aSelSections[i]);
725   }
726 //  myCurve->finishOperation();
727   updateUndoRedo();
728 }
729
730 void CurveCreator_Widget::onUndo()
731 {
732     if( !myCurve )
733       return;
734
735     CurveCreator_Widget::SectionToPointList aPoints;
736     startCurveModification( aPoints, false );
737     myCurve->undo();
738     finishCurveModification();
739     mySectionView->reset();
740     updateUndoRedo();
741 }
742
743 void CurveCreator_Widget::onRedo()
744 {
745     if( !myCurve )
746       return;
747     CurveCreator_Widget::SectionToPointList aPoints;
748     startCurveModification( aPoints, false );
749     myCurve->redo();
750     finishCurveModification();
751     mySectionView->reset();
752     updateUndoRedo();
753 }
754
755 void CurveCreator_Widget::updateUndoRedo()
756 {
757   if( !myCurve )
758     return;
759   QAction* anAct = myActionMap[UNDO_ID];
760   if( anAct != 0 ){
761     if( myCurve->getNbUndo() != 0 ){
762       anAct->setEnabled(true);
763     }
764     else{
765       anAct->setDisabled(true);
766     }
767   }
768   anAct = myActionMap[REDO_ID];
769   if( anAct != 0 ){
770     if( myCurve->getNbRedo() != 0 ){
771       anAct->setEnabled(true);
772     }
773     else{
774       anAct->setDisabled(true);
775     }
776   }
777 }
778
779 void CurveCreator_Widget::onContextMenu( QPoint thePoint )
780 {
781   QList<ActionId> aContextActions;
782   aContextActions << CLEAR_ALL_ID << JOIN_ALL_ID << SEPARATOR_ID <<
783                      CLOSE_SECTIONS_ID << UNCLOSE_SECTIONS_ID << SET_SECTIONS_POLYLINE_ID <<
784                      SET_SECTIONS_SPLINE_ID;
785   QPoint aGlPoint = mySectionView->mapToGlobal(thePoint);
786   bool isVis = false;
787   QList<ActionId> aResAct;
788   for( int i = 0 ; i < aContextActions.size() ; i++ ){
789     if( aContextActions[i] != SEPARATOR_ID ){
790       if( myActionMap.contains(aContextActions[i]) ){
791         QAction* anAct = myActionMap[aContextActions[i]];
792         if( anAct->isEnabled() ){
793           aResAct << aContextActions[i];
794           isVis = true;
795         }
796       }
797     }
798     else{
799       aResAct << SEPARATOR_ID;
800     }
801   }
802   if( !isVis )
803     return;
804
805   QMenu* aMenu = new QMenu(this);
806   for( int i = 0 ; i < aResAct.size() ; i++ ){
807     if( aResAct[i] == SEPARATOR_ID ){
808       aMenu->addSeparator();
809     }
810     else{
811       QAction* anAct = myActionMap[aResAct[i]];
812       aMenu->insertAction(NULL, anAct);
813     }
814   }
815   aMenu->exec(aGlPoint);
816 }
817
818 QList<int> CurveCreator_Widget::getSelectedSections()
819 {
820   return mySectionView->getSelectedSections();
821 }
822
823 QList< QPair< int, int > > CurveCreator_Widget::getSelectedPoints()
824 {
825   return mySectionView->getSelectedPoints();
826 }
827
828 /**
829  * According to the widget state, performs the remove action
830  */
831 void CurveCreator_Widget::removeSelected()
832 {
833   onRemove();
834 }
835
836 /**
837  * Checks whether there are some selection to be removed
838  */
839 bool CurveCreator_Widget::removeEnabled()
840 {
841   bool isEnabled = getActionMode() == ModificationMode;
842   if ( !isEnabled ) {
843     QList<int> aSelSections = mySectionView->getSelectedSections();
844     CurveCreator_TreeView::SelectionType aSelType = mySectionView->getSelectionType();
845     isEnabled = aSelType == CurveCreator_TreeView::ST_SECTIONS &&
846                 aSelSections.size() == 1;
847   }
848   return isEnabled;
849 }
850
851
852 //=================================================================================
853 // function : GeometryGUI::onGetCoordsByClick()
854 // purpose  : Manage mouse press events in Additon mode
855 //=================================================================================
856 void CurveCreator_Widget::onGetCoordsByClick( QMouseEvent* pe )
857 {
858   if (pe->button() != Qt::LeftButton)
859     return;
860
861   if ( pe->modifiers() != Qt::ControlModifier ) {
862   OCCViewer_Viewer* aViewer = getOCCViewer();
863   if ( !aViewer )
864     return;
865     Handle(AIS_InteractiveContext) ic = aViewer->getAISContext();
866
867     gp_Pnt aPnt;    
868
869     ic->InitSelected();
870     if ( pe->modifiers() == Qt::ShiftModifier )
871       ic->ShiftSelect();  // Append selection
872     else
873       ic->Select();       // New selection
874
875     /*TopoDS_Shape aShape;
876
877     ic->InitSelected();
878     if ( ic->MoreSelected() )
879       aShape = ic->SelectedShape();
880
881     if ( !aShape.IsNull() && aShape.ShapeType() == TopAbs_VERTEX )
882       aPnt = BRep_Tool::Pnt( TopoDS::Vertex( ic->SelectedShape() ) );
883     else*/
884     {
885       OCCViewer_ViewPort3d* vp =
886         ((OCCViewer_ViewWindow*)aViewer->getViewManager()->getActiveView())->getViewPort();
887       aPnt = CurveCreator_Utils::ConvertClickToPoint( pe->x(), pe->y(), vp->getView() );
888     }
889     // set the coordinates into dialog
890     CurveCreator::Coordinates aCoords;
891     aCoords.push_back( aPnt.X() );
892     aCoords.push_back( aPnt.Y() );
893     if ( myCurve->getDimension() == 3 ) {
894       aCoords.push_back( aPnt.Z() );
895     }
896     onAddNewPoint(aCoords);
897 //    myNewPointEditor->setCoordinates( aCoords );
898   }
899 }
900
901 //=================================================================================
902 // function : CurveCreator_Widget::onMousePress()
903 // purpose  : Manage mouse press events in Modification mode
904 //=================================================================================
905 void CurveCreator_Widget::onMousePress( SUIT_ViewWindow*, QMouseEvent* theEvent )
906 {
907   if ( theEvent->button() != Qt::LeftButton )
908     return;
909
910   switch( getActionMode() ) {
911     case ModificationMode: {
912       //store initial cursor position for Drag&Drop
913       setDragStarted( true, theEvent->pos() );
914       break;
915     }
916     case AdditionMode: {
917       onGetCoordsByClick( theEvent );
918       break;
919     }
920     default:
921       break;
922   }
923 }
924
925 //=================================================================================
926 // function : HYDROGUI_PolylineOp::onMouseRelease()
927 // purpose  : Manage mouse press events in Modification mode
928 //=================================================================================
929 void CurveCreator_Widget::onMouseRelease( SUIT_ViewWindow*, QMouseEvent* theEvent )
930 {
931   if ( getActionMode() != ModificationMode )
932     return;
933
934   if ( myDragStarted ) {
935     if ( myDragged ) // if the drag of some points has happened, restore the drag selection
936       setSelectedPonts( myDragPoints );
937     setDragStarted( false );
938   }
939   else // check whether the segment is clicked an a new point should be added to the segment
940     insertPointToSelectedSegment( theEvent->pos().x(), theEvent->pos().y() );
941
942   // updates the input panel table to show the selected point coordinates
943   updateLocalPointView();
944 }
945
946 //=================================================================================
947 // function : GeometryGUI::onMouseMove()
948 // purpose  : Manage mouse move events in Modification mode
949 //=================================================================================
950 void CurveCreator_Widget::onMouseMove( SUIT_ViewWindow*, QMouseEvent* theEvent )
951 {
952   if ( getActionMode() != ModificationMode || !myDragStarted )
953     return;
954
955   QPoint aPos = theEvent->pos();
956   if ( (aPos - myDragStartPosition).manhattanLength() < QApplication::startDragDistance() )
957     return;
958
959   moveSelectedPoints( aPos.x(), aPos.y() );
960   myDragStartPosition = aPos;
961 }
962
963 void CurveCreator_Widget::onCellChanged( int theRow, int theColumn )
964 {
965   int aCurrSect = getSectionId( theRow );
966   int aPntIndex = getPointId( theRow );
967
968   if ( aPntIndex < 0 )
969     return;
970
971   SectionToPointList aSelPoints;
972   startCurveModification( aSelPoints );
973
974   double aX  = myLocalPointView->item( theRow, 2 )->text().toDouble();
975   double anY = myLocalPointView->item( theRow, 3 )->text().toDouble();
976   std::deque<float> aChangedPos;
977   aChangedPos.push_back( aX );
978   aChangedPos.push_back( anY );
979   myCurve->setPoint( aCurrSect, aPntIndex, aChangedPos );
980
981   finishCurveModification( aSelPoints );
982 }
983
984 /**
985  * Removes a selected section from the curve. Updates undo/redo status
986  */
987 void CurveCreator_Widget::removeSection()
988 {
989   QList< QPair<int,int> > aSelPoints = mySectionView->getSelectedPoints();
990   int aCurrSect=-1;
991   int aRemoveCnt = 0;
992 //  myCurve->startOperation();
993   for( int i = 0 ; i < aSelPoints.size() ; i++ ){
994     if( aCurrSect != aSelPoints[i].first ){
995       aRemoveCnt = 0;
996       aCurrSect = aSelPoints[i].first;
997     }
998     int aPntIndx = aSelPoints[i].second - aRemoveCnt;
999     myCurve->removePoint( aCurrSect, aPntIndx );
1000     mySectionView->pointsRemoved( aCurrSect, aPntIndx );
1001     aRemoveCnt++;
1002   }
1003   QList<int> aSections = mySectionView->getSelectedSections();
1004   for( int i = 0 ; i < aSections.size() ; i++ ){
1005     int aSectNum = aSections[i] - (i);
1006     myCurve->removeSection( aSectNum );
1007     mySectionView->sectionsRemoved( aSectNum );
1008   }
1009 //  myCurve->finishOperation();
1010   mySectionView->clearSelection();
1011   updateUndoRedo();
1012 }
1013
1014 /**
1015  * Removes a selected points from the curve. Updates undo/redo status
1016  */
1017 void CurveCreator_Widget::removePoint()
1018 {
1019   SectionToPointList aPoints;
1020   getSelectedPonts( aPoints );
1021   if ( aPoints.size() == 0 )
1022     return;
1023
1024   SectionToPointList aSelPoints;
1025   startCurveModification( aSelPoints, false );
1026
1027   myCurve->removeSeveralPoints( aPoints );
1028   finishCurveModification( SectionToPointList() );
1029 }
1030
1031 void CurveCreator_Widget::insertPointToSelectedSegment( const int theX,
1032                                                         const int theY )
1033 {
1034   OCCViewer_Viewer* aViewer = getOCCViewer();
1035   if ( !aViewer )
1036     return;
1037
1038   gp_Pnt aPoint;
1039   gp_Pnt aPoint1, aPoint2;
1040   bool isFoundPoint = false;
1041   Handle(AIS_InteractiveContext) aContext = aViewer->getAISContext();
1042   for ( aContext->InitSelected(); aContext->MoreSelected() && !isFoundPoint;
1043         aContext->NextSelected() ) {
1044     TopoDS_Shape aTShape = aContext->SelectedShape();
1045     if ( !aTShape.IsNull() && aTShape.ShapeType() == TopAbs_VERTEX )
1046       continue;
1047     else {
1048       Handle(SelectMgr_EntityOwner) anOwner = aContext->SelectedOwner();
1049       if ( anOwner.IsNull() )
1050         continue;
1051       const TopLoc_Location& aLocation = anOwner->Location();
1052       Handle(AIS_InteractiveObject) anAIS = Handle(AIS_InteractiveObject)::DownCast( anOwner->Selectable() );
1053       isFoundPoint = pointOnObject( anAIS, theX, theY, aPoint, aPoint1, aPoint2 );
1054     }
1055   }
1056   if ( !isFoundPoint )
1057     return;
1058
1059   // insert the point to the model curve
1060   SectionToPointList aSelPoints;
1061   startCurveModification( aSelPoints );
1062
1063   CurveCreator::Coordinates aCoords;
1064   aCoords.push_back( aPoint.X() );
1065   aCoords.push_back( aPoint.Y() );
1066
1067   SectionToPointList aPoints1, aPoints2;
1068   findSectionsToPoints( aPoint1.X(), aPoint1.Y(), aPoints1 );
1069   findSectionsToPoints( aPoint2.X(), aPoint2.Y(), aPoints2 );
1070   SectionToPointList::const_iterator anIt = aPoints1.begin(), aLast = aPoints1.end();
1071   int aSectionId = -1;
1072   // there can be a case when a new point is added into two sections
1073   int aPoint1Id = -1, aPoint2Id = -1;
1074   for ( ; anIt != aLast && aSectionId < 0; anIt++ ) {
1075     int aSectionCur = anIt->first;
1076     SectionToPointList::const_iterator anIt2 = aPoints2.begin(), aLast2 = aPoints2.end();
1077     for ( ; anIt2 != aLast2 && aSectionId < 0; anIt2++ ) {
1078       if ( anIt2->first == aSectionCur ) {
1079         aSectionId = aSectionCur;
1080         aPoint1Id = anIt->second;
1081         aPoint2Id = anIt2->second;
1082       }
1083     }
1084   }
1085
1086   int anInsertPos = -1;
1087   int aLastPoint = myCurve->getNbPoints( aSectionId )-1; 
1088   if ( ( aPoint1Id == aLastPoint && aPoint2Id == 0 ) ||
1089        ( aPoint2Id == aLastPoint && aPoint1Id == 0 ) )
1090     anInsertPos = -1; // if the section happens between first and last points
1091   else
1092     anInsertPos = aPoint1Id < aPoint2Id ? aPoint1Id + 1 : aPoint2Id + 1;
1093
1094   myCurve->addPoints( aCoords, aSectionId, anInsertPos );
1095   mySectionView->pointsAdded( aSectionId, myCurve->getNbPoints( aSectionId ) );
1096
1097   finishCurveModification( aSelPoints );
1098
1099   setSelectedPonts();
1100   updateUndoRedo();
1101 }
1102
1103 void CurveCreator_Widget::moveSelectedPoints( const int theXPosition,
1104                                               const int theYPosition )
1105 {
1106   OCCViewer_Viewer* aViewer = getOCCViewer();
1107   if ( !aViewer )
1108     return;
1109
1110   SectionToPointList aPoints;
1111   startCurveModification( aPoints, false );
1112
1113   OCCViewer_ViewWindow* aWindow =
1114            (OCCViewer_ViewWindow*)aViewer->getViewManager()->getActiveView();
1115   gp_Pnt aStartPnt = CurveCreator_Utils::ConvertClickToPoint( myDragStartPosition.x(),
1116                                                      myDragStartPosition.y(),
1117                                                      aWindow->getViewPort()->getView() );
1118   gp_Pnt anEndPnt = CurveCreator_Utils::ConvertClickToPoint( theXPosition, theYPosition,
1119                                                      aWindow->getViewPort()->getView() );
1120   double aXDelta = aStartPnt.X() - anEndPnt.X();
1121   double anYDelta = aStartPnt.Y() - anEndPnt.Y();
1122
1123   CurveCreator_ICurve::SectionToPointCoordsList aCoordList;
1124   std::deque<float> aChangedPos;
1125   SectionToPointList::const_iterator anIt = myDragPoints.begin(), aLast = myDragPoints.end();
1126   for ( ; anIt != aLast; anIt++ ) {
1127     aChangedPos = myCurve->getPoint( anIt->first, anIt->second );
1128     if ( aChangedPos.size() < 2 )
1129       continue;
1130     aChangedPos[0] = aChangedPos[0] - aXDelta;
1131     aChangedPos[1] = aChangedPos[1] - anYDelta;
1132   }
1133   myCurve->setSeveralPoints( aCoordList );
1134
1135   myDragged = true;
1136   finishCurveModification( myDragPoints );
1137 }
1138
1139 void CurveCreator_Widget::updateLocalPointView()
1140 {
1141   OCCViewer_Viewer* aViewer = getOCCViewer();
1142   if ( !aViewer )
1143     return;
1144   Handle(AIS_InteractiveContext) aContext = aViewer->getAISContext();
1145
1146   bool isBlocked = myLocalPointView->blockSignals(true);
1147   gp_Pnt aPnt;
1148   myLocalPointView->setRowCount( 0 );
1149   for ( aContext->InitSelected(); aContext->MoreSelected(); aContext->NextSelected() ) {
1150     TopoDS_Vertex aVertex;
1151     TopoDS_Shape aShape = aContext->SelectedShape();
1152     if ( !aShape.IsNull() && aShape.ShapeType() == TopAbs_VERTEX )
1153       aVertex = TopoDS::Vertex( aContext->SelectedShape() );
1154     else {
1155       Handle(SelectMgr_EntityOwner) anOwner = aContext->SelectedOwner();
1156       if ( !anOwner.IsNull() ) {
1157         Handle(AIS_InteractiveObject) anAIS = Handle(AIS_InteractiveObject)::DownCast( anOwner->Selectable() );
1158         if ( !anAIS.IsNull() ) {
1159           Handle(AIS_Point) aPoint = Handle(AIS_Point)::DownCast( anAIS);
1160           if ( !aPoint.IsNull() )
1161             aVertex = TopoDS::Vertex( aPoint->Vertex() );
1162         }
1163         if ( aVertex.IsNull() ) {
1164           // the following happens if there are no points in the current curve, there is only a shape
1165           /*Handle(StdSelect_BRepOwner) aBrepOwner = Handle(StdSelect_BRepOwner)::DownCast(anOwner);
1166           if ( aBrepOwner.IsNull() )
1167             continue;
1168           if ( aBrepOwner->HasShape() ) {
1169             const TopoDS_Shape& aShape = aBrepOwner->Shape();
1170             if ( !aShape.IsNull() && aShape.ShapeType() == TopAbs_VERTEX )
1171             {
1172               aVertex = TopoDS::Vertex( aShape );
1173             }
1174           }*/
1175         }
1176       }
1177       if ( aVertex.IsNull() )
1178         continue;
1179       aPnt = BRep_Tool::Pnt( aVertex );
1180       addLocalPointToTable( aPnt.X(), aPnt.Y() );
1181     }
1182   }
1183   myLocalPointView->blockSignals(isBlocked);
1184 }
1185
1186 /**
1187  * 
1188  */
1189 void CurveCreator_Widget::setLocalPointContext( const bool theOpen, const bool isUpdateTable )
1190 {
1191   OCCViewer_Viewer* aViewer = getOCCViewer();
1192   if ( !aViewer )
1193     return;
1194   Handle(AIS_InteractiveContext) ic = aViewer->getAISContext();
1195
1196   if ( theOpen ) {
1197     // Open local context if there is no one
1198     if ( !ic->HasOpenedContext() ) {
1199       ic->ClearCurrents( false );
1200       ic->OpenLocalContext( false/*use displayed objects*/, true/*allow shape decomposition*/ );
1201     }
1202     AIS_ListOfInteractive aList;
1203     ic->DisplayedObjects( aList );
1204     int aLSize = 0;
1205     for ( AIS_ListIteratorOfListOfInteractive it( aList ); it.More(); it.Next() )
1206       aLSize++;
1207
1208     for ( AIS_ListIteratorOfListOfInteractive it( aList ); it.More(); it.Next() )
1209     {
1210       Handle(AIS_InteractiveObject) anAIS = it.Value();
1211       if ( !anAIS.IsNull() )
1212       {
1213         if ( anAIS->IsKind( STANDARD_TYPE( AIS_Shape ) ) )
1214         {
1215           ic->Load( anAIS, -1/*selection mode*/, true/*allow decomposition*/ );
1216           ic->Activate( anAIS, AIS_Shape::SelectionMode( (TopAbs_ShapeEnum)TopAbs_WIRE ) );
1217         }
1218         else if ( anAIS->DynamicType() != STANDARD_TYPE(AIS_Trihedron) )
1219         {
1220           ic->Load( anAIS, -1/*selection mode*/, false/*allow decomposition*/ );
1221           ic->Activate( anAIS, TopAbs_VERTEX );
1222         }
1223       }
1224       continue;
1225     }
1226   }
1227   else {
1228     if ( ic->HasOpenedContext() )
1229       ic->CloseAllContexts();
1230     if ( isUpdateTable )
1231       updateLocalPointView();
1232   }
1233 }
1234
1235 void CurveCreator_Widget::addLocalPointToTable( const double theX, const double theY )
1236 {
1237   SectionToPointList aPoints;
1238   findSectionsToPoints( theX, theY, aPoints );
1239
1240   SectionToPointList aSkipList;
1241   // table could not contain two equal value rows
1242   int aRowId = myLocalPointView->rowCount();
1243   double aCurrentX, aCurrentY;
1244   int aSectionId, aPointId;
1245   SectionToPoint aPoint;
1246   for ( int i = 0; i < aRowId; i++ ) {
1247     aCurrentX = myLocalPointView->item( i, 2 )->data( Qt::UserRole ).toDouble();
1248     aCurrentY = myLocalPointView->item( i, 3 )->data( Qt::UserRole ).toDouble();
1249     if ( fabs( aCurrentX - theX ) < LOCAL_SELECTION_TOLERANCE &&
1250          fabs( aCurrentY - theY ) < LOCAL_SELECTION_TOLERANCE ) {
1251            aPoint = std::make_pair<int, int>( getSectionId( i ), getPointId( i ) );
1252       if ( !contains( aSkipList, aPoint ) )
1253         aSkipList.push_back( aPoint );
1254     }
1255   }
1256   if ( aSkipList.size() == aPoints.size() )
1257     return;
1258
1259   QTableWidgetItem* anItem;
1260   SectionToPointList::const_iterator anIt = aPoints.begin(), aLast = aPoints.end();
1261   for ( ; anIt != aLast; anIt++ ) {
1262     aPoint = *anIt;
1263     if ( contains( aSkipList, aPoint ) )
1264       continue;
1265
1266     myLocalPointView->setRowCount( aRowId+1 );
1267     aSectionId = aPoint.first;
1268     aPointId = aPoint.second;
1269
1270     anItem = new QTableWidgetItem( myCurve->getSectionName( aSectionId ).c_str() );
1271     anItem->setFlags( anItem->flags() & ~Qt::ItemIsEnabled );
1272     anItem->setData( Qt::UserRole, aSectionId );
1273     myLocalPointView->setItem( aRowId, 0, anItem );
1274
1275     anItem = new QTableWidgetItem( QString::number( aPointId + 1 ) );
1276     anItem->setFlags( anItem->flags() & ~Qt::ItemIsEnabled );
1277     anItem->setData( Qt::UserRole, aPointId );
1278     myLocalPointView->setItem( aRowId, 1, anItem );
1279
1280     anItem = new QTableWidgetItem( QString::number( theX ) );
1281     anItem->setData( Qt::UserRole, theX );
1282     myLocalPointView->setItem( aRowId, 2, anItem );
1283
1284     anItem = new QTableWidgetItem( QString::number( theY ) );
1285     anItem->setData( Qt::UserRole, theY );
1286     myLocalPointView->setItem( aRowId, 3, anItem );
1287   }
1288 }
1289
1290 /**
1291  * Set drag operation started. Save the position and a list of dragged points
1292  * \param theState the drag operation state: started/finished
1293  * \param thePoint the start drag position
1294  */
1295 void CurveCreator_Widget::setDragStarted( const bool theState, const QPoint& thePoint )
1296 {
1297   OCCViewer_Viewer* aViewer = getOCCViewer();
1298   if ( theState ) {
1299     getSelectedPonts( myDragPoints );
1300     myDragStarted = myDragPoints.size();
1301     myDragStartPosition = thePoint;
1302     if ( aViewer && myDragStarted ) {
1303       // change a viewer interaction style in order to avoid a select rectangle build
1304       myDragInteractionStyle = aViewer->interactionStyle();
1305       aViewer->setInteractionStyle(SUIT_ViewModel::KEY_FREE);
1306     }
1307   }
1308   else {
1309     if ( aViewer && myDragStarted )
1310       aViewer->setInteractionStyle( myDragInteractionStyle );
1311     myDragStarted = false;
1312     myDragPoints.clear();
1313   }
1314   myDragged = false;
1315 }
1316
1317 void CurveCreator_Widget::getSelectedPonts( CurveCreator_Widget::SectionToPointList& thePoints )
1318 {
1319   thePoints.clear();
1320   for ( int i = 0, aNb = myLocalPointView->rowCount(); i < aNb; i++ )
1321     thePoints.push_back( std::make_pair( getSectionId( i ), getPointId( i ) ) );
1322 }
1323
1324 void CurveCreator_Widget::setSelectedPonts( const CurveCreator_Widget::SectionToPointList& thePoints )
1325 {
1326   OCCViewer_Viewer* aViewer = getOCCViewer();
1327   if ( !aViewer )
1328     return;
1329
1330   AIS_ListOfInteractive aListToSelect;
1331
1332   Handle(AIS_InteractiveContext) ic = aViewer->getAISContext();
1333   if ( !ic->HasOpenedContext() )
1334     return;
1335
1336   AIS_ListOfInteractive aDisplayedList;
1337   ic->DisplayedObjects( aDisplayedList );
1338
1339   SectionToPointList::const_iterator anIt = thePoints.begin(), aLast = thePoints.end();
1340   SectionToPoint aSToPoint;
1341   for( ; anIt != aLast; anIt++ ) {
1342     aSToPoint = *anIt;
1343
1344     for ( AIS_ListIteratorOfListOfInteractive it( aDisplayedList ); it.More(); it.Next() )
1345     {
1346       Handle(AIS_InteractiveObject) anAIS = it.Value();
1347       if ( anAIS.IsNull() )
1348         continue;
1349       Handle(AIS_Point) anAISPoint = Handle(AIS_Point)::DownCast( anAIS );
1350       if ( anAISPoint.IsNull() )
1351         continue;
1352
1353       TopoDS_Vertex aVertex = TopoDS::Vertex( anAISPoint->Vertex() );
1354
1355       if ( aVertex.IsNull() )
1356         continue;
1357
1358       gp_Pnt aPnt = BRep_Tool::Pnt( aVertex );
1359
1360       SectionToPointList aPoints;
1361       findSectionsToPoints( aPnt.X(), aPnt.Y(), aPoints );
1362
1363       SectionToPointList::const_iterator anIt = aPoints.begin(), aLast = aPoints.end();
1364       SectionToPoint aPoint;
1365       for ( ; anIt != aLast; anIt++ ) {
1366         aPoint = *anIt;
1367         if ( aPoint.first == aSToPoint.first && aPoint.second == aSToPoint.second )
1368           aListToSelect.Append( anAIS );
1369       }
1370     }
1371   }
1372
1373   ic->ClearSelected( Standard_False );
1374   aViewer->setObjectsSelected( aListToSelect );
1375   updateLocalPointView();
1376 }
1377
1378 /**
1379  * Get viewer information before perform the curve modification.
1380  * Take a list of selected cuve points an close local context.
1381  * The context should be closed because the curve presentation is
1382  * redisplayed and if it is not closed, when we close the local context
1383  * later, the presentation shown in the local context is disappeared.
1384  * \param thePoints an output list of curve selected points
1385  * \param theFillPoints a flag whether the selection list should be filled
1386  */
1387 void CurveCreator_Widget::startCurveModification(
1388                            CurveCreator_Widget::SectionToPointList& thePoints,
1389                            const bool theFillPoints )
1390 {
1391   if ( theFillPoints ) {
1392     thePoints.clear();
1393     getSelectedPonts( thePoints );
1394   }
1395   setLocalPointContext( false );
1396 }
1397
1398 /**
1399  * Restore the viewer state after the curve modification is done.
1400  * Open local context and select given points inside it.
1401  * \param thePoints a list of curve selected points
1402  */
1403 void CurveCreator_Widget::finishCurveModification(
1404                            const CurveCreator_Widget::SectionToPointList& thePoints )
1405 {
1406   if ( getActionMode() == ModificationMode )
1407     setLocalPointContext( true );
1408   setSelectedPonts( thePoints );
1409 }
1410
1411 /**
1412  * Returns a point index in the model curve by the point coordinates in the viewer
1413  * \param theX the X coordinate of the point
1414  * \param theY the Y coordinate of the point
1415  */
1416 int CurveCreator_Widget::findLocalPointIndex( int theSectionId, float theX, float theY )
1417 {
1418   int aPntIndex = -1;
1419
1420   CurveCreator::Coordinates aCoords;
1421   for ( int i = 0, aNb = myCurve->getNbPoints( theSectionId ); i < aNb && aPntIndex < 0; i++ ) {
1422     aCoords = myCurve->getPoint( theSectionId, i );
1423     if ( aCoords.size() < 2 )
1424       continue;
1425     if ( fabs( aCoords[0] - theX ) < LOCAL_SELECTION_TOLERANCE &&
1426          fabs( aCoords[1] - theY ) < LOCAL_SELECTION_TOLERANCE )
1427       aPntIndex = i;
1428   }
1429
1430   return aPntIndex;
1431 }
1432
1433 void CurveCreator_Widget::findSectionsToPoints( const double theX, const double theY,
1434                                  CurveCreator_Widget::SectionToPointList& thePoints )
1435 {
1436   thePoints.clear();
1437
1438   int aPointId = -1;
1439   for ( int i = 0, aNb = myCurve->getNbSections(); i < aNb; i++ ) {
1440     aPointId = findLocalPointIndex( i, theX, theY );
1441     if ( aPointId < 0 )
1442       continue;
1443     SectionToPoint aPoint = std::make_pair( i, aPointId );
1444     if ( !contains( thePoints, aPoint ) )
1445       thePoints.push_back( aPoint );
1446   }
1447 }
1448
1449 void CurveCreator_Widget::convert( const SectionToPointList& thePoints,
1450                                    QMap<int, QList<int> >& theConvPoints )
1451 {
1452   theConvPoints.clear();
1453
1454   SectionToPointList::const_iterator anIt = thePoints.begin(), aLast = thePoints.end();
1455   QList<int> aPoints;
1456   int aSectionId, aPointId;
1457   for ( ; anIt != aLast; anIt++ ) {
1458     aSectionId = anIt->first;
1459     aPointId = anIt->second;
1460     aPoints.clear();
1461     if ( theConvPoints.contains( aSectionId ) )
1462       aPoints = theConvPoints[aSectionId];
1463     if ( aPoints.contains( aPointId ) )
1464       continue;
1465     aPoints.append( aPointId );
1466     theConvPoints[aSectionId] = aPoints;
1467   }
1468 }
1469
1470 /**
1471  * Checks whether the point belongs to the OCC object
1472  * \param theObject a line or shape with a bspline inside
1473  * \param theX the X coordinate in the view.
1474  * \param theY the Y coordinate in the view.
1475  * \param thePoint the output point to be append to the model curve
1476  * \param thePoint1 the output point to bound the line where a new point should be inserted
1477  * \param thePoint2 the output point to bound the line where a new point should be inserted
1478  */
1479 bool CurveCreator_Widget::pointOnObject( Handle(AIS_InteractiveObject) theObject,
1480                                          const int theX, const int theY,
1481                                          gp_Pnt& thePoint,
1482                                          gp_Pnt& thePoint1, gp_Pnt& thePoint2 )
1483 {
1484   bool isFound = false;
1485
1486   OCCViewer_Viewer* aViewer = getOCCViewer();
1487   if ( theObject.IsNull() || !aViewer )
1488     return isFound;
1489
1490   gp_Pnt aPoint;
1491   Standard_Real aParameter;
1492   gp_Pnt aPnt1, aPnt2;
1493   Handle(AIS_Line) aLine = Handle(AIS_Line)::DownCast( theObject );
1494   if ( !aLine.IsNull() ) {
1495     const Handle(Geom_Line) aGLine = aLine->Line();
1496     isFound = hasProjectPointOnCurve( theX, theY, aGLine, aParameter );
1497     if ( isFound ) {
1498       aPoint = aGLine->Value( aParameter );
1499
1500       Handle(Geom_Point) aPStart;
1501       Handle(Geom_Point) aPEnd;
1502       aLine->Points( aPStart, aPEnd );
1503       aPnt1 = aPStart->Pnt();
1504       aPnt2 = aPEnd->Pnt();
1505
1506       // in case of Geom line a projection is performed to the infinite line,
1507       // so it is necessary to bound it by the line size
1508       Bnd_Box aLineBox;
1509       aLineBox.Set( aPnt1, gp_Vec( aPnt1, aPnt2 ) );
1510       isFound = !aLineBox.IsOut( aPoint );
1511     }
1512   }
1513   else {
1514     Handle(AIS_Shape) aShape = Handle(AIS_Shape)::DownCast( theObject );
1515     if ( !aShape.IsNull() ) {
1516       const TopoDS_Wire& aWire = TopoDS::Wire( aShape->Shape() );
1517       if ( !aWire.IsNull() ) {
1518         TopExp_Explorer anExp( aWire, TopAbs_EDGE );
1519         for ( ; anExp.More(); anExp.Next())
1520         {
1521           const TopoDS_Edge& anEdge = TopoDS::Edge(anExp.Current());
1522           if ( !anEdge.IsNull() ) {
1523             Standard_Real aFirst, aLast;
1524             Handle(Geom_Curve) aCurve = BRep_Tool::Curve( anEdge, aFirst, aLast );
1525
1526             if ( aCurve->IsKind( STANDARD_TYPE(Geom_BSplineCurve) ) ) {
1527               Handle(Geom_BSplineCurve) aBSplineCurve = Handle(Geom_BSplineCurve)::DownCast( aCurve );
1528               if ( !aBSplineCurve.IsNull() ) {
1529                 isFound = hasProjectPointOnCurve( theX, theY, aCurve, aParameter );
1530                 if ( isFound ) {
1531                   aPoint = aBSplineCurve->Value( aParameter );
1532                   Standard_Integer anI1, anI2;
1533                   aBSplineCurve->LocateU( aParameter, LOCAL_SELECTION_TOLERANCE, anI1, anI2 );
1534
1535                   aPnt1 = aBSplineCurve->Value( aBSplineCurve->Knot( anI1 ) );
1536                   aPnt2 = aBSplineCurve->Value( aBSplineCurve->Knot( anI2 ) );
1537                 }
1538               }
1539             }
1540           }
1541         }
1542       }
1543     }
1544   }
1545   if ( isFound ) {
1546     thePoint = aPoint;
1547     thePoint1 = aPnt1;
1548     thePoint2 = aPnt2;
1549   }
1550   return isFound;
1551 }
1552
1553 /**
1554  * Returns whether the clicked point belong to the curve or has a very near projection
1555  * \param theX the X coordinate of a point clicked in the OCC viewer
1556  * \param theY the Y coordinate of a point clicked in the OCC viewer
1557  * \param theCurve a geometry curve
1558  * \param theOutPoint a found projected point on the curve
1559  */
1560 bool CurveCreator_Widget::hasProjectPointOnCurve( const int theX, const int theY,
1561                                                   const Handle(Geom_Curve)& theCurve,
1562                                                   Standard_Real& theParameter )
1563 {
1564   bool isFound = false;
1565   OCCViewer_Viewer* aViewer = getOCCViewer();
1566   if ( !aViewer )
1567     return isFound;
1568
1569   OCCViewer_ViewWindow* aWindow =
1570            (OCCViewer_ViewWindow*)aViewer->getViewManager()->getActiveView();
1571   Handle(V3d_View) aView = aWindow->getViewPort()->getView();
1572   gp_Pnt aPoint = CurveCreator_Utils::ConvertClickToPoint( theX, theY, aView );
1573
1574   GeomAPI_ProjectPointOnCurve aProj( aPoint, theCurve );
1575   Standard_Integer aNbPoint = aProj.NbPoints();
1576   if (aNbPoint > 0) {
1577     for (Standard_Integer j = 1; j <= aNbPoint && !isFound; j++) {
1578       gp_Pnt aNewPoint = aProj.Point( j );
1579       theParameter = aProj.Parameter( j );
1580
1581       int aX, anY;
1582       CurveCreator_Utils::ConvertPointToClick( aNewPoint, aView, aX, anY );
1583
1584       int aXDelta = abs( aX - theX );
1585       int anYDelta = abs( anY - theY );
1586       isFound = aXDelta < SCENE_PIXEL_TOLERANCE && anYDelta < SCENE_PIXEL_TOLERANCE;
1587     }
1588   }
1589   return isFound;
1590 }
1591
1592 /**
1593  * Returns a section index from the table
1594  * \param theRowId a table row
1595  */
1596 int CurveCreator_Widget::getSectionId( const int theRowId ) const
1597 {
1598   return myLocalPointView->item( theRowId, 0 )->data( Qt::UserRole ).toInt();
1599 }
1600
1601 /**
1602  * Returns a point index from the table
1603  * \param theRowId a table row
1604  */
1605 int CurveCreator_Widget::getPointId( const int theRowId ) const
1606 {
1607   return myLocalPointView->item( theRowId, 1 )->data( Qt::UserRole ).toInt();
1608 }
1609
1610 /**
1611  * Returns whethe the container has the value
1612  * \param theList a container of values
1613  * \param theValue a value
1614  */
1615 bool CurveCreator_Widget::contains( const CurveCreator_Widget::SectionToPointList& theList,
1616                                     const CurveCreator_Widget::SectionToPoint& theValue ) const
1617 {
1618   bool isFound = false;
1619
1620   SectionToPointList::const_iterator anIt = theList.begin(), aLast = theList.end();
1621   for ( ; anIt != aLast && !isFound; anIt++ )
1622     isFound = anIt->first == theValue.first && anIt->second == theValue.second;
1623
1624   return isFound;
1625 }