X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROCurveCreator%2FCurveCreator_Widget.h;h=225e864d49a06aac4b0ff31b7f95b1492c5eb3f7;hb=db854002cff78b7b6eb6340b70990e5a6ddf56bf;hp=39e752d8440dc9f22c03eb612c0170aaa05c6855;hpb=dd5464a8326937e9478012a3ca441461ad50be31;p=modules%2Fhydro.git diff --git a/src/HYDROCurveCreator/CurveCreator_Widget.h b/src/HYDROCurveCreator/CurveCreator_Widget.h index 39e752d8..225e864d 100644 --- a/src/HYDROCurveCreator/CurveCreator_Widget.h +++ b/src/HYDROCurveCreator/CurveCreator_Widget.h @@ -65,6 +65,9 @@ public: QList getSelectedSections(); QList< QPair< int, int > > getSelectedPoints(); + void removeSelected(); + bool removeEnabled(); + signals: void selectionChanged(); void subOperationStarted( QWidget* ); @@ -102,7 +105,7 @@ protected slots: void onMouseRelease( SUIT_ViewWindow*, QMouseEvent* theEvent ); void onMouseMove( SUIT_ViewWindow*, QMouseEvent* theEvent ); - void onLocalPointChanged( int theRow, int theColumn ); + void onCellChanged( int theRow, int theColumn ); protected: enum ActionId{ UNDO_ID, @@ -130,6 +133,9 @@ protected: DetectionMode }; + typedef std::pair< int, int > SectionToPoint; + typedef std::deque< SectionToPoint > SectionToPointList; + private: QAction* createAction( ActionId theId, const QString& theName, const QPixmap& theImage, const QString& theToolTip, const QKeySequence& theShortcut ); @@ -149,22 +155,33 @@ private: void setDragStarted( const bool theState, const QPoint& thePoint = QPoint() ); - void getSelectedPonts( const int theSectionId, QList& thePoints ); - void setSelectedPonts( const int theSectionId, const QList& thePoints = QList() ); + void getSelectedPonts( SectionToPointList& thePoints ); + void setSelectedPonts( const SectionToPointList& = SectionToPointList() ); - void startCurveModification( QList& thePoints, const bool theFillPoints = true ); - void finishCurveModification( const QList& thePoints ); + void startCurveModification( SectionToPointList& thePoints, + const bool theFillPoints = true ); + void finishCurveModification( const SectionToPointList& thePoints = SectionToPointList() ); // curve algorithm int findLocalPointIndex( int theSectionId, float theX, float theY ); + void findSectionsToPoints( const double theX, const double theY, + SectionToPointList& thePoints ); + void convert( const SectionToPointList& thePoints, + QMap >& theConvPoints ); // OCC algorithm bool pointOnObject( Handle(AIS_InteractiveObject) theObject, const int theX, const int theY, - gp_Pnt& thePoint, int& thePoint1, int& thePoint2 ); + gp_Pnt& thePoint, gp_Pnt& thePoint1, gp_Pnt& thePoint2 ); bool hasProjectPointOnCurve( const int theX, const int theY, const Handle(Geom_Curve)& theCurve, - gp_Pnt& theOutPoint ); + Standard_Real& theParameter ); + + // local point view table methods + int getSectionId( const int theRowId ) const; + int getPointId( const int theRowId ) const; + + bool contains( const SectionToPointList& theList, const SectionToPoint& theValue ) const; private: QMap myActionMap; @@ -176,8 +193,10 @@ private: int mySection; int myPointNum; bool myDragStarted; - QList myDragPoints; QPoint myDragStartPosition; + int myDragInteractionStyle; + SectionToPointList myDragPoints; + bool myDragged; QByteArray myGuiState; };