X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Application.h;h=b5a2af8e026ccc1adab9b76a03289f23f49e0cbf;hb=77b93142eb8ba33bfb9a42040c2fd8926ffea5c8;hp=3865434796cad755f7869adb96677e18fb41d2f4;hpb=1b6e67870beeeb667864eaff5b1bb9c1570b7259;p=modules%2Fshaper.git diff --git a/src/Model/Model_Application.h b/src/Model/Model_Application.h index 386543479..b5a2af8e0 100644 --- a/src/Model/Model_Application.h +++ b/src/Model/Model_Application.h @@ -1,10 +1,12 @@ +// 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 @@ -16,15 +18,18 @@ DEFINE_STANDARD_HANDLE(Model_Application, TDocStd_Application) /**\class Model_Application * \ingroup DataModel * \brief Realization of Open CASCADE application abstraction. Class for internal use only. + * * 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 +class Model_Application : public TDocStd_Application { public: // useful methods inside of the module // CASCADE RTTI + /// Definition of "Handles" usage + /// \param Model_Application is the class name that is covered by the OCCT Handle DEFINE_STANDARD_RTTI(Model_Application); //! Retuns the application: one per process @@ -35,8 +40,22 @@ public: 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(); -public: + //! 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: // Redefined OCAF methods //! Return name of resource (i.e. "Standard") Standard_CString ResourcesName(); @@ -48,9 +67,13 @@ public: //! the static instance of the object (or derive your own application) Model_Application(); -private: + 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