geom/src/GEOMImpl/GEOMImpl_IInsertOperations.hxx

90 lines
3.3 KiB
C++
Raw Normal View History

2014-02-18 12:44:41 +06:00
// Copyright (C) 2007-2014 CEA/DEN, EDF R&D, OPEN CASCADE
2005-12-05 21:23:52 +05:00
//
2012-08-09 13:58:02 +06:00
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
2005-12-05 21:23:52 +05:00
//
2012-08-09 13:58:02 +06:00
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
2014-02-18 12:44:41 +06:00
// version 2.1 of the License, or (at your option) any later version.
2009-02-13 17:16:39 +05:00
//
2012-08-09 13:58:02 +06:00
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
2009-02-13 17:16:39 +05:00
//
2012-08-09 13:58:02 +06:00
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2009-02-13 17:16:39 +05:00
//
2012-08-09 13:58:02 +06:00
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2013-04-01 18:25:01 +06:00
//
2012-08-09 13:58:02 +06:00
2004-12-01 15:39:14 +05:00
#ifndef _GEOMImpl_IInsertOperations_HXX_
#define _GEOMImpl_IInsertOperations_HXX_
#include "GEOM_IOperations.hxx"
#include "GEOM_Engine.hxx"
#include "GEOM_Object.hxx"
2013-11-12 22:32:55 +06:00
#include "GEOM_Field.hxx"
2012-08-09 13:58:02 +06:00
#include <Basics_OCCTVersion.hxx>
#include "Utils_SALOME_Exception.hxx"
2004-12-01 15:39:14 +05:00
#include <TDocStd_Document.hxx>
#include <TColStd_HSequenceOfAsciiString.hxx>
#include <TCollection_HAsciiString.hxx>
#include <NCollection_DataMap.hxx>
#include <NCollection_List.hxx>
2004-12-01 15:39:14 +05:00
#include <Resource_Manager.hxx>
2012-08-09 13:58:02 +06:00
#include <list>
class GEOMImpl_IShapesOperations;
class GEOMImpl_IGroupOperations;
2013-11-12 22:32:55 +06:00
class GEOMImpl_IFieldOperations;
2012-08-09 13:58:02 +06:00
class Handle_TColStd_HArray1OfByte;
2004-12-01 15:39:14 +05:00
class GEOMImpl_IInsertOperations : public GEOM_IOperations {
public:
2005-08-11 10:43:57 +06:00
Standard_EXPORT GEOMImpl_IInsertOperations(GEOM_Engine* theEngine, int theDocID);
Standard_EXPORT ~GEOMImpl_IInsertOperations();
2004-12-01 15:39:14 +05:00
2005-08-11 10:43:57 +06:00
Standard_EXPORT Handle(GEOM_Object) MakeCopy (Handle(GEOM_Object) theOriginal);
Standard_EXPORT Handle(TColStd_HSequenceOfTransient) Import
(const TCollection_AsciiString& theFileName,
const TCollection_AsciiString& theFormatType);
2012-10-08 17:16:36 +06:00
Standard_EXPORT TCollection_AsciiString ReadValue (const TCollection_AsciiString& theFileName,
const TCollection_AsciiString& theFormatType,
const TCollection_AsciiString& theParameterName);
Standard_EXPORT void Export (const Handle(GEOM_Object) theOriginal,
const TCollection_AsciiString& theFileName,
const TCollection_AsciiString& theFormatType);
2012-10-08 17:16:36 +06:00
Standard_EXPORT Handle(GEOM_Object) RestoreShape (std::istringstream& theStream);
2012-08-09 13:58:02 +06:00
Standard_EXPORT int LoadTexture(const TCollection_AsciiString& theTextureFile);
2012-08-09 13:58:02 +06:00
Standard_EXPORT int AddTexture(int theWidth, int theHeight,
const Handle(TColStd_HArray1OfByte)& theTexture);
Standard_EXPORT Handle(TColStd_HArray1OfByte) GetTexture(int theTextureId,
int& theWidth, int& theHeight);
2012-08-09 13:58:02 +06:00
Standard_EXPORT std::list<int> GetAllTextures();
2013-11-12 22:32:55 +06:00
2004-12-01 15:39:14 +05:00
private:
std::vector<Handle(Resource_Manager)> myResMgrList;
GEOMImpl_IShapesOperations* myShapesOperations;
GEOMImpl_IGroupOperations* myGroupOperations;
2013-11-12 22:32:55 +06:00
GEOMImpl_IFieldOperations* myFieldOperations;
2004-12-01 15:39:14 +05:00
};
#endif