X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Session.h;h=c54d89229ff42105a8808d23105f0955fc26579e;hb=25bd4b40824c7df4344337256f7a4691e4f219c7;hp=89b9d548c1d5d1b1416b57dde0ad8ec9b92c1aa6;hpb=1c530eba1d76c012cfc61df1c21694e62f203d94;p=modules%2Fshaper.git diff --git a/src/Model/Model_Session.h b/src/Model/Model_Session.h index 89b9d548c..c54d89229 100644 --- a/src/Model/Model_Session.h +++ b/src/Model/Model_Session.h @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// Copyright (C) 2014-2019 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 @@ -12,10 +12,9 @@ // // 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 +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ or -// email : webmaster.salome@opencascade.com +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // #ifndef Model_Session_H_ @@ -44,10 +43,13 @@ class Model_Session : public ModelAPI_Session, public Events_Listener std::map myPluginObjs; ///< instances of the already plugins std::string myCurrentPluginName; ///< name of the plugin that must be loaded currently std::shared_ptr myCurrentDoc; ///< current working document + ///< map from plugin id to plugins which are used by it (must be loaded before this one) + std::map myUsePlugins; /// if true, generates error if document is updated outside of transaction bool myCheckTransactions; - bool myOperationAttachedToNext; ///< the current operation must be committed twice, with nested + ///< if true, the current operation must be committed twice, with nested (list for any nesting depth) + std::list myOperationAttachedToNext; public: //! Loads the OCAF document from the file. @@ -130,6 +132,9 @@ class Model_Session : public ModelAPI_Session, public Events_Listener /// Returns the validators factory: the only one instance per application MODEL_EXPORT virtual ModelAPI_ValidatorsFactory* validators(); + /// Returns the filters factory: the only one instance per application + MODEL_EXPORT virtual ModelAPI_FiltersFactory* filters(); + /// Sets the flag to check modifications outside the transaction or not void setCheckTransactions(const bool theCheck) { @@ -142,6 +147,13 @@ class Model_Session : public ModelAPI_Session, public Events_Listener /// Returns the global identifier of the current transaction (needed for the update algo) MODEL_EXPORT virtual int transactionID(); + + /// Returns true if auto-update in the application is blocked + MODEL_EXPORT virtual bool isAutoUpdateBlocked(); + + /// Set state of the auto-update of features result in the application + MODEL_EXPORT virtual void blockAutoUpdate(const bool theBlock); + protected: /// Loads (if not done yet) the information about the features and plugins void LoadPluginsInfo(); @@ -149,6 +161,9 @@ class Model_Session : public ModelAPI_Session, public Events_Listener /// Creates the feature object using plugins functionality FeaturePtr createFeature(std::string theFeatureID, Model_Document* theDocOwner); + /// Get the plugin by name. If it is not loaded, load plugin. + ModelAPI_Plugin* getPlugin(const std::string& thePluginName); + friend class Model_Document; friend class Model_Objects; };