CFx SDK Documentation 2024 SP0
|
#include <DbLayerState.h>
Public Member Functions | |
ODRX_DECLARE_MEMBERS (OdDbLayerStateManagerReactor) | |
virtual void | layerStateCreated (const OdString &layerStateName, const OdDbObjectId &layerStateId) |
virtual void | layerStateCompareFailed (const OdString &layerStateName, const OdDbObjectId &layerStateId) |
virtual void | layerStateToBeRestored (const OdString &layerStateName, const OdDbObjectId &layerStateId) |
virtual void | layerStateRestored (const OdString &layerStateName, const OdDbObjectId &layerStateId) |
virtual void | abortLayerStateRestore (const OdString &layerStateName, const OdDbObjectId &layerStateId) |
virtual void | layerStateToBeDeleted (const OdString &layerStateName, const OdDbObjectId &layerStateId) |
virtual void | layerStateDeleted (const OdString &layerStateName) |
virtual void | abortLayerStateDelete (const OdString &layerStateName, const OdDbObjectId &layerStateId) |
virtual void | layerStateToBeRenamed (const OdString &oldLayerStateName, const OdString &newLayerStateName) |
virtual void | layerStateRenamed (const OdString &oldLayerStateName, const OdString &newLayerStateName) |
virtual void | abortLayerStateRename (const OdString &oldLayerStateName, const OdString &newLayerStateName) |
Public Member Functions inherited from OdRxObject | |
ODRX_HEAP_OPERATORS () | |
OdRxObject () | |
virtual | ~OdRxObject () |
virtual OdRxObject * | queryX (const OdRxClass *pClass) const |
virtual OdRxObject * | x (const OdRxClass *pClass) const |
virtual OdRxClass * | isA () 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 |
Additional Inherited Members | |
Static Public Member Functions inherited from OdRxObject | |
static OdRxObjectPtr | cast (const OdRxObject *pointer) |
static OdRxClass * | desc () |
This class defines reactor objects for layer state manager objects (objects of the OdDbLayerStateManager class).
Corresponding C++ library: TD_Db <group OdDb_Classes>
Definition at line 437 of file DbLayerState.h.
|
virtual |
This function is triggered every time when a layer state deletion is aborted.
layerStateName | [in] Name of the layer state. |
layerStateId | [in] ID of the corresponding OdDbLayerState object. |
|
virtual |
This function is triggered every time when a layer state renaming is aborted.
oldLayerStateName | [in] Old name of the layer state. |
newLayerStateName | [in] New name of the layer state. |
|
virtual |
This function is triggered every time when a layer state restoration is aborted.
layerStateName | [in] Name of the layer state. |
layerStateId | [in] ID of the corresponding OdDbLayerState object. |
|
virtual |
This function is triggered every time when comparison of a specified layer state with the layer of a viewport fails.
layerStateName | [in] Name of the layer state. |
layerStateId | [in] ID of the corresponding OdDbLayerState object. |
|
virtual |
This function is triggered every time a layer state is saved to the database.
layerStateName | [in] Name of the layer state. |
layerStateId | [in] ID of the corresponding OdDbLayerState object. |
|
virtual |
This function is triggered every time when a layer state is deleted.
layerStateName | [in] Name of the layer state. |
|
virtual |
This function is triggered every time when a layer state is renamed.
oldLayerStateName | [in] Old name of the layer state. |
newLayerStateName | [in] New name of the layer state. |
|
virtual |
This function is triggered every time when a layer state is restored.
layerStateName | [in] Name of the layer state. |
layerStateId | [in] ID of the corresponding OdDbLayerState object. |
|
virtual |
This function is triggered every time before a layer state is deleted.
layerStateName | [in] Name of the layer state. |
layerStateId | [in] ID of the corresponding OdDbLayerState object. |
|
virtual |
This function is triggered every time before a layer state is renamed.
oldLayerStateName | [in] Old name of the layer state. |
newLayerStateName | [in] New name of the layer state. |
|
virtual |
This function is triggered every time before a layer state is restored.
layerStateName | [in] Name of the layer state. |
layerStateId | [in] ID of the corresponding OdDbLayerState object. |
OdDbLayerStateManagerReactor::ODRX_DECLARE_MEMBERS | ( | OdDbLayerStateManagerReactor | ) |