CFx SDK Documentation 2024 SP0
|
#include <DbDatabaseReactor.h>
Public Member Functions | |
ODRX_DECLARE_MEMBERS (OdDbDatabaseReactor) | |
OdDbDatabaseReactor () | |
virtual void | objectAppended (const OdDbDatabase *pDb, const OdDbObject *pObject) |
virtual void | objectUnAppended (const OdDbDatabase *pDb, const OdDbObject *pObject) |
virtual void | objectReAppended (const OdDbDatabase *pDb, const OdDbObject *pObject) |
virtual void | objectOpenedForModify (const OdDbDatabase *pDb, const OdDbObject *pObject) |
virtual void | objectModified (const OdDbDatabase *pDb, const OdDbObject *pObject) |
virtual void | objectErased (const OdDbDatabase *pDb, const OdDbObject *pObject, bool erased=true) |
virtual void | headerSysVarWillChange (const OdDbDatabase *pDb, const OdString &name) |
virtual void | headerSysVarChanged (const OdDbDatabase *pDb, const OdString &name) |
virtual void | proxyResurrectionCompleted (const OdDbDatabase *pDb, const OdString &appname, OdDbObjectIdArray &objectIds) |
virtual void | goodbye (const OdDbDatabase *pDb) |
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 is the base class for custom classes that receive notification of OdDbDatabase events.
<group OdDb_Classes>
Definition at line 48 of file DbDatabaseReactor.h.
|
inline |
Definition at line 53 of file DbDatabaseReactor.h.
|
virtual |
Notification function called whenever a database is about to be deleted from memory.
pDb | [in] Pointer to the database being deleted. |
|
virtual |
Notification function called whenever a database -resident system variable has changed.
pDb | [in] Pointer to the database being modified. |
name | [in] Name of the system variable being modified. |
|
virtual |
Notification function called whenever a database -resident system variable is about to change.
pDb | [in] Pointer to the database being modified. |
name | [in] Name of the system variable being modified. |
|
virtual |
Notification function called whenever an OdDbObject has been appended to an OdDbDatabase.
pDb | [in] Pointer to the database being modified. |
pObject | [in] Pointer to the object being appended. |
|
virtual |
Notification function called whenever an OdDbObject has been erased or unerased.
pDb | [in] Pointer to the database being modified. |
pObject | [in] Pointer to the object being modified. |
erased | [in] True if and only if the object is being erased. |
|
virtual |
Notification function called whenever an OdDbObject has been modified.
pDb | [in] Pointer to the database being modified. |
pObject | [in] Pointer to the object being modified. |
|
virtual |
Notification function called whenever an OdDbObject is about to be modified.
pDb | [in] Pointer to the database being modified. |
pObject | [in] Pointer to the object being modified. |
|
virtual |
Notification function called whenever an OdDbObject has been reappended to an OdDbDatabase by a Redo operation.
pDb | [in] Pointer to the database being modified. |
pObject | [in] Pointer to the object being reappended. |
|
virtual |
Notification function called whenever an OdDbObject has been unappended from an OdDbDatabase by an Undo operation.
pDb | [in] Pointer to the database being modified. |
pObject | [in] Pointer to the object being unappended. |
OdDbDatabaseReactor::ODRX_DECLARE_MEMBERS | ( | OdDbDatabaseReactor | ) |
|
virtual |
Notification function called after the specified application is loaded and all its proxy objects are resurrected.
pDb | [in] Pointer to the database being modified. |
appname | [in] Name of the resurrecting application. |
objectIds | [in] Object IDs of the resurrected objects. |