QSimpleXmlNodeModel Class
The QSimpleXmlNodeModel class is an implementation of QAbstractXmlNodeModel sufficient for many common cases. 更多...
头文件: | #include <QSimpleXmlNodeModel> |
qmake: | QT += xmlpatterns |
开始支持版本: | Qt 4.4 |
基类: | QAbstractXmlNodeModel |
Note: All functions in this class are reentrant.
公有函数
QSimpleXmlNodeModel(const QXmlNamePool &namePool) | |
virtual | ~QSimpleXmlNodeModel() |
QXmlNamePool & | namePool() const |
重新实现的公有函数
virtual QUrl | baseUri(const QXmlNodeModelIndex &node) const |
virtual QXmlNodeModelIndex | elementById(const QXmlName &id) const |
virtual QVector<QXmlName> | namespaceBindings(const QXmlNodeModelIndex &node) const |
virtual QVector<QXmlNodeModelIndex> | nodesByIdref(const QXmlName &idref) const |
virtual QString | stringValue(const QXmlNodeModelIndex &node) const |
- 12 个公有函数继承自 QAbstractXmlNodeModel
其他继承的成员
- 5 个受保护的函数继承自 QAbstractXmlNodeModel
详细描述
The QSimpleXmlNodeModel class is an implementation of QAbstractXmlNodeModel sufficient for many common cases.
Subclassing QAbstractXmlNodeModel can be a significant task, because it requires implementing several, complex member functions. QSimpleXmlNodeModel provides default implementations of these member functions that are suitable for a wide range of node models.
Subclasses of QSimpleXmlNodeModel must be thread-safe.
成员函数
QSimpleXmlNodeModel::QSimpleXmlNodeModel(const QXmlNamePool &namePool)
Constructs a QSimpleXmlNodeModel for use with with the specified namePool.
[virtual]
QSimpleXmlNodeModel::~QSimpleXmlNodeModel()
Destructor.
[virtual]
QUrl QSimpleXmlNodeModel::baseUri(const QXmlNodeModelIndex &node) const
重新实现 QAbstractXmlNodeModel::baseUri().
Returns the base URI for node. This is always the document URI.
参见 documentUri().
[virtual]
QXmlNodeModelIndex QSimpleXmlNodeModel::elementById(const QXmlName &id) const
重新实现 QAbstractXmlNodeModel::elementById().
Always returns a default constructed QXmlNodeModelIndex instance, regardless of id.
This effectively means the model has no elements that have an id.
QXmlNamePool &QSimpleXmlNodeModel::namePool() const
Returns the name pool associated with this model. The implementation of name() will use this name pool to create names.
[virtual]
QVector<QXmlName> QSimpleXmlNodeModel::namespaceBindings(const QXmlNodeModelIndex &node) const
重新实现 QAbstractXmlNodeModel::namespaceBindings().
Always returns an empty QVector. This signals that no namespace bindings are in scope for node.
[virtual]
QVector<QXmlNodeModelIndex> QSimpleXmlNodeModel::nodesByIdref(const QXmlName &idref) const
重新实现 QAbstractXmlNodeModel::nodesByIdref().
Always returns an empty vector, regardless of idref.
This effectively means the model has no elements or attributes of type IDREF
.
[virtual]
QString QSimpleXmlNodeModel::stringValue(const QXmlNodeModelIndex &node) const
重新实现 QAbstractXmlNodeModel::stringValue().
If node is an element or attribute, typedValue() is called, and the return value converted to a string, as per XQuery's rules.
If node is another type of node, the empty string is returned.
If this function is overridden for comments or processing instructions, it is important to remember to call it (for elements and attributes having values not of type xs:string
) to ensure that the values are formatted according to XQuery.