CFx SDK Documentation 2024 SP0
Loading...
Searching...
No Matches
Public Member Functions | Protected Member Functions | List of all members
OdEdSSetTracker Class Reference

#include <DbUserIO.h>

Inheritance diagram for OdEdSSetTracker:
OdSSetTracker OdEdInputTracker OdRxObject

Public Member Functions

 ODRX_DECLARE_MEMBERS (OdEdSSetTracker)
 
virtual bool append (const OdDbObjectId &id, const OdDbSelectionMethod *pMethod)
 
virtual bool remove (const OdDbObjectId &id, const OdDbSelectionMethod *pMethod)
 
virtual bool append (const OdDbFullSubentPath &subEntPath, const OdDbSelectionMethod *pMethod)
 
virtual bool remove (const OdDbFullSubentPath &subEntPath, const OdDbSelectionMethod *pMethod)
 
- Public Member Functions inherited from OdSSetTracker
 ODRX_DECLARE_MEMBERS (OdSSetTracker)
 
virtual bool append (OdDbStub *id, const OdDbSelectionMethod *pMethod)
 
virtual bool remove (OdDbStub *id, const OdDbSelectionMethod *pMethod)
 
virtual bool trackSubentities () const
 
virtual bool append (const OdDbBaseFullSubentPath &subEntPath, const OdDbSelectionMethod *pMethod)
 
virtual bool remove (const OdDbBaseFullSubentPath &subEntPath, const OdDbSelectionMethod *pMethod)
 
- Public Member Functions inherited from OdEdInputTracker
 ODRX_DECLARE_MEMBERS (OdEdInputTracker)
 
virtual int addDrawables (OdGsView *pView)=0
 
virtual void removeDrawables (OdGsView *pView)=0
 
- Public Member Functions inherited from OdRxObject
 ODRX_HEAP_OPERATORS ()
 
 OdRxObject ()
 
virtual ~OdRxObject ()
 
virtual OdRxObjectqueryX (const OdRxClass *pClass) const
 
virtual OdRxObjectx (const OdRxClass *pClass) const
 
virtual OdRxClassisA () const
 
virtual void addRef ()=0
 
virtual void release ()=0
 
virtual long numRefs () const
 
bool isKindOf (const OdRxClass *pClass) const
 
virtual OdRxObjectPtr clone () const
 
virtual void copyFrom (const OdRxObject *pSource)
 
virtual OdRx::Ordering comparedTo (const OdRxObject *pOther) const
 
virtual bool isEqualTo (const OdRxObject *pOther) const
 

Protected Member Functions

virtual int addDrawables (OdGsView *pView) ODRX_OVERRIDE
 
virtual void removeDrawables (OdGsView *pView) ODRX_OVERRIDE
 
virtual bool append (OdDbStub *id, const OdDbSelectionMethod *pMethod)
 
virtual bool remove (OdDbStub *id, const OdDbSelectionMethod *pMethod)
 
virtual bool append (const OdDbBaseFullSubentPath &subEntPath, const OdDbSelectionMethod *pMethod)
 
virtual bool remove (const OdDbBaseFullSubentPath &subEntPath, const OdDbSelectionMethod *pMethod)
 

Additional Inherited Members

- Static Public Member Functions inherited from OdRxObject
static OdRxObjectPtr cast (const OdRxObject *pointer)
 
static OdRxClassdesc ()
 

Detailed Description

<group OdEd_Classes>

Definition at line 43 of file DbUserIO.h.

Member Function Documentation

◆ addDrawables()

virtual int OdEdSSetTracker::addDrawables ( OdGsView pView)
protectedvirtual
Remarks
Does nothing, returns 0.

Implements OdEdInputTracker.

◆ append() [1/4]

virtual bool OdEdSSetTracker::append ( const OdDbBaseFullSubentPath subEntPath,
const OdDbSelectionMethod pMethod 
)
protectedvirtual
Remarks
calls overridden version with OdDbFullSubentPath as the 1st parameter.

Reimplemented from OdSSetTracker.

◆ append() [2/4]

virtual bool OdEdSSetTracker::append ( const OdDbFullSubentPath subEntPath,
const OdDbSelectionMethod pMethod 
)
virtual

Called by select framework when a subentity is going to be appended to working selection set.

Parameters
subEntPath[in] Descriptor of the subentity going to be appended.
pMethod[in] Selection Method object, describing a method a subentity was selected.
Returns
flag indicating if the subentity can be added to working selection set or not.
Remarks
To enable calling this calback method OdSSetTracker::trackSubentities() should be overridden to return true.

◆ append() [3/4]

virtual bool OdEdSSetTracker::append ( const OdDbObjectId id,
const OdDbSelectionMethod pMethod 
)
virtual

Called by select framework when an entity is going to be appended to working selection set.

Parameters
id[in] object id of the entity going to be appended.
pMethod[in] Selection Method object, describing a method the entity was selected.
Returns
flag indicating if the entity can be added to working selection set or not.

◆ append() [4/4]

virtual bool OdEdSSetTracker::append ( OdDbStub *  id,
const OdDbSelectionMethod pMethod 
)
protectedvirtual
Remarks
calls overridden version with OdDbObjectId as the 1st parameter.

Reimplemented from OdSSetTracker.

◆ ODRX_DECLARE_MEMBERS()

OdEdSSetTracker::ODRX_DECLARE_MEMBERS ( OdEdSSetTracker  )

◆ remove() [1/4]

virtual bool OdEdSSetTracker::remove ( const OdDbBaseFullSubentPath subEntPath,
const OdDbSelectionMethod pMethod 
)
protectedvirtual
Remarks
calls overridden version with OdDbFullSubentPath as the 1st parameter.

Reimplemented from OdSSetTracker.

◆ remove() [2/4]

virtual bool OdEdSSetTracker::remove ( const OdDbFullSubentPath subEntPath,
const OdDbSelectionMethod pMethod 
)
virtual

Called by select framework when a subentity is going to be removed from working selection set.

Parameters
subEntPath[in] Descriptor of the subentity going to be removed.
pMethod[in] Selection Method object, describing a method a subentity was selected.
Returns
flag indicating if subentity can be removed to working selection set or not.
Remarks
To enable calling this calback method OdSSetTracker::trackSubentities() should be overridden to return true.

◆ remove() [3/4]

virtual bool OdEdSSetTracker::remove ( const OdDbObjectId id,
const OdDbSelectionMethod pMethod 
)
virtual

Called by select framework when an entity is going to be removed to working selection set.

Parameters
id[in] object id of the entity going to be removed.
pMethod[in] Selection Method object, describing a method the entity was selected.
Returns
flag indicating if the entity can be removed from working selection set or not.

◆ remove() [4/4]

virtual bool OdEdSSetTracker::remove ( OdDbStub *  id,
const OdDbSelectionMethod pMethod 
)
protectedvirtual
Remarks
calls overridden version with OdDbObjectId as the 1st parameter.

Reimplemented from OdSSetTracker.

◆ removeDrawables()

virtual void OdEdSSetTracker::removeDrawables ( OdGsView pView)
protectedvirtual
Remarks
Does nothing.

Implements OdEdInputTracker.


The documentation for this class was generated from the following file: