geom/src/GEOMImpl/GEOMImpl_IInsertOperations.hxx

101 lines
3.8 KiB
C++
Raw Normal View History

2022-05-05 15:01:14 +03:00
// Copyright (C) 2007-2022 CEA/DEN, EDF R&D, OPEN CASCADE
2005-12-05 16:23:52 +00:00
//
2012-08-09 07:58:02 +00: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 16:23:52 +00:00
//
2012-08-09 07:58:02 +00: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 10:44:41 +04:00
// version 2.1 of the License, or (at your option) any later version.
2009-02-13 12:16:39 +00:00
//
2012-08-09 07:58:02 +00: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 12:16:39 +00:00
//
2012-08-09 07:58:02 +00: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 12:16:39 +00:00
//
2012-08-09 07:58:02 +00:00
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2013-04-01 12:25:01 +00:00
//
2012-08-09 07:58:02 +00:00
2004-12-01 10:39:14 +00:00
#ifndef _GEOMImpl_IInsertOperations_HXX_
#define _GEOMImpl_IInsertOperations_HXX_
#include "GEOM_IOperations.hxx"
#include "GEOM_Engine.hxx"
#include "GEOM_Object.hxx"
2013-11-12 16:32:55 +00:00
#include "GEOM_Field.hxx"
2012-08-09 07:58:02 +00:00
#include "Utils_SALOME_Exception.hxx"
2004-12-01 10:39:14 +00:00
#include <TDocStd_Document.hxx>
#include <TColStd_HSequenceOfAsciiString.hxx>
2016-02-24 16:45:13 +03:00
#include <TColStd_HArray1OfByte.hxx>
2004-12-01 10:39:14 +00:00
#include <TCollection_HAsciiString.hxx>
#include <NCollection_DataMap.hxx>
#include <NCollection_List.hxx>
2004-12-01 10:39:14 +00:00
#include <Resource_Manager.hxx>
2012-08-09 07:58:02 +00:00
#include <list>
class GEOMImpl_IShapesOperations;
class GEOMImpl_IGroupOperations;
2013-11-12 16:32:55 +00:00
class GEOMImpl_IFieldOperations;
2004-12-01 10:39:14 +00:00
class GEOMImpl_IInsertOperations : public GEOM_IOperations {
public:
2014-11-27 16:09:06 +03:00
struct TransferDatum
{
TCollection_AsciiString myName;
long myNumber;
long myMaxNumber;
};
2017-06-13 12:57:14 +03:00
Standard_EXPORT GEOMImpl_IInsertOperations(GEOM_Engine* theEngine);
2005-08-11 04:43:57 +00:00
Standard_EXPORT ~GEOMImpl_IInsertOperations();
2004-12-01 10:39:14 +00:00
2005-08-11 04:43:57 +00: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 11:16:36 +00: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 11:16:36 +00:00
Standard_EXPORT Handle(GEOM_Object) RestoreShape (std::istringstream& theStream);
2012-08-09 07:58:02 +00:00
Standard_EXPORT int LoadTexture(const TCollection_AsciiString& theTextureFile);
2012-08-09 07:58:02 +00: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 07:58:02 +00:00
Standard_EXPORT std::list<int> GetAllTextures();
2013-11-12 16:32:55 +00:00
2014-11-27 16:09:06 +03:00
Standard_EXPORT bool TransferData
(const Handle(GEOM_Object) &theObjectFrom,
const Handle(GEOM_Object) &theObjectTo,
const int theFindMethod,
std::list<TransferDatum> &theResult);
2004-12-01 10:39:14 +00:00
private:
std::vector<Handle(Resource_Manager)> myResMgrList;
GEOMImpl_IShapesOperations* myShapesOperations;
GEOMImpl_IGroupOperations* myGroupOperations;
2013-11-12 16:32:55 +00:00
GEOMImpl_IFieldOperations* myFieldOperations;
2004-12-01 10:39:14 +00:00
};
#endif