-rw-r--r-- | include/opie/xmltree.h | 2 | ||||
-rw-r--r-- | libopie/xmltree.h | 2 | ||||
-rw-r--r-- | libopie2/opiecore/xmltree.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/include/opie/xmltree.h b/include/opie/xmltree.h index 7f50365..ed93c23 100644 --- a/include/opie/xmltree.h +++ b/include/opie/xmltree.h | |||
@@ -1,112 +1,112 @@ | |||
1 | /* This file is part of the KDE project | 1 | /* This file is part of the KDE project |
2 | Copyright (C) 2000,2001 Simon Hausmann <hausmann@kde.org> | 2 | Copyright (C) 2000,2001 Simon Hausmann <hausmann@kde.org> |
3 | 3 | ||
4 | This library is free software; you can redistribute it and/or | 4 | This library is free software; you can redistribute it and/or |
5 | modify it under the terms of the GNU Library General Public | 5 | modify it under the terms of the GNU Library General Public |
6 | License as published by the Free Software Foundation; either | 6 | License as published by the Free Software Foundation; either |
7 | version 2 of the License, or (at your option) any later version. | 7 | version 2 of the License, or (at your option) any later version. |
8 | 8 | ||
9 | This library is distributed in the hope that it will be useful, | 9 | This library is distributed in the hope that it will be useful, |
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
12 | Library General Public License for more details. | 12 | Library General Public License for more details. |
13 | 13 | ||
14 | You should have received a copy of the GNU Library General Public License | 14 | You should have received a copy of the GNU Library General Public License |
15 | along with this library; see the file COPYING.LIB. If not, write to | 15 | along with this library; see the file COPYING.LIB. If not, write to |
16 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 16 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
17 | Boston, MA 02111-1307, USA. | 17 | Boston, MA 02111-1307, USA. |
18 | */ | 18 | */ |
19 | 19 | ||
20 | 20 | ||
21 | #ifndef __bookmarks_h__ | 21 | #ifndef __bookmarks_h__ |
22 | #define __bookmarks_h__ | 22 | #define __bookmarks_h__ |
23 | 23 | ||
24 | #include <qstring.h> | 24 | #include <qstring.h> |
25 | #include <qmap.h> | 25 | #include <qmap.h> |
26 | #include <qtextstream.h> | 26 | #include <qtextstream.h> |
27 | 27 | ||
28 | /** | 28 | /** |
29 | * A small xml lib written by Simon Hausmann. | 29 | * A small xml lib written by Simon Hausmann. |
30 | */ | 30 | */ |
31 | class XMLElement | 31 | class XMLElement |
32 | { | 32 | { |
33 | public: | 33 | public: |
34 | typedef QMap<QString, QString> AttributeMap; | 34 | typedef QMap<QString, QString> AttributeMap; |
35 | 35 | ||
36 | /** | 36 | /** |
37 | * The constructor of XMLElement | 37 | * The constructor of XMLElement |
38 | */ | 38 | */ |
39 | XMLElement(); | 39 | XMLElement(); |
40 | ~XMLElement(); | 40 | ~XMLElement(); |
41 | 41 | ||
42 | /** appendChild appends a child to the XMLElement behind the last element. | 42 | /** appendChild appends a child to the XMLElement behind the last element. |
43 | * The ownership of the child get's transfered to the | 43 | * The ownership of the child get's transfered to the |
44 | * this XMLElement. | 44 | * this XMLElement. |
45 | * If child is already the child of another parent | 45 | * If child is already the child of another parent |
46 | * it's get removed from the other parent first. | 46 | * it's get removed from the other parent first. |
47 | */ | 47 | */ |
48 | void appendChild( XMLElement *child ); | 48 | void appendChild( XMLElement *child ); |
49 | 49 | ||
50 | /** inserts newChild after refChild. If newChild is the child | 50 | /** inserts newChild after refChild. If newChild is the child |
51 | * of another parent the child will get removed. | 51 | * of another parent the child will get removed. |
52 | * The ownership of child gets transfered. | 52 | * The ownership of child gets transfered. |
53 | * | 53 | * |
54 | */ | 54 | */ |
55 | void insertAfter( XMLElement *newChild, XMLElement *refChild ); | 55 | void insertAfter( XMLElement *newChild, XMLElement *refChild ); |
56 | 56 | ||
57 | /** same as insertAfter but the element get's inserted before refChild. | 57 | /** same as insertAfter but the element get's inserted before refChild. |
58 | * | 58 | * |
59 | */ | 59 | */ |
60 | void insertBefore( XMLElement *newChild, XMLElement *refChild ); | 60 | void insertBefore( XMLElement *newChild, XMLElement *refChild ); |
61 | 61 | ||
62 | /** removeChild removes the child from the XMLElement. | 62 | /** removeChild removes the child from the XMLElement. |
63 | * The ownership gets dropped. You need to delete the | 63 | * The ownership gets dropped. You need to delete the |
64 | * child yourself. | 64 | * child yourself. |
65 | */ | 65 | */ |
66 | void removeChild( XMLElement *child ); | 66 | void removeChild( XMLElement *child ); |
67 | 67 | ||
68 | /** parent() returns the parent of this XMLElement | 68 | /** parent() returns the parent of this XMLElement |
69 | * If there is no parent 0l gets returned | 69 | * If there is no parent 0l gets returned |
70 | */ | 70 | */ |
71 | XMLElement *parent() const { return m_parent; } | 71 | XMLElement *parent() const { return m_parent; } |
72 | XMLElement *firstChild() const { return m_first; } | 72 | XMLElement *firstChild() const { return m_first; } |
73 | XMLElement *nextChild() const { return m_next; } | 73 | XMLElement *nextChild() const { return m_next; } |
74 | XMLElement *prevChild() const { return m_prev; } | 74 | XMLElement *prevChild() const { return m_prev; } |
75 | XMLElement *lastChild() const { return m_last; } | 75 | XMLElement *lastChild() const { return m_last; } |
76 | 76 | ||
77 | void setTagName( const QString &tag ) { m_tag = tag; } | 77 | void setTagName( const QString &tag ) { m_tag = tag; } |
78 | QString tagName() const { return m_tag; } | 78 | QString tagName() const { return m_tag; } |
79 | 79 | ||
80 | void setValue( const QString &val ) { m_value = val; } | 80 | void setValue( const QString &val ) { m_value = val; } |
81 | QString value() const { return m_value; } | 81 | QString value() const { return m_value; } |
82 | 82 | ||
83 | void setAttributes( const AttributeMap &attrs ) { m_attributes = attrs; } | 83 | void setAttributes( const AttributeMap &attrs ) { m_attributes = attrs; } |
84 | AttributeMap attributes() const { return m_attributes; } | 84 | AttributeMap attributes() const { return m_attributes; } |
85 | AttributeMap &attributes() { return m_attributes; } | 85 | AttributeMap &attributes() { return m_attributes; } |
86 | 86 | ||
87 | QString attribute(const QString &)const; | 87 | QString attribute( const QString & ) const; |
88 | void setAttribute( const QString &attr, const QString &value ); | 88 | void setAttribute( const QString &attr, const QString &value ); |
89 | void save( QTextStream &stream, uint indent = 0 ); | 89 | void save( QTextStream &stream, uint indent = 0 ); |
90 | 90 | ||
91 | XMLElement *namedItem( const QString &name ); | 91 | XMLElement *namedItem( const QString &name ); |
92 | 92 | ||
93 | XMLElement *clone() const; | 93 | XMLElement *clone() const; |
94 | 94 | ||
95 | static XMLElement *load( const QString &fileName ); | 95 | static XMLElement *load( const QString &fileName ); |
96 | 96 | ||
97 | private: | 97 | private: |
98 | QString m_tag; | 98 | QString m_tag; |
99 | QString m_value; | 99 | QString m_value; |
100 | AttributeMap m_attributes; | 100 | AttributeMap m_attributes; |
101 | 101 | ||
102 | XMLElement *m_parent; | 102 | XMLElement *m_parent; |
103 | XMLElement *m_next; | 103 | XMLElement *m_next; |
104 | XMLElement *m_prev; | 104 | XMLElement *m_prev; |
105 | XMLElement *m_first; | 105 | XMLElement *m_first; |
106 | XMLElement *m_last; | 106 | XMLElement *m_last; |
107 | 107 | ||
108 | XMLElement( const XMLElement &rhs ); | 108 | XMLElement( const XMLElement &rhs ); |
109 | XMLElement &operator=( const XMLElement &rhs ); | 109 | XMLElement &operator=( const XMLElement &rhs ); |
110 | }; | 110 | }; |
111 | 111 | ||
112 | #endif | 112 | #endif |
diff --git a/libopie/xmltree.h b/libopie/xmltree.h index 7f50365..ed93c23 100644 --- a/libopie/xmltree.h +++ b/libopie/xmltree.h | |||
@@ -1,112 +1,112 @@ | |||
1 | /* This file is part of the KDE project | 1 | /* This file is part of the KDE project |
2 | Copyright (C) 2000,2001 Simon Hausmann <hausmann@kde.org> | 2 | Copyright (C) 2000,2001 Simon Hausmann <hausmann@kde.org> |
3 | 3 | ||
4 | This library is free software; you can redistribute it and/or | 4 | This library is free software; you can redistribute it and/or |
5 | modify it under the terms of the GNU Library General Public | 5 | modify it under the terms of the GNU Library General Public |
6 | License as published by the Free Software Foundation; either | 6 | License as published by the Free Software Foundation; either |
7 | version 2 of the License, or (at your option) any later version. | 7 | version 2 of the License, or (at your option) any later version. |
8 | 8 | ||
9 | This library is distributed in the hope that it will be useful, | 9 | This library is distributed in the hope that it will be useful, |
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
12 | Library General Public License for more details. | 12 | Library General Public License for more details. |
13 | 13 | ||
14 | You should have received a copy of the GNU Library General Public License | 14 | You should have received a copy of the GNU Library General Public License |
15 | along with this library; see the file COPYING.LIB. If not, write to | 15 | along with this library; see the file COPYING.LIB. If not, write to |
16 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 16 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
17 | Boston, MA 02111-1307, USA. | 17 | Boston, MA 02111-1307, USA. |
18 | */ | 18 | */ |
19 | 19 | ||
20 | 20 | ||
21 | #ifndef __bookmarks_h__ | 21 | #ifndef __bookmarks_h__ |
22 | #define __bookmarks_h__ | 22 | #define __bookmarks_h__ |
23 | 23 | ||
24 | #include <qstring.h> | 24 | #include <qstring.h> |
25 | #include <qmap.h> | 25 | #include <qmap.h> |
26 | #include <qtextstream.h> | 26 | #include <qtextstream.h> |
27 | 27 | ||
28 | /** | 28 | /** |
29 | * A small xml lib written by Simon Hausmann. | 29 | * A small xml lib written by Simon Hausmann. |
30 | */ | 30 | */ |
31 | class XMLElement | 31 | class XMLElement |
32 | { | 32 | { |
33 | public: | 33 | public: |
34 | typedef QMap<QString, QString> AttributeMap; | 34 | typedef QMap<QString, QString> AttributeMap; |
35 | 35 | ||
36 | /** | 36 | /** |
37 | * The constructor of XMLElement | 37 | * The constructor of XMLElement |
38 | */ | 38 | */ |
39 | XMLElement(); | 39 | XMLElement(); |
40 | ~XMLElement(); | 40 | ~XMLElement(); |
41 | 41 | ||
42 | /** appendChild appends a child to the XMLElement behind the last element. | 42 | /** appendChild appends a child to the XMLElement behind the last element. |
43 | * The ownership of the child get's transfered to the | 43 | * The ownership of the child get's transfered to the |
44 | * this XMLElement. | 44 | * this XMLElement. |
45 | * If child is already the child of another parent | 45 | * If child is already the child of another parent |
46 | * it's get removed from the other parent first. | 46 | * it's get removed from the other parent first. |
47 | */ | 47 | */ |
48 | void appendChild( XMLElement *child ); | 48 | void appendChild( XMLElement *child ); |
49 | 49 | ||
50 | /** inserts newChild after refChild. If newChild is the child | 50 | /** inserts newChild after refChild. If newChild is the child |
51 | * of another parent the child will get removed. | 51 | * of another parent the child will get removed. |
52 | * The ownership of child gets transfered. | 52 | * The ownership of child gets transfered. |
53 | * | 53 | * |
54 | */ | 54 | */ |
55 | void insertAfter( XMLElement *newChild, XMLElement *refChild ); | 55 | void insertAfter( XMLElement *newChild, XMLElement *refChild ); |
56 | 56 | ||
57 | /** same as insertAfter but the element get's inserted before refChild. | 57 | /** same as insertAfter but the element get's inserted before refChild. |
58 | * | 58 | * |
59 | */ | 59 | */ |
60 | void insertBefore( XMLElement *newChild, XMLElement *refChild ); | 60 | void insertBefore( XMLElement *newChild, XMLElement *refChild ); |
61 | 61 | ||
62 | /** removeChild removes the child from the XMLElement. | 62 | /** removeChild removes the child from the XMLElement. |
63 | * The ownership gets dropped. You need to delete the | 63 | * The ownership gets dropped. You need to delete the |
64 | * child yourself. | 64 | * child yourself. |
65 | */ | 65 | */ |
66 | void removeChild( XMLElement *child ); | 66 | void removeChild( XMLElement *child ); |
67 | 67 | ||
68 | /** parent() returns the parent of this XMLElement | 68 | /** parent() returns the parent of this XMLElement |
69 | * If there is no parent 0l gets returned | 69 | * If there is no parent 0l gets returned |
70 | */ | 70 | */ |
71 | XMLElement *parent() const { return m_parent; } | 71 | XMLElement *parent() const { return m_parent; } |
72 | XMLElement *firstChild() const { return m_first; } | 72 | XMLElement *firstChild() const { return m_first; } |
73 | XMLElement *nextChild() const { return m_next; } | 73 | XMLElement *nextChild() const { return m_next; } |
74 | XMLElement *prevChild() const { return m_prev; } | 74 | XMLElement *prevChild() const { return m_prev; } |
75 | XMLElement *lastChild() const { return m_last; } | 75 | XMLElement *lastChild() const { return m_last; } |
76 | 76 | ||
77 | void setTagName( const QString &tag ) { m_tag = tag; } | 77 | void setTagName( const QString &tag ) { m_tag = tag; } |
78 | QString tagName() const { return m_tag; } | 78 | QString tagName() const { return m_tag; } |
79 | 79 | ||
80 | void setValue( const QString &val ) { m_value = val; } | 80 | void setValue( const QString &val ) { m_value = val; } |
81 | QString value() const { return m_value; } | 81 | QString value() const { return m_value; } |
82 | 82 | ||
83 | void setAttributes( const AttributeMap &attrs ) { m_attributes = attrs; } | 83 | void setAttributes( const AttributeMap &attrs ) { m_attributes = attrs; } |
84 | AttributeMap attributes() const { return m_attributes; } | 84 | AttributeMap attributes() const { return m_attributes; } |
85 | AttributeMap &attributes() { return m_attributes; } | 85 | AttributeMap &attributes() { return m_attributes; } |
86 | 86 | ||
87 | QString attribute(const QString &)const; | 87 | QString attribute( const QString & ) const; |
88 | void setAttribute( const QString &attr, const QString &value ); | 88 | void setAttribute( const QString &attr, const QString &value ); |
89 | void save( QTextStream &stream, uint indent = 0 ); | 89 | void save( QTextStream &stream, uint indent = 0 ); |
90 | 90 | ||
91 | XMLElement *namedItem( const QString &name ); | 91 | XMLElement *namedItem( const QString &name ); |
92 | 92 | ||
93 | XMLElement *clone() const; | 93 | XMLElement *clone() const; |
94 | 94 | ||
95 | static XMLElement *load( const QString &fileName ); | 95 | static XMLElement *load( const QString &fileName ); |
96 | 96 | ||
97 | private: | 97 | private: |
98 | QString m_tag; | 98 | QString m_tag; |
99 | QString m_value; | 99 | QString m_value; |
100 | AttributeMap m_attributes; | 100 | AttributeMap m_attributes; |
101 | 101 | ||
102 | XMLElement *m_parent; | 102 | XMLElement *m_parent; |
103 | XMLElement *m_next; | 103 | XMLElement *m_next; |
104 | XMLElement *m_prev; | 104 | XMLElement *m_prev; |
105 | XMLElement *m_first; | 105 | XMLElement *m_first; |
106 | XMLElement *m_last; | 106 | XMLElement *m_last; |
107 | 107 | ||
108 | XMLElement( const XMLElement &rhs ); | 108 | XMLElement( const XMLElement &rhs ); |
109 | XMLElement &operator=( const XMLElement &rhs ); | 109 | XMLElement &operator=( const XMLElement &rhs ); |
110 | }; | 110 | }; |
111 | 111 | ||
112 | #endif | 112 | #endif |
diff --git a/libopie2/opiecore/xmltree.h b/libopie2/opiecore/xmltree.h index 7f50365..ed93c23 100644 --- a/libopie2/opiecore/xmltree.h +++ b/libopie2/opiecore/xmltree.h | |||
@@ -1,112 +1,112 @@ | |||
1 | /* This file is part of the KDE project | 1 | /* This file is part of the KDE project |
2 | Copyright (C) 2000,2001 Simon Hausmann <hausmann@kde.org> | 2 | Copyright (C) 2000,2001 Simon Hausmann <hausmann@kde.org> |
3 | 3 | ||
4 | This library is free software; you can redistribute it and/or | 4 | This library is free software; you can redistribute it and/or |
5 | modify it under the terms of the GNU Library General Public | 5 | modify it under the terms of the GNU Library General Public |
6 | License as published by the Free Software Foundation; either | 6 | License as published by the Free Software Foundation; either |
7 | version 2 of the License, or (at your option) any later version. | 7 | version 2 of the License, or (at your option) any later version. |
8 | 8 | ||
9 | This library is distributed in the hope that it will be useful, | 9 | This library is distributed in the hope that it will be useful, |
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
12 | Library General Public License for more details. | 12 | Library General Public License for more details. |
13 | 13 | ||
14 | You should have received a copy of the GNU Library General Public License | 14 | You should have received a copy of the GNU Library General Public License |
15 | along with this library; see the file COPYING.LIB. If not, write to | 15 | along with this library; see the file COPYING.LIB. If not, write to |
16 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 16 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
17 | Boston, MA 02111-1307, USA. | 17 | Boston, MA 02111-1307, USA. |
18 | */ | 18 | */ |
19 | 19 | ||
20 | 20 | ||
21 | #ifndef __bookmarks_h__ | 21 | #ifndef __bookmarks_h__ |
22 | #define __bookmarks_h__ | 22 | #define __bookmarks_h__ |
23 | 23 | ||
24 | #include <qstring.h> | 24 | #include <qstring.h> |
25 | #include <qmap.h> | 25 | #include <qmap.h> |
26 | #include <qtextstream.h> | 26 | #include <qtextstream.h> |
27 | 27 | ||
28 | /** | 28 | /** |
29 | * A small xml lib written by Simon Hausmann. | 29 | * A small xml lib written by Simon Hausmann. |
30 | */ | 30 | */ |
31 | class XMLElement | 31 | class XMLElement |
32 | { | 32 | { |
33 | public: | 33 | public: |
34 | typedef QMap<QString, QString> AttributeMap; | 34 | typedef QMap<QString, QString> AttributeMap; |
35 | 35 | ||
36 | /** | 36 | /** |
37 | * The constructor of XMLElement | 37 | * The constructor of XMLElement |
38 | */ | 38 | */ |
39 | XMLElement(); | 39 | XMLElement(); |
40 | ~XMLElement(); | 40 | ~XMLElement(); |
41 | 41 | ||
42 | /** appendChild appends a child to the XMLElement behind the last element. | 42 | /** appendChild appends a child to the XMLElement behind the last element. |
43 | * The ownership of the child get's transfered to the | 43 | * The ownership of the child get's transfered to the |
44 | * this XMLElement. | 44 | * this XMLElement. |
45 | * If child is already the child of another parent | 45 | * If child is already the child of another parent |
46 | * it's get removed from the other parent first. | 46 | * it's get removed from the other parent first. |
47 | */ | 47 | */ |
48 | void appendChild( XMLElement *child ); | 48 | void appendChild( XMLElement *child ); |
49 | 49 | ||
50 | /** inserts newChild after refChild. If newChild is the child | 50 | /** inserts newChild after refChild. If newChild is the child |
51 | * of another parent the child will get removed. | 51 | * of another parent the child will get removed. |
52 | * The ownership of child gets transfered. | 52 | * The ownership of child gets transfered. |
53 | * | 53 | * |
54 | */ | 54 | */ |
55 | void insertAfter( XMLElement *newChild, XMLElement *refChild ); | 55 | void insertAfter( XMLElement *newChild, XMLElement *refChild ); |
56 | 56 | ||
57 | /** same as insertAfter but the element get's inserted before refChild. | 57 | /** same as insertAfter but the element get's inserted before refChild. |
58 | * | 58 | * |
59 | */ | 59 | */ |
60 | void insertBefore( XMLElement *newChild, XMLElement *refChild ); | 60 | void insertBefore( XMLElement *newChild, XMLElement *refChild ); |
61 | 61 | ||
62 | /** removeChild removes the child from the XMLElement. | 62 | /** removeChild removes the child from the XMLElement. |
63 | * The ownership gets dropped. You need to delete the | 63 | * The ownership gets dropped. You need to delete the |
64 | * child yourself. | 64 | * child yourself. |
65 | */ | 65 | */ |
66 | void removeChild( XMLElement *child ); | 66 | void removeChild( XMLElement *child ); |
67 | 67 | ||
68 | /** parent() returns the parent of this XMLElement | 68 | /** parent() returns the parent of this XMLElement |
69 | * If there is no parent 0l gets returned | 69 | * If there is no parent 0l gets returned |
70 | */ | 70 | */ |
71 | XMLElement *parent() const { return m_parent; } | 71 | XMLElement *parent() const { return m_parent; } |
72 | XMLElement *firstChild() const { return m_first; } | 72 | XMLElement *firstChild() const { return m_first; } |
73 | XMLElement *nextChild() const { return m_next; } | 73 | XMLElement *nextChild() const { return m_next; } |
74 | XMLElement *prevChild() const { return m_prev; } | 74 | XMLElement *prevChild() const { return m_prev; } |
75 | XMLElement *lastChild() const { return m_last; } | 75 | XMLElement *lastChild() const { return m_last; } |
76 | 76 | ||
77 | void setTagName( const QString &tag ) { m_tag = tag; } | 77 | void setTagName( const QString &tag ) { m_tag = tag; } |
78 | QString tagName() const { return m_tag; } | 78 | QString tagName() const { return m_tag; } |
79 | 79 | ||
80 | void setValue( const QString &val ) { m_value = val; } | 80 | void setValue( const QString &val ) { m_value = val; } |
81 | QString value() const { return m_value; } | 81 | QString value() const { return m_value; } |
82 | 82 | ||
83 | void setAttributes( const AttributeMap &attrs ) { m_attributes = attrs; } | 83 | void setAttributes( const AttributeMap &attrs ) { m_attributes = attrs; } |
84 | AttributeMap attributes() const { return m_attributes; } | 84 | AttributeMap attributes() const { return m_attributes; } |
85 | AttributeMap &attributes() { return m_attributes; } | 85 | AttributeMap &attributes() { return m_attributes; } |
86 | 86 | ||
87 | QString attribute(const QString &)const; | 87 | QString attribute( const QString & ) const; |
88 | void setAttribute( const QString &attr, const QString &value ); | 88 | void setAttribute( const QString &attr, const QString &value ); |
89 | void save( QTextStream &stream, uint indent = 0 ); | 89 | void save( QTextStream &stream, uint indent = 0 ); |
90 | 90 | ||
91 | XMLElement *namedItem( const QString &name ); | 91 | XMLElement *namedItem( const QString &name ); |
92 | 92 | ||
93 | XMLElement *clone() const; | 93 | XMLElement *clone() const; |
94 | 94 | ||
95 | static XMLElement *load( const QString &fileName ); | 95 | static XMLElement *load( const QString &fileName ); |
96 | 96 | ||
97 | private: | 97 | private: |
98 | QString m_tag; | 98 | QString m_tag; |
99 | QString m_value; | 99 | QString m_value; |
100 | AttributeMap m_attributes; | 100 | AttributeMap m_attributes; |
101 | 101 | ||
102 | XMLElement *m_parent; | 102 | XMLElement *m_parent; |
103 | XMLElement *m_next; | 103 | XMLElement *m_next; |
104 | XMLElement *m_prev; | 104 | XMLElement *m_prev; |
105 | XMLElement *m_first; | 105 | XMLElement *m_first; |
106 | XMLElement *m_last; | 106 | XMLElement *m_last; |
107 | 107 | ||
108 | XMLElement( const XMLElement &rhs ); | 108 | XMLElement( const XMLElement &rhs ); |
109 | XMLElement &operator=( const XMLElement &rhs ); | 109 | XMLElement &operator=( const XMLElement &rhs ); |
110 | }; | 110 | }; |
111 | 111 | ||
112 | #endif | 112 | #endif |