// Copyright (c) 2013 OPEN CASCADE SAS // // The content of this file is subject to the Open CASCADE Technology Public // License Version 6.5 (the "License"). You may not use the content of this file // except in compliance with the License. Please obtain a copy of the License // at http://www.opencascade.org and read it completely before using this file. // // The Initial Developer of the Original Code is Open CASCADE S.A.S., having its // main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France. // // The Original Code and all software distributed under the License is // distributed on an "AS IS" basis, without warranty of any kind, and the // Initial Developer hereby disclaims all such warranties, including without // limitation, any warranties of merchantability, fitness for a particular // purpose or non-infringement. Please see the License for the specific terms // and conditions governing the rights and limitations under the License. #ifndef _IGESCAFControl_Reader_HeaderFile #define _IGESCAFControl_Reader_HeaderFile #include #include #include #include #include #include #include #include class XSControl_WorkSession; class TDocStd_Document; class TCollection_AsciiString; //! Provides a tool to read IGES file and put it into
//! DECAF document. Besides transfer of shapes (including
//! assemblies) provided by IGESControl, supports also
//! colors and part names
//! IGESCAFControl_Reader reader; Methods for translation of an IGES file:
//! reader.ReadFile("filename");
//! reader.Transfer(Document); or
//! reader.Perform("filename",doc);
//! Methods for managing reading attributes.
//! Colors
//! reader.SetColorMode(colormode);
//! Standard_Boolean colormode = reader.GetColorMode();
//! Layers
//! reader.SetLayerMode(layermode);
//! Standard_Boolean layermode = reader.GetLayerMode();
//! Names
//! reader.SetNameMode(namemode);
//! Standard_Boolean namemode = reader.GetNameMode();
class IGESCAFControl_Reader : public IGESControl_Reader { public: DEFINE_STANDARD_ALLOC //! Creates a reader with an empty
//! IGES model and sets ColorMode, LayerMode and NameMode to Standard_True.
Standard_EXPORT IGESCAFControl_Reader(); //! Creates a reader tool and attaches it to an already existing Session
//! Clears the session if it was not yet set for IGES
Standard_EXPORT IGESCAFControl_Reader(const Handle(XSControl_WorkSession)& WS,const Standard_Boolean scratch = Standard_True); //! Translates currently loaded IGES file into the document
//! Returns True if succeeded, and False in case of fail
Standard_EXPORT Standard_Boolean Transfer(Handle(TDocStd_Document)& doc) ; Standard_EXPORT Standard_Boolean Perform(const TCollection_AsciiString& filename,Handle(TDocStd_Document)& doc) ; //! Translate IGES file given by filename into the document
//! Return True if succeeded, and False in case of fail
Standard_EXPORT Standard_Boolean Perform(const Standard_CString filename,Handle(TDocStd_Document)& doc) ; //! Set ColorMode for indicate read Colors or not.
Standard_EXPORT void SetColorMode(const Standard_Boolean colormode) ; Standard_EXPORT Standard_Boolean GetColorMode() const; //! Set NameMode for indicate read Name or not.
Standard_EXPORT void SetNameMode(const Standard_Boolean namemode) ; Standard_EXPORT Standard_Boolean GetNameMode() const; //! Set LayerMode for indicate read Layers or not.
Standard_EXPORT void SetLayerMode(const Standard_Boolean layermode) ; Standard_EXPORT Standard_Boolean GetLayerMode() const; protected: //! Reads colors of IGES entities and sets
//! corresponding color assignments in the DECAF document
Standard_EXPORT Standard_Boolean ReadColors(Handle(TDocStd_Document)& doc) const; //! Reads Names of IGES entities and sets
//! corresponding name to label with shape in the DECAF document
Standard_EXPORT Standard_Boolean ReadNames(Handle(TDocStd_Document)& doc) const; //! Reads layers of parts defined in the IGES model and
//! set reference between shape and layers in the DECAF document
Standard_EXPORT Standard_Boolean ReadLayers(Handle(TDocStd_Document)& doc) const; private: Standard_Boolean myColorMode; Standard_Boolean myNameMode; Standard_Boolean myLayerMode; }; #endif