Salome HOME
refs #30 - Sketch base GUI: create, draw lines
[modules/shaper.git] / src / ModelAPI / ModelAPI_PluginManager.h
index a7b0c7bcd769895137a649fc16d3874b734123f1..47c42562ffdcd87682973ccdd152d595593a0290 100644 (file)
@@ -23,9 +23,6 @@ class ModelAPI_Document;
 class MODELAPI_EXPORT ModelAPI_PluginManager
 {
 public:
-  /// Creates the feature object using plugins functionality
-  virtual boost::shared_ptr<ModelAPI_Feature> createFeature(std::string theFeatureID) = 0;
-
   /// Returns the real implementation (the alone instance per application) of the plugin manager
   static boost::shared_ptr<ModelAPI_PluginManager> get();
 
@@ -37,14 +34,31 @@ public:
   /// Returns the root document of the application (that may contains sub-documents)
   virtual boost::shared_ptr<ModelAPI_Document> rootDocument() = 0;
 
-  /// loads the library with specific name, appends "lib*.dll" or "*.so" depending on the platform
-  static void ModelAPI_PluginManager::loadLibrary(const std::string theLibName);
+  /// Return true if root document has been already created
+  virtual bool hasRootDocument() = 0;
+
+  /// Returns the current document that used for current work in the application
+  virtual boost::shared_ptr<ModelAPI_Document> currentDocument() = 0;
+
+  /// Defines the current document that used for current work in the application
+  virtual void setCurrentDocument(boost::shared_ptr<ModelAPI_Document> theDoc) = 0;
 
   /// Is needed for python wrapping by swig, call Get to get an instance
   ModelAPI_PluginManager();
 
+  /// To virtually destroy the fields of successors
+  virtual ~ModelAPI_PluginManager() {}
+
 protected:
+  /// Creates the feature object using plugins functionality
+  virtual boost::shared_ptr<ModelAPI_Feature> createFeature(std::string theFeatureID) = 0;
+
   static void SetPluginManager(boost::shared_ptr<ModelAPI_PluginManager> theManager);
+
+  friend class Model_Document;
 };
 
+typedef boost::shared_ptr<ModelAPI_PluginManager> PluginManagerPtr;
+
+
 #endif