0031682: Visualization - Prs3d_ShadingAspect::SetTransparency() has no effect with...
[occt.git] / src / IGESBasic / IGESBasic_ToolName.cxx
CommitLineData
b311480e 1// Created by: CKY / Contract Toubro-Larsen
2// Copyright (c) 1993-1999 Matra Datavision
973c2be1 3// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
7fd59977 6//
d5f74e42 7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
7fd59977 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
b311480e 15
16//--------------------------------------------------------------------
7fd59977 17//--------------------------------------------------------------------
18
42cf5bc1 19#include <IGESBasic_Name.hxx>
20#include <IGESBasic_ToolName.hxx>
21#include <IGESData_DirChecker.hxx>
22#include <IGESData_Dump.hxx>
23#include <IGESData_IGESDumper.hxx>
24#include <IGESData_IGESReaderData.hxx>
25#include <IGESData_IGESWriter.hxx>
7fd59977 26#include <IGESData_ParamCursor.hxx>
42cf5bc1 27#include <IGESData_ParamReader.hxx>
28#include <Interface_Check.hxx>
29#include <Interface_CopyTool.hxx>
30#include <Interface_EntityIterator.hxx>
7fd59977 31#include <Interface_Macros.hxx>
42cf5bc1 32#include <Interface_ShareTool.hxx>
33#include <Message_Messenger.hxx>
34#include <Standard_DomainError.hxx>
35#include <TCollection_HAsciiString.hxx>
7fd59977 36
37IGESBasic_ToolName::IGESBasic_ToolName () { }
38
39
40void IGESBasic_ToolName::ReadOwnParams
41 (const Handle(IGESBasic_Name)& ent,
42 const Handle(IGESData_IGESReaderData)& /* IR */, IGESData_ParamReader& PR) const
43{
44 Standard_Integer tempNbPropertyValues;
45 Handle(TCollection_HAsciiString) tempName;
46 //Standard_Boolean st; //szv#4:S4163:12Mar99 not needed
47
48 PR.ReadInteger(PR.Current(),"Number of property values",tempNbPropertyValues); //szv#4:S4163:12Mar99 `st=` not needed
49 PR.ReadText(PR.Current(),"Name",tempName); //szv#4:S4163:12Mar99 `st=` not needed
50
51 DirChecker(ent).CheckTypeAndForm(PR.CCheck(),ent);
52 ent->Init(tempNbPropertyValues,tempName);
53}
54
55void IGESBasic_ToolName::WriteOwnParams
56 (const Handle(IGESBasic_Name)& ent, IGESData_IGESWriter& IW) const
57{
58 IW.Send(ent->NbPropertyValues());
59 IW.Send(ent->Value());
60}
61
62void IGESBasic_ToolName::OwnShared
63 (const Handle(IGESBasic_Name)& /* ent */, Interface_EntityIterator& /* iter */) const
64{
65}
66
67void IGESBasic_ToolName::OwnCopy
68 (const Handle(IGESBasic_Name)& another,
69 const Handle(IGESBasic_Name)& ent, Interface_CopyTool& /* TC */) const
70{
71 Standard_Integer aNbPropertyValues;
72 Handle(TCollection_HAsciiString) aName;
73 aName = new TCollection_HAsciiString(another->Value());
74 aNbPropertyValues = another->NbPropertyValues();
75 ent->Init(aNbPropertyValues,aName);
76}
77
78Standard_Boolean IGESBasic_ToolName::OwnCorrect
79 (const Handle(IGESBasic_Name)& ent) const
80{
81 Standard_Boolean res = (ent->NbPropertyValues() != 1);
82 if (res) ent->Init(1,ent->Value());
83 return res; // nbpropertyvalues = 1
84}
85
86IGESData_DirChecker IGESBasic_ToolName::DirChecker
87 (const Handle(IGESBasic_Name)& /*ent*/ ) const
88{
89 IGESData_DirChecker DC(406,15); //Form no = 15 & Type = 406
90 DC.Structure(IGESData_DefVoid);
91 DC.GraphicsIgnored();
92 DC.BlankStatusIgnored();
93 DC.UseFlagIgnored();
94 DC.HierarchyStatusIgnored();
95 return DC;
96}
97
98void IGESBasic_ToolName::OwnCheck
99 (const Handle(IGESBasic_Name)& ent,
100 const Interface_ShareTool& , Handle(Interface_Check)& ach) const
101{
102 if (ent->NbPropertyValues() != 1)
103 ach->AddFail("Number of Property Values != 1");
104}
105
106void IGESBasic_ToolName::OwnDump
107 (const Handle(IGESBasic_Name)& ent, const IGESData_IGESDumper& /* dumper */,
0ebe5b0a 108 Standard_OStream& S, const Standard_Integer /* level */) const
7fd59977 109{
0ebe5b0a 110 S << "IGESBasic_Name\n"
111 << "Number of property values : " << ent->NbPropertyValues() << "\n"
112 << "Name : ";
7fd59977 113 IGESData_DumpString(S,ent->Value());
0ebe5b0a 114 S << std::endl;
7fd59977 115}