![]() |
Isis 3 Programmer Reference
|
Process XML in a stack-oriented fashion. More...
Public Member Functions | |
XmlHandler (Image *image, FileName imageFolder) | |
Create an XML Handler (reader) that can populate the Image class data. More... | |
virtual bool | startElement (const QString &namespaceURI, const QString &localName, const QString &qName, const QXmlAttributes &atts) |
Read mage class attributes. More... | |
virtual bool | characters (const QString &ch) |
This implementation of a virtual function calls QXmlDefaultHandler::characters(QString &ch) which in turn calls QXmlContentHandler::characters(QString &ch) which is called when the XML processor has parsed a chunk of character data. More... | |
virtual bool | endElement (const QString &namespaceURI, const QString &localName, const QString &qName) |
The XML reader invokes this method at the end of every element in the XML document. More... | |
virtual void | setReader (XmlStackedHandlerReader *) |
void | switchToNewHandler (XmlStackedHandler *nextHandler) |
Switch to a new content handler and continue processing using the new handler. More... | |
Protected Member Functions | |
XmlStackedHandlerReader * | reader () |
const XmlStackedHandlerReader * | reader () const |
bool | fatalError (const QXmlParseException &exception) |
Private Member Functions | |
Q_DISABLE_COPY (XmlHandler) | |
Private Attributes | |
Image * | m_image |
Pointer to the Image. More... | |
FileName | m_imageFolder |
The Name/path of the image. More... | |
QString | m_characters |
Character data storage found in the content of XML elements. More... | |
Process XML in a stack-oriented fashion.
Child class for XmlStackedHandler which is used to process XML in a stack-oriented way. It's been modified to process an Image object object.
Create an XML Handler (reader) that can populate the Image class data.
image | The image we're going to be initializing |
imageFolder | The folder that contains the Cube |
Definition at line 830 of file Image.cpp.
References m_image, and m_imageFolder.
|
virtual |
This implementation of a virtual function calls QXmlDefaultHandler::characters(QString &ch) which in turn calls QXmlContentHandler::characters(QString &ch) which is called when the XML processor has parsed a chunk of character data.
ch | The character data. |
|
virtual |
The XML reader invokes this method at the end of every element in the XML document.
This expects <image> and <footprint> elements.
namespaceURI | The Uniform Resource Identifier of the namespace (eg. "xmlns") |
localName | The local name string (eg. "xhtml") |
qName | The XML qualified string (eg. "xmlns:xhtml"). This can be empty if QNames are not available. |
Reimplemented from Isis::XmlStackedHandler.
Definition at line 964 of file Image.cpp.
References Isis::PolygonTools::MakeMultiPolygon().
|
virtual |
Read mage class attributes.
The XML reader invokes this method at the start of every element in the XML document. This expects <image> and <displayProperties> elements. A quick example using this function: startElement("xsl","stylesheet","xsl:stylesheet",attributes)
namespaceURI | The Uniform Resource Identifier of the element's namespace |
localName | The local name string |
qName | The XML qualified string (or empty, if QNames are not available). |
atts | The XML attributes attached to each element |
Reimplemented from Isis::XmlStackedHandler.
Definition at line 852 of file Image.cpp.
References Isis::Image::fileName(), Isis::Distance::Meters, and Isis::Angle::Radians.
|
inherited |
Switch to a new content handler and continue processing using the new handler.
Definition at line 32 of file XmlStackedHandler.cpp.
Referenced by Isis::XmlStackedHandlerReader::pushContentHandler().
|
private |
|
private |
|
private |
U.S. Department of the Interior | U.S. Geological Survey ISIS | Privacy & Disclaimers | Astrogeology Research Program To contact us, please post comments and questions on the USGS Astrogeology Discussion Board To report a bug, or suggest a feature go to: ISIS Github File Modified: 07/12/2023 23:53:44 |