1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-26 10:19:45 +03:00
occt/src/TDF/TDF_LabelNode.hxx
abv 35c0599a42 0024023: Revamp the OCCT Handle -- automatic
Automatic upgrade by command "occt_upgrade . -handle"
2015-07-11 12:08:01 +03:00

179 lines
5.0 KiB
C++

// Created by: DAUTRY Philippe
// Copyright (c) 1997-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.
#ifndef TDF_LabelNode_HeaderFile
#define TDF_LabelNode_HeaderFile
#include <TCollection_AsciiString.hxx>
#include <TDF_Attribute.hxx>
#include <TDF_LabelNodePtr.hxx>
#include <TDF_HAllocator.hxx>
#include <NCollection_DefineAlloc.hxx>
class TDF_Attribute;
class TDF_AttributeIterator;
class TDF_ChildIterator;
class TDF_Data;
class TDF_Label;
#define KEEP_LOCAL_ROOT
enum {
TDF_LabelNodeImportMsk = (int) 0x80000000, // Because the sign bit (HP).
TDF_LabelNodeAttModMsk = 0x40000000,
TDF_LabelNodeMayModMsk = 0x20000000,
TDF_LabelNodeFlagsMsk = (TDF_LabelNodeImportMsk \
| TDF_LabelNodeAttModMsk \
| TDF_LabelNodeMayModMsk)
};
//=======================================================================
//class: TDF_LabelNode
//=======================================================================
class TDF_LabelNode {
public :
// Public Methods
// --------------------------------------------------------------------------
// Father access
inline TDF_LabelNode* Father() const
{ return myFather; }
// Brother access
inline TDF_LabelNode* Brother() const
{ return myBrother; }
// Child access
inline TDF_LabelNode* FirstChild() const
{ return myFirstChild; }
// Attribute access
inline const Handle(TDF_Attribute)& FirstAttribute() const
{ return myFirstAttribute; }
// Tag access
inline Standard_Integer Tag() const
{ return myTag; }
// Depth access
inline Standard_Integer Depth() const
{ return (myFlags & ~TDF_LabelNodeFlagsMsk); }
// IsRoot
inline Standard_Boolean IsRoot() const
{ return myFather == NULL; }
// Data
Standard_EXPORT TDF_Data * Data() const;
// Flag AttributesModified access
inline void AttributesModified(const Standard_Boolean aStatus)
{
myFlags = (aStatus) ?
(myFlags | TDF_LabelNodeAttModMsk) :
(myFlags & ~TDF_LabelNodeAttModMsk);
if (aStatus) AllMayBeModified();
}
inline Standard_Boolean AttributesModified() const
{ return ((myFlags & TDF_LabelNodeAttModMsk) != 0); }
// Flag MayBeModified access
inline void MayBeModified(const Standard_Boolean aStatus)
{ myFlags = (aStatus) ?
(myFlags | TDF_LabelNodeMayModMsk) :
(myFlags & ~TDF_LabelNodeMayModMsk); }
inline Standard_Boolean MayBeModified() const
{ return ((myFlags & TDF_LabelNodeMayModMsk) != 0); }
private :
// Memory management
DEFINE_NCOLLECTION_ALLOC
// Constructor
TDF_LabelNode(TDF_Data* Data);
// Destructor and deallocator
void Destroy (const TDF_HAllocator& theAllocator);
// Public Friends
// --------------------------------------------------------------------------
friend class TDF_Data;
friend class TDF_Label;
private :
// Private Methods
// --------------------------------------------------------------------------
// Constructor
TDF_LabelNode(const Standard_Integer Tag, TDF_LabelNode* Father);
// Others
void AddAttribute(const Handle(TDF_Attribute)& afterAtt,
const Handle(TDF_Attribute)& newAtt);
void RemoveAttribute(const Handle(TDF_Attribute)& afterAtt,
const Handle(TDF_Attribute)& oldAtt);
TDF_LabelNode* RootNode ();
const TDF_LabelNode* RootNode () const;
Standard_EXPORT void AllMayBeModified();
// Tag modification
inline void Tag(const Standard_Integer aTag)
{ myTag = aTag; }
// Depth modification
inline void Depth(const Standard_Integer aDepth)
{ myFlags = ((myFlags & TDF_LabelNodeFlagsMsk) | aDepth); }
// Flag Imported access
inline void Imported(const Standard_Boolean aStatus)
{ myFlags = (aStatus) ?
(myFlags | TDF_LabelNodeImportMsk) :
(myFlags & ~TDF_LabelNodeImportMsk); }
inline Standard_Boolean IsImported() const
{ return ((myFlags & TDF_LabelNodeImportMsk) != 0); }
// Private Fields
// --------------------------------------------------------------------------
TDF_LabelNodePtr myFather;
TDF_LabelNodePtr myBrother;
TDF_LabelNodePtr myFirstChild;
TDF_LabelNodePtr myLastFoundChild; //jfa 10.01.2003
Standard_Integer myTag;
Standard_Integer myFlags; // Flags & Depth
Handle(TDF_Attribute) myFirstAttribute;
#ifdef KEEP_LOCAL_ROOT
TDF_Data * myData;
#endif
#ifdef OCCT_DEBUG
TCollection_AsciiString myDebugEntry;
#endif
};
#endif