Salome HOME
Livraison IHM Hexa7
[modules/hexablock.git] / src / HEXABLOCK / HexSubShape.cxx
1
2 // C++ : Gestion des soous-shapes
3
4 // Copyright (C) 2009-2013  CEA/DEN, EDF R&D
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/
21 // or email : webmaster.salome@opencascade.com
22 //
23
24 #include "HexSubShape.hxx"
25 #include "HexNewShape.hxx"
26 #include "HexXmlWriter.hxx"
27
28 #include <TopoDS.hxx>
29 #include <BRepTools.hxx>
30 #include <BRep_Builder.hxx>
31
32 BEGIN_NAMESPACE_HEXA
33
34 static bool db = on_debug ();  // == getenv ("HEXA_DB") > 0
35
36 // ====================================================== Constructeur
37 SubShape::SubShape (NewShape* dad, int id, int dim)
38         : EltBase  (dad->dad(), EL_SUBSHAPE)
39 {
40    ss_parent  = dad;
41    sub_ident  = id;
42    sub_dim    = dim;
43    maj_brep   = maj_shape = true;
44 }
45 // ====================================================== getShape
46 const TopoDS_Shape& SubShape::getShape ()
47 {
48    if (maj_shape)
49       updateShape ();
50    return geo_shape;
51 }
52 // ====================================================== getParentName
53 cpchar SubShape::getParentName () const
54 {
55    if (ss_parent==NULL)
56       return "<?>";
57
58    return ss_parent->getName();
59 }
60 // ========================================================= saveXml
61 void SubShape::saveXml (XmlWriter* xml)
62 {
63    callXml (xml);
64    xml->closeMark ();
65 }
66 // ========================================================= callXml
67 void SubShape::callXml (XmlWriter* xml)
68 {
69    xml->openMark     ("Asso");
70    xml->addAttribute ("shape", getParentName());
71    xml->addAttribute ("subid", getIdent());
72 }
73 // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
74 // ====================================================== updateShape
75 void SubShape::updateShape ()
76 {
77    maj_shape = false;
78    geo_shape = ss_parent->getGeoShape (sub_ident);
79 }
80 END_NAMESPACE_HEXA