Salome HOME
Update classes documentation
authorvsv <vitaly.smetannikov@opencascade.com>
Thu, 5 May 2016 14:39:42 +0000 (17:39 +0300)
committervsv <vitaly.smetannikov@opencascade.com>
Thu, 5 May 2016 14:39:55 +0000 (17:39 +0300)
src/SketcherPrs/SketcherPrs_DimensionStyleListener.h
src/SketcherPrs/SketcherPrs_Factory.h
src/SketcherPrs/SketcherPrs_Tools.h

index 3ff9696b7415bb2566edebece96820a366c6242f..cc00b23ac4e32bb29ce8491c053fd1b0d6205ebb 100755 (executable)
@@ -26,8 +26,6 @@ class SketcherPrs_DimensionStyleListener : public Events_Listener
 {
 public:
   /// Constructor
-  /// \param theConstraint a constraint feature
-  /// \param thePlane a coordinate plane of current sketch
   Standard_EXPORT SketcherPrs_DimensionStyleListener();
 
   /// Destructor
index 2f43622b04aaa398db891710f16a995ab0e18d76..0c463e59e70649e0c0f39924dbad8d6e77fd95cc 100644 (file)
@@ -28,81 +28,97 @@ public:
   /// Creates coincedent constraint presentation
   /// \param theConstraint the constraint
   /// \param thePlane the current sketch plane
+  /// \param thePrevious the previous presentation
   GET_CONSTRAINT_PRS(coincidentConstraint)
 
   /// Creates collinear constraint presentation
   /// \param theConstraint the constraint
   /// \param thePlane the current sketch plane
+  /// \param thePrevious the previous presentation
   GET_CONSTRAINT_PRS(collinearConstraint)
 
   /// Creates parallel constraint presentation
   /// \param theConstraint the constraint
   /// \param thePlane the current sketch plane
+  /// \param thePrevious the previous presentation
   GET_CONSTRAINT_PRS(parallelConstraint)
 
   /// Creates coincedent perpendicular presentation
   /// \param theConstraint the constraint
   /// \param thePlane the current sketch plane
+  /// \param thePrevious the previous presentation
   GET_CONSTRAINT_PRS(perpendicularConstraint)
 
   /// Creates rigid constraint presentation
   /// \param theConstraint the constraint
   /// \param thePlane the current sketch plane
+  /// \param thePrevious the previous presentation
   GET_CONSTRAINT_PRS(rigidConstraint)
 
   /// Creates horizontal constraint presentation
   /// \param theConstraint the constraint
   /// \param thePlane the current sketch plane
+  /// \param thePrevious the previous presentation
   GET_CONSTRAINT_PRS(horisontalConstraint)
 
   /// Creates vertical constraint presentation
   /// \param theConstraint the constraint
   /// \param thePlane the current sketch plane
+  /// \param thePrevious the previous presentation
   GET_CONSTRAINT_PRS(verticalConstraint)
 
   /// Creates equal constraint presentation
   /// \param theConstraint the constraint
   /// \param thePlane the current sketch plane
+  /// \param thePrevious the previous presentation
   GET_CONSTRAINT_PRS(equalConstraint)
 
   /// Creates tangent constraiont presentation
   /// \param theConstraint the constraint
   /// \param thePlane the current sketch plane
+  /// \param thePrevious the previous presentation
   GET_CONSTRAINT_PRS(tangentConstraint)
 
   /// Creates radius dimension presentation
   /// \param theConstraint the constraint
   /// \param thePlane the current sketch plane
+  /// \param thePrevious the previous presentation
   GET_CONSTRAINT_PRS(radiusConstraint)
 
   /// Creates length dimension presentation
   /// \param theConstraint the constraint
   /// \param thePlane the current sketch plane
+  /// \param thePrevious the previous presentation
   GET_CONSTRAINT_PRS(lengthDimensionConstraint)
 
   /// Creates middle constraint presentation
   /// \param theConstraint the constraint
   /// \param thePlane the current sketch plane
+  /// \param thePrevious the previous presentation
   GET_CONSTRAINT_PRS(middleConstraint)
 
   /// Creates mirror constraint presentation
   /// \param theConstraint the constraint
   /// \param thePlane the current sketch plane
+  /// \param thePrevious the previous presentation
   GET_CONSTRAINT_PRS(mirrorConstraint)
 
   /// Creates translate constraint presentation
   /// \param theConstraint the constraint
   /// \param thePlane the current sketch plane
+  /// \param thePrevious the previous presentation
   GET_CONSTRAINT_PRS(translateConstraint)
 
   /// Creates rotate constraint presentation
   /// \param theConstraint the constraint
   /// \param thePlane the current sketch plane
+  /// \param thePrevious the previous presentation
   GET_CONSTRAINT_PRS(rotateConstraint)
 
   /// Creates angle constraint presentation
   /// \param theConstraint the constraint
   /// \param thePlane the current sketch plane
+  /// \param thePrevious the previous presentation
   GET_CONSTRAINT_PRS(angleConstraint)
 };
 
index d2b22d386afb296d7e45f38ac368e00d6b181401..a17dc49371c44205dedb472f2a19b7f6b403164b 100644 (file)
@@ -29,9 +29,10 @@ class Handle_Prs3d_DimensionAspect;
 class SketcherPrs_ParameterStyleMessage : public Events_Message
 {
 public:
+  /// \enum ParameterStyle lists styles of parameter
   enum ParameterStyle {
-    ParameterValue, /// using symbol with the parameter value
-    ParameterText /// using parameter text
+    ParameterValue, ///< using symbol with the parameter value
+    ParameterText ///< using parameter text
   };
 
 public: