1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-16 10:08:36 +03:00
occt/src/IGESGraph/IGESGraph_ToolLineFontDefTemplate.cxx
abv 0ebe5b0a7f 0031501: Foundation Classes, Message_Printer - remove theToPutEndl argument -- preparation
Operators << for Handle(Message_Messenger) are removed; their use is replaced by use of Message_Messenger::StreamBuffer
Message_Messenger has been replaced by Standard_OStream within Interface_InterfaceModel,IFSelect,IGES,STEP dump interfaces.
2020-05-09 17:22:13 +03:00

134 lines
4.9 KiB
C++

// Created by: CKY / Contract Toubro-Larsen
// Copyright (c) 1993-1999 Matra Datavision
// Copyright (c) 1999-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
//--------------------------------------------------------------------
//--------------------------------------------------------------------
#include <IGESBasic_SubfigureDef.hxx>
#include <IGESData_DirChecker.hxx>
#include <IGESData_IGESDumper.hxx>
#include <IGESData_IGESReaderData.hxx>
#include <IGESData_IGESWriter.hxx>
#include <IGESData_ParamCursor.hxx>
#include <IGESData_ParamReader.hxx>
#include <IGESGraph_LineFontDefTemplate.hxx>
#include <IGESGraph_ToolLineFontDefTemplate.hxx>
#include <Interface_Check.hxx>
#include <Interface_CopyTool.hxx>
#include <Interface_EntityIterator.hxx>
#include <Interface_Macros.hxx>
#include <Interface_ShareTool.hxx>
#include <Message_Messenger.hxx>
#include <Standard_DomainError.hxx>
IGESGraph_ToolLineFontDefTemplate::IGESGraph_ToolLineFontDefTemplate () { }
void IGESGraph_ToolLineFontDefTemplate::ReadOwnParams
(const Handle(IGESGraph_LineFontDefTemplate)& ent,
const Handle(IGESData_IGESReaderData)& IR, IGESData_ParamReader& PR) const
{
//Standard_Boolean st; //szv#4:S4163:12Mar99 not needed
Standard_Integer tempOrientation;
Standard_Real tempDistance, tempScale;
Handle(IGESBasic_SubfigureDef) tempTemplateEntity;
PR.ReadInteger(PR.Current(), "Template Orientation", tempOrientation); //szv#4:S4163:12Mar99 `st=` not needed
PR.ReadEntity(IR, PR.Current(),
"Subfigure Definition Entity for Template Display",
STANDARD_TYPE(IGESBasic_SubfigureDef), tempTemplateEntity); //szv#4:S4163:12Mar99 `st=` not needed
PR.ReadReal(PR.Current(), "Distance between successive Template",
tempDistance); //szv#4:S4163:12Mar99 `st=` not needed
PR.ReadReal(PR.Current(), "Scale Factor For Subfigure", tempScale); //szv#4:S4163:12Mar99 `st=` not needed
DirChecker(ent).CheckTypeAndForm(PR.CCheck(),ent);
ent->Init (tempOrientation, tempTemplateEntity, tempDistance, tempScale);
}
void IGESGraph_ToolLineFontDefTemplate::WriteOwnParams
(const Handle(IGESGraph_LineFontDefTemplate)& ent, IGESData_IGESWriter& IW) const
{
IW.Send(ent->Orientation());
IW.Send(ent->TemplateEntity());
IW.Send(ent->Distance());
IW.Send(ent->Scale());
}
void IGESGraph_ToolLineFontDefTemplate::OwnShared
(const Handle(IGESGraph_LineFontDefTemplate)& ent, Interface_EntityIterator& iter) const
{
iter.GetOneItem(ent->TemplateEntity());
}
void IGESGraph_ToolLineFontDefTemplate::OwnCopy
(const Handle(IGESGraph_LineFontDefTemplate)& another,
const Handle(IGESGraph_LineFontDefTemplate)& ent, Interface_CopyTool& TC) const
{
Standard_Integer tempOrientation = another->Orientation();
DeclareAndCast(IGESBasic_SubfigureDef, tempTemplateSubfigure,
TC.Transferred(another->TemplateEntity()));
Standard_Real tempDistance = another->Distance();
Standard_Real tempScale = another->Scale();
ent->Init(tempOrientation, tempTemplateSubfigure, tempDistance, tempScale);
}
IGESData_DirChecker IGESGraph_ToolLineFontDefTemplate::DirChecker
(const Handle(IGESGraph_LineFontDefTemplate)& /*ent*/) const
{
IGESData_DirChecker DC(304, 1);
DC.Structure(IGESData_DefVoid);
DC.LineFont(IGESData_DefValue);
DC.LineWeight(IGESData_DefVoid);
DC.Color(IGESData_DefVoid);
DC.BlankStatusIgnored();
DC.SubordinateStatusRequired(0);
DC.UseFlagRequired(2);
DC.HierarchyStatusIgnored();
return DC;
}
void IGESGraph_ToolLineFontDefTemplate::OwnCheck
(const Handle(IGESGraph_LineFontDefTemplate)& ent,
const Interface_ShareTool& , Handle(Interface_Check)& ach) const
{
if (ent->RankLineFont() == 0)
ach->AddWarning("Line Font Rank is zero");
else if ((ent->RankLineFont() < 1) || (ent->RankLineFont() > 5))
ach->AddWarning("Invalid Value As Line Font Rank");
}
void IGESGraph_ToolLineFontDefTemplate::OwnDump
(const Handle(IGESGraph_LineFontDefTemplate)& ent, const IGESData_IGESDumper& dumper,
Standard_OStream& S, const Standard_Integer level) const
{
Standard_Integer tempSubLevel = (level <= 4) ? 0 : 1;
S << "IGESGraph_LineFontDefTemplate\n"
<< "Orientation : " << ent->Orientation() << "\n"
<< "Subfigure Display Entity For Template Display : ";
dumper.Dump(ent->TemplateEntity(),S, tempSubLevel);
S << "\n"
<< "Length Between Successive Template Figure : " << ent->Distance()<< "\n"
<< "Scale Factor for Subfigure : " << ent->Scale() << "\n"
<< std::endl;
}