summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqdomcharacterdata.3qt
blob: d8002911e37f188b7dd773aa121fbbe3221b122a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
'\" t
.TH QDomCharacterData 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA.  All rights reserved.  See the
.\" license file included in the distribution for a complete license
.\" statement.
.\"
.ad l
.nh
.SH NAME
QDomCharacterData \- Represents a generic string in the DOM
.SH SYNOPSIS
All the functions in this class are reentrant when Qt is built with thread support.</p>
.PP
\fC#include <ntqdom.h>\fR
.PP
Inherits QDomNode.
.PP
Inherited by QDomText and QDomComment.
.PP
.SS "Public Members"
.in +1c
.ti -1c
.BI "\fBQDomCharacterData\fR ()"
.br
.ti -1c
.BI "\fBQDomCharacterData\fR ( const QDomCharacterData & x )"
.br
.ti -1c
.BI "QDomCharacterData & \fBoperator=\fR ( const QDomCharacterData & x )"
.br
.ti -1c
.BI "\fB~QDomCharacterData\fR ()"
.br
.ti -1c
.BI "virtual QString \fBsubstringData\fR ( unsigned long offset, unsigned long count )"
.br
.ti -1c
.BI "virtual void \fBappendData\fR ( const QString & arg )"
.br
.ti -1c
.BI "virtual void \fBinsertData\fR ( unsigned long offset, const QString & arg )"
.br
.ti -1c
.BI "virtual void \fBdeleteData\fR ( unsigned long offset, unsigned long count )"
.br
.ti -1c
.BI "virtual void \fBreplaceData\fR ( unsigned long offset, unsigned long count, const QString & arg )"
.br
.ti -1c
.BI "virtual uint \fBlength\fR () const"
.br
.ti -1c
.BI "virtual QString \fBdata\fR () const"
.br
.ti -1c
.BI "virtual void \fBsetData\fR ( const QString & v )"
.br
.ti -1c
.BI "virtual QDomNode::NodeType \fBnodeType\fR () const"
.br
.ti -1c
.BI "virtual bool \fBisCharacterData\fR () const"
.br
.in -1c
.SH DESCRIPTION
The QDomCharacterData class represents a generic string in the DOM.
.PP
Character data as used in XML specifies a generic data string. More specialized versions of this class are QDomText, QDomComment and QDomCDATASection.
.PP
The data string is set with setData() and retrieved with data(). You can retrieve a portion of the data string using substringData(). Extra data can be appended with appendData(), or inserted with insertData(). Portions of the data string can be deleted with deleteData() or replaced with replaceData(). The length of the data string is returned by length().
.PP
The node type of the node containing this character data is returned by nodeType().
.PP
See also QDomText, QDomComment, QDomCDATASection, and XML.
.SH MEMBER FUNCTION DOCUMENTATION
.SH "QDomCharacterData::QDomCharacterData ()"
Constructs an empty character data object.
.SH "QDomCharacterData::QDomCharacterData ( const QDomCharacterData & x )"
Constructs a copy of \fIx\fR.
.PP
The data of the copy is shared (shallow copy): modifying one node will also change the other. If you want to make a deep copy, use cloneNode().
.SH "QDomCharacterData::~QDomCharacterData ()"
Destroys the object and frees its resources.
.SH "void QDomCharacterData::appendData ( const QString & arg )\fC [virtual]\fR"
Appends the string \fIarg\fR to the stored string.
.SH "QString QDomCharacterData::data () const\fC [virtual]\fR"
Returns the string stored in this object.
.PP
If the node is a null node, it will return QString::null.
.SH "void QDomCharacterData::deleteData ( unsigned long offset, unsigned long count )\fC [virtual]\fR"
Deletes a substring of length \fIcount\fR from position \fIoffset\fR.
.SH "void QDomCharacterData::insertData ( unsigned long offset, const QString & arg )\fC [virtual]\fR"
Inserts the string \fIarg\fR into the stored string at position \fIoffset\fR.
.SH "bool QDomCharacterData::isCharacterData () const\fC [virtual]\fR"
Returns TRUE.
.PP
Reimplemented from QDomNode.
.SH "uint QDomCharacterData::length () const\fC [virtual]\fR"
Returns the length of the stored string.
.SH "QDomNode::NodeType QDomCharacterData::nodeType () const\fC [virtual]\fR"
Returns the type of node this object refers to (i.e. TextNode, CDATASectionNode, CommentNode or CharacterDataNode). For a null node CharacterDataNode is returned.
.PP
Reimplemented from QDomNode.
.PP
Reimplemented in QDomText and QDomComment.
.SH "QDomCharacterData & QDomCharacterData::operator= ( const QDomCharacterData & x )"
Assigns \fIx\fR to this character data.
.PP
The data of the copy is shared (shallow copy): modifying one node will also change the other. If you want to make a deep copy, use cloneNode().
.SH "void QDomCharacterData::replaceData ( unsigned long offset, unsigned long count, const QString & arg )\fC [virtual]\fR"
Replaces the substring of length \fIcount\fR starting at position \fIoffset\fR with the string \fIarg\fR.
.SH "void QDomCharacterData::setData ( const QString & v )\fC [virtual]\fR"
Sets this object's string to \fIv\fR.
.SH "QString QDomCharacterData::substringData ( unsigned long offset, unsigned long count )\fC [virtual]\fR"
Returns the substring of length \fIcount\fR from position \fIoffset\fR.

.SH "SEE ALSO"
.BR http://doc.trolltech.com/qdomcharacterdata.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com.  See the
license file included in the distribution for a complete license
statement.
.SH AUTHOR
Generated automatically from the source code.
.SH BUGS
If you find a bug in Qt, please report it as described in
.BR http://doc.trolltech.com/bughowto.html .
Good bug reports help us to help you. Thank you.
.P
The definitive Qt documentation is provided in HTML format; it is
located at $QTDIR/doc/html and can be read using Qt Assistant or with
a web browser. This man page is provided as a convenience for those
users who prefer man pages, although this format is not officially
supported by Trolltech. 
.P
If you find errors in this manual page, please report them to
.BR qt-bugs@trolltech.com .
Please include the name of the manual page (tqdomcharacterdata.3qt) and the Qt
version (3.3.8).