|
Public Methods |
| PParser () |
| Constructor.
|
| ~PParser () |
| Deconstructor.
|
bool | startDocument () |
| Does nothing.
|
bool | endDocument () |
| Resets current node and filetype.
|
bool | characters (const QString &ch) |
| Sets text value of current node to ch.
|
bool | startElement (const QString &namespaceURI, const QString &localName, const QString &qName, const QXmlAttributes &attr) |
| Customized handler for start of xml element, inserts it into new child of current node.
|
bool | endElement (const QString &namespaceURI, const QString &localName, const QString &qName) |
| Customized handler for end of xml element,moves current node to parent of current.
|
Public Attributes |
sxifile * | first |
| pointer to first file
|
sxifile * | currfile |
| pointer to current file
|
QList< sxifile > | file |
| list of files
|
pXmlNode | content |
| root node of content file.
|
pXmlNode | style |
| root node of style file
|
pXmlNode | settings |
| root node of settings file
|
pXmlNode | meta |
| root node of meta file
|
pXmlNode * | current |
| pointer to current node
|
QList< pImage > | images |
| list of images
|
Private Methods |
int | getFileType (const QString &qName) |
| Gets the file type of file qith qName.
|
Private Attributes |
int | filetype |
| current filetype of current file
|