Salome HOME
Implementation of features cashing and undo/redo functionality in document.
[modules/shaper.git] / src / Model / Model_Application.h
1 // File:        Model_Application.hxx
2 // Created:     28 Dec 2011
3 // Author:      Mikhail PONIKAROV
4 // Copyright:   CEA 2011
5
6 #ifndef Model_Application_HeaderFile
7 #define Model_Application_HeaderFile
8
9 #include <Model_Document.h> 
10 #include <TDocStd_Application.hxx>
11 #include <map>
12
13 // Define handle class 
14 DEFINE_STANDARD_HANDLE(Model_Application, TDocStd_Application)
15
16 /**\class Model_Application
17  * \ingroup DataModel
18  * \brief Realization of Open CASCADE application abstraction. Class for internal use only.
19  * Application supports the formats and document management. It is uses OCAF-lke
20  * architecture and just implements specific features of the module.
21  */
22 class Model_Application: public TDocStd_Application
23 {
24 public:
25   // useful methods inside of the module
26
27   // CASCADE RTTI
28   DEFINE_STANDARD_RTTI(Model_Application);
29
30   //! Retuns the application: one per process    
31   MODEL_EXPORT static Handle_Model_Application getApplication();
32   //! Returns the main document (on first call creates it) by the string identifier
33   MODEL_EXPORT std::shared_ptr<Model_Document> getDocument(std::string theDocID);
34   //! Deletes the document from the application
35   MODEL_EXPORT void deleteDocument(std::string theDocID);
36
37 public:
38   // Redefined OCAF methods
39   //! Return name of resource (i.e. "Standard")
40   Standard_CString ResourcesName();
41   //! Return format (i.e "MDTV-Standard")
42   //! \param theFormats sequence of allowed formats for input/output
43   virtual void Formats(TColStd_SequenceOfExtendedString& theFormats);
44   //! Constructor
45   //! Use method GetInstance() method to obtain 
46   //! the static instance of the object (or derive your own application)
47   Model_Application();
48
49 private:
50   /// Map from string identifiers to created documents of an application
51   std::map<std::string, std::shared_ptr<Model_Document> > myDocs;
52 };
53
54 #endif