summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqdomattr.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqdomattr.3qt')
-rw-r--r--doc/man/man3/tqdomattr.3qt60
1 files changed, 30 insertions, 30 deletions
diff --git a/doc/man/man3/tqdomattr.3qt b/doc/man/man3/tqdomattr.3qt
index a434bdc7..63b1eca3 100644
--- a/doc/man/man3/tqdomattr.3qt
+++ b/doc/man/man3/tqdomattr.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QDomAttr 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQDomAttr 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.
@@ -7,27 +7,27 @@
.ad l
.nh
.SH NAME
-QDomAttr \- Represents one attribute of a QDomElement
+TQDomAttr \- Represents one attribute of a TQDomElement
.SH SYNOPSIS
All the functions in this class are reentrant when TQt is built with thread support.</p>
.PP
-\fC#include <ntqdom.h>\fR
+\fC#include <tqdom.h>\fR
.PP
-Inherits QDomNode.
+Inherits TQDomNode.
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQDomAttr\fR ()"
+.BI "\fBTQDomAttr\fR ()"
.br
.ti -1c
-.BI "\fBQDomAttr\fR ( const QDomAttr & x )"
+.BI "\fBTQDomAttr\fR ( const TQDomAttr & x )"
.br
.ti -1c
-.BI "QDomAttr & \fBoperator=\fR ( const QDomAttr & x )"
+.BI "TQDomAttr & \fBoperator=\fR ( const TQDomAttr & x )"
.br
.ti -1c
-.BI "\fB~QDomAttr\fR ()"
+.BI "\fB~TQDomAttr\fR ()"
.br
.ti -1c
.BI "virtual TQString \fBname\fR () const"
@@ -36,7 +36,7 @@ Inherits QDomNode.
.BI "virtual bool \fBspecified\fR () const"
.br
.ti -1c
-.BI "virtual QDomElement \fBownerElement\fR () const"
+.BI "virtual TQDomElement \fBownerElement\fR () const"
.br
.ti -1c
.BI "virtual TQString \fBvalue\fR () const"
@@ -45,14 +45,14 @@ Inherits QDomNode.
.BI "virtual void \fBsetValue\fR ( const TQString & v )"
.br
.ti -1c
-.BI "virtual QDomNode::NodeType \fBnodeType\fR () const"
+.BI "virtual TQDomNode::NodeType \fBnodeType\fR () const"
.br
.ti -1c
.BI "virtual bool \fBisAttr\fR () const"
.br
.in -1c
.SH DESCRIPTION
-The QDomAttr class represents one attribute of a QDomElement.
+The TQDomAttr class represents one attribute of a TQDomElement.
.PP
For example, the following piece of XML produces an element with no children, but two attributes:
.PP
@@ -66,17 +66,17 @@ You can access the attributes of an element with code like this:
.PP
.nf
.br
- QDomElement e = //...
+ TQDomElement e = //...
.br
//...
.br
- QDomAttr a = e.attributeNode( "href" );
+ TQDomAttr a = e.attributeNode( "href" );
.br
cout << a.value() << endl; // prints "http://www.trolltech.com"
.br
a.setValue( "http://doc.trolltech.com" ); // change the node's attribute
.br
- QDomAttr a2 = e.attributeNode( "href" );
+ TQDomAttr a2 = e.attributeNode( "href" );
.br
cout << a2.value() << endl; // prints "http://doc.trolltech.com"
.br
@@ -84,51 +84,51 @@ You can access the attributes of an element with code like this:
.PP
This example also shows that changing an attribute received from an element changes the attribute of the element. If you do not want to change the value of the element's attribute you must use cloneNode() to get an independent copy of the attribute.
.PP
-QDomAttr can return the name() and value() of an attribute. An attribute's value is set with setValue(). If specified() returns TRUE the value was either set in the document or set with setValue(); otherwise the value hasn't been set. The node this attribute is attached to (if any) is returned by ownerElement().
+TQDomAttr can return the name() and value() of an attribute. An attribute's value is set with setValue(). If specified() returns TRUE the value was either set in the document or set with setValue(); otherwise the value hasn't been set. The node this attribute is attached to (if any) is returned by ownerElement().
.PP
-For further information about the Document Object Model see http://www.w3.org/TR/REC-DOM-Level-1/ and http://www.w3.org/TR/DOM-Level-2-Core/. For a more general introduction of the DOM implementation see the QDomDocument documentation.
+For further information about the Document Object Model see http://www.w3.org/TR/REC-DOM-Level-1/ and http://www.w3.org/TR/DOM-Level-2-Core/. For a more general introduction of the DOM implementation see the TQDomDocument documentation.
.PP
See also XML.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QDomAttr::QDomAttr ()"
+.SH "TQDomAttr::TQDomAttr ()"
Constructs an empty attribute.
-.SH "QDomAttr::QDomAttr ( const QDomAttr & x )"
+.SH "TQDomAttr::TQDomAttr ( const TQDomAttr & 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 "QDomAttr::~QDomAttr ()"
+.SH "TQDomAttr::~TQDomAttr ()"
Destroys the object and frees its resources.
-.SH "bool QDomAttr::isAttr () const\fC [virtual]\fR"
+.SH "bool TQDomAttr::isAttr () const\fC [virtual]\fR"
Returns TRUE.
.PP
-Reimplemented from QDomNode.
-.SH "TQString QDomAttr::name () const\fC [virtual]\fR"
+Reimplemented from TQDomNode.
+.SH "TQString TQDomAttr::name () const\fC [virtual]\fR"
Returns the attribute's name.
-.SH "QDomNode::NodeType QDomAttr::nodeType () const\fC [virtual]\fR"
+.SH "TQDomNode::NodeType TQDomAttr::nodeType () const\fC [virtual]\fR"
Returns AttributeNode.
.PP
-Reimplemented from QDomNode.
-.SH "QDomAttr & QDomAttr::operator= ( const QDomAttr & x )"
+Reimplemented from TQDomNode.
+.SH "TQDomAttr & TQDomAttr::operator= ( const TQDomAttr & x )"
Assigns \fIx\fR to this DOM attribute.
.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 "QDomElement QDomAttr::ownerElement () const\fC [virtual]\fR"
+.SH "TQDomElement TQDomAttr::ownerElement () const\fC [virtual]\fR"
Returns the element node this attribute is attached to or a null node if this attribute is not attached to any element.
-.SH "void QDomAttr::setValue ( const TQString & v )\fC [virtual]\fR"
+.SH "void TQDomAttr::setValue ( const TQString & v )\fC [virtual]\fR"
Sets the attribute's value to \fIv\fR.
.PP
See also value().
-.SH "bool QDomAttr::specified () const\fC [virtual]\fR"
+.SH "bool TQDomAttr::specified () const\fC [virtual]\fR"
Returns TRUE if the attribute has either been expicitly specified in the XML document or was set by the user with setValue(). Returns FALSE if the value hasn't been specified or set.
.PP
See also setValue().
-.SH "TQString QDomAttr::value () const\fC [virtual]\fR"
+.SH "TQString TQDomAttr::value () const\fC [virtual]\fR"
Returns the value of the attribute or TQString::null if the attribute has not been specified.
.PP
See also specified() and setValue().
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/qdomattr.html
+.BR http://doc.trolltech.com/tqdomattr.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the