Qt 4.8
|
The QXmlAttributes class provides XML attributes. More...
#include <qxml.h>
Classes | |
struct | Attribute |
Public Functions | |
void | append (const QString &qName, const QString &uri, const QString &localPart, const QString &value) |
Appends a new attribute entry to the list of attributes. More... | |
void | clear () |
Clears the list of attributes. More... | |
int | count () const |
Returns the number of attributes in the list. More... | |
int | index (const QString &qName) const |
Looks up the index of an attribute by the qualified name qName. More... | |
int | index (const QLatin1String &qName) const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. More... | |
int | index (const QString &uri, const QString &localPart) const |
Looks up the index of an attribute by a namespace name. More... | |
int | length () const |
Returns the number of attributes in the list. More... | |
QString | localName (int index) const |
Looks up an attribute's local name for the attribute at position index. More... | |
QString | qName (int index) const |
Looks up an attribute's XML 1.0 qualified name for the attribute at position index. More... | |
QXmlAttributes () | |
Constructs an empty attribute list. More... | |
QString | type (int index) const |
Looks up an attribute's type for the attribute at position index. More... | |
QString | type (const QString &qName) const |
Looks up an attribute's type for the qualified name qName. More... | |
QString | type (const QString &uri, const QString &localName) const |
Looks up an attribute's type by namespace name. More... | |
QString | uri (int index) const |
Looks up an attribute's namespace URI for the attribute at position index. More... | |
QString | value (int index) const |
Returns an attribute's value for the attribute at position index. More... | |
QString | value (const QString &qName) const |
Returns an attribute's value for the qualified name qName, or an empty string if no attribute exists for the name given. More... | |
QString | value (const QLatin1String &qName) const |
Returns an attribute's value for the qualified name qName, or an empty string if no attribute exists for the name given. More... | |
QString | value (const QString &uri, const QString &localName) const |
Returns an attribute's value by namespace name. More... | |
virtual | ~QXmlAttributes () |
Destroys the attributes object. More... | |
Private Types | |
typedef QList< Attribute > | AttributeList |
Properties | |
AttributeList | attList |
QXmlAttributesPrivate * | d |
The QXmlAttributes class provides XML attributes.
If attributes are reported by QXmlContentHandler::startElement() this class is used to pass the attribute values.
Use index() to locate the position of an attribute in the list, count() to retrieve the number of attributes, and clear() to remove the attributes. New attributes can be added with append(). Use type() to get an attribute's type and value() to get its value. The attribute's name is available from localName() or qName(), and its namespace URI from uri().
|
private |
|
inline |
|
inlinevirtual |
void QXmlAttributes::append | ( | const QString & | qName, |
const QString & | uri, | ||
const QString & | localPart, | ||
const QString & | value | ||
) |
Appends a new attribute entry to the list of attributes.
The qualified name of the attribute is qName, the namespace URI is uri and the local name is localPart. The value of the attribute is value.
Definition at line 1273 of file qxml.cpp.
Referenced by append(), and QXmlSimpleReaderPrivate::processElementAttribute().
void QXmlAttributes::clear | ( | void | ) |
Clears the list of attributes.
Definition at line 1260 of file qxml.cpp.
Referenced by clear(), and QXmlSimpleReaderPrivate::parseElement().
|
inline |
Returns the number of attributes in the list.
This function is equivalent to length().
Definition at line 420 of file qxml.h.
Referenced by length().
int QXmlAttributes::index | ( | const QString & | qName | ) | const |
Looks up the index of an attribute by the qualified name qName.
Returns the index of the attribute or -1 if it wasn't found.
Definition at line 1041 of file qxml.cpp.
int QXmlAttributes::index | ( | const QLatin1String & | qName | ) | const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Definition at line 1052 of file qxml.cpp.
Looks up the index of an attribute by a namespace name.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
uri specifies the namespace URI, or an empty string if the name has no namespace URI. localPart specifies the attribute's local name.
Returns the index of the attribute, or -1 if it wasn't found.
Definition at line 1077 of file qxml.cpp.
int QXmlAttributes::length | ( | ) | const |
Returns the number of attributes in the list.
Definition at line 1092 of file qxml.cpp.
Referenced by QDomHandler::startElement().
QString QXmlAttributes::localName | ( | int | index | ) | const |
Looks up an attribute's local name for the attribute at position index.
If no namespace processing is done, the local name is an empty string.
Definition at line 1114 of file qxml.cpp.
QString QXmlAttributes::qName | ( | int | index | ) | const |
Looks up an attribute's XML 1.0 qualified name for the attribute at position index.
Definition at line 1125 of file qxml.cpp.
Referenced by QDomHandler::startElement().
QString QXmlAttributes::type | ( | int | index | ) | const |
Looks up an attribute's type for the qualified name qName.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Currently only "CDATA" is returned.
Definition at line 1163 of file qxml.cpp.
Looks up an attribute's type by namespace name.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
uri specifies the namespace URI and localName specifies the local name. If the name has no namespace URI, use an empty string for uri.
Currently only "CDATA" is returned.
Definition at line 1182 of file qxml.cpp.
QString QXmlAttributes::uri | ( | int | index | ) | const |
Looks up an attribute's namespace URI for the attribute at position index.
If no namespace processing is done or if the attribute has no namespace, the namespace URI is an empty string.
Definition at line 1137 of file qxml.cpp.
Referenced by QDomHandler::startElement(), and uri().
QString QXmlAttributes::value | ( | int | index | ) | const |
Returns an attribute's value for the attribute at position index.
The index must be a valid position (i.e., 0 <= index < count()).
Definition at line 1192 of file qxml.cpp.
Referenced by QDomHandler::startElement(), and value().
Returns an attribute's value for the qualified name qName, or an empty string if no attribute exists for the name given.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Definition at line 1208 of file qxml.cpp.
QString QXmlAttributes::value | ( | const QLatin1String & | qName | ) | const |
Returns an attribute's value for the qualified name qName, or an empty string if no attribute exists for the name given.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Definition at line 1227 of file qxml.cpp.
Returns an attribute's value by namespace name.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
uri specifies the namespace URI, or an empty string if the name has no namespace URI. localName specifies the attribute's local name.
Definition at line 1247 of file qxml.cpp.
|
private |
|
private |