X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Session.h;h=c74f9528632a2a71d89f53a254f25c06a2730906;hb=refs%2Fheads%2FV9_11_BR;hp=3418cc65b98f7474fd2d3df5315e751968fab220;hpb=2532fb2df83ee1ddd9ff3e8b381d3788eaa15b69;p=modules%2Fshaper.git diff --git a/src/Model/Model_Session.h b/src/Model/Model_Session.h index 3418cc65b..c74f95286 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-2023 CEA, EDF // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -12,9 +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_ @@ -27,6 +27,10 @@ #include #include +#ifdef TINSPECTOR +#include +#endif + class Model_Document; /**\class Model_Session @@ -43,10 +47,14 @@ 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. @@ -91,6 +99,8 @@ class Model_Session : public ModelAPI_Session, public Events_Listener MODEL_EXPORT virtual std::list undoList(); //! Returns stack of rolled back operations MODEL_EXPORT virtual std::list redoList(); + //! Clears undo and redo lists of all documents in the session + MODEL_EXPORT virtual void clearUndoRedo(); /// Returns the root document of the application (that may contains sub-documents) MODEL_EXPORT virtual std::shared_ptr moduleDocument(); @@ -112,13 +122,16 @@ class Model_Session : public ModelAPI_Session, public Events_Listener MODEL_EXPORT virtual std::list > allOpenedDocuments(); /// Returns true if document is not loaded yet - MODEL_EXPORT virtual bool isLoadByDemand(const std::string theDocID); + MODEL_EXPORT virtual bool isLoadByDemand(const std::wstring theDocID, const int theDocIndex); /// Registers the plugin that creates features. /// It is obligatory for each plugin to call this function on loading to be found by /// the plugin manager on call of the feature) MODEL_EXPORT virtual void registerPlugin(ModelAPI_Plugin* thePlugin); + /// Verifies the license for the plugin is valid + MODEL_EXPORT virtual bool checkLicense(const std::string& thePluginName); + /// Processes the configuration file reading MODEL_EXPORT virtual void processEvent(const std::shared_ptr& theMessage); @@ -129,6 +142,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) { @@ -141,6 +157,17 @@ 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); + +#ifdef TINSPECTOR + MODEL_EXPORT virtual Handle(TDocStd_Application) application(); +#endif + protected: /// Loads (if not done yet) the information about the features and plugins void LoadPluginsInfo(); @@ -148,6 +175,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; };