X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Expression.h;h=6ad194ee4878f67cbd52ea4cb09bffa3fb28eac5;hb=362b45a781c3209b8363570fe9fee316dfc1928e;hp=2963afd3667ecd5b325aa6efb9cfe3b6e23304a3;hpb=f8c36784f4699f0e3d04f4e8e067c7bd317b4a1c;p=modules%2Fshaper.git diff --git a/src/Model/Model_Expression.h b/src/Model/Model_Expression.h index 2963afd36..6ad194ee4 100644 --- a/src/Model/Model_Expression.h +++ b/src/Model/Model_Expression.h @@ -1,8 +1,21 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: Model_Expression.h -// Created: 5 Aug 2015 -// Author: Sergey POKHODENKO +// 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_Expression_H_ #define Model_Expression_H_ @@ -12,6 +25,7 @@ #include #include +#include #include #include @@ -21,48 +35,164 @@ * \ingroup DataModel * \brief Implementation of ModelAPI_Expression. */ -class Model_Expression : public ModelAPI_Expression +class Model_Expression : public virtual ModelAPI_Expression { - Handle_TDataStd_Real myReal; ///< double is Real attribute + public: + /// Sets the text of this Expression + MODEL_EXPORT virtual void setText(const std::wstring& theText); + + /// Returns the text of this Expression + MODEL_EXPORT virtual std::wstring text() const; + + /// Allows to set expression (text) error (by the parameters listener) + MODEL_EXPORT virtual void setError(const std::string& theError); + + /// Returns an expression error + MODEL_EXPORT virtual std::string error(); + + /// Defines the used parameters (by the parameters listener) + MODEL_EXPORT virtual void setUsedParameters(const std::set& theUsedParameters); + + /// Returns the used parameters + MODEL_EXPORT virtual std::set usedParameters() const; + + protected: + /// Initializes attributes + Model_Expression(TDF_Label& theLabel); + Handle_TDataStd_Name myText; ///< Text representation of the attribute (may differ for parameters) Handle_TDataStd_Comment myError; ///< Error of expression of the text attribute Handle_TDataStd_ExtStringList myUsedParameters; ///< Parameters used in expression + TDF_Label myLab; ///< if attribute is not initialized, store label here +}; + + +/**\class Model_ExpressionDouble + * \ingroup DataModel + * \brief Implementation of ModelAPI_ExpressionDouble. + */ +class Model_ExpressionDouble : + public Model_Expression, // implementation inheritance + public ModelAPI_ExpressionDouble +{ public: + /// Sets the text of this Expression + MODEL_EXPORT virtual void setText(const std::wstring& theText) { + Model_Expression::setText(theText); + }; + + /// Returns the text of this Expression + MODEL_EXPORT virtual std::wstring text() const { + return Model_Expression::text(); + }; + + /// Allows to set expression (text) error (by the parameters listener) + MODEL_EXPORT virtual void setError(const std::string& theError) { + Model_Expression::setError(theError); + }; + + /// Returns an expression error + MODEL_EXPORT virtual std::string error() { + return Model_Expression::error(); + }; + + /// Defines the used parameters (by the parameters listener) + MODEL_EXPORT virtual void setUsedParameters(const std::set& theUsedParameters) { + Model_Expression::setUsedParameters(theUsedParameters); + }; + + /// Returns the used parameters + MODEL_EXPORT virtual std::set usedParameters() const { + return Model_Expression::usedParameters(); + }; + /// Defines the double value MODEL_EXPORT virtual void setValue(const double theValue); /// Returns the double value MODEL_EXPORT virtual double value(); - /// Sets the text of this Expression - MODEL_EXPORT virtual void setText(const std::string& theText); - - /// Returns the text of this Expression - MODEL_EXPORT virtual std::string text() const; - /// Allows to set expression (text) as invalid (by the parameters listener) MODEL_EXPORT virtual void setInvalid(const bool theFlag); /// Returns true if text is invalid MODEL_EXPORT virtual bool isInvalid(); + protected: + /// Initializes attributes + Model_ExpressionDouble(TDF_Label& theLabel); + /// Reinitializes the internal state of the attribute (may be needed on undo/redo, abort, etc) + virtual void reinit(); + + friend class Model_AttributeDouble; + friend class Model_Data; + + private: + Handle_TDataStd_Real myReal; ///< double is Real attribute +}; + + +/**\class Model_ExpressionInteger + * \ingroup DataModel + * \brief Implementation of ModelAPI_ExpressionInteger. + */ +class Model_ExpressionInteger : + public Model_Expression, // implementation inheritance + public ModelAPI_ExpressionInteger +{ + public: + /// Sets the text of this Expression + MODEL_EXPORT virtual void setText(const std::wstring& theText) { + Model_Expression::setText(theText); + }; + + /// Returns the text of this Expression + MODEL_EXPORT virtual std::wstring text() const { + return Model_Expression::text(); + }; + /// Allows to set expression (text) error (by the parameters listener) - MODEL_EXPORT virtual void setError(const std::string& theError); + MODEL_EXPORT virtual void setError(const std::string& theError) { + Model_Expression::setError(theError); + }; /// Returns an expression error - MODEL_EXPORT virtual std::string error(); + MODEL_EXPORT virtual std::string error() { + return Model_Expression::error(); + }; /// Defines the used parameters (by the parameters listener) - MODEL_EXPORT virtual void setUsedParameters(const std::set& theUsedParameters); + MODEL_EXPORT virtual void setUsedParameters(const std::set& theUsedParameters) { + Model_Expression::setUsedParameters(theUsedParameters); + }; /// Returns the used parameters - MODEL_EXPORT virtual std::set usedParameters() const; + MODEL_EXPORT virtual std::set usedParameters() const { + return Model_Expression::usedParameters(); + }; + + /// Defines the integer value + MODEL_EXPORT virtual void setValue(const int theValue); + + /// Returns the integer value + MODEL_EXPORT virtual int value(); + + /// Allows to set expression (text) as invalid (by the parameters listener) + MODEL_EXPORT virtual void setInvalid(const bool theFlag); + + /// Returns true if text is invalid + MODEL_EXPORT virtual bool isInvalid(); protected: /// Initializes attributes - Model_Expression(TDF_Label& theLabel); + Model_ExpressionInteger(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; + friend class Model_AttributeInteger; + + private: + Handle_TDataStd_Integer myInteger; }; -#endif +#endif // Model_Expression_H_