#include "Ltdic.h"
virtual L_UINT16 LDicomDS::OnConvertLEADAnnObjToDicomAnnObj(pGraphicObject, pTextObject)
Called for each DICOM annotation object generated by LDicomDS::ConvertLEADAnnObjToDicomAnnObjs.
Pointer to a DICOMGRAPHICOBJECT structure, which will hold the attributes of the generated DICOM graphic annotation object. If set to NULL, then the resulting object is a DICOM text annotation and in this case pTextObject cannot be NULL.
Pointer to a DICOMTEXTOBJECT structure, which will hold the attributes of the generated DICOM text annotation object. If set to NULL then the resulting object is a DICOM graphic annotation and in this case pGraphicObject cannot be NULL.
Value | Meaning |
---|---|
0 | SUCCESS |
>0 | An error occurred. Refer to Return Codes |
As a result of calling LDicomDS::ConvertLEADAnnObjToDicomAnnObjs one or more DICOM annotation objects will be generated. For each of the resulting objects this overridable virtual function will get called once. If the resulting object is a "Graphic Object", then the parameter pGraphicObject will point to a DICOMGRAPHICOBJECT structure, which describes the new object, and in this case pTextObject will be set to NULL.
If the resulting object is a "Text Object", then the parameter pTextObject will point to a DICOMTEXTOBJECT structure, which describes the new object, and in this case pGraphicObject will be set to NULL. Suppose that a LEAD annotation object will get converted into two DICOM graphic objects and one DICOM text object. This means that this function will get called three times, it will be called twice with pGraphicObject != NULL and pTextObject == NULL and will be called once with pGraphicObject == NULL and pTextObject != NULL.
pTextObject and pGraphicObject cannot both be valid or both be NULL at the same time.
The implementation of the LDicomDS class for the function OnConvertLEADAnnObjToDicomAnnObj simply returns DICOM_SUCCESS. In order to make use of this callback function, you should create a new class derived from the LDicomDS class and override the function OnConvertLEADAnnObjToDicomAnnObj, providing the desired implementation.
Required DLLs and Libraries
Win32, x64
L_UINT16 OnConvertLEADAnnObjToDicomAnnObj( const pDICOMGRAPHICOBJECT pGraphicObject,const pDICOMTEXTOBJECT pTextObject)
{
if (pGraphicObject)
{
MessageBox(NULL,TEXT("A Graphical object has been created."),NULL,0);
}
else if (pTextObject)
{
MessageBox(NULL,TEXT("A Textual object has been created."),NULL,0);
}
return SUCCESS;
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document