1 // Created by: CKY / Contract Toubro-Larsen
2 // Copyright (c) 1993-1999 Matra Datavision
3 // Copyright (c) 1999-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
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
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.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 //--------------------------------------------------------------------
17 //--------------------------------------------------------------------
18
19 #include <IGESData_DirChecker.hxx>
20 #include <IGESData_IGESDumper.hxx>
21 #include <IGESData_IGESReaderData.hxx>
22 #include <IGESData_IGESWriter.hxx>
23 #include <IGESData_ParamCursor.hxx>
24 #include <IGESData_ParamReader.hxx>
25 #include <IGESGraph_HighLight.hxx>
26 #include <IGESGraph_ToolHighLight.hxx>
27 #include <Interface_Check.hxx>
28 #include <Interface_CopyTool.hxx>
29 #include <Interface_EntityIterator.hxx>
30 #include <Interface_ShareTool.hxx>
31 #include <Message_Messenger.hxx>
32 #include <Standard_DomainError.hxx>
33
IGESGraph_ToolHighLight()34 IGESGraph_ToolHighLight::IGESGraph_ToolHighLight () { }
35
36
ReadOwnParams(const Handle (IGESGraph_HighLight)& ent,const Handle (IGESData_IGESReaderData)&,IGESData_ParamReader & PR) const37 void IGESGraph_ToolHighLight::ReadOwnParams
38 (const Handle(IGESGraph_HighLight)& ent,
39 const Handle(IGESData_IGESReaderData)& /*IR*/, IGESData_ParamReader& PR) const
40 {
41 Standard_Integer nbPropertyValues;
42 Standard_Integer highLightStatus;
43
44 // Reading nbPropertyValues(Integer)
45 PR.ReadInteger(PR.Current(), "No. of property values", nbPropertyValues);
46 if (nbPropertyValues != 1)
47 PR.AddFail("No. of Property values : Value is not 1");
48
49 if (PR.DefinedElseSkip())
50 // Reading highLightStatus(Integer)
51 PR.ReadInteger (PR.Current(), "Highlight flag", highLightStatus);
52 else
53 highLightStatus = 0; // Default Value
54
55 DirChecker(ent).CheckTypeAndForm(PR.CCheck(),ent);
56 ent->Init(nbPropertyValues, highLightStatus);
57 }
58
WriteOwnParams(const Handle (IGESGraph_HighLight)& ent,IGESData_IGESWriter & IW) const59 void IGESGraph_ToolHighLight::WriteOwnParams
60 (const Handle(IGESGraph_HighLight)& ent, IGESData_IGESWriter& IW) const
61 {
62 IW.Send( ent->NbPropertyValues() );
63 IW.Send( ent->HighLightStatus() );
64 }
65
OwnShared(const Handle (IGESGraph_HighLight)&,Interface_EntityIterator &) const66 void IGESGraph_ToolHighLight::OwnShared
67 (const Handle(IGESGraph_HighLight)& /*ent*/, Interface_EntityIterator& /*iter*/) const
68 {
69 }
70
OwnCopy(const Handle (IGESGraph_HighLight)& another,const Handle (IGESGraph_HighLight)& ent,Interface_CopyTool &) const71 void IGESGraph_ToolHighLight::OwnCopy
72 (const Handle(IGESGraph_HighLight)& another,
73 const Handle(IGESGraph_HighLight)& ent, Interface_CopyTool& /*TC*/) const
74 {
75 ent->Init(1,another->HighLightStatus());
76 }
77
OwnCorrect(const Handle (IGESGraph_HighLight)& ent) const78 Standard_Boolean IGESGraph_ToolHighLight::OwnCorrect
79 (const Handle(IGESGraph_HighLight)& ent) const
80 {
81 Standard_Boolean res = (ent->NbPropertyValues() != 1);
82 if (res) ent->Init(1,ent->HighLightStatus()); // nbpropertyvalues=1
83 return res;
84 }
85
DirChecker(const Handle (IGESGraph_HighLight)&) const86 IGESData_DirChecker IGESGraph_ToolHighLight::DirChecker
87 (const Handle(IGESGraph_HighLight)& /*ent*/) const
88 {
89 IGESData_DirChecker DC (406, 20);
90 DC.Structure(IGESData_DefVoid);
91 DC.LineFont(IGESData_DefVoid);
92 DC.LineWeight(IGESData_DefVoid);
93 DC.Color(IGESData_DefVoid);
94 DC.BlankStatusIgnored();
95 DC.UseFlagIgnored();
96 DC.HierarchyStatusIgnored();
97 return DC;
98 }
99
OwnCheck(const Handle (IGESGraph_HighLight)& ent,const Interface_ShareTool &,Handle (Interface_Check)& ach) const100 void IGESGraph_ToolHighLight::OwnCheck
101 (const Handle(IGESGraph_HighLight)& ent,
102 const Interface_ShareTool& , Handle(Interface_Check)& ach) const
103 {
104 if (ent->NbPropertyValues() != 1)
105 ach->AddFail("No. of Property values : Value != 1");
106 }
107
OwnDump(const Handle (IGESGraph_HighLight)& ent,const IGESData_IGESDumper &,Standard_OStream & S,const Standard_Integer) const108 void IGESGraph_ToolHighLight::OwnDump
109 (const Handle(IGESGraph_HighLight)& ent, const IGESData_IGESDumper& /*dumper*/,
110 Standard_OStream& S, const Standard_Integer /*level*/) const
111 {
112 S << "IGESGraph_HighLight\n"
113 << "No. of property values : " << ent->NbPropertyValues() << "\n"
114 << "Highlight Status : " << ent->HighLightStatus() << "\n"
115 << std::endl;
116 }
117