Salome HOME
Re-Execute the sketch sub-elements after all entities update: after solve space is...
[modules/shaper.git] / src / Model / Model_Session.h
index 5ee656025d1cf71e3da7fbab5e49423a085f7295..fd4f9c0b5ac3e35a1800082dbba8b67bf2036521 100644 (file)
@@ -23,8 +23,8 @@ class Model_Document;
 class Model_Session : public ModelAPI_Session, public Events_Listener
 {
   bool myPluginsInfoLoaded;  ///< it true if plugins information is loaded
-  /// map of feature IDs to plugin name
-  std::map<std::string, std::string> myPlugins;
+  /// map of feature IDs to plugin name and document kind
+  std::map<std::string, std::pair<std::string, std::string> > myPlugins; 
   std::map<std::string, ModelAPI_Plugin*> myPluginObjs;  ///< instances of the already plugins
   std::string myCurrentPluginName;  ///< name of the plugin that must be loaded currently
   boost::shared_ptr<ModelAPI_Document> myCurrentDoc;  ///< current working document
@@ -73,7 +73,11 @@ class Model_Session : public ModelAPI_Session, public Events_Listener
   MODEL_EXPORT virtual boost::shared_ptr<ModelAPI_Document> activeDocument();
 
   /// Defines the current document that used for current work in the application
-  MODEL_EXPORT virtual void setActiveDocument(boost::shared_ptr<ModelAPI_Document> theDoc);
+  MODEL_EXPORT virtual void setActiveDocument(
+    boost::shared_ptr<ModelAPI_Document> theDoc, bool theSendSignal = true);
+
+  /// Returns all the opened documents of the session (without postponed)
+  MODEL_EXPORT virtual std::list<boost::shared_ptr<ModelAPI_Document> > allOpenedDocuments();
 
   /// Registers the plugin that creates features.
   /// It is obligatory for each plugin to call this function on loading to be found by 
@@ -81,7 +85,7 @@ class Model_Session : public ModelAPI_Session, public Events_Listener
   MODEL_EXPORT virtual void registerPlugin(ModelAPI_Plugin* thePlugin);
 
   /// Processes the configuration file reading
-  MODEL_EXPORT virtual void processEvent(const Events_Message* theMessage);
+  MODEL_EXPORT virtual void processEvent(const boost::shared_ptr<Events_Message>& theMessage);
 
   /// Copies the document to the new one wit hthe given id
   MODEL_EXPORT virtual boost::shared_ptr<ModelAPI_Document> copy(