00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 #ifndef AEXTXML_H
00032 #define AEXTXML_H
00033
00034 #include <qdom.h>
00035 #include "aextension.h"
00036
00044 class ANANAS_EXPORT AExtXML : public AExtension
00045 {
00046 Q_OBJECT
00047
00048 public:
00049
00050 AExtXML();
00051 ~AExtXML();
00052 public:
00053
00054 public slots:
00055 bool read(const QString &fname);
00056 bool write(const QString &fname);
00057 void createNew( const QString &rootnodename );
00058
00059 bool isRoot();
00060 bool parent();
00061 bool newChild( const QString &childname );
00062 QString nodeName();
00063 bool setText( const QString &text );
00064 QString text() const;
00065
00066 bool setAttr( const QString &name, const QString &value );
00067 QString attr( const QString &name ) const;
00068 bool removeAttr( const QString &name );
00069
00070 bool firstChild();
00071 bool lastChild();
00072 bool next();
00073 bool prev();
00074 bool childExists();
00075
00076 private:
00077 QDomDocument xml;
00078 QDomElement rootnode, current;
00079
00080
00081 };
00082
00083 #endif //AEXTTEXT_H