]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOM/GEOM_Engine.hxx
Salome HOME
Fix issue 0020479: EDF 1116 GEOM: Create a group, "Add" button is inactive but "Selec...
[modules/geom.git] / src / GEOM / GEOM_Engine.hxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21
22 #ifndef _GEOM_Engine_HXX_
23 #define _GEOM_Engine_HXX_
24
25 #include "GEOM_Application.hxx"
26 #include "GEOM_Object.hxx"
27 #include "GEOM_DataMapOfAsciiStringTransient.hxx"
28
29 #include <Interface_DataMapOfIntegerTransient.hxx> 
30 #include <Resource_DataMapOfAsciiStringAsciiString.hxx>
31 #include <TDocStd_Document.hxx>
32 #include <TColStd_HArray1OfInteger.hxx>
33 #include <TColStd_HSequenceOfAsciiString.hxx>
34 #include <TDF_Label.hxx>
35
36 #include <map>
37 #include <list>
38
39 typedef std::map<int, std::list<TDF_Label> > TFreeLabelsList;
40
41 class GEOM_Engine
42 {
43  public:
44   Standard_EXPORT GEOM_Engine();
45   Standard_EXPORT virtual ~GEOM_Engine();
46
47   //Retuns the engine    
48   Standard_EXPORT static GEOM_Engine* GetEngine();   
49
50   //Returns the OCAF document by its ID, if document doesn't exists it will be created
51   Standard_EXPORT Handle(TDocStd_Document) GetDocument(int theDocID);
52
53   //Returns the ID of the given OCAF document
54   Standard_EXPORT int GetDocID(Handle(TDocStd_Document) theDocument);
55   
56   //Returns the OCAF appliaction
57   Standard_EXPORT Handle(TDocStd_Application) GetApplication() { return _OCAFApp; }
58
59   //Returns a pointer to GEOM_Object defined by a document and the entry
60   Standard_EXPORT Handle(GEOM_Object) GetObject(int theDocID, char* theEntry);
61   
62   //Adds a new object of the type theType in the OCAF document
63   Standard_EXPORT Handle(GEOM_Object) AddObject(int theDocID, int theType);
64
65   //Removes the object from the OCAF document
66   Standard_EXPORT bool RemoveObject(Handle(GEOM_Object) theObject);  
67
68   //Saves the OCAF document with ID = theDocID with file with name theFileName
69   Standard_EXPORT bool Save(int theDocID, char* theFileName);
70   
71   //Loads the OCAF document into the application and assigns to it an ID = theDocID
72   Standard_EXPORT bool Load(int theDocID, char* theFileName);
73
74   //Closes the document with ID =  theDocID
75   Standard_EXPORT void Close(int theDocID);
76
77   //Sets the number of Undos (default value = 10)
78   Standard_EXPORT void SetUndoLimit(int theLimit) { _UndoLimit = theLimit; }
79
80   //Applies an Undo to document with ID = theDocID
81   Standard_EXPORT void Undo(int theDocID);
82
83   //Applies an Redo to document with ID = theDocID
84   Standard_EXPORT void Redo(int theDocID);
85
86   //Adds a new sub shape object of the MainShape object
87   Standard_EXPORT Handle(GEOM_Object) AddSubShape(Handle(GEOM_Object) theMainShape, 
88                                   Handle(TColStd_HArray1OfInteger) theIndices,
89                                   bool isStandaloneOperation = false);
90
91   Standard_EXPORT TCollection_AsciiString DumpPython(int theDocID, 
92                                      Resource_DataMapOfAsciiStringAsciiString& theObjectNames,
93                                      bool isPublished, 
94                                      bool& aValidScript);
95
96   Standard_EXPORT const char* GetDumpName (const char* theStudyEntry) const;
97
98   Standard_EXPORT Handle(TColStd_HSequenceOfAsciiString) GetAllDumpNames() const;
99
100  protected:
101   Standard_EXPORT static void SetEngine(GEOM_Engine* theEngine);       
102
103  private:
104
105   Handle(GEOM_Application)  _OCAFApp;
106   Interface_DataMapOfIntegerTransient _mapIDDocument;
107   int _UndoLimit;
108   GEOM_DataMapOfAsciiStringTransient _objects;
109
110   Resource_DataMapOfAsciiStringAsciiString _studyEntry2NameMap;
111
112   TFreeLabelsList _freeLabels;
113 };
114
115 #endif