Salome HOME
Add Model_AttributeSelection::setId()
[modules/shaper.git] / src / Model / Model_AttributeInteger.h
index a723227bc550c7efc77309ff766e984650801491..870db29908d383499274846bfe65b03e247098c5 100644 (file)
 #include <ModelAPI_AttributeInteger.h>
 
 #include <TDF_Label.hxx>
-#include <TDataStd_Integer.hxx>
+
+class ModelAPI_ExpressionInteger;
 
 /**\class Model_AttributeInteger
  * \ingroup DataModel
- * \brief Attribute that contains integer (int).
+ * \brief Attribute that contains integer.
  */
 
 class Model_AttributeInteger : public ModelAPI_AttributeInteger
 {
-  Handle_TDataStd_Integer myInteger;
  public:
-  /// Defines the int value
+  /// Defines the integer value
   MODEL_EXPORT virtual void setValue(const int theValue);
 
-  /// Returns the int value
+  /// Returns the integer value
   MODEL_EXPORT virtual int value();
 
+  /// Defines the calculated value
+  MODEL_EXPORT virtual void setCalculatedValue(const int theValue);
+
+  /// Defines the text value
+  MODEL_EXPORT virtual void setText(const std::string& theText);
+
+  /// Returns the text value
+  MODEL_EXPORT virtual std::string text();
+
+  /// Allows to set expression (text) as invalid (by the parameters listener)
+  MODEL_EXPORT virtual void setExpressionInvalid(const bool theFlag);
+
+  /// Returns true if text is invalid
+  MODEL_EXPORT virtual bool expressionInvalid();
+
+  /// Allows to set expression (text) error (by the parameters listener)
+  MODEL_EXPORT virtual void setExpressionError(const std::string& theError);
+
+  /// Returns an expression error
+  MODEL_EXPORT virtual std::string expressionError();
+
+  /// Defines the used parameters
+  MODEL_EXPORT virtual void setUsedParameters(const std::set<std::string>& theUsedParameters);
+
+  /// Returns the used parameters
+  MODEL_EXPORT virtual std::set<std::string> usedParameters() const;
+
  protected:
-  /// Initializes attibutes
-  Model_AttributeInteger(TDF_Label& theLabel);
+  /// Initializes attributes
+  Model_AttributeInteger();
 
   friend class Model_Data;
+
+ private:
+  std::shared_ptr<ModelAPI_ExpressionInteger> myExpression;
 };
 
 #endif