Salome HOME
refs #249 - Undo after Join selected sections operation works not properly
[modules/hydro.git] / src / HYDROCurveCreator / CurveCreator_Widget.h
index cba56e0e018ae26fcc051f755283032ed345f5be..7ab17331db1cb62f909107616235a272e4078ee7 100644 (file)
@@ -56,7 +56,8 @@ public:
   enum ActionFlags {
     NoFlags              = 0x00000000,
     DisableDetectionMode = 0x00000001,
-    DisableNewSection    = 0x00000002
+    DisableNewSection    = 0x00000002,
+    DisableClosedSection = 0x00000004
   };
 
 public:
@@ -77,14 +78,13 @@ public:
   void setCurve( CurveCreator_ICurve* theCurve );
 
   QList<int> getSelectedSections();
-  QList< QPair< int, int > > getSelectedPoints();
 
   void  removeSelected();
   bool  removeEnabled();
 
 signals:
   void selectionChanged();
-  void subOperationStarted( QWidget* );
+  void subOperationStarted( QWidget*, bool );
   void subOperationFinished( QWidget* );
 
 public slots:
@@ -128,7 +128,8 @@ protected:
   void     addCoordsByClick( QMouseEvent* );
 
 protected:
-  enum ActionId{ UNDO_ID, 
+  enum ActionId{ NONE_ID,
+                 UNDO_ID, 
                  REDO_ID, 
                  NEW_SECTION_ID, 
                  ADDITION_MODE_ID, 
@@ -159,6 +160,9 @@ private:
   QAction* createAction( ActionId theId, const QString& theName, const QPixmap& theImage,
                          const QString& theToolTip, const QKeySequence& theShortcut );
   QAction* getAction(ActionId theId);
+  QAction* getAction(ActionMode theMode);
+
+  void setActionMode( const ActionMode& theMode );
   ActionMode getActionMode() const;
 
   void updateActionsStates();
@@ -179,6 +183,8 @@ private:
   void setSelectedPoints( const CurveCreator_ICurve::SectionToPointList& =
                                CurveCreator_ICurve::SectionToPointList() );
 
+  void stopActionMode();
+
   void startCurveModification( CurveCreator_ICurve::SectionToPointList& thePoints,
                                const bool theFillPoints = true );
   void finishCurveModification( const CurveCreator_ICurve::SectionToPointList& thePoints = 
@@ -209,6 +215,7 @@ private:
   QPoint                      myDragStartPosition;
   int                         myDragInteractionStyle;
   CurveCreator_ICurve::SectionToPointList myDragPoints;
+  QMap<CurveCreator_ICurve::SectionToPoint, CurveCreator::Coordinates> myInitialDragPointsCoords;
   bool                        myDragged;
   QByteArray                  myGuiState;
 };