1 // Copyright (C) 2007-2019 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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, or (at your option) any later version.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // File : SALOMEDS_StudyBuilder_i.hxx
24 // Author : Sergey RUIN
27 #ifndef __SALOMEDS_STUDYBUILDER_I_H__
28 #define __SALOMEDS_STUDYBUILDER_I_H__
34 #include <SALOMEconfig.h>
35 #include CORBA_SERVER_HEADER(SALOMEDS)
36 #include CORBA_SERVER_HEADER(SALOMEDS_Attributes)
38 #include "SALOMEDSImpl_StudyBuilder.hxx"
40 class SALOMEDS_StudyBuilder_i: public POA_SALOMEDS::StudyBuilder
44 SALOMEDSImpl_StudyBuilder* _impl;
47 SALOMEDS_StudyBuilder_i(SALOMEDSImpl_StudyBuilder*, CORBA::ORB_ptr);
49 ~SALOMEDS_StudyBuilder_i();
51 virtual PortableServer::POA_ptr _default_POA();
55 \param ComponentDataType
58 virtual SALOMEDS::SComponent_ptr NewComponent(const char* ComponentDataType);
60 //! DefineComponentInstance
65 virtual void DefineComponentInstance (SALOMEDS::SComponent_ptr, CORBA::Object_ptr ComponentIOR);
73 virtual void RemoveComponent(SALOMEDS::SComponent_ptr aComponent);
79 \param theFatherObject
82 virtual SALOMEDS::SObject_ptr NewObject(SALOMEDS::SObject_ptr theFatherObject);
87 \param theFatherObject
91 virtual SALOMEDS::SObject_ptr NewObjectToTag(SALOMEDS::SObject_ptr theFatherObject, CORBA::Long atag);
93 virtual void LoadWith(SALOMEDS::SComponent_ptr sco, SALOMEDS::Driver_ptr Engine)
94 throw(SALOME::SALOME_Exception);
95 virtual void Load(SALOMEDS::SObject_ptr sco);
97 virtual void RemoveObject(SALOMEDS::SObject_ptr anObject);
98 virtual void RemoveObjectWithChildren(SALOMEDS::SObject_ptr anObject);
100 virtual SALOMEDS::GenericAttribute_ptr FindOrCreateAttribute(SALOMEDS::SObject_ptr anObject, const char* aTypeOfAttribute);
101 virtual CORBA::Boolean FindAttribute(SALOMEDS::SObject_ptr anObject, SALOMEDS::GenericAttribute_out anAttribute, const char* aTypeOfAttribute);
102 virtual void RemoveAttribute(SALOMEDS::SObject_ptr anObject, const char* aTypeOfAttribute);
104 virtual void Addreference(SALOMEDS::SObject_ptr me, SALOMEDS::SObject_ptr thereferencedObject);
106 virtual void RemoveReference(SALOMEDS::SObject_ptr me);
108 virtual void SetGUID(SALOMEDS::SObject_ptr anObject, const char* theGUID);
109 virtual bool IsGUID(SALOMEDS::SObject_ptr anObject, const char* theGUID);
111 virtual void NewCommand();
112 virtual void CommitCommand() throw(SALOMEDS::StudyBuilder::LockProtection);
113 virtual CORBA::Boolean HasOpenCommand();
114 virtual void AbortCommand();
115 virtual void Undo() throw(SALOMEDS::StudyBuilder::LockProtection);
116 virtual void Redo() throw(SALOMEDS::StudyBuilder::LockProtection);
117 CORBA::Boolean GetAvailableUndos();
118 CORBA::Boolean GetAvailableRedos();
119 CORBA::Boolean IsSaved();
120 CORBA::Boolean IsModified();
121 virtual CORBA::Long UndoLimit();
122 virtual void UndoLimit(CORBA::Long);
124 void CheckLocked() throw (SALOMEDS::StudyBuilder::LockProtection);
126 virtual void SetName(SALOMEDS::SObject_ptr theSO, const char* theValue) throw(SALOMEDS::StudyBuilder::LockProtection);
127 virtual void SetComment(SALOMEDS::SObject_ptr theSO, const char* theValue) throw(SALOMEDS::StudyBuilder::LockProtection);
128 virtual void SetIOR(SALOMEDS::SObject_ptr theSO, const char* theValue) throw(SALOMEDS::StudyBuilder::LockProtection);
130 SALOMEDSImpl_StudyBuilder* GetImpl() { return _impl; }