Salome HOME
Issue #1629 : it is not anymore possible to select entities first in the sketcher...
[modules/shaper.git] / src / SketcherPrs / SketcherPrs_DimensionStyleListener.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        SketcherPrs_DimensionStyleListener.h
4 // Created:     31 March 2016
5 // Author:      Natalia ERMOLAEVA
6
7 #ifndef SketcherPrs_DimensionStyleListener_H
8 #define SketcherPrs_DimensionStyleListener_H
9
10 #include <Events_Listener.h>
11
12 #include <ModelAPI_AttributeDouble.h>
13
14 #include "SketcherPrs_Tools.h"
15
16 #include <Standard.hxx>
17
18 #include <string>
19
20 /**
21 * \ingroup GUI
22 * A class for representation of linear dimension constraint.
23 * It supports SketchPlugin_ConstraintLength and SketchPlugin_ConstraintDistance features.
24 */
25 class SketcherPrs_DimensionStyleListener : public Events_Listener
26 {
27 public:
28   /// Constructor
29   Standard_EXPORT SketcherPrs_DimensionStyleListener();
30
31   /// Destructor
32   Standard_EXPORT ~SketcherPrs_DimensionStyleListener();
33
34   /// Process the ModelAPI_DocumentCreatedMessage to fulfill a document
35   /// from the message with origin and planes
36   virtual void processEvent(const std::shared_ptr<Events_Message>& theMessage);
37
38   /// Redefinition of virtual function
39   Standard_EXPORT void updateDimensions(AIS_Dimension* theDimension,
40                                         const AttributeDoublePtr& theAttributeValue);
41
42   /// Visualizes the dimension text or dimension value depending on the has parameters state
43   /// \param theDimension a modified dimension
44   /// \param theHasParameters if true, the text is shown, else digit
45   /// \param theValue a dimension value
46   Standard_EXPORT void updateDimensions(AIS_Dimension* theDimension,
47                                         const bool theHasParameters,
48                                         const std::string& theValue);
49
50 private:
51   /// Style how the parameter of dimension should be visualized
52   SketcherPrs_ParameterStyleMessage::ParameterStyle myStyle;
53 };
54
55 #endif