X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Validator.h;h=939cdf21390017aebd1c22b3bc2de2de5e62e94e;hb=f6bd0f4e080b833c0de7ef25822ebee641073445;hp=5ac63fd1b88f7c3e29e84402113cfe6f470e6c28;hpb=423c10234142d14d0d5de89383f2f96a4ec5930f;p=modules%2Fshaper.git diff --git a/src/Model/Model_Validator.h b/src/Model/Model_Validator.h index 5ac63fd1b..939cdf213 100644 --- a/src/Model/Model_Validator.h +++ b/src/Model/Model_Validator.h @@ -1,8 +1,22 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: Model_Validator.hxx -// Created: 2 Jul 2014 -// Author: Mikhail PONIKAROV +// Copyright (C) 2014-2017 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_Validator_H_ #define Model_Validator_H_ @@ -37,15 +51,13 @@ class Model_ValidatorsFactory : public ModelAPI_ValidatorsFactory /// Stores the registered attributes that leads to the concealment of referenced objects in /// data tree. Map from feature kind to set of attribute IDs. std::map > myConcealed; - /// Stored the unconcealed results and features that caused the canceled concealment (Recover). - /// If the feature is empty, unconcealment is persistent. - std::map, std::list > > - myUnconcealed; /// Stores the registered attributes must be checked only if the particular case is activated /// Map from feature kind to map of attribute IDs to pair // (switchId (ID of the attribute) and case Ids (possible values of the switch attribute)) std::map > > > myCases; + /// Stores main attribute for each feature + std::map myMainArgument; public: /// Registers the instance of the validator by the ID @@ -98,19 +110,6 @@ class Model_ValidatorsFactory : public ModelAPI_ValidatorsFactory /// Returns true that it was registered that attribute conceals the referenced result virtual bool isConcealed(std::string theFeature, std::string theAttribute); - /// Registers (by Recover feature) cancel of concealment of specific result by specific feature. - /// If theCanceledFeat is empty, the concealment is canceled for this result forever. - virtual void registerUnconcealment(std::shared_ptr theUnconcealed, - std::shared_ptr theCanceledFeat); - - /// Disables cancel of concealment of specific result by specific feature. - virtual void disableUnconcealment(std::shared_ptr theUnconcealed, - std::shared_ptr theCanceledFeat); - - /// Returns true if concealment is canceled. - virtual bool isUnconcealed(std::shared_ptr theUnconcealed, - std::shared_ptr theCanceledFeat); - /// register the case-attribute (\a myCases set definition) virtual void registerCase(std::string theFeature, std::string theAttribute, const std::list >& theCases); @@ -118,6 +117,12 @@ class Model_ValidatorsFactory : public ModelAPI_ValidatorsFactory /// Returns true if the attribute must be checked (the case is selected) virtual bool isCase(FeaturePtr theFeature, std::string theAttribute); + /// Register the attribute as a main argument of the feature + virtual void registerMainArgument(std::string theFeature, std::string theAttribute); + + /// Returns true is the attribute is a main argument of the feature + virtual bool isMainArgument(std::string theFeature, std::string theAttribute); + protected: /// Adds the defualt validators that are usefull for all features.