Salome HOME
refs #249 - Undo after Join selected sections operation works not properly
[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   int aMainSect = aSections[0];
669   int aMainSectSize = myCurve->getNbPoints(aMainSect);
670   for( int i = 1 ; i < aSections.size() ; i++ ){
671     int aSectNum = aSections[i] - (i-1);
672     myCurve->join( aMainSect, aSectNum );
673     mySectionView->sectionsRemoved( aSectNum );
674   }
675   updateUndoRedo();
676 }
677
678 void CurveCreator_Widget::onRemove()
679 {
680   if( !myCurve )
681     return;
682
683   switch( getActionMode() ) {
684     case NoneMode:
685       removeSection();
686     break;
687     case ModificationMode:
688       removePoint();
689     break;
690     default:
691       break;
692   }
693 }
694
695 void CurveCreator_Widget::onClearAll()
696 {
697   if( !myCurve )
698     return;
699   stopActionMode();
700   myCurve->clear();
701   mySectionView->reset();
702   updateActionsStates();
703   updateUndoRedo();
704 }
705
706 void CurveCreator_Widget::onJoinAll()
707 {
708   if( !myCurve )
709     return;
710   stopActionMode();
711   myCurve->join( 0, myCurve->getNbSections()-1 );
712   mySectionView->reset();
713   updateActionsStates();
714   updateUndoRedo();
715 }
716
717 void CurveCreator_Widget::onUndoSettings()
718 {
719
720 }
721
722 void CurveCreator_Widget::onSetSpline()
723 {
724   if( !myCurve )
725     return;
726   stopActionMode();
727   QList<int> aSelSections = mySectionView->getSelectedSections();
728   for( int i = 0 ; i < aSelSections.size() ; i++ ){
729     myCurve->setSectionType(aSelSections[i], CurveCreator::Spline );
730     mySectionView->sectionChanged(aSelSections[i]);
731   }
732   updateUndoRedo();
733 }
734
735 void CurveCreator_Widget::onSetPolyline()
736 {
737   if( !myCurve )
738     return;
739   stopActionMode();
740   QList<int> aSelSections = mySectionView->getSelectedSections();
741   for( int i = 0 ; i < aSelSections.size() ; i++ ){
742     myCurve->setSectionType( aSelSections[i], CurveCreator::Polyline );
743     mySectionView->sectionChanged( aSelSections[i] );
744   }
745   updateUndoRedo();
746 }
747
748 void CurveCreator_Widget::onCloseSections()
749 {
750   if( !myCurve )
751     return;
752   stopActionMode();
753   QList<int> aSelSections = mySectionView->getSelectedSections();
754   for( int i = 0 ; i < aSelSections.size() ; i++ ){
755     myCurve->setClosed(aSelSections[i], true);
756     mySectionView->sectionChanged(aSelSections[i]);
757   }
758   updateUndoRedo();
759 }
760
761 void CurveCreator_Widget::onUncloseSections()
762 {
763   if( !myCurve )
764     return;
765   stopActionMode();
766   QList<int> aSelSections = mySectionView->getSelectedSections();
767   for( int i = 0 ; i < aSelSections.size() ; i++ ){
768     myCurve->setClosed(aSelSections[i], false);
769     mySectionView->sectionChanged(aSelSections[i]);
770   }
771   updateUndoRedo();
772 }
773
774 void CurveCreator_Widget::onUndo()
775 {
776     if( !myCurve )
777       return;
778
779     CurveCreator_ICurve::SectionToPointList aPoints;
780     startCurveModification( aPoints, false );
781     myCurve->undo();
782     finishCurveModification();
783     mySectionView->reset();
784 }
785
786 void CurveCreator_Widget::onRedo()
787 {
788     if( !myCurve )
789       return;
790     CurveCreator_ICurve::SectionToPointList aPoints;
791     startCurveModification( aPoints, false );
792     myCurve->redo();
793     finishCurveModification();
794     mySectionView->reset();
795 }
796
797 void CurveCreator_Widget::updateUndoRedo()
798 {
799   if( !myCurve )
800     return;
801   QAction* anAct = myActionMap[UNDO_ID];
802   if( anAct != 0 ){
803     if( myCurve->getNbUndo() != 0 ){
804       anAct->setEnabled(true);
805     }
806     else{
807       anAct->setDisabled(true);
808     }
809   }
810   anAct = myActionMap[REDO_ID];
811   if( anAct != 0 ){
812     if( myCurve->getNbRedo() != 0 ){
813       anAct->setEnabled(true);
814     }
815     else{
816       anAct->setDisabled(true);
817     }
818   }
819 }
820
821 void CurveCreator_Widget::onContextMenu( QPoint thePoint )
822 {
823   QList<ActionId> aContextActions;
824   aContextActions << CLEAR_ALL_ID << JOIN_ID << JOIN_ALL_ID << SEPARATOR_ID <<
825                      CLOSE_SECTIONS_ID << UNCLOSE_SECTIONS_ID << SET_SECTIONS_POLYLINE_ID <<
826                      SET_SECTIONS_SPLINE_ID;
827   QPoint aGlPoint = mySectionView->mapToGlobal(thePoint);
828   bool isVis = false;
829   QList<ActionId> aResAct;
830   for( int i = 0 ; i < aContextActions.size() ; i++ ){
831     if( aContextActions[i] != SEPARATOR_ID ){
832       if( myActionMap.contains(aContextActions[i]) ){
833         QAction* anAct = myActionMap[aContextActions[i]];
834         if( anAct->isEnabled() ){
835           aResAct << aContextActions[i];
836           isVis = true;
837         }
838       }
839     }
840     else{
841       aResAct << SEPARATOR_ID;
842     }
843   }
844   if( !isVis )
845     return;
846
847   QMenu* aMenu = new QMenu(this);
848   for( int i = 0 ; i < aResAct.size() ; i++ ){
849     if( aResAct[i] == SEPARATOR_ID ){
850       aMenu->addSeparator();
851     }
852     else{
853       QAction* anAct = myActionMap[aResAct[i]];
854       aMenu->insertAction(NULL, anAct);
855     }
856   }
857   aMenu->exec(aGlPoint);
858 }
859
860 QList<int> CurveCreator_Widget::getSelectedSections()
861 {
862   return mySectionView->getSelectedSections();
863 }
864
865 /**
866  * According to the widget state, performs the remove action
867  */
868 void CurveCreator_Widget::removeSelected()
869 {
870   onRemove();
871 }
872
873 /**
874  * Checks whether there are some selection to be removed
875  */
876 bool CurveCreator_Widget::removeEnabled()
877 {
878   bool isEnabled = getActionMode() == ModificationMode;
879   if ( !isEnabled ) {
880     QList<int> aSelSections = mySectionView->getSelectedSections();
881     CurveCreator_TreeView::SelectionType aSelType = mySectionView->getSelectionType();
882     isEnabled = aSelType == CurveCreator_TreeView::ST_SECTIONS &&
883                 aSelSections.size() == 1;
884   }
885   return isEnabled;
886 }
887
888
889 //=================================================================================
890 // function : GeometryGUI::addCoordsByClick()
891 // purpose  : Manage mouse press events in Additon mode
892 //=================================================================================
893 void CurveCreator_Widget::addCoordsByClick( QMouseEvent* pe )
894 {
895   if (pe->button() != Qt::LeftButton)
896     return;
897
898   if ( pe->modifiers() != Qt::ControlModifier ) {
899     Handle(AIS_InteractiveContext) ic = getAISContext();
900     if ( ic.IsNull() )
901       return;
902
903     gp_Pnt aPnt;    
904
905     ic->InitSelected();
906     if ( pe->modifiers() == Qt::ShiftModifier )
907       ic->ShiftSelect();  // Append selection
908     else
909       ic->Select();       // New selection
910
911     {
912       OCCViewer_ViewPort3d* vp = getViewPort();
913       aPnt = CurveCreator_Utils::ConvertClickToPoint( pe->x(), pe->y(), vp->getView() );
914     }
915     // set the coordinates into dialog
916     CurveCreator::Coordinates aCoords;
917     aCoords.push_back( aPnt.X() );
918     aCoords.push_back( aPnt.Y() );
919     if ( myCurve->getDimension() == 3 ) {
920       aCoords.push_back( aPnt.Z() );
921     }
922     addNewPoint(aCoords);
923   }
924 }
925
926 /**
927  * Manage mouse press events
928  * \param theWindow an owner of the signal
929  * \param theEvent a mouse event
930  */
931 void CurveCreator_Widget::onMousePress( SUIT_ViewWindow*, QMouseEvent* theEvent )
932 {
933   if ( theEvent->button() != Qt::LeftButton )
934     return;
935
936   switch( getActionMode() ) {
937     case ModificationMode: {
938       //store initial cursor position for Drag&Drop
939       setDragStarted( true, theEvent->pos() );
940       break;
941     }
942     case AdditionMode: {
943       addCoordsByClick( theEvent );
944       break;
945     }
946     default:
947       break;
948   }
949 }
950
951 /**
952  * Manage mouse release events in Modification mode
953  * \param theWindow an owner of the signal
954  * \param theEvent a mouse event
955  */
956 void CurveCreator_Widget::onMouseRelease( SUIT_ViewWindow*, QMouseEvent* theEvent )
957 {
958   if ( getActionMode() != ModificationMode )
959     return;
960
961   if ( myDragStarted ) {
962     bool isDragged = myDragged;
963     CurveCreator_ICurve::SectionToPointList aDraggedPoints;
964     QMap<CurveCreator_ICurve::SectionToPoint, std::deque< float > > anInitialDragPointsCoords;
965     if ( myDragged ) {
966       aDraggedPoints = myDragPoints;
967       anInitialDragPointsCoords = myInitialDragPointsCoords;
968     }
969
970     setDragStarted( false );
971
972     if ( aDraggedPoints.size() > 0 ) {
973       // Collect old coordinates of the dragged points
974       CurveCreator_ICurve::SectionToPointCoordsList anOldPoints;
975       foreach ( const CurveCreator_ICurve::SectionToPoint aSectionToPoint, anInitialDragPointsCoords.keys() ) {
976         CurveCreator::Coordinates aCoords = anInitialDragPointsCoords.value( aSectionToPoint );
977         anOldPoints.push_back( std::make_pair( aSectionToPoint, aCoords ) );
978       }
979
980       if ( myCurve->canPointsBeSorted() ) {
981         // Add old coordinates of the curve points (except the dragged points) to the list
982         for( int aSectionId = 0 ; aSectionId < myCurve->getNbSections() ; aSectionId++ ) {
983           CurveCreator::Coordinates aCoords;
984           for ( int aPointId = 0, aNb = myCurve->getNbPoints( aSectionId ); aPointId < aNb; aPointId++ ) {
985             aCoords = myCurve->getPoint( aSectionId, aPointId );
986             if ( aCoords.size() < 2 ) {
987               continue;
988             }
989             
990             CurveCreator_ICurve::SectionToPoint aSectionToPoint = std::make_pair( aSectionId, aPointId );
991
992             if ( !anInitialDragPointsCoords.contains( aSectionToPoint ) ) {
993               anOldPoints.push_back( std::make_pair( aSectionToPoint, aCoords ) );
994             }
995           }
996         }
997         
998         // Apply points sorting
999         CurveCreator_ICurve::SectionToPointList aPoints;
1000         startCurveModification( aPoints, false );
1001
1002         myCurve->setSkipSorting( false );
1003
1004         CurveCreator_ICurve::SectionToPointCoordsList aCoordList;
1005         CurveCreator_ICurve::SectionToPointList::const_iterator anIt = aDraggedPoints.begin(),
1006                                                                 aLast = aDraggedPoints.end();
1007         for ( ; anIt != aLast; anIt++ ) {
1008           int aSectionId = anIt->first;
1009           int aPointId = anIt->second;
1010           std::deque<float> aPos = myCurve->getPoint( aSectionId, aPointId );
1011
1012           aCoordList.push_back(
1013             std::make_pair( std::make_pair( aSectionId, aPointId ), aPos ) );
1014         }
1015
1016         myCurve->setSeveralPoints( aCoordList, false );
1017     
1018         finishCurveModification( aDraggedPoints );
1019       } else {
1020         // if the drag of some points has happened, restore the drag selection
1021         START_MEASURE_TIME;
1022         setSelectedPoints( aDraggedPoints );
1023         END_MEASURE_TIME( "drop" );
1024       }
1025
1026       // Save drag difference
1027       myCurve->saveCoordDiff( anOldPoints );
1028     }
1029   }
1030   else // check whether the segment is clicked an a new point should be added to the segment
1031     insertPointToSelectedSegment( theEvent->pos().x(), theEvent->pos().y() );
1032
1033   // updates the input panel table to show the selected point coordinates
1034   updateLocalPointView();
1035 }
1036
1037 /**
1038  * Manage mouse move events in Modification mode
1039  * \param theWindow an owner of the signal
1040  * \param theEvent a mouse event
1041  */
1042 void CurveCreator_Widget::onMouseMove( SUIT_ViewWindow*, QMouseEvent* theEvent )
1043 {
1044   if ( getActionMode() != ModificationMode || !myDragStarted )
1045     return;
1046
1047   QPoint aPos = theEvent->pos();
1048   if ( (aPos - myDragStartPosition).manhattanLength() < QApplication::startDragDistance() )
1049     return;
1050
1051   START_MEASURE_TIME;
1052
1053   moveSelectedPoints( aPos.x(), aPos.y() );
1054   myDragStartPosition = aPos;
1055
1056   END_MEASURE_TIME( "drag" );
1057 }
1058
1059 /**
1060  * Set zero viewer by the last view closed in
1061  * \param theManager a viewer manager
1062  */
1063 void CurveCreator_Widget::onLastViewClosed( SUIT_ViewManager* theManager )
1064 {
1065   myOCCViewer = 0;
1066 }
1067
1068 void CurveCreator_Widget::onMousePress( QMouseEvent* theEvent )
1069 {
1070   onMousePress( 0, theEvent );
1071 }
1072
1073 void CurveCreator_Widget::onMouseRelease( QMouseEvent* theEvent )
1074 {
1075   onMouseRelease( 0, theEvent );
1076 }
1077
1078 void CurveCreator_Widget::onMouseMove( QMouseEvent* theEvent )
1079 {
1080   onMouseMove( 0, theEvent );
1081 }
1082
1083 void CurveCreator_Widget::onCellChanged( int theRow, int theColumn )
1084 {
1085   int aCurrSect = myLocalPointView->getSectionId( theRow );
1086   int aPntIndex = myLocalPointView->getPointId( theRow );
1087
1088   if ( aPntIndex < 0 )
1089     return;
1090
1091   CurveCreator_ICurve::SectionToPointList aSelPoints;
1092   startCurveModification( aSelPoints );
1093
1094   double aX  = myLocalPointView->item( theRow, 2 )->data( Qt::UserRole ).toDouble();
1095   double anY = myLocalPointView->item( theRow, 3 )->data( Qt::UserRole ).toDouble();
1096   std::deque<float> aChangedPos;
1097   aChangedPos.push_back( aX );
1098   aChangedPos.push_back( anY );
1099   myCurve->setPoint( aCurrSect, aPntIndex, aChangedPos );
1100
1101   finishCurveModification( aSelPoints );
1102 }
1103
1104 /**
1105  * Removes a selected section from the curve. Updates undo/redo status
1106  */
1107 void CurveCreator_Widget::removeSection()
1108 {
1109   stopActionMode();
1110
1111   QList<int> aSections = mySectionView->getSelectedSections();
1112   for( int i = 0 ; i < aSections.size() ; i++ ){
1113     int aSectNum = aSections[i] - (i);
1114     myCurve->removeSection( aSectNum );
1115     mySectionView->sectionsRemoved( aSectNum );
1116   }
1117   mySectionView->clearSelection();
1118   updateUndoRedo();
1119 }
1120
1121 /**
1122  * Removes a selected points from the curve. Updates undo/redo status
1123  */
1124 void CurveCreator_Widget::removePoint()
1125 {
1126   CurveCreator_ICurve::SectionToPointList aPoints;
1127   getSelectedPoints( aPoints );
1128   if ( aPoints.size() == 0 )
1129     return;
1130
1131   CurveCreator_ICurve::SectionToPointList aSelPoints;
1132   startCurveModification( aSelPoints, false );
1133
1134   myCurve->removeSeveralPoints( aPoints );
1135   finishCurveModification( CurveCreator_ICurve::SectionToPointList() );
1136 }
1137
1138 void CurveCreator_Widget::addNewPoint(const CurveCreator::Coordinates& theCoords)
1139 {
1140   if( !myCurve )
1141     return;
1142   QList<int> aSections = mySectionView->getSelectedSections();
1143   if( aSections.size() == 0 ){
1144     return;
1145   }
1146   int aSection = aSections[0];
1147   myCurve->addPoints(theCoords, aSection); // add to the end of section
1148   updateActionsStates();
1149   updateUndoRedo();
1150 }
1151
1152 void CurveCreator_Widget::insertPointToSelectedSegment( const int theX,
1153                                                         const int theY )
1154 {
1155   Handle(AIS_InteractiveContext) aContext = getAISContext();
1156
1157   OCCViewer_ViewPort3d* aViewPort = getViewPort();
1158   Handle(V3d_View) aView;
1159   if ( aViewPort )
1160     aView = aViewPort->getView();
1161
1162   if ( aContext.IsNull() || aView.IsNull() )
1163     return;
1164   gp_Pnt aPoint;
1165   gp_Pnt aPoint1, aPoint2;
1166   Handle(AIS_InteractiveObject) anAISObject = myCurve->getAISObject();
1167   bool isFoundPoint = CurveCreator_Utils::pointOnObject( aView, anAISObject, theX, theY,
1168                                                          aPoint, aPoint1, aPoint2 );
1169   if ( !isFoundPoint )
1170     return;
1171
1172   // insert the point to the model curve
1173   CurveCreator_ICurve::SectionToPointList aSelPoints;
1174   startCurveModification( aSelPoints );
1175
1176   CurveCreator::Coordinates aCoords;
1177   aCoords.push_back( aPoint.X() );
1178   aCoords.push_back( aPoint.Y() );
1179
1180   CurveCreator_ICurve::SectionToPointList aPoints1, aPoints2;
1181   findSectionsToPoints( aPoint1.X(), aPoint1.Y(), aPoints1 );
1182   findSectionsToPoints( aPoint2.X(), aPoint2.Y(), aPoints2 );
1183   CurveCreator_ICurve::SectionToPointList::const_iterator anIt = aPoints1.begin(),
1184                                                           aLast = aPoints1.end();
1185   int aSectionId = -1;
1186   // there can be a case when a new point is added into two sections
1187   int aPoint1Id = -1, aPoint2Id = -1;
1188   for ( ; anIt != aLast && aSectionId < 0; anIt++ ) {
1189     int aSectionCur = anIt->first;
1190     CurveCreator_ICurve::SectionToPointList::const_iterator anIt2 = aPoints2.begin(),
1191                                                             aLast2 = aPoints2.end();
1192     for ( ; anIt2 != aLast2 && aSectionId < 0; anIt2++ ) {
1193       if ( anIt2->first == aSectionCur ) {
1194         aSectionId = aSectionCur;
1195         aPoint1Id = anIt->second;
1196         aPoint2Id = anIt2->second;
1197       }
1198     }
1199   }
1200
1201   int anInsertPos = -1;
1202   int aLastPoint = myCurve->getNbPoints( aSectionId )-1; 
1203   if ( ( aPoint1Id == aLastPoint && aPoint2Id == 0 ) ||
1204        ( aPoint2Id == aLastPoint && aPoint1Id == 0 ) )
1205     anInsertPos = -1; // if the section happens between first and last points
1206   else
1207     anInsertPos = aPoint1Id < aPoint2Id ? aPoint1Id + 1 : aPoint2Id + 1;
1208
1209   myCurve->addPoints( aCoords, aSectionId, anInsertPos );
1210
1211   finishCurveModification( aSelPoints );
1212
1213   setSelectedPoints();
1214 }
1215
1216 void CurveCreator_Widget::moveSelectedPoints( const int theXPosition,
1217                                               const int theYPosition )
1218 {
1219   OCCViewer_ViewPort3d* aViewPort = getViewPort();
1220   if ( !aViewPort )
1221     return;
1222
1223   CurveCreator_ICurve::SectionToPointList aPoints;
1224   startCurveModification( aPoints, false );
1225
1226   gp_Pnt aStartPnt = CurveCreator_Utils::ConvertClickToPoint( myDragStartPosition.x(),
1227                                                               myDragStartPosition.y(),
1228                                                               aViewPort->getView() );
1229   gp_Pnt anEndPnt = CurveCreator_Utils::ConvertClickToPoint( theXPosition, theYPosition,
1230                                                              aViewPort->getView() );
1231   double aXDelta = aStartPnt.X() - anEndPnt.X();
1232   double anYDelta = aStartPnt.Y() - anEndPnt.Y();
1233
1234   CurveCreator_ICurve::SectionToPointCoordsList aCoordList;
1235   std::deque<float> aChangedPos;
1236   CurveCreator_ICurve::SectionToPointList::const_iterator anIt = myDragPoints.begin(),
1237                                                           aLast = myDragPoints.end();
1238   for ( ; anIt != aLast; anIt++ ) {
1239     int aSectionId = anIt->first;
1240     int aPointId = anIt->second;
1241     aChangedPos = myCurve->getPoint( aSectionId, aPointId );
1242     if ( aChangedPos.size() < 2 )
1243       continue;
1244
1245     // Remember drag points coordinates
1246     if ( !myDragged ) {
1247       myInitialDragPointsCoords.insert( std::make_pair( aSectionId, aPointId ), aChangedPos );
1248     }
1249
1250     aChangedPos[0] = aChangedPos[0] - aXDelta;
1251     aChangedPos[1] = aChangedPos[1] - anYDelta;
1252     
1253     aCoordList.push_back(
1254       std::make_pair(std::make_pair( aSectionId, aPointId ), 
1255                      aChangedPos ));
1256   }
1257   myCurve->setSeveralPoints( aCoordList, false );
1258
1259   myDragged = true;
1260   finishCurveModification( myDragPoints );
1261 }
1262
1263 void CurveCreator_Widget::updateLocalPointView()
1264 {
1265   if ( myDragStarted )
1266     return;
1267   Handle(AIS_InteractiveContext) aContext = getAISContext();
1268   if ( aContext.IsNull() )
1269     return;
1270
1271   CurveCreator_Utils::getSelectedPoints( aContext, myCurve, myLocalPoints );
1272   int aNbPoints = myLocalPoints.size();
1273
1274   bool isRowLimit = aNbPoints > myLocalPointRowLimit;
1275   myLocalPointView->setVisible( getActionMode() == ModificationMode && !isRowLimit );
1276
1277   if ( !isRowLimit ) {
1278     bool isBlocked = myLocalPointView->blockSignals(true);
1279
1280     myLocalPointView->setLocalPointsToTable( myLocalPoints );
1281
1282     myLocalPointView->blockSignals( isBlocked );
1283   }
1284 }
1285
1286 /**
1287  * 
1288  */
1289 void CurveCreator_Widget::setLocalPointContext( const bool theOpen, const bool isUpdateTable )
1290 {
1291   CurveCreator_Utils::setLocalPointContext( myCurve, getAISContext(), theOpen );
1292   if ( !theOpen && isUpdateTable )
1293     updateLocalPointView();
1294 }
1295
1296 /**
1297  * Set drag operation started. Save the position and a list of dragged points
1298  * \param theState the drag operation state: started/finished
1299  * \param thePoint the start drag position
1300  */
1301 void CurveCreator_Widget::setDragStarted( const bool theState, const QPoint& thePoint )
1302 {
1303   if ( theState ) {
1304     getSelectedPoints( myDragPoints );
1305
1306     myDragStarted = myDragPoints.size();
1307     myDragStartPosition = thePoint;
1308     if ( myDragStarted ) {
1309       // change a viewer interaction style in order to avoid a select rectangle build
1310       myDragInteractionStyle = changeInteractionStyle( SUIT_ViewModel::KEY_FREE );
1311       myCurve->setSkipSorting( true );
1312     }
1313   }
1314   else {
1315     if ( myDragStarted )
1316       changeInteractionStyle( myDragInteractionStyle );
1317     myDragStarted = false;
1318     myDragPoints.clear();
1319     myInitialDragPointsCoords.clear();
1320   }
1321   myDragged = false;
1322 }
1323
1324 void CurveCreator_Widget::getSelectedPoints( CurveCreator_ICurve::SectionToPointList& thePoints )
1325 {
1326   thePoints.clear();
1327   thePoints = myLocalPoints;
1328 }
1329
1330 void CurveCreator_Widget::setSelectedPoints( const CurveCreator_ICurve::SectionToPointList& thePoints )
1331 {
1332   if ( myDragStarted )
1333     return;
1334   Handle(AIS_InteractiveContext) aContext = getAISContext();
1335   if ( aContext.IsNull() || !aContext->HasOpenedContext() )
1336     return;
1337
1338   CurveCreator_Utils::setSelectedPoints( aContext, myCurve, thePoints );
1339
1340   updateLocalPointView();
1341 }
1342
1343 void CurveCreator_Widget::stopActionMode()
1344 {
1345   setActionMode( NoneMode );
1346 }
1347
1348 /**
1349  * Get viewer information before perform the curve modification.
1350  * Take a list of selected cuve points an close local context.
1351  * The context should be closed because the curve presentation is
1352  * redisplayed and if it is not closed, when we close the local context
1353  * later, the presentation shown in the local context is disappeared.
1354  * \param thePoints an output list of curve selected points
1355  * \param theFillPoints a flag whether the selection list should be filled
1356  */
1357 void CurveCreator_Widget::startCurveModification(
1358                            CurveCreator_ICurve::SectionToPointList& thePoints,
1359                            const bool theFillPoints )
1360 {
1361   if ( theFillPoints ) {
1362     thePoints.clear();
1363     getSelectedPoints( thePoints );
1364   }
1365   setLocalPointContext( false );
1366 }
1367
1368 /**
1369  * Restore the viewer state after the curve modification is done.
1370  * Open local context and select given points inside it.
1371  * \param thePoints a list of curve selected points
1372  */
1373 void CurveCreator_Widget::finishCurveModification(
1374                            const CurveCreator_ICurve::SectionToPointList& thePoints )
1375 {
1376   if ( getActionMode() == ModificationMode )
1377     setLocalPointContext( true );
1378   setSelectedPoints( thePoints );
1379   updateUndoRedo();
1380 }
1381
1382 /**
1383  * Returns a point index in the model curve by the point coordinates in the viewer
1384  * \param theX the X coordinate of the point
1385  * \param theY the Y coordinate of the point
1386  */
1387 int CurveCreator_Widget::findLocalPointIndex( int theSectionId, float theX, float theY )
1388 {
1389   return CurveCreator_UtilsICurve::findLocalPointIndex( myCurve, theSectionId, theX, theY );
1390 }
1391
1392 void CurveCreator_Widget::findSectionsToPoints( const double theX, const double theY,
1393                                  CurveCreator_ICurve::SectionToPointList& thePoints )
1394 {
1395   return CurveCreator_UtilsICurve::findSectionsToPoints( myCurve, theX, theY, thePoints );
1396 }
1397
1398 void CurveCreator_Widget::convert( const CurveCreator_ICurve::SectionToPointList& thePoints,
1399                                    QMap<int, QList<int> >& theConvPoints )
1400 {
1401   return CurveCreator_UtilsICurve::convert( thePoints, theConvPoints );
1402 }
1403
1404 /**
1405  * Returns whethe the container has the value
1406  * \param theList a container of values
1407  * \param theValue a value
1408  */
1409 bool CurveCreator_Widget::contains( const CurveCreator_ICurve::SectionToPointList& theList,
1410                                     const CurveCreator_ICurve::SectionToPoint& theValue ) const
1411 {
1412   return CurveCreator_UtilsICurve::contains( theList, theValue );
1413 }