Salome HOME
551fc9734c1977394b2651621d48824fe36e75e6
[modules/hydro.git] / src / HYDROCurveCreator / CurveCreator_Curve.hxx
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 // File:        CurveCreator_Curve.hxx
21 // Author:      Sergey KHROMOV
22
23 #ifndef _CurveCreator_Curve_HeaderFile
24 #define _CurveCreator_Curve_HeaderFile
25
26 #include "CurveCreator_ICurve.hxx"
27
28 #include "CurveCreator_Macro.hxx"
29 #include "CurveCreator.hxx"
30 #include "CurveCreator_Diff.hxx"
31
32 #include <AIS_Point.hxx>
33 #include <AIS_Line.hxx>
34 #include <AIS_InteractiveObject.hxx>
35
36 #include <list>
37
38 struct CurveCreator_Section;
39 class CurveCreator_Displayer;
40
41 /**
42  *  The CurveCreator_Curve object is represented as one or more sets of
43  *  connected points; thus CurveCreator_Curve object can contain several
44  *  not connected curves (polylines or b-splines), each such curve has two
45  *  only ends � start and end points � in other words non-manifold curves
46  *  are not supported.
47  */
48 class CURVECREATOR_EXPORT CurveCreator_Curve : public CurveCreator_ICurve
49 {
50 protected:
51   typedef std::list<CurveCreator_Diff> ListDiff;
52
53 public:
54   //! Constructor of the curve.
55   /** The dimension is explicitly specified in the constructor
56    *  and cannot be changed later.
57    */
58   CurveCreator_Curve(const CurveCreator::Dimension theDimension);
59
60   //! Destructor.
61   virtual ~CurveCreator_Curve();
62
63   //! Get the dimension.
64   virtual CurveCreator::Dimension getDimension() const;
65
66   //! Return unique section name
67   virtual std::string getUniqSectionName() const;
68
69   //! Set curve creator Displayer object
70   virtual void setDisplayer( CurveCreator_Displayer* theDisplayer );
71
72   //! Remove curve creator Displayer object
73   virtual void removeDisplayer();
74
75   /** Set depth of undo operations (unlimited if \a theDepth is -1
76    *  or disabled if \a theDepth is 0)
77    */
78   virtual void setUndoDepth(const int theDepth = -1);
79
80   //! Get depth of undo operations.
81   virtual int getUndoDepth() const;
82
83   virtual void startOperation();
84   virtual void finishOperation();
85
86   /**
87    * This method converts the point index to the index in
88    * an array of coordinates.
89    */
90   virtual int toICoord(const int theIPnt) const;
91
92   ListAISObjects constructSection( int theISection ) const;
93
94 protected:
95   /** This method updates all undo/redo information required to be updated
96    *  after curve modification operation. It returns false if undo/redo
97    *  is disabled and true otherwise.
98    */
99   virtual bool addEmptyDiff();
100
101   Handle_AIS_Point getAISPoint( int theISection, int theIPoint ) const;
102   Handle_AIS_Line  getAISLine( int theISection, int theIPoint1, int theIPoint2 ) const;
103   void getCoordinates( int theISection, int theIPoint, double& theX, double& theY, double& theZ ) const;
104
105   void redisplayCurve();
106
107 public:
108   /************   Implementation of INTERFACE methods   ************/
109
110   /***********************************************/
111   /***          Undo/Redo methods              ***/
112   /***********************************************/
113
114   //! Get number of available undo operations
115   virtual int getNbUndo() const;
116
117   //! Undo previous operation
118   virtual bool undo();
119
120   //! Get number of available redo operations
121   virtual int getNbRedo() const;
122
123   //! Redo last previously "undone" operation
124   virtual bool redo();
125
126
127   /***********************************************/
128   /***           Section methods               ***/
129   /***********************************************/
130
131   //! For internal use only! Undo/Redo are not used here.
132   virtual bool clearInternal();
133   //! Clear the polyline (remove all sections)
134   virtual bool clear();
135
136   //! For internal use only! Undo/Redo are not used here.
137   virtual bool joinInternal( const int theISectionTo = -1, 
138                              const int theISectionFrom = -1 );
139   //! Join range of sections to one section (join all sections if -1 is passed in one of arguments)
140   virtual bool join( const int theISectionTo = -1, 
141                      const int theISectionFrom = -1 );
142
143   //! Get number of sections
144   virtual int getNbSections() const;
145
146   //! For internal use only! Undo/Redo are not used here.
147   virtual int addSectionInternal( const std::string &theName, 
148                                   const CurveCreator::SectionType theType,
149                                   const bool theIsClosed,
150                                   const CurveCreator::Coordinates &thePoints);
151   //! Add a new section.
152   virtual int addSection( const std::string &theName, 
153                            const CurveCreator::SectionType theType,
154                            const bool theIsClosed );
155   //! Add a new section.
156   virtual int addSection( const std::string &theName, 
157                            const CurveCreator::SectionType theType,
158                            const bool theIsClosed,
159                            const CurveCreator::Coordinates &thePoints);
160   
161   //! For internal use only! Undo/Redo are not used here.
162   virtual bool removeSectionInternal( const int theISection );
163   //! Removes the given sections.
164   virtual bool removeSection( const int theISection );
165
166   //! Get "closed" flag of the specified section
167   virtual bool isClosed( const int theISection ) const;
168
169   //! For internal use only! Undo/Redo are not used here.
170   virtual bool setClosedInternal( const int theISection, 
171                                   const bool theIsClosed );
172   /**
173    *  Set "closed" flag of the specified section (all sections if
174    *  \a theISection is -1).
175    */
176   virtual bool setClosed( const int theISection, 
177                           const bool theIsClosed );
178
179   //! Returns specifyed section name
180   virtual std::string getSectionName( const int theISection ) const;
181
182   //! For internal use only! Undo/Redo are not used here.
183   virtual bool setSectionNameInternal( const int theISection, 
184                                        const std::string& theName );
185   /** Set name of the specified section */
186   virtual bool setSectionName( const int theISection, 
187                                const std::string& theName );
188
189   //! Get type of the specified section
190   virtual CurveCreator::SectionType getSectionType( const int theISection ) const;
191
192   //! For internal use only! Undo/Redo are not used here.
193   virtual bool setSectionTypeInternal( const int theISection, 
194                                        const CurveCreator::SectionType theType );
195   /**
196    *  Set type of the specified section (or all sections
197    *  if \a theISection is -1).
198    */
199   virtual bool setSectionType( const int theISection, 
200                                const CurveCreator::SectionType theType );
201
202
203   /***********************************************/
204   /***           Point methods                 ***/
205   /***********************************************/
206
207   //! For internal use only! Undo/Redo are not used here.
208   virtual bool addPointsInternal( const CurveCreator::Coordinates &theCoords,
209                                   const std::vector<int> &theISections,
210                                   const std::vector<int> &theIPnts );
211   /**
212    *  Add one point to the specified section starting from the given theIPnt index
213    *  (or at the end of points if \a theIPnt is -1).
214    */
215   virtual bool addPoints( const CurveCreator::Coordinates &theCoords,
216                           const int theISection,
217                           const int theIPnt = -1 );
218
219   //! For internal use only! Undo/Redo are not used here.
220   virtual bool setPointInternal( const int theISection,
221                                  const int theIPnt,
222                                  const CurveCreator::Coordinates& theNewCoords );
223    //! Set coordinates of specified point
224   virtual bool setPoint( const int theISection,
225                          const int theIPnt,
226                          const CurveCreator::Coordinates& theNewCoords );
227
228   //! For internal use only! Undo/Redo are not used here.
229   virtual bool removePointsInternal( const std::vector<int> &theISections, 
230                                      const std::vector<int> &theIPnts );
231   /** Remove point with given id */
232   virtual bool removePoint( const int theISection, const int theIPnt = -1 );
233
234   //! Get coordinates of specified point
235   virtual CurveCreator::Coordinates getPoint( const int theISection, 
236                                               const int theIPnt ) const;
237
238   /**
239    * Get points of a section (the total points in Curve if theISection is equal to -1)..
240    */
241   virtual CurveCreator::Coordinates getPoints( const int theISection = -1 ) const;
242
243
244   /**
245    *  Get number of points in specified section or (the total number of points
246    *  in Curve if theISection is equal to -1).
247    */
248   virtual int getNbPoints( const int theISection ) const;
249
250
251   /***********************************************/
252   /***       Presentation methods              ***/
253   /***********************************************/
254   virtual ListAISObjects constructWire() const;
255
256 public:
257
258   bool                            myIsLocked;
259   CurveCreator::Sections          mySections;   //!< curve data
260   CurveCreator::Dimension         myDimension;  //!< curve dimension
261   CurveCreator_Displayer*         myDisplayer;  //!< curve displayer
262
263 private:
264
265   int                             myNbUndos;
266   int                             myNbRedos;
267   ListDiff::iterator              myCurrenPos;
268   ListDiff                        myListDiffs;
269   int                             myUndoDepth;
270   int                             myOpLevel;
271 };
272
273 #endif