Salome HOME
Refs #90 - prohibit deletion of child objects
[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.hxx"
24 #include "CurveCreator_NewSectionDlg.h"
25 #include "CurveCreator_Utils.h"
26 #include "CurveCreator_UtilsICurve.hxx"
27 #include "CurveCreator_TableView.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 #include "OCCViewer_Utilities.h"
38
39 #include <QHBoxLayout>
40 #include <QVBoxLayout>
41 #include <QLabel>
42 #include <QLineEdit>
43 #include <QGroupBox>
44 #include <QToolButton>
45 #include <QToolBar>
46 #include <QAction>
47 #include <QMenu>
48 #include <QMouseEvent>
49 #include <QApplication>
50 #include <QTableWidget>
51 #include <QTime>
52
53 //#define MEASURE_TIME
54
55 #ifdef MEASURE_TIME
56
57   #define START_MEASURE_TIME \
58     QTime aTimer;            \
59     aTimer.start();          \
60
61   #define END_MEASURE_TIME( theMsg )                      \
62     double aTime = aTimer.elapsed() * 0.001;              \
63     FILE* aFile = fopen( "performance", "a" );            \
64     fprintf( aFile, "%s = %.3lf sec\n", theMsg, aTime );  \
65     fclose( aFile );                                      \
66
67 #else
68
69   #define START_MEASURE_TIME
70   #define END_MEASURE_TIME( theMsg )
71
72 #endif
73
74
75
76
77
78
79 CurveCreator_Widget::CurveCreator_Widget(QWidget* parent,
80                                          CurveCreator_ICurve *theCurve,
81                                          const int theActionFlags,
82                                          Qt::WindowFlags fl,
83                                          int theLocalPointRowLimit )
84 : QWidget(parent), myNewSectionEditor(NULL), myCurve(theCurve), mySection(0),
85   myDragStarted( false ), myDragInteractionStyle( SUIT_ViewModel::STANDARD ),
86   myOCCViewer( 0 ), myLocalPointRowLimit( theLocalPointRowLimit )
87 {
88   bool isToEnableClosed = !( theActionFlags & DisableClosedSection );
89   myNewSectionEditor = new CurveCreator_NewSectionDlg( this, isToEnableClosed );
90   myNewSectionEditor->hide();
91   connect( myNewSectionEditor, SIGNAL(addSection()), this, SLOT(onAddNewSection()) );
92   connect( myNewSectionEditor, SIGNAL(modifySection()), this, SLOT(onModifySection()) );
93   connect( myNewSectionEditor, SIGNAL(cancelSection()), this, SLOT(onCancelSection()) );
94
95   QGroupBox* aSectionGroup = new QGroupBox(tr("Sections"),this);
96
97   mySectionView = new CurveCreator_TreeView(myCurve, aSectionGroup);
98   mySectionView->setSelectionMode( QTreeView::ExtendedSelection );
99   connect( mySectionView, SIGNAL(selectionChanged()), this, SLOT( onSelectionChanged() ) );
100   connect( mySectionView, SIGNAL(sectionEntered(int)), this, SLOT(onEditSection(int)) );
101   connect( mySectionView, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(onContextMenu(QPoint)) );
102
103   myLocalPointView = new CurveCreator_TableView( myCurve, this );
104   connect( myLocalPointView, SIGNAL( cellChanged( int, int ) ),
105            this, SLOT( onCellChanged( int, int ) ) );
106
107   QToolBar* aTB = new QToolBar(tr("TOOL_BAR_TLT"), aSectionGroup);
108 //    QToolButton* anUndoBtn = new QToolButton(aTB);
109
110   SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
111   QPixmap anUndoPixmap(aResMgr->loadPixmap("GEOM", tr("ICON_CC_UNDO")));
112   QPixmap aRedoPixmap(aResMgr->loadPixmap("GEOM", tr("ICON_CC_REDO")));
113   QPixmap aNewSectionPixmap(aResMgr->loadPixmap("GEOM", tr("ICON_CC_NEW_SECTION")));
114   QPixmap aNewPointPixmap(aResMgr->loadPixmap("GEOM", tr("ICON_CC_NEW_POINT")));
115   QPixmap anEditPointsPixmap(aResMgr->loadPixmap("GEOM", tr("ICON_CC_EDIT_POINTS")));
116   QPixmap aDetectPointsPixmap(aResMgr->loadPixmap("GEOM", tr("ICON_CC_EDIT_POINTS")));
117   QPixmap aPolylinePixmap(aResMgr->loadPixmap("GEOM", tr("ICON_CC_POLYLINE")));
118   QPixmap aSplinePixmap(aResMgr->loadPixmap("GEOM", tr("ICON_CC_SPLINE")));
119   QPixmap aRemovePixmap(aResMgr->loadPixmap("GEOM", tr("ICON_CC_DELETE")));
120   QPixmap aJoinPixmap(aResMgr->loadPixmap("GEOM", tr("ICON_CC_JOIN")));
121   QPixmap aStepUpPixmap(aResMgr->loadPixmap("GEOM", tr("ICON_CC_ARROW_UP")));
122   QPixmap aStepDownPixmap(aResMgr->loadPixmap("GEOM", tr("ICON_CC_ARROW_DOWN")));
123
124   QAction* anAct = createAction( UNDO_ID, tr("UNDO"), anUndoPixmap, tr("UNDO_TLT"), 
125                                  QKeySequence(Qt::ControlModifier|Qt::Key_Z) );
126   connect(anAct, SIGNAL(triggered()), this, SLOT(onUndo()) );
127   aTB->addAction(anAct);
128
129   anAct = createAction( REDO_ID, tr("REDO"), aRedoPixmap, tr("REDO_TLT"), 
130                         QKeySequence(Qt::ControlModifier|Qt::Key_Y) );
131   connect(anAct, SIGNAL(triggered()), this, SLOT(onRedo()) );
132   aTB->addAction(anAct);
133
134   aTB->addSeparator();
135   
136   anAct = createAction( NEW_SECTION_ID, tr("NEW_SECTION"), aNewSectionPixmap, tr("NEW_SECTION_TLT"), 
137                         QKeySequence(Qt::ControlModifier|Qt::Key_N) );
138   connect(anAct, SIGNAL(triggered()), this, SLOT(onNewSection()) );
139   if ( !(theActionFlags & DisableNewSection) ) {
140     aTB->addAction(anAct);
141     aTB->addSeparator();
142   }
143
144   anAct = createAction( ADDITION_MODE_ID, tr("ADDITION_MODE"), aNewPointPixmap, tr("ADDITION_MODE_TLT"), 
145                         QKeySequence() );
146   anAct->setCheckable(true);
147   connect(anAct, SIGNAL(triggered(bool)), this, SLOT(onAdditionMode(bool)) );
148   connect(anAct, SIGNAL(toggled(bool)), this, SLOT(onModeChanged(bool)) );
149   aTB->addAction(anAct);
150   
151   anAct = createAction( MODIFICATION_MODE_ID, tr("MODIFICATION_MODE"), anEditPointsPixmap, tr("MODIFICATION_MODE_TLT"), 
152                         QKeySequence() );
153   anAct->setCheckable(true);
154   connect(anAct, SIGNAL(triggered(bool)), this, SLOT(onModificationMode(bool)) );
155   connect(anAct, SIGNAL(toggled(bool)), this, SLOT(onModeChanged(bool)) );
156   aTB->addAction(anAct);
157
158   anAct = createAction( DETECTION_MODE_ID, tr("DETECTION_MODE"), aDetectPointsPixmap, tr("DETECTION_MODE_TLT"), 
159                         QKeySequence() );
160   anAct->setCheckable(true);
161   connect(anAct, SIGNAL(triggered(bool)), this, SLOT(onDetectionMode(bool)) );
162   connect(anAct, SIGNAL(toggled(bool)), this, SLOT(onModeChanged(bool)) );
163   if ( !(theActionFlags & DisableDetectionMode) ) {
164     aTB->addAction(anAct);
165   }
166   
167   anAct = createAction( CLOSE_SECTIONS_ID, tr("CLOSE_SECTIONS"), QPixmap(), tr("CLOSE_SECTIONS_TLT"), 
168                         QKeySequence(Qt::ControlModifier|Qt::Key_W) );
169   connect(anAct, SIGNAL(triggered()), this, SLOT(onCloseSections()) );
170
171   anAct = createAction( UNCLOSE_SECTIONS_ID, tr("UNCLOSE_SECTIONS"), QPixmap(), 
172                         tr("UNCLOSE_SECTIONS_TLT"), QKeySequence(Qt::ControlModifier|Qt::Key_S) );
173   connect(anAct, SIGNAL(triggered()), this, SLOT(onUncloseSections()) );
174
175   anAct = createAction( SET_SECTIONS_POLYLINE_ID, tr("SET_SECTIONS_POLYLINE"), 
176                         aPolylinePixmap, tr("SET_POLYLINE_TLT"), 
177                         QKeySequence(Qt::ControlModifier|Qt::Key_E) );
178   connect(anAct, SIGNAL(triggered()), this, SLOT(onSetPolyline()) );
179
180   anAct = createAction( SET_SECTIONS_SPLINE_ID, tr("SET_SECTIONS_SPLINE"), aSplinePixmap, 
181                         tr("SET_SPLINE_TLT"), QKeySequence(Qt::ControlModifier|Qt::Key_R) );
182   connect(anAct, SIGNAL(triggered()), this, SLOT(onSetSpline()) );
183
184   anAct = createAction( REMOVE_ID, tr("REMOVE"), aRemovePixmap, tr("REMOVE_TLT"), 
185                         QKeySequence(Qt::ControlModifier|Qt::Key_Delete ) );
186   connect(anAct, SIGNAL(triggered()), this, SLOT(onRemove()) );
187   aTB->addAction(anAct);
188   
189   aTB->addSeparator();
190
191   anAct = createAction( JOIN_ID, tr("JOIN"), aJoinPixmap, tr("JOIN_TLT"), 
192                         QKeySequence(Qt::ControlModifier|Qt::Key_Plus ) );
193   connect( anAct, SIGNAL(triggered()), this, SLOT(onJoin()) );
194   aTB->addAction(anAct);
195
196   anAct = createAction( CLEAR_ALL_ID, tr("CLEAR_ALL"), QPixmap(), tr("CLEAR_ALL_TLT"), 
197                         QKeySequence(Qt::ControlModifier | Qt::ShiftModifier | Qt::Key_Delete ) );
198   connect( anAct, SIGNAL(triggered()), this, SLOT( onClearAll()) );
199
200   anAct = createAction( JOIN_ALL_ID, tr("JOIN_ALL"), QPixmap(), tr("JOIN_ALL_TLT"), 
201                         QKeySequence(Qt::ControlModifier | Qt::ShiftModifier | Qt::Key_Plus ) );
202   connect( anAct, SIGNAL(triggered()), this, SLOT(onJoinAll()) );
203
204   QVBoxLayout* aSectLayout = new QVBoxLayout();
205   aSectLayout->setMargin( 5 );
206   aSectLayout->setSpacing( 5 );
207   aSectLayout->addWidget(aTB);
208   aSectLayout->addWidget(mySectionView);
209   aSectLayout->addWidget( myLocalPointView );
210   aSectionGroup->setLayout(aSectLayout);
211   QVBoxLayout* aLay = new QVBoxLayout();
212   aLay->setMargin( 0 );
213   aLay->setSpacing( 5 );
214 //    aLay->addLayout(aNameLayout);
215   aLay->addWidget(aSectionGroup);
216   setLayout(aLay);
217
218   updateActionsStates();
219   updateUndoRedo();
220 }
221
222 /**
223  * Set an OCC viewer
224  */
225 void CurveCreator_Widget::setOCCViewer( OCCViewer_Viewer* theViewer )
226 {
227   if ( myOCCViewer == theViewer )
228     return;
229
230   if ( myOCCViewer ) {
231     OCCViewer_ViewManager* aViewManager = dynamic_cast<OCCViewer_ViewManager*>
232                                                     ( myOCCViewer->getViewManager() );
233     disconnect( aViewManager, SIGNAL( mousePress( SUIT_ViewWindow*, QMouseEvent* ) ),
234            this, SLOT( onMousePress( SUIT_ViewWindow*, QMouseEvent* ) ) );
235     disconnect( aViewManager, SIGNAL( mouseRelease( SUIT_ViewWindow*, QMouseEvent* ) ),
236            this, SLOT( onMouseRelease( SUIT_ViewWindow*, QMouseEvent* ) ) );
237     disconnect( aViewManager, SIGNAL( mouseMove( SUIT_ViewWindow*, QMouseEvent* ) ),
238            this, SLOT( onMouseMove( SUIT_ViewWindow*, QMouseEvent* ) ) );
239     disconnect( aViewManager, SIGNAL( lastViewClosed( SUIT_ViewManager* ) ),
240            this, SLOT( onLastViewClosed( SUIT_ViewManager* ) ) );
241     // restore normal mode in the viewer
242     OCCViewer_Utilities::setViewer2DMode( myOCCViewer, OCCViewer_ViewWindow::No2dMode );
243     // all local contexts should be closed if the viewer is not more used
244     setLocalPointContext( false, true );
245   }
246
247   myOCCViewer = theViewer;
248   if ( myOCCViewer ) {
249     OCCViewer_ViewManager* aViewManager = dynamic_cast<OCCViewer_ViewManager*>
250                                                     ( myOCCViewer->getViewManager() );
251     connect( aViewManager, SIGNAL( mousePress( SUIT_ViewWindow*, QMouseEvent* ) ),
252            this, SLOT( onMousePress( SUIT_ViewWindow*, QMouseEvent* ) ) );
253     connect( aViewManager, SIGNAL( mouseRelease( SUIT_ViewWindow*, QMouseEvent* ) ),
254            this, SLOT( onMouseRelease( SUIT_ViewWindow*, QMouseEvent* ) ) );
255     connect( aViewManager, SIGNAL( mouseMove( SUIT_ViewWindow*, QMouseEvent* ) ),
256            this, SLOT( onMouseMove( SUIT_ViewWindow*, QMouseEvent* ) ) );
257     connect( aViewManager, SIGNAL( lastViewClosed( SUIT_ViewManager* ) ),
258            this, SLOT( onLastViewClosed( SUIT_ViewManager* ) ) );
259     OCCViewer_Utilities::setViewer2DMode( myOCCViewer, OCCViewer_ViewWindow::XYPlane );
260   }
261 }
262
263 /**
264  * Returns current OCC viewer
265  */
266 OCCViewer_Viewer* CurveCreator_Widget::getOCCViewer()
267 {
268   return myOCCViewer;
269 }
270
271 /**
272  * Returns OCC viewer context
273  */
274 Handle(AIS_InteractiveContext) CurveCreator_Widget::getAISContext()
275 {
276   Handle(AIS_InteractiveContext) aContext;
277   OCCViewer_Viewer* aViewer = getOCCViewer();
278   if ( aViewer )
279     aContext = aViewer->getAISContext();
280
281   return aContext;
282 }
283
284 /**
285  * Returns OCC viewer view port
286  */
287 OCCViewer_ViewPort3d* CurveCreator_Widget::getViewPort()
288 {
289   OCCViewer_ViewPort3d* aViewPort = 0;
290   OCCViewer_Viewer* aViewer = getOCCViewer();
291   if ( aViewer )
292     aViewPort = ((OCCViewer_ViewWindow*)aViewer->getViewManager()->getActiveView())->getViewPort();
293     
294   return aViewPort;
295 }
296
297 /**
298  * Set interaction style in the OCC viewer
299  * \param theStyle a new style
300  * \return the previous style
301  */
302 int CurveCreator_Widget::changeInteractionStyle( int theStyle )
303 {
304   OCCViewer_Viewer* aViewer = getOCCViewer();
305   if ( !aViewer )
306     return -1;
307
308   int aPrevStyle = aViewer->interactionStyle();
309   aViewer->setInteractionStyle( theStyle );
310
311   return aPrevStyle;
312 }
313
314 //=======================================================================
315 // function: reset
316 // purpose: reset the widget viewer, close local context, clear selection
317 //=======================================================================
318 void CurveCreator_Widget::reset()
319 {
320 }
321
322 void CurveCreator_Widget::setCurve( CurveCreator_ICurve* theCurve )
323 {
324   myCurve = theCurve;
325   mySectionView->setCurve( myCurve );
326   myLocalPointView->setCurve( myCurve );
327   updateActionsStates();
328   updateUndoRedo();
329 }
330
331 void CurveCreator_Widget::onSelectionChanged()
332 {
333   updateActionsStates();
334   updateUndoRedo();
335   emit selectionChanged();
336 }
337
338 void CurveCreator_Widget::updateActionsStates()
339 {
340   QList<ActionId> anEnabledAct;
341   if( myCurve ){
342     anEnabledAct << NEW_SECTION_ID << MODIFICATION_MODE_ID;
343     if ( removeEnabled() )
344       anEnabledAct << REMOVE_ID;
345     QList<int> aSelSections = mySectionView->getSelectedSections();
346     CurveCreator_TreeView::SelectionType aSelType = mySectionView->getSelectionType();
347     switch( aSelType ){
348     case CurveCreator_TreeView::ST_NOSEL:{
349       break;
350     }
351     case CurveCreator_TreeView::ST_SECTIONS:{
352       /*if( aSelSections[0] > 0 ){
353         anEnabledAct << UP_ID;
354       }*/
355       if( aSelSections.size() == 1 ){
356         anEnabledAct << ADDITION_MODE_ID << DETECTION_MODE_ID;
357       }
358       switch ( getActionMode() ) {
359         case AdditionMode: {
360           mySection = -1;
361           myPointNum = -1;
362           QList<int> aSelSection = mySectionView->getSelectedSections();
363           if( aSelSection.size() > 0 ){
364             mySection = aSelSection[0];
365             myPointNum = myCurve->getNbPoints(mySection);
366           }
367         }
368         break;
369         case ModificationMode: {
370          anEnabledAct << CLOSE_SECTIONS_ID << UNCLOSE_SECTIONS_ID << SET_SECTIONS_POLYLINE_ID << SET_SECTIONS_SPLINE_ID;
371           int aSectCnt = myCurve->getNbSections();
372           if( aSectCnt > 0 )
373             anEnabledAct << CLEAR_ALL_ID;
374           if( aSectCnt > 1 )
375             anEnabledAct << JOIN_ALL_ID;
376           if( aSelSections.size() > 1 ){
377             anEnabledAct << JOIN_ID;
378           }
379         }
380         break;
381         case DetectionMode: {
382         }
383         break;
384         case NoneMode:
385           {
386             int aSectCnt = myCurve->getNbSections();
387             if( aSectCnt > 1 )
388               anEnabledAct << JOIN_ALL_ID;
389             if( aSelSections.size() > 1 )
390               anEnabledAct << JOIN_ID;
391           }
392           break;
393         default:
394         break;
395       }
396       /*if( aSelSections[ aSelSections.size() - 1 ] < ( myCurve->getNbSections() - 1 ) ){
397         anEnabledAct << DOWN_ID;
398       }*/
399       break;
400     }
401     /*case CurveCreator_TreeView::ST_POINTS_ONE_SECTION:{
402       if( aSelPoints[0].second > 0 ){
403         anEnabledAct << UP_ID;
404       }
405       int aLastIndex = aSelPoints.size()-1;
406       int aSect = aSelPoints[0].first;
407       if( aSelPoints[aLastIndex].second < (myCurve->getNbPoints(aSect) - 1)){
408         anEnabledAct << DOWN_ID;
409       }
410       if( aSelPoints.size() == 1){
411         anEnabledAct << INSERT_POINT_BEFORE_ID << INSERT_POINT_AFTER_ID;
412       }
413       break;
414     }*/
415
416     }
417     
418     /*int aSelObjsCnt = aSelPoints.size() + aSelSections.size();
419     if( aSelObjsCnt > 0 ){
420       anEnabledAct << REMOVE_ID;
421     }
422     if( (myCurve->getNbSections() + myCurve->getNbPoints()) > 0 ){
423       anEnabledAct << REMOVE_ALL_ID;
424     }*/
425     if( myCurve->getNbSections() > 1 ){
426       anEnabledAct << JOIN_ALL_ID;
427     }
428   }
429   QList<ActionId> anIds = myActionMap.keys();
430   for( int i = 0 ; i < anIds.size() ; i++ ){
431     if( myActionMap.contains(anIds[i]) ){
432       if( anEnabledAct.contains(anIds[i]) ){
433         myActionMap[anIds[i]]->setEnabled(true);
434       }
435       else{
436         myActionMap[anIds[i]]->setEnabled(false);
437       }
438     }
439   }
440 }
441
442 void CurveCreator_Widget::onAdditionMode(bool checked)
443 {
444   if (!checked)
445     return;
446
447   Handle(AIS_InteractiveContext) aContext = getAISContext();
448   if( !myCurve || aContext.IsNull() )
449     return;
450
451   mySection= -1;
452   myPointNum = -1;
453   QList<int> aSelSection = mySectionView->getSelectedSections();
454   if( aSelSection.size() > 0 ){
455     mySection = aSelSection[0];
456   }
457 //  emit subOperationStarted( myNewPointEditor );
458 }
459
460 void CurveCreator_Widget::onModificationMode(bool checked)
461 {
462   myLocalPointView->setVisible( checked );
463 }
464
465 void CurveCreator_Widget::onDetectionMode(bool checked)
466 {
467 }
468
469 void CurveCreator_Widget::onModeChanged(bool checked)
470 {
471   ActionMode aMode = NoneMode;
472   if (checked) {
473     QAction* anAction = (QAction*)sender();
474     switch(myActionMap.key(anAction)) {
475       case ADDITION_MODE_ID:
476         aMode = AdditionMode;
477         if (myActionMap[MODIFICATION_MODE_ID]->isChecked())
478           myActionMap[MODIFICATION_MODE_ID]->trigger();
479         else if (myActionMap[DETECTION_MODE_ID]->isChecked())
480           myActionMap[DETECTION_MODE_ID]->trigger();
481         break;
482       case MODIFICATION_MODE_ID:
483         aMode = ModificationMode;
484         if (myActionMap[ADDITION_MODE_ID]->isChecked())
485           myActionMap[ADDITION_MODE_ID]->trigger();
486         else if (myActionMap[DETECTION_MODE_ID]->isChecked())
487           myActionMap[DETECTION_MODE_ID]->trigger();
488         break;
489       case DETECTION_MODE_ID:
490         aMode = DetectionMode;
491         if (myActionMap[ADDITION_MODE_ID]->isChecked())
492           myActionMap[ADDITION_MODE_ID]->trigger();
493         else if (myActionMap[MODIFICATION_MODE_ID]->isChecked())
494           myActionMap[MODIFICATION_MODE_ID]->trigger();
495         break;
496     }
497   }
498   updateActionsStates();
499   updateUndoRedo();
500   setLocalPointContext( aMode == ModificationMode, true );
501 }
502
503 void CurveCreator_Widget::onNewSection()
504 {
505   if( !myCurve )
506     return;
507
508   stopActionMode();
509   myNewSectionEditor->clear();
510   myNewSectionEditor->setEditMode(false);
511   QString aSectName = QString( CurveCreator_UtilsICurve::getUniqSectionName( myCurve ).c_str() );
512   myNewSectionEditor->setSectionParameters(aSectName, true, CurveCreator::Polyline );
513   emit subOperationStarted( myNewSectionEditor, false );
514 }
515
516 void CurveCreator_Widget::onAddNewSection()
517 {
518   if( !myCurve )
519     return;
520   myCurve->addSection( myNewSectionEditor->getName().toStdString(),
521                        myNewSectionEditor->getSectionType(),
522                        myNewSectionEditor->isClosed() );
523   mySectionView->sectionAdded( -1 ); // add a new section to the end of list
524   QString aNewName = QString( CurveCreator_UtilsICurve::getUniqSectionName( myCurve ).c_str() );
525   myNewSectionEditor->setSectionName(aNewName);
526   updateActionsStates();
527   updateUndoRedo();
528   onCancelSection();
529 }
530
531 void CurveCreator_Widget::onCancelSection()
532 {
533   emit subOperationFinished( myNewSectionEditor );
534 }
535
536 QAction* CurveCreator_Widget::createAction( ActionId theId, const QString& theName, const QPixmap& theImage,
537                                             const QString& theToolTip, const QKeySequence& theShortcut )
538 {
539   QAction* anAct = new QAction(theName,this);
540   if( !theImage.isNull() ){
541     anAct->setIcon(theImage);
542   }
543   anAct->setShortcut(theShortcut);
544   anAct->setToolTip(theToolTip);
545   myActionMap[theId] = anAct;
546   return anAct;
547 }
548
549 QAction* CurveCreator_Widget::getAction( ActionId theId )
550 {
551   if( myActionMap.contains(theId) )
552     return myActionMap[theId];
553   return NULL;
554 }
555
556 QAction* CurveCreator_Widget::getAction( ActionMode theMode )
557 {
558   ActionId anActionId = NONE_ID;
559   switch ( theMode ) {
560     case AdditionMode:
561       anActionId = ADDITION_MODE_ID;
562       break;
563     case ModificationMode:
564       anActionId = MODIFICATION_MODE_ID;
565       break;
566     case DetectionMode:
567       anActionId = DETECTION_MODE_ID;
568       break;
569     default:
570       break;
571   }
572   QAction* anAction = 0;
573   if ( anActionId != NONE_ID && myActionMap.contains( anActionId ) )
574     anAction = myActionMap[anActionId];
575   return anAction;
576 }
577
578 void CurveCreator_Widget::setActionMode( const ActionMode& theMode )
579 {
580   ActionMode aPrevMode = getActionMode();
581   QAction* aPrevAction = getAction( aPrevMode );
582   switch ( theMode ) {
583     case NoneMode: {
584       if ( aPrevAction ) {
585         if ( aPrevAction->isChecked() )
586           aPrevAction->setChecked( false );
587       }
588       if ( aPrevMode == ModificationMode )
589         onModificationMode( false );
590       if ( aPrevMode == AdditionMode )
591         onAdditionMode( false );
592     }
593     break;
594     case AdditionMode: {
595       // TODO
596     }
597     break;
598     case ModificationMode:
599     {
600       //TODO
601     }
602     break;
603     case DetectionMode:
604       break;
605   }
606 }
607
608 CurveCreator_Widget::ActionMode CurveCreator_Widget::getActionMode() const
609 {
610   ActionMode aMode = NoneMode;
611
612   if ( myActionMap[ADDITION_MODE_ID]->isChecked() )
613     aMode = AdditionMode;
614   else if ( myActionMap[MODIFICATION_MODE_ID]->isChecked() )
615     aMode = ModificationMode;
616   else if ( myActionMap[DETECTION_MODE_ID]->isChecked() )
617     aMode = DetectionMode;
618
619   return aMode;
620 }
621
622 void CurveCreator_Widget::onEditSection( int theSection )
623 {
624   if( !myCurve )
625     return;
626   
627   stopActionMode();
628   mySection = theSection;
629   QString aSectName = QString::fromStdString( myCurve->getSectionName(theSection));
630   bool isClosed = myCurve->isClosed(theSection);
631   CurveCreator::SectionType aType = myCurve->getSectionType(theSection);
632   myNewSectionEditor->setEditMode(true);
633   myNewSectionEditor->setSectionParameters( aSectName, isClosed, aType );
634
635   emit subOperationStarted( myNewSectionEditor, true );
636 }
637
638 void CurveCreator_Widget::onModifySection()
639 {
640   if( !myCurve )
641     return;
642   QString aName = myNewSectionEditor->getName();
643   bool isClosed = myNewSectionEditor->isClosed();
644   CurveCreator::SectionType aSectType = myNewSectionEditor->getSectionType();
645   if( myCurve->getSectionName(mySection) != aName.toStdString() )
646     myCurve->setSectionName( mySection , aName.toStdString() );
647
648   if( myCurve->getSectionType(mySection) != aSectType )
649     myCurve->setSectionType( mySection, aSectType );
650
651   if( myCurve->isClosed(mySection) != isClosed )
652     myCurve->setClosed( mySection, isClosed );
653   mySectionView->sectionChanged(mySection);
654   updateUndoRedo();
655   onCancelSection();
656 }
657
658 void CurveCreator_Widget::onJoin()
659 {
660   if( !myCurve )
661     return;
662   QList<int> aSections = mySectionView->getSelectedSections();
663   if( aSections.size() == 0 ){
664     return;
665   }
666   stopActionMode();
667
668   std::list<int> aSectionsToJoin;
669   for( int i = 0; i < aSections.size() ; i++ ){
670     aSectionsToJoin.push_back( aSections[i] );
671   }
672   //int aMainSect = aSectionsToJoin.front();
673   //int aMainSectSize = myCurve->getNbPoints(aMainSect);
674   if ( myCurve->join( aSectionsToJoin ) )
675   {
676     std::list<int>::const_iterator anIt = aSectionsToJoin.begin(),
677                                    aLast = aSectionsToJoin.end();
678     // the first section should be skipped. It is not removed, but is modified
679     anIt++;
680     for ( ; anIt != aLast; anIt++ )
681       mySectionView->sectionsRemoved( *anIt );
682   }
683
684   /* The update for the points of the main section
685   int aNewSectSize = myCurve->getNbPoints(aMainSect);
686   if( aNewSectSize != aMainSectSize )
687     mySectionView->pointsAdded( aMainSect, aMainSectSize, aNewSectSize-aMainSectSize );*/
688   updateUndoRedo();
689 }
690
691 void CurveCreator_Widget::onRemove()
692 {
693   if( !myCurve )
694     return;
695
696   switch( getActionMode() ) {
697     case NoneMode:
698       removeSection();
699     break;
700     case ModificationMode:
701       removePoint();
702     break;
703     default:
704       break;
705   }
706 }
707
708 void CurveCreator_Widget::onClearAll()
709 {
710   if( !myCurve )
711     return;
712   stopActionMode();
713   myCurve->clear();
714   mySectionView->reset();
715   updateActionsStates();
716   updateUndoRedo();
717 }
718
719 void CurveCreator_Widget::onJoinAll()
720 {
721   if( !myCurve )
722     return;
723   stopActionMode();
724
725   std::list<int> aSectionsToJoin;
726   for( int i = 0, aNb = myCurve->getNbSections(); i < aNb ; i++ ){
727     aSectionsToJoin.push_back( i );
728   }
729   bool aRes = myCurve->join( aSectionsToJoin );
730
731   mySectionView->reset();
732   updateActionsStates();
733   updateUndoRedo();
734 }
735
736 void CurveCreator_Widget::onUndoSettings()
737 {
738
739 }
740
741 void CurveCreator_Widget::onSetSpline()
742 {
743   if( !myCurve )
744     return;
745   stopActionMode();
746   QList<int> aSelSections = mySectionView->getSelectedSections();
747   for( int i = 0 ; i < aSelSections.size() ; i++ ){
748     myCurve->setSectionType(aSelSections[i], CurveCreator::Spline );
749     mySectionView->sectionChanged(aSelSections[i]);
750   }
751   updateUndoRedo();
752 }
753
754 void CurveCreator_Widget::onSetPolyline()
755 {
756   if( !myCurve )
757     return;
758   stopActionMode();
759   QList<int> aSelSections = mySectionView->getSelectedSections();
760   for( int i = 0 ; i < aSelSections.size() ; i++ ){
761     myCurve->setSectionType( aSelSections[i], CurveCreator::Polyline );
762     mySectionView->sectionChanged( aSelSections[i] );
763   }
764   updateUndoRedo();
765 }
766
767 void CurveCreator_Widget::onCloseSections()
768 {
769   if( !myCurve )
770     return;
771   stopActionMode();
772   QList<int> aSelSections = mySectionView->getSelectedSections();
773   for( int i = 0 ; i < aSelSections.size() ; i++ ){
774     myCurve->setClosed(aSelSections[i], true);
775     mySectionView->sectionChanged(aSelSections[i]);
776   }
777   updateUndoRedo();
778 }
779
780 void CurveCreator_Widget::onUncloseSections()
781 {
782   if( !myCurve )
783     return;
784   stopActionMode();
785   QList<int> aSelSections = mySectionView->getSelectedSections();
786   for( int i = 0 ; i < aSelSections.size() ; i++ ){
787     myCurve->setClosed(aSelSections[i], false);
788     mySectionView->sectionChanged(aSelSections[i]);
789   }
790   updateUndoRedo();
791 }
792
793 void CurveCreator_Widget::onUndo()
794 {
795     if( !myCurve )
796       return;
797
798     CurveCreator_ICurve::SectionToPointList aPoints;
799     startCurveModification( aPoints, false );
800     myCurve->undo();
801     finishCurveModification();
802     mySectionView->reset();
803 }
804
805 void CurveCreator_Widget::onRedo()
806 {
807     if( !myCurve )
808       return;
809     CurveCreator_ICurve::SectionToPointList aPoints;
810     startCurveModification( aPoints, false );
811     myCurve->redo();
812     finishCurveModification();
813     mySectionView->reset();
814 }
815
816 void CurveCreator_Widget::updateUndoRedo()
817 {
818   if( !myCurve )
819     return;
820   QAction* anAct = myActionMap[UNDO_ID];
821   if( anAct != 0 ){
822     if( myCurve->getNbUndo() != 0 ){
823       anAct->setEnabled(true);
824     }
825     else{
826       anAct->setDisabled(true);
827     }
828   }
829   anAct = myActionMap[REDO_ID];
830   if( anAct != 0 ){
831     if( myCurve->getNbRedo() != 0 ){
832       anAct->setEnabled(true);
833     }
834     else{
835       anAct->setDisabled(true);
836     }
837   }
838 }
839
840 void CurveCreator_Widget::onContextMenu( QPoint thePoint )
841 {
842   QList<ActionId> aContextActions;
843   aContextActions << CLEAR_ALL_ID << JOIN_ID << JOIN_ALL_ID << SEPARATOR_ID <<
844                      CLOSE_SECTIONS_ID << UNCLOSE_SECTIONS_ID << SET_SECTIONS_POLYLINE_ID <<
845                      SET_SECTIONS_SPLINE_ID;
846   QPoint aGlPoint = mySectionView->mapToGlobal(thePoint);
847   bool isVis = false;
848   QList<ActionId> aResAct;
849   for( int i = 0 ; i < aContextActions.size() ; i++ ){
850     if( aContextActions[i] != SEPARATOR_ID ){
851       if( myActionMap.contains(aContextActions[i]) ){
852         QAction* anAct = myActionMap[aContextActions[i]];
853         if( anAct->isEnabled() ){
854           aResAct << aContextActions[i];
855           isVis = true;
856         }
857       }
858     }
859     else{
860       aResAct << SEPARATOR_ID;
861     }
862   }
863   if( !isVis )
864     return;
865
866   QMenu* aMenu = new QMenu(this);
867   for( int i = 0 ; i < aResAct.size() ; i++ ){
868     if( aResAct[i] == SEPARATOR_ID ){
869       aMenu->addSeparator();
870     }
871     else{
872       QAction* anAct = myActionMap[aResAct[i]];
873       aMenu->insertAction(NULL, anAct);
874     }
875   }
876   aMenu->exec(aGlPoint);
877 }
878
879 QList<int> CurveCreator_Widget::getSelectedSections()
880 {
881   return mySectionView->getSelectedSections();
882 }
883
884 /**
885  * According to the widget state, performs the remove action
886  */
887 void CurveCreator_Widget::removeSelected()
888 {
889   onRemove();
890 }
891
892 /**
893  * Checks whether there are some selection to be removed
894  */
895 bool CurveCreator_Widget::removeEnabled()
896 {
897   bool isEnabled = getActionMode() == ModificationMode;
898   if ( !isEnabled ) {
899     QList<int> aSelSections = mySectionView->getSelectedSections();
900     CurveCreator_TreeView::SelectionType aSelType = mySectionView->getSelectionType();
901     isEnabled = aSelType == CurveCreator_TreeView::ST_SECTIONS &&
902                 aSelSections.size() == 1;
903   }
904   return isEnabled;
905 }
906
907
908 //=================================================================================
909 // function : GeometryGUI::addCoordsByClick()
910 // purpose  : Manage mouse press events in Additon mode
911 //=================================================================================
912 void CurveCreator_Widget::addCoordsByClick( QMouseEvent* pe )
913 {
914   if (pe->button() != Qt::LeftButton)
915     return;
916
917   if ( pe->modifiers() != Qt::ControlModifier ) {
918     Handle(AIS_InteractiveContext) ic = getAISContext();
919     if ( ic.IsNull() )
920       return;
921
922     gp_Pnt aPnt;    
923
924     ic->InitSelected();
925     if ( pe->modifiers() == Qt::ShiftModifier )
926       ic->ShiftSelect();  // Append selection
927     else
928       ic->Select();       // New selection
929
930     {
931       OCCViewer_ViewPort3d* vp = getViewPort();
932       aPnt = CurveCreator_Utils::ConvertClickToPoint( pe->x(), pe->y(), vp->getView() );
933     }
934     // set the coordinates into dialog
935     CurveCreator::Coordinates aCoords;
936     aCoords.push_back( aPnt.X() );
937     aCoords.push_back( aPnt.Y() );
938     if ( myCurve->getDimension() == 3 ) {
939       aCoords.push_back( aPnt.Z() );
940     }
941     addNewPoint(aCoords);
942   }
943 }
944
945 /**
946  * Manage mouse press events
947  * \param theWindow an owner of the signal
948  * \param theEvent a mouse event
949  */
950 void CurveCreator_Widget::onMousePress( SUIT_ViewWindow*, QMouseEvent* theEvent )
951 {
952   if ( theEvent->button() != Qt::LeftButton )
953     return;
954
955   myPressedX = theEvent->x();
956   myPressedY = theEvent->y();
957
958   switch( getActionMode() ) {
959     case ModificationMode: {
960       //store initial cursor position for Drag&Drop
961       setDragStarted( true, theEvent->pos() );
962       break;
963     }
964     case AdditionMode: {
965       addCoordsByClick( theEvent );
966       break;
967     }
968     default:
969       break;
970   }
971 }
972
973 /**
974  * Manage mouse release events in Modification mode
975  * \param theWindow an owner of the signal
976  * \param theEvent a mouse event
977  */
978 void CurveCreator_Widget::onMouseRelease( SUIT_ViewWindow*, QMouseEvent* theEvent )
979 {
980   if ( getActionMode() != ModificationMode )
981     return;
982
983   if ( myDragStarted ) {
984     bool isDragged = myDragged;
985     CurveCreator_ICurve::SectionToPointList aDraggedPoints;
986     QMap<CurveCreator_ICurve::SectionToPoint, std::deque< float > > anInitialDragPointsCoords;
987     if ( myDragged ) {
988       aDraggedPoints = myDragPoints;
989       anInitialDragPointsCoords = myInitialDragPointsCoords;
990     }
991
992     setDragStarted( false );
993
994     if ( aDraggedPoints.size() > 0 ) {
995       // Collect old coordinates of the dragged points
996       CurveCreator_ICurve::SectionToPointCoordsList anOldPoints;
997       foreach ( const CurveCreator_ICurve::SectionToPoint aSectionToPoint, anInitialDragPointsCoords.keys() ) {
998         CurveCreator::Coordinates aCoords = anInitialDragPointsCoords.value( aSectionToPoint );
999         anOldPoints.push_back( std::make_pair( aSectionToPoint, aCoords ) );
1000       }
1001
1002       if ( myCurve->canPointsBeSorted() ) {
1003         // Add old coordinates of the curve points (except the dragged points) to the list
1004         for( int aSectionId = 0 ; aSectionId < myCurve->getNbSections() ; aSectionId++ ) {
1005           CurveCreator::Coordinates aCoords;
1006           for ( int aPointId = 0, aNb = myCurve->getNbPoints( aSectionId ); aPointId < aNb; aPointId++ ) {
1007             aCoords = myCurve->getPoint( aSectionId, aPointId );
1008             if ( aCoords.size() < 2 ) {
1009               continue;
1010             }
1011             
1012             CurveCreator_ICurve::SectionToPoint aSectionToPoint = std::make_pair( aSectionId, aPointId );
1013
1014             if ( !anInitialDragPointsCoords.contains( aSectionToPoint ) ) {
1015               anOldPoints.push_back( std::make_pair( aSectionToPoint, aCoords ) );
1016             }
1017           }
1018         }
1019         
1020         // Apply points sorting
1021         CurveCreator_ICurve::SectionToPointList aPoints;
1022         startCurveModification( aPoints, false );
1023
1024         myCurve->setSkipSorting( false );
1025
1026         CurveCreator_ICurve::SectionToPointCoordsList aCoordList;
1027         CurveCreator_ICurve::SectionToPointList::const_iterator anIt = aDraggedPoints.begin(),
1028                                                                 aLast = aDraggedPoints.end();
1029         for ( ; anIt != aLast; anIt++ ) {
1030           int aSectionId = anIt->first;
1031           int aPointId = anIt->second;
1032           std::deque<float> aPos = myCurve->getPoint( aSectionId, aPointId );
1033
1034           aCoordList.push_back(
1035             std::make_pair( std::make_pair( aSectionId, aPointId ), aPos ) );
1036         }
1037
1038         myCurve->setSeveralPoints( aCoordList, false );
1039     
1040         finishCurveModification( aDraggedPoints );
1041       } else {
1042         // if the drag of some points has happened, restore the drag selection
1043         START_MEASURE_TIME;
1044         setSelectedPoints( aDraggedPoints );
1045         END_MEASURE_TIME( "drop" );
1046       }
1047
1048       // Save drag difference
1049       myCurve->saveCoordDiff( anOldPoints );
1050     }
1051   }
1052   else // check whether the segment is clicked an a new point should be added to the segment
1053   {
1054     int aReleasedX = theEvent->x();
1055     int aReleasedY = theEvent->y();
1056     if ( myPressedX == aReleasedX && myPressedY == aReleasedY )
1057       insertPointToSelectedSegment( aReleasedX, aReleasedY );
1058   }
1059
1060   // updates the input panel table to show the selected point coordinates
1061   updateLocalPointView();
1062   updateUndoRedo();
1063 }
1064
1065 /**
1066  * Manage mouse move events in Modification mode
1067  * \param theWindow an owner of the signal
1068  * \param theEvent a mouse event
1069  */
1070 void CurveCreator_Widget::onMouseMove( SUIT_ViewWindow*, QMouseEvent* theEvent )
1071 {
1072   if ( getActionMode() != ModificationMode || !myDragStarted )
1073     return;
1074
1075   QPoint aPos = theEvent->pos();
1076   if ( (aPos - myDragStartPosition).manhattanLength() < QApplication::startDragDistance() )
1077     return;
1078
1079   START_MEASURE_TIME;
1080
1081   moveSelectedPoints( aPos.x(), aPos.y() );
1082   myDragStartPosition = aPos;
1083
1084   END_MEASURE_TIME( "drag" );
1085 }
1086
1087 /**
1088  * Set zero viewer by the last view closed in
1089  * \param theManager a viewer manager
1090  */
1091 void CurveCreator_Widget::onLastViewClosed( SUIT_ViewManager* theManager )
1092 {
1093   myOCCViewer = 0;
1094 }
1095
1096 void CurveCreator_Widget::onMousePress( QMouseEvent* theEvent )
1097 {
1098   onMousePress( 0, theEvent );
1099 }
1100
1101 void CurveCreator_Widget::onMouseRelease( QMouseEvent* theEvent )
1102 {
1103   onMouseRelease( 0, theEvent );
1104 }
1105
1106 void CurveCreator_Widget::onMouseMove( QMouseEvent* theEvent )
1107 {
1108   onMouseMove( 0, theEvent );
1109 }
1110
1111 void CurveCreator_Widget::onCellChanged( int theRow, int theColumn )
1112 {
1113   int aCurrSect = myLocalPointView->getSectionId( theRow );
1114   int aPntIndex = myLocalPointView->getPointId( theRow );
1115
1116   if ( aPntIndex < 0 )
1117     return;
1118
1119   CurveCreator_ICurve::SectionToPointList aSelPoints;
1120   startCurveModification( aSelPoints );
1121
1122   double aX  = myLocalPointView->item( theRow, 2 )->data( Qt::UserRole ).toDouble();
1123   double anY = myLocalPointView->item( theRow, 3 )->data( Qt::UserRole ).toDouble();
1124   std::deque<float> aChangedPos;
1125   aChangedPos.push_back( aX );
1126   aChangedPos.push_back( anY );
1127   myCurve->setPoint( aCurrSect, aPntIndex, aChangedPos );
1128
1129   finishCurveModification( aSelPoints );
1130 }
1131
1132 /**
1133  * Removes a selected section from the curve. Updates undo/redo status
1134  */
1135 void CurveCreator_Widget::removeSection()
1136 {
1137   stopActionMode();
1138
1139   QList<int> aSections = mySectionView->getSelectedSections();
1140   for( int i = 0 ; i < aSections.size() ; i++ ){
1141     int aSectNum = aSections[i] - (i);
1142     myCurve->removeSection( aSectNum );
1143     mySectionView->sectionsRemoved( aSectNum );
1144   }
1145   mySectionView->clearSelection();
1146   updateUndoRedo();
1147 }
1148
1149 /**
1150  * Removes a selected points from the curve. Updates undo/redo status
1151  */
1152 void CurveCreator_Widget::removePoint()
1153 {
1154   CurveCreator_ICurve::SectionToPointList aPoints;
1155   getSelectedPoints( aPoints );
1156   if ( aPoints.size() == 0 )
1157     return;
1158
1159   CurveCreator_ICurve::SectionToPointList aSelPoints;
1160   startCurveModification( aSelPoints, false );
1161
1162   myCurve->removeSeveralPoints( aPoints );
1163   finishCurveModification( CurveCreator_ICurve::SectionToPointList() );
1164 }
1165
1166 void CurveCreator_Widget::addNewPoint(const CurveCreator::Coordinates& theCoords)
1167 {
1168   if( !myCurve )
1169     return;
1170   QList<int> aSections = mySectionView->getSelectedSections();
1171   if( aSections.size() == 0 ){
1172     return;
1173   }
1174   int aSection = aSections[0];
1175   myCurve->addPoints(theCoords, aSection); // add to the end of section
1176   mySectionView->pointsAdded( aSection, myCurve->getNbPoints( aSection ) );
1177   updateActionsStates();
1178   updateUndoRedo();
1179 }
1180
1181 void CurveCreator_Widget::insertPointToSelectedSegment( const int theX,
1182                                                         const int theY )
1183 {
1184   Handle(AIS_InteractiveContext) aContext = getAISContext();
1185
1186   OCCViewer_ViewPort3d* aViewPort = getViewPort();
1187   Handle(V3d_View) aView;
1188   if ( aViewPort )
1189     aView = aViewPort->getView();
1190
1191   if ( aContext.IsNull() || aView.IsNull() )
1192     return;
1193   gp_Pnt aPoint;
1194   gp_Pnt aPoint1, aPoint2;
1195   Handle(AIS_InteractiveObject) anAISObject = myCurve->getAISObject();
1196   bool isFoundPoint = CurveCreator_Utils::pointOnObject( aView, anAISObject, theX, theY,
1197                                                          aPoint, aPoint1, aPoint2 );
1198   if ( !isFoundPoint )
1199     return;
1200
1201   // insert the point to the model curve
1202   CurveCreator_ICurve::SectionToPointList aSelPoints;
1203   startCurveModification( aSelPoints );
1204
1205   CurveCreator::Coordinates aCoords;
1206   aCoords.push_back( aPoint.X() );
1207   aCoords.push_back( aPoint.Y() );
1208
1209   CurveCreator_ICurve::SectionToPointList aPoints1, aPoints2;
1210   findSectionsToPoints( aPoint1.X(), aPoint1.Y(), aPoints1 );
1211   findSectionsToPoints( aPoint2.X(), aPoint2.Y(), aPoints2 );
1212   CurveCreator_ICurve::SectionToPointList::const_iterator anIt = aPoints1.begin(),
1213                                                           aLast = aPoints1.end();
1214   int aSectionId = -1;
1215   // find the indices of the neighbour point
1216   // there can be a case when a new point is added into two sections
1217   int aPoint1Id = -1, aPoint2Id = -1;
1218   for ( ; anIt != aLast && aSectionId < 0; anIt++ ) {
1219     int aSectionCur = anIt->first;
1220     CurveCreator_ICurve::SectionToPointList::const_iterator anIt2 = aPoints2.begin(),
1221                                                             aLast2 = aPoints2.end();
1222     for ( ; anIt2 != aLast2 && aSectionId < 0; anIt2++ ) {
1223       if ( anIt2->first == aSectionCur ) {
1224         aSectionId = aSectionCur;
1225         aPoint1Id = anIt->second;
1226         aPoint2Id = anIt2->second;
1227       }
1228     }
1229   }
1230
1231   int anInsertPos = -1;
1232   int aLastPoint = myCurve->getNbPoints( aSectionId )-1; 
1233   if ( ( aPoint1Id == aLastPoint && aPoint2Id == 0 ) ||
1234        ( aPoint2Id == aLastPoint && aPoint1Id == 0 ) )
1235     anInsertPos = -1; // if the section happens between first and last points
1236   else
1237     anInsertPos = aPoint1Id < aPoint2Id ? aPoint1Id + 1 : aPoint2Id + 1;
1238
1239   myCurve->addPoints( aCoords, aSectionId, anInsertPos );
1240   mySectionView->pointsAdded( aSectionId, myCurve->getNbPoints( aSectionId ) );
1241
1242   finishCurveModification( aSelPoints );
1243
1244   setSelectedPoints();
1245 }
1246
1247 void CurveCreator_Widget::moveSelectedPoints( const int theXPosition,
1248                                               const int theYPosition )
1249 {
1250   OCCViewer_ViewPort3d* aViewPort = getViewPort();
1251   if ( !aViewPort )
1252     return;
1253
1254   CurveCreator_ICurve::SectionToPointList aPoints;
1255   startCurveModification( aPoints, false );
1256
1257   gp_Pnt aStartPnt = CurveCreator_Utils::ConvertClickToPoint( myDragStartPosition.x(),
1258                                                               myDragStartPosition.y(),
1259                                                               aViewPort->getView() );
1260   gp_Pnt anEndPnt = CurveCreator_Utils::ConvertClickToPoint( theXPosition, theYPosition,
1261                                                              aViewPort->getView() );
1262   double aXDelta = aStartPnt.X() - anEndPnt.X();
1263   double anYDelta = aStartPnt.Y() - anEndPnt.Y();
1264
1265   CurveCreator_ICurve::SectionToPointCoordsList aCoordList;
1266   std::deque<float> aChangedPos;
1267   CurveCreator_ICurve::SectionToPointList::const_iterator anIt = myDragPoints.begin(),
1268                                                           aLast = myDragPoints.end();
1269   for ( ; anIt != aLast; anIt++ ) {
1270     int aSectionId = anIt->first;
1271     int aPointId = anIt->second;
1272     aChangedPos = myCurve->getPoint( aSectionId, aPointId );
1273     if ( aChangedPos.size() < 2 )
1274       continue;
1275
1276     // Remember drag points coordinates
1277     if ( !myDragged ) {
1278       myInitialDragPointsCoords.insert( std::make_pair( aSectionId, aPointId ), aChangedPos );
1279     }
1280
1281     aChangedPos[0] = aChangedPos[0] - aXDelta;
1282     aChangedPos[1] = aChangedPos[1] - anYDelta;
1283     
1284     aCoordList.push_back(
1285       std::make_pair(std::make_pair( aSectionId, aPointId ), 
1286                      aChangedPos ));
1287   }
1288   myCurve->setSeveralPoints( aCoordList, false );
1289
1290   myDragged = true;
1291   finishCurveModification( myDragPoints );
1292 }
1293
1294 void CurveCreator_Widget::updateLocalPointView()
1295 {
1296   if ( myDragStarted )
1297     return;
1298   Handle(AIS_InteractiveContext) aContext = getAISContext();
1299   if ( aContext.IsNull() )
1300     return;
1301
1302   CurveCreator_Utils::getSelectedPoints( aContext, myCurve, myLocalPoints );
1303   int aNbPoints = myLocalPoints.size();
1304
1305   bool isRowLimit = aNbPoints > myLocalPointRowLimit;
1306   myLocalPointView->setVisible( getActionMode() == ModificationMode && !isRowLimit );
1307
1308   if ( !isRowLimit ) {
1309     bool isBlocked = myLocalPointView->blockSignals(true);
1310
1311     myLocalPointView->setLocalPointsToTable( myLocalPoints );
1312
1313     myLocalPointView->blockSignals( isBlocked );
1314   }
1315 }
1316
1317 /**
1318  * 
1319  */
1320 void CurveCreator_Widget::setLocalPointContext( const bool theOpen, const bool isUpdateTable )
1321 {
1322   CurveCreator_Utils::setLocalPointContext( myCurve, getAISContext(), theOpen );
1323   if ( !theOpen && isUpdateTable )
1324     updateLocalPointView();
1325 }
1326
1327 /**
1328  * Set drag operation started. Save the position and a list of dragged points
1329  * \param theState the drag operation state: started/finished
1330  * \param thePoint the start drag position
1331  */
1332 void CurveCreator_Widget::setDragStarted( const bool theState, const QPoint& thePoint )
1333 {
1334   if ( theState ) {
1335     getSelectedPoints( myDragPoints );
1336
1337     myDragStarted = myDragPoints.size();
1338     myDragStartPosition = thePoint;
1339     if ( myDragStarted ) {
1340       // change a viewer interaction style in order to avoid a select rectangle build
1341       myDragInteractionStyle = changeInteractionStyle( SUIT_ViewModel::KEY_FREE );
1342       myCurve->setSkipSorting( true );
1343     }
1344   }
1345   else {
1346     if ( myDragStarted )
1347       changeInteractionStyle( myDragInteractionStyle );
1348     myDragStarted = false;
1349     myDragPoints.clear();
1350     myInitialDragPointsCoords.clear();
1351   }
1352   myDragged = false;
1353 }
1354
1355 void CurveCreator_Widget::getSelectedPoints( CurveCreator_ICurve::SectionToPointList& thePoints )
1356 {
1357   thePoints.clear();
1358   thePoints = myLocalPoints;
1359 }
1360
1361 void CurveCreator_Widget::setSelectedPoints( const CurveCreator_ICurve::SectionToPointList& thePoints )
1362 {
1363   if ( myDragStarted )
1364     return;
1365   Handle(AIS_InteractiveContext) aContext = getAISContext();
1366   if ( aContext.IsNull() || !aContext->HasOpenedContext() )
1367     return;
1368
1369   CurveCreator_Utils::setSelectedPoints( aContext, myCurve, thePoints );
1370
1371   updateLocalPointView();
1372 }
1373
1374 void CurveCreator_Widget::stopActionMode()
1375 {
1376   setActionMode( NoneMode );
1377 }
1378
1379 /**
1380  * Get viewer information before perform the curve modification.
1381  * Take a list of selected cuve points an close local context.
1382  * The context should be closed because the curve presentation is
1383  * redisplayed and if it is not closed, when we close the local context
1384  * later, the presentation shown in the local context is disappeared.
1385  * \param thePoints an output list of curve selected points
1386  * \param theFillPoints a flag whether the selection list should be filled
1387  */
1388 void CurveCreator_Widget::startCurveModification(
1389                            CurveCreator_ICurve::SectionToPointList& thePoints,
1390                            const bool theFillPoints )
1391 {
1392   if ( theFillPoints ) {
1393     thePoints.clear();
1394     getSelectedPoints( thePoints );
1395   }
1396   setLocalPointContext( false );
1397 }
1398
1399 /**
1400  * Restore the viewer state after the curve modification is done.
1401  * Open local context and select given points inside it.
1402  * \param thePoints a list of curve selected points
1403  */
1404 void CurveCreator_Widget::finishCurveModification(
1405                            const CurveCreator_ICurve::SectionToPointList& thePoints )
1406 {
1407   if ( getActionMode() == ModificationMode )
1408     setLocalPointContext( true );
1409   setSelectedPoints( thePoints );
1410   updateUndoRedo();
1411 }
1412
1413 /**
1414  * Returns a point index in the model curve by the point coordinates in the viewer
1415  * \param theX the X coordinate of the point
1416  * \param theY the Y coordinate of the point
1417  */
1418 int CurveCreator_Widget::findLocalPointIndex( int theSectionId, float theX, float theY )
1419 {
1420   return CurveCreator_UtilsICurve::findLocalPointIndex( myCurve, theSectionId, theX, theY );
1421 }
1422
1423 void CurveCreator_Widget::findSectionsToPoints( const double theX, const double theY,
1424                                  CurveCreator_ICurve::SectionToPointList& thePoints )
1425 {
1426   return CurveCreator_UtilsICurve::findSectionsToPoints( myCurve, theX, theY, thePoints );
1427 }
1428
1429 void CurveCreator_Widget::convert( const CurveCreator_ICurve::SectionToPointList& thePoints,
1430                                    QMap<int, QList<int> >& theConvPoints )
1431 {
1432   return CurveCreator_UtilsICurve::convert( thePoints, theConvPoints );
1433 }
1434
1435 /**
1436  * Returns whethe the container has the value
1437  * \param theList a container of values
1438  * \param theValue a value
1439  */
1440 bool CurveCreator_Widget::contains( const CurveCreator_ICurve::SectionToPointList& theList,
1441                                     const CurveCreator_ICurve::SectionToPoint& theValue ) const
1442 {
1443   return CurveCreator_UtilsICurve::contains( theList, theValue );
1444 }