]> SALOME platform Git repositories - modules/hexablock.git/blob - src/HEXABLOCK/HexSubShape.cxx
Salome HOME
Merge from V6_main 13/12/2012
[modules/hexablock.git] / src / HEXABLOCK / HexSubShape.cxx
1
2 // C++ : Gestion des soous-shapes
3
4 // Copyright (C) 2009-2012  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 #ifndef NO_CASCADE
29
30 #include <TopoDS.hxx>
31 #include <BRepTools.hxx>
32 #include <BRep_Builder.hxx>
33
34 BEGIN_NAMESPACE_HEXA
35
36 static bool db = on_debug ();  // == getenv ("HEXA_DB") > 0
37
38 // ====================================================== Constructeur
39 SubShape::SubShape (NewShape* dad, int id, int dim)
40         : EltBase  (dad->dad(), EL_SUBSHAPE)
41 {
42    ss_parent  = dad;
43    sub_ident  = id;
44    sub_dim    = dim;
45    maj_brep   = maj_shape = true;
46 }
47 // ====================================================== updateShape
48 const TopoDS_Shape& SubShape::getShape ()
49 {
50    if (maj_shape)
51       updateShape ();
52    return geo_shape;
53 }
54 // ====================================================== getParentName
55 cpchar SubShape::getParentName () const
56 {
57    if (ss_parent==NULL)
58       return "<?>";
59
60    return ss_parent->getName();
61 }
62 // ========================================================= saveXml
63 void SubShape::saveXml (XmlWriter* xml)
64 {
65    callXml (xml);
66    xml->closeMark ();
67 }
68 // ========================================================= callXml
69 void SubShape::callXml (XmlWriter* xml)
70 {
71    xml->openMark     ("Asso");
72    xml->addAttribute ("shape", getParentName());
73    xml->addAttribute ("subid", getIdent());
74 }
75 // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
76 // ====================================================== updateShape
77 void SubShape::updateShape ()
78 {
79    maj_shape = false;
80    geo_shape = ss_parent->getGeoShape (sub_ident);
81 }
82 END_NAMESPACE_HEXA
83 #endif