Salome HOME
minor correction of comment
[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   switch( getActionMode() ) {
956     case ModificationMode: {
957       //store initial cursor position for Drag&Drop
958       setDragStarted( true, theEvent->pos() );
959       break;
960     }
961     case AdditionMode: {
962       addCoordsByClick( theEvent );
963       break;
964     }
965     default:
966       break;
967   }
968 }
969
970 /**
971  * Manage mouse release events in Modification mode
972  * \param theWindow an owner of the signal
973  * \param theEvent a mouse event
974  */
975 void CurveCreator_Widget::onMouseRelease( SUIT_ViewWindow*, QMouseEvent* theEvent )
976 {
977   if ( getActionMode() != ModificationMode )
978     return;
979
980   if ( myDragStarted ) {
981     bool isDragged = myDragged;
982     CurveCreator_ICurve::SectionToPointList aDraggedPoints;
983     QMap<CurveCreator_ICurve::SectionToPoint, std::deque< float > > anInitialDragPointsCoords;
984     if ( myDragged ) {
985       aDraggedPoints = myDragPoints;
986       anInitialDragPointsCoords = myInitialDragPointsCoords;
987     }
988
989     setDragStarted( false );
990
991     if ( aDraggedPoints.size() > 0 ) {
992       // Collect old coordinates of the dragged points
993       CurveCreator_ICurve::SectionToPointCoordsList anOldPoints;
994       foreach ( const CurveCreator_ICurve::SectionToPoint aSectionToPoint, anInitialDragPointsCoords.keys() ) {
995         CurveCreator::Coordinates aCoords = anInitialDragPointsCoords.value( aSectionToPoint );
996         anOldPoints.push_back( std::make_pair( aSectionToPoint, aCoords ) );
997       }
998
999       if ( myCurve->canPointsBeSorted() ) {
1000         // Add old coordinates of the curve points (except the dragged points) to the list
1001         for( int aSectionId = 0 ; aSectionId < myCurve->getNbSections() ; aSectionId++ ) {
1002           CurveCreator::Coordinates aCoords;
1003           for ( int aPointId = 0, aNb = myCurve->getNbPoints( aSectionId ); aPointId < aNb; aPointId++ ) {
1004             aCoords = myCurve->getPoint( aSectionId, aPointId );
1005             if ( aCoords.size() < 2 ) {
1006               continue;
1007             }
1008             
1009             CurveCreator_ICurve::SectionToPoint aSectionToPoint = std::make_pair( aSectionId, aPointId );
1010
1011             if ( !anInitialDragPointsCoords.contains( aSectionToPoint ) ) {
1012               anOldPoints.push_back( std::make_pair( aSectionToPoint, aCoords ) );
1013             }
1014           }
1015         }
1016         
1017         // Apply points sorting
1018         CurveCreator_ICurve::SectionToPointList aPoints;
1019         startCurveModification( aPoints, false );
1020
1021         myCurve->setSkipSorting( false );
1022
1023         CurveCreator_ICurve::SectionToPointCoordsList aCoordList;
1024         CurveCreator_ICurve::SectionToPointList::const_iterator anIt = aDraggedPoints.begin(),
1025                                                                 aLast = aDraggedPoints.end();
1026         for ( ; anIt != aLast; anIt++ ) {
1027           int aSectionId = anIt->first;
1028           int aPointId = anIt->second;
1029           std::deque<float> aPos = myCurve->getPoint( aSectionId, aPointId );
1030
1031           aCoordList.push_back(
1032             std::make_pair( std::make_pair( aSectionId, aPointId ), aPos ) );
1033         }
1034
1035         myCurve->setSeveralPoints( aCoordList, false );
1036     
1037         finishCurveModification( aDraggedPoints );
1038       } else {
1039         // if the drag of some points has happened, restore the drag selection
1040         START_MEASURE_TIME;
1041         setSelectedPoints( aDraggedPoints );
1042         END_MEASURE_TIME( "drop" );
1043       }
1044
1045       // Save drag difference
1046       myCurve->saveCoordDiff( anOldPoints );
1047     }
1048   }
1049   else // check whether the segment is clicked an a new point should be added to the segment
1050     insertPointToSelectedSegment( theEvent->pos().x(), theEvent->pos().y() );
1051
1052   // updates the input panel table to show the selected point coordinates
1053   updateLocalPointView();
1054 }
1055
1056 /**
1057  * Manage mouse move events in Modification mode
1058  * \param theWindow an owner of the signal
1059  * \param theEvent a mouse event
1060  */
1061 void CurveCreator_Widget::onMouseMove( SUIT_ViewWindow*, QMouseEvent* theEvent )
1062 {
1063   if ( getActionMode() != ModificationMode || !myDragStarted )
1064     return;
1065
1066   QPoint aPos = theEvent->pos();
1067   if ( (aPos - myDragStartPosition).manhattanLength() < QApplication::startDragDistance() )
1068     return;
1069
1070   START_MEASURE_TIME;
1071
1072   moveSelectedPoints( aPos.x(), aPos.y() );
1073   myDragStartPosition = aPos;
1074
1075   END_MEASURE_TIME( "drag" );
1076 }
1077
1078 /**
1079  * Set zero viewer by the last view closed in
1080  * \param theManager a viewer manager
1081  */
1082 void CurveCreator_Widget::onLastViewClosed( SUIT_ViewManager* theManager )
1083 {
1084   myOCCViewer = 0;
1085 }
1086
1087 void CurveCreator_Widget::onMousePress( QMouseEvent* theEvent )
1088 {
1089   onMousePress( 0, theEvent );
1090 }
1091
1092 void CurveCreator_Widget::onMouseRelease( QMouseEvent* theEvent )
1093 {
1094   onMouseRelease( 0, theEvent );
1095 }
1096
1097 void CurveCreator_Widget::onMouseMove( QMouseEvent* theEvent )
1098 {
1099   onMouseMove( 0, theEvent );
1100 }
1101
1102 void CurveCreator_Widget::onCellChanged( int theRow, int theColumn )
1103 {
1104   int aCurrSect = myLocalPointView->getSectionId( theRow );
1105   int aPntIndex = myLocalPointView->getPointId( theRow );
1106
1107   if ( aPntIndex < 0 )
1108     return;
1109
1110   CurveCreator_ICurve::SectionToPointList aSelPoints;
1111   startCurveModification( aSelPoints );
1112
1113   double aX  = myLocalPointView->item( theRow, 2 )->data( Qt::UserRole ).toDouble();
1114   double anY = myLocalPointView->item( theRow, 3 )->data( Qt::UserRole ).toDouble();
1115   std::deque<float> aChangedPos;
1116   aChangedPos.push_back( aX );
1117   aChangedPos.push_back( anY );
1118   myCurve->setPoint( aCurrSect, aPntIndex, aChangedPos );
1119
1120   finishCurveModification( aSelPoints );
1121 }
1122
1123 /**
1124  * Removes a selected section from the curve. Updates undo/redo status
1125  */
1126 void CurveCreator_Widget::removeSection()
1127 {
1128   stopActionMode();
1129
1130   QList<int> aSections = mySectionView->getSelectedSections();
1131   for( int i = 0 ; i < aSections.size() ; i++ ){
1132     int aSectNum = aSections[i] - (i);
1133     myCurve->removeSection( aSectNum );
1134     mySectionView->sectionsRemoved( aSectNum );
1135   }
1136   mySectionView->clearSelection();
1137   updateUndoRedo();
1138 }
1139
1140 /**
1141  * Removes a selected points from the curve. Updates undo/redo status
1142  */
1143 void CurveCreator_Widget::removePoint()
1144 {
1145   CurveCreator_ICurve::SectionToPointList aPoints;
1146   getSelectedPoints( aPoints );
1147   if ( aPoints.size() == 0 )
1148     return;
1149
1150   CurveCreator_ICurve::SectionToPointList aSelPoints;
1151   startCurveModification( aSelPoints, false );
1152
1153   myCurve->removeSeveralPoints( aPoints );
1154   finishCurveModification( CurveCreator_ICurve::SectionToPointList() );
1155 }
1156
1157 void CurveCreator_Widget::addNewPoint(const CurveCreator::Coordinates& theCoords)
1158 {
1159   if( !myCurve )
1160     return;
1161   QList<int> aSections = mySectionView->getSelectedSections();
1162   if( aSections.size() == 0 ){
1163     return;
1164   }
1165   int aSection = aSections[0];
1166   myCurve->addPoints(theCoords, aSection); // add to the end of section
1167   mySectionView->pointsAdded( aSection, myCurve->getNbPoints( aSection ) );
1168   updateActionsStates();
1169   updateUndoRedo();
1170 }
1171
1172 void CurveCreator_Widget::insertPointToSelectedSegment( const int theX,
1173                                                         const int theY )
1174 {
1175   Handle(AIS_InteractiveContext) aContext = getAISContext();
1176
1177   OCCViewer_ViewPort3d* aViewPort = getViewPort();
1178   Handle(V3d_View) aView;
1179   if ( aViewPort )
1180     aView = aViewPort->getView();
1181
1182   if ( aContext.IsNull() || aView.IsNull() )
1183     return;
1184   gp_Pnt aPoint;
1185   gp_Pnt aPoint1, aPoint2;
1186   Handle(AIS_InteractiveObject) anAISObject = myCurve->getAISObject();
1187   bool isFoundPoint = CurveCreator_Utils::pointOnObject( aView, anAISObject, theX, theY,
1188                                                          aPoint, aPoint1, aPoint2 );
1189   if ( !isFoundPoint )
1190     return;
1191
1192   // insert the point to the model curve
1193   CurveCreator_ICurve::SectionToPointList aSelPoints;
1194   startCurveModification( aSelPoints );
1195
1196   CurveCreator::Coordinates aCoords;
1197   aCoords.push_back( aPoint.X() );
1198   aCoords.push_back( aPoint.Y() );
1199
1200   CurveCreator_ICurve::SectionToPointList aPoints1, aPoints2;
1201   findSectionsToPoints( aPoint1.X(), aPoint1.Y(), aPoints1 );
1202   findSectionsToPoints( aPoint2.X(), aPoint2.Y(), aPoints2 );
1203   CurveCreator_ICurve::SectionToPointList::const_iterator anIt = aPoints1.begin(),
1204                                                           aLast = aPoints1.end();
1205   int aSectionId = -1;
1206   // there can be a case when a new point is added into two sections
1207   int aPoint1Id = -1, aPoint2Id = -1;
1208   for ( ; anIt != aLast && aSectionId < 0; anIt++ ) {
1209     int aSectionCur = anIt->first;
1210     CurveCreator_ICurve::SectionToPointList::const_iterator anIt2 = aPoints2.begin(),
1211                                                             aLast2 = aPoints2.end();
1212     for ( ; anIt2 != aLast2 && aSectionId < 0; anIt2++ ) {
1213       if ( anIt2->first == aSectionCur ) {
1214         aSectionId = aSectionCur;
1215         aPoint1Id = anIt->second;
1216         aPoint2Id = anIt2->second;
1217       }
1218     }
1219   }
1220
1221   int anInsertPos = -1;
1222   int aLastPoint = myCurve->getNbPoints( aSectionId )-1; 
1223   if ( ( aPoint1Id == aLastPoint && aPoint2Id == 0 ) ||
1224        ( aPoint2Id == aLastPoint && aPoint1Id == 0 ) )
1225     anInsertPos = -1; // if the section happens between first and last points
1226   else
1227     anInsertPos = aPoint1Id < aPoint2Id ? aPoint1Id + 1 : aPoint2Id + 1;
1228
1229   myCurve->addPoints( aCoords, aSectionId, anInsertPos );
1230   mySectionView->pointsAdded( aSectionId, myCurve->getNbPoints( aSectionId ) );
1231
1232   finishCurveModification( aSelPoints );
1233
1234   setSelectedPoints();
1235 }
1236
1237 void CurveCreator_Widget::moveSelectedPoints( const int theXPosition,
1238                                               const int theYPosition )
1239 {
1240   OCCViewer_ViewPort3d* aViewPort = getViewPort();
1241   if ( !aViewPort )
1242     return;
1243
1244   CurveCreator_ICurve::SectionToPointList aPoints;
1245   startCurveModification( aPoints, false );
1246
1247   gp_Pnt aStartPnt = CurveCreator_Utils::ConvertClickToPoint( myDragStartPosition.x(),
1248                                                               myDragStartPosition.y(),
1249                                                               aViewPort->getView() );
1250   gp_Pnt anEndPnt = CurveCreator_Utils::ConvertClickToPoint( theXPosition, theYPosition,
1251                                                              aViewPort->getView() );
1252   double aXDelta = aStartPnt.X() - anEndPnt.X();
1253   double anYDelta = aStartPnt.Y() - anEndPnt.Y();
1254
1255   CurveCreator_ICurve::SectionToPointCoordsList aCoordList;
1256   std::deque<float> aChangedPos;
1257   CurveCreator_ICurve::SectionToPointList::const_iterator anIt = myDragPoints.begin(),
1258                                                           aLast = myDragPoints.end();
1259   for ( ; anIt != aLast; anIt++ ) {
1260     int aSectionId = anIt->first;
1261     int aPointId = anIt->second;
1262     aChangedPos = myCurve->getPoint( aSectionId, aPointId );
1263     if ( aChangedPos.size() < 2 )
1264       continue;
1265
1266     // Remember drag points coordinates
1267     if ( !myDragged ) {
1268       myInitialDragPointsCoords.insert( std::make_pair( aSectionId, aPointId ), aChangedPos );
1269     }
1270
1271     aChangedPos[0] = aChangedPos[0] - aXDelta;
1272     aChangedPos[1] = aChangedPos[1] - anYDelta;
1273     
1274     aCoordList.push_back(
1275       std::make_pair(std::make_pair( aSectionId, aPointId ), 
1276                      aChangedPos ));
1277   }
1278   myCurve->setSeveralPoints( aCoordList, false );
1279
1280   myDragged = true;
1281   finishCurveModification( myDragPoints );
1282 }
1283
1284 void CurveCreator_Widget::updateLocalPointView()
1285 {
1286   if ( myDragStarted )
1287     return;
1288   Handle(AIS_InteractiveContext) aContext = getAISContext();
1289   if ( aContext.IsNull() )
1290     return;
1291
1292   CurveCreator_Utils::getSelectedPoints( aContext, myCurve, myLocalPoints );
1293   int aNbPoints = myLocalPoints.size();
1294
1295   bool isRowLimit = aNbPoints > myLocalPointRowLimit;
1296   myLocalPointView->setVisible( getActionMode() == ModificationMode && !isRowLimit );
1297
1298   if ( !isRowLimit ) {
1299     bool isBlocked = myLocalPointView->blockSignals(true);
1300
1301     myLocalPointView->setLocalPointsToTable( myLocalPoints );
1302
1303     myLocalPointView->blockSignals( isBlocked );
1304   }
1305 }
1306
1307 /**
1308  * 
1309  */
1310 void CurveCreator_Widget::setLocalPointContext( const bool theOpen, const bool isUpdateTable )
1311 {
1312   CurveCreator_Utils::setLocalPointContext( myCurve, getAISContext(), theOpen );
1313   if ( !theOpen && isUpdateTable )
1314     updateLocalPointView();
1315 }
1316
1317 /**
1318  * Set drag operation started. Save the position and a list of dragged points
1319  * \param theState the drag operation state: started/finished
1320  * \param thePoint the start drag position
1321  */
1322 void CurveCreator_Widget::setDragStarted( const bool theState, const QPoint& thePoint )
1323 {
1324   if ( theState ) {
1325     getSelectedPoints( myDragPoints );
1326
1327     myDragStarted = myDragPoints.size();
1328     myDragStartPosition = thePoint;
1329     if ( myDragStarted ) {
1330       // change a viewer interaction style in order to avoid a select rectangle build
1331       myDragInteractionStyle = changeInteractionStyle( SUIT_ViewModel::KEY_FREE );
1332       myCurve->setSkipSorting( true );
1333     }
1334   }
1335   else {
1336     if ( myDragStarted )
1337       changeInteractionStyle( myDragInteractionStyle );
1338     myDragStarted = false;
1339     myDragPoints.clear();
1340     myInitialDragPointsCoords.clear();
1341   }
1342   myDragged = false;
1343 }
1344
1345 void CurveCreator_Widget::getSelectedPoints( CurveCreator_ICurve::SectionToPointList& thePoints )
1346 {
1347   thePoints.clear();
1348   thePoints = myLocalPoints;
1349 }
1350
1351 void CurveCreator_Widget::setSelectedPoints( const CurveCreator_ICurve::SectionToPointList& thePoints )
1352 {
1353   if ( myDragStarted )
1354     return;
1355   Handle(AIS_InteractiveContext) aContext = getAISContext();
1356   if ( aContext.IsNull() || !aContext->HasOpenedContext() )
1357     return;
1358
1359   CurveCreator_Utils::setSelectedPoints( aContext, myCurve, thePoints );
1360
1361   updateLocalPointView();
1362 }
1363
1364 void CurveCreator_Widget::stopActionMode()
1365 {
1366   setActionMode( NoneMode );
1367 }
1368
1369 /**
1370  * Get viewer information before perform the curve modification.
1371  * Take a list of selected cuve points an close local context.
1372  * The context should be closed because the curve presentation is
1373  * redisplayed and if it is not closed, when we close the local context
1374  * later, the presentation shown in the local context is disappeared.
1375  * \param thePoints an output list of curve selected points
1376  * \param theFillPoints a flag whether the selection list should be filled
1377  */
1378 void CurveCreator_Widget::startCurveModification(
1379                            CurveCreator_ICurve::SectionToPointList& thePoints,
1380                            const bool theFillPoints )
1381 {
1382   if ( theFillPoints ) {
1383     thePoints.clear();
1384     getSelectedPoints( thePoints );
1385   }
1386   setLocalPointContext( false );
1387 }
1388
1389 /**
1390  * Restore the viewer state after the curve modification is done.
1391  * Open local context and select given points inside it.
1392  * \param thePoints a list of curve selected points
1393  */
1394 void CurveCreator_Widget::finishCurveModification(
1395                            const CurveCreator_ICurve::SectionToPointList& thePoints )
1396 {
1397   if ( getActionMode() == ModificationMode )
1398     setLocalPointContext( true );
1399   setSelectedPoints( thePoints );
1400   updateUndoRedo();
1401 }
1402
1403 /**
1404  * Returns a point index in the model curve by the point coordinates in the viewer
1405  * \param theX the X coordinate of the point
1406  * \param theY the Y coordinate of the point
1407  */
1408 int CurveCreator_Widget::findLocalPointIndex( int theSectionId, float theX, float theY )
1409 {
1410   return CurveCreator_UtilsICurve::findLocalPointIndex( myCurve, theSectionId, theX, theY );
1411 }
1412
1413 void CurveCreator_Widget::findSectionsToPoints( const double theX, const double theY,
1414                                  CurveCreator_ICurve::SectionToPointList& thePoints )
1415 {
1416   return CurveCreator_UtilsICurve::findSectionsToPoints( myCurve, theX, theY, thePoints );
1417 }
1418
1419 void CurveCreator_Widget::convert( const CurveCreator_ICurve::SectionToPointList& thePoints,
1420                                    QMap<int, QList<int> >& theConvPoints )
1421 {
1422   return CurveCreator_UtilsICurve::convert( thePoints, theConvPoints );
1423 }
1424
1425 /**
1426  * Returns whethe the container has the value
1427  * \param theList a container of values
1428  * \param theValue a value
1429  */
1430 bool CurveCreator_Widget::contains( const CurveCreator_ICurve::SectionToPointList& theList,
1431                                     const CurveCreator_ICurve::SectionToPoint& theValue ) const
1432 {
1433   return CurveCreator_UtilsICurve::contains( theList, theValue );
1434 }