Salome HOME
Copyright update 2020
[modules/shaper.git] / src / Model / Model_AttributeInteger.h
index c4be993be0be78f3ffc4d3e6085d6534b1804bbf..d3c1ac08792eb387246651c62deab869de7f2c1e 100644 (file)
@@ -1,6 +1,21 @@
-// File:        Model_AttributeInteger.h
-// Created:     03 sep 2014
-// Author:      sbh
+// Copyright (C) 2014-2020  CEA/DEN, EDF R&D
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
 
 #ifndef MODEL_ATTRIBUTEINTEGER_H_
 #define MODEL_ATTRIBUTEINTEGER_H_
 #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
+  /// Initializes attributes
   Model_AttributeInteger(TDF_Label& theLabel);
+  /// Reinitializes the internal state of the attribute (may be needed on undo/redo, abort, etc)
+  virtual void reinit();
 
   friend class Model_Data;
+
+ private:
+  std::shared_ptr<ModelAPI_ExpressionInteger> myExpression;
 };
 
 #endif