X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Application.h;h=d1156b2844e80a7daacbfd107b9299bfe8d1da73;hb=a352874d231ad2b117f55cf384c18361a0dfe67a;hp=77d669257079fc13b303f0bd4203334cf570a16b;hpb=7bc80aeb9d0bf426306a47c247a4af44aac6b5b0;p=modules%2Fshaper.git diff --git a/src/Model/Model_Application.h b/src/Model/Model_Application.h index 77d669257..d1156b284 100644 --- a/src/Model/Model_Application.h +++ b/src/Model/Model_Application.h @@ -1,14 +1,16 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: Model_Application.hxx // Created: 28 Dec 2011 // Author: Mikhail PONIKAROV // Copyright: CEA 2011 -#ifndef Model_Application_HeaderFile -#define Model_Application_HeaderFile +#ifndef Model_Application_H_ +#define Model_Application_H_ -#include -#include +#include #include +#include // Define handle class DEFINE_STANDARD_HANDLE(Model_Application, TDocStd_Application) @@ -19,9 +21,9 @@ DEFINE_STANDARD_HANDLE(Model_Application, TDocStd_Application) * Application supports the formats and document management. It is uses OCAF-lke * architecture and just implements specific features of the module. */ -class Model_Application: public TDocStd_Application, public ModelAPI_Application +class Model_Application : public TDocStd_Application { -public: + public: // useful methods inside of the module // CASCADE RTTI @@ -29,11 +31,29 @@ public: ; //! Retuns the application: one per process - MODEL_EXPORT static Handle_Model_Application GetApplication(); - //! Returns the main document (on first call creates it) - MODEL_EXPORT ModelAPI_Document* GetMainDocument(); + MODEL_EXPORT static Handle_Model_Application getApplication(); + //! Returns the main document (on first call creates it) by the string identifier + MODEL_EXPORT const std::shared_ptr& getDocument(std::string theDocID); + //! Returns true if document has been created + MODEL_EXPORT bool hasDocument(std::string theDocID); + //! Deletes the document from the application + MODEL_EXPORT void deleteDocument(std::string theDocID); + //! Deletes all documents existing in the application + MODEL_EXPORT void deleteAllDocuments(); + + //! Set path for the loaded by demand documents + void setLoadPath(std::string thePath); + //! Returns the path for the loaded by demand documents + const std::string& loadPath() const; + //! Defines that specified document must be loaded by demand + void setLoadByDemand(std::string theID); + //! Returns true if specified document must be loaded by demand + bool isLoadByDemand(std::string theID); + //! Closes and removes the documents that are not loaded by demand and + //! not in the given list + void removeUselessDocuments(std::list > theUsedDocs); -public: + public: // Redefined OCAF methods //! Return name of resource (i.e. "Standard") Standard_CString ResourcesName(); @@ -45,9 +65,13 @@ public: //! the static instance of the object (or derive your own application) Model_Application(); -private: - - Handle_Model_Document myMainDoc; ///< main document of an application + private: + /// Map from string identifiers to created documents of an application + std::map > myDocs; + /// Path for the loaded by demand documents + std::string myPath; + /// Path for the loaded by demand documents + std::set myLoadedByDemand; }; #endif