1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
/*=========================================================================
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.kitware.com/VolViewCopyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "XML/vtkXML3DCursorAnnotationWriter.h"
#include "vtkObjectFactory.h"
#include "vtk3DCursorAnnotation.h"
#include "vtkXMLDataElement.h"
vtkStandardNewMacro(vtkXML3DCursorAnnotationWriter);
vtkCxxRevisionMacro(vtkXML3DCursorAnnotationWriter, "$Revision: 1.7 $");
//----------------------------------------------------------------------------
const char* vtkXML3DCursorAnnotationWriter::GetRootElementName()
{
return "Cursor3DAnnotation";
}
//----------------------------------------------------------------------------
int vtkXML3DCursorAnnotationWriter::AddAttributes(vtkXMLDataElement *elem)
{
if (!this->Superclass::AddAttributes(elem))
{
return 0;
}
vtk3DCursorAnnotation *obj =
vtk3DCursorAnnotation::SafeDownCast(this->Object);
if (!obj)
{
vtkWarningMacro(<< "The 3DCursorAnnotation is not set!");
return 0;
}
elem->SetVectorAttribute("CursorPosition", 3, obj->GetCursorPosition());
elem->SetIntAttribute("CursorType", obj->GetCursorType());
elem->SetVectorAttribute("CursorXAxisColor", 3, obj->GetCursorXAxisColor());
elem->SetVectorAttribute("CursorYAxisColor", 3, obj->GetCursorYAxisColor());
elem->SetVectorAttribute("CursorZAxisColor", 3, obj->GetCursorZAxisColor());
return 1;
}
|