From 67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 13 Apr 2011 00:46:47 +0000 Subject: Initial conversion of kdepim to TQt This will probably require some tweaking before it will build under Qt4, however Qt3 builds are OK. Any alterations this commit makes to kdepim behaviour under Qt3 are unintentional and should be fixed. git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1227832 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- mimelib/doc/address.html | 8 ++++---- mimelib/doc/addrlist.html | 8 ++++---- mimelib/doc/body.html | 26 ++++++++++++------------ mimelib/doc/bodypart.html | 10 +++++----- mimelib/doc/datetime.html | 6 +++--- mimelib/doc/disptype.html | 10 +++++----- mimelib/doc/entity.html | 14 ++++++------- mimelib/doc/field.html | 24 +++++++++++------------ mimelib/doc/fieldbdy.html | 16 +++++++-------- mimelib/doc/group.html | 14 ++++++------- mimelib/doc/headers.html | 18 ++++++++--------- mimelib/doc/mailbox.html | 14 ++++++------- mimelib/doc/mboxlist.html | 8 ++++---- mimelib/doc/mechansm.html | 10 +++++----- mimelib/doc/mediatyp.html | 12 ++++++------ mimelib/doc/message.html | 14 ++++++------- mimelib/doc/msgcmp.html | 50 +++++++++++++++++++++++------------------------ mimelib/doc/msgid.html | 14 ++++++------- mimelib/doc/nntp.html | 2 +- mimelib/doc/param.html | 8 ++++---- mimelib/doc/pop.html | 2 +- mimelib/doc/string.html | 34 ++++++++++++++++---------------- mimelib/doc/text.html | 6 +++--- 23 files changed, 164 insertions(+), 164 deletions(-) (limited to 'mimelib/doc') diff --git a/mimelib/doc/address.html b/mimelib/doc/address.html index c85046aa..f7eb71fa 100644 --- a/mimelib/doc/address.html +++ b/mimelib/doc/address.html @@ -128,16 +128,16 @@ DwAddress(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwAddress object's string representation to the empty string -and sets its parent to NULL. +and sets its tqparent to NULL.

The second constructor is the copy constructor, which copies the string -representation and all attributes from aAddress. The parent +representation and all attributes from aAddress. The tqparent of the new DwAddress object is set to NULL.

The third constructor copies aStr to the DwAddress object's string representation and sets -aParent as its parent. The virtual member function +aParent as its tqparent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -147,7 +147,7 @@ a class derived from DwField. (const DwAddress& aAddr)

This is the assignment operator, which performs a deep copy of -aAddr. The parent node of the DwAddress object +aAddr. The tqparent node of the DwAddress object is not changed.

diff --git a/mimelib/doc/addrlist.html b/mimelib/doc/addrlist.html index 80845fc0..5a5a413f 100644 --- a/mimelib/doc/addrlist.html +++ b/mimelib/doc/addrlist.html @@ -69,16 +69,16 @@ DwAddressList(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwAddressList object's string representation to the empty -string and sets its parent to NULL. +string and sets its tqparent to NULL.

The second constructor is the copy constructor, which copies the string representation and all DwAddress objects from -aList. The parent of the new +aList. The tqparent of the new DwAddressList object is set to NULL.

The third constructor copies aStr to the DwAddressList object's string representation and sets -aParent as its parent. The virtual member function +aParent as its tqparent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -88,7 +88,7 @@ a class derived from DwField. = (const DwAddressList& aList)

This is the assignment operator, which performs a deep copy of -aList. The parent node of the +aList. The tqparent node of the DwAddressList object is not changed.

virtual void Parse() diff --git a/mimelib/doc/body.html b/mimelib/doc/body.html index c9856e24..06a3e822 100644 --- a/mimelib/doc/body.html +++ b/mimelib/doc/body.html @@ -65,9 +65,9 @@ protected: A body is always part of an entity, which could be either a message or a body part. An entity has a collection of header fields and a body. If the content type of a body is ``multipart,'' then -the body tqcontains one or more body parts. If the content type is ``message,'' -then the body tqcontains an encapsulated message. In all content types, the -body tqcontains a string of characters. +the body contains one or more body parts. If the content type is ``message,'' +then the body contains an encapsulated message. In all content types, the +body contains a string of characters.

In MIME++, a DwBody object is contained in a DwEntity object. The @@ -79,15 +79,15 @@ or a single contained way to determine the type of DwBody is to access the Content-Type header field from the DwHeaders object of the -DwEntity that tqcontains it. For this reason, a +DwEntity that contains it. For this reason, a DwBody should always be part of a DwEntity.

In the tree (broken-down) representation of a message, a DwBody object can be an intermediate node, having both a -parent node and one or more child nodes, or a leaf node, having a parent -but no child nodes. In either case, the parent node is the -DwEntity object that tqcontains it. If it is an intermediate +tqparent node and one or more child nodes, or a leaf node, having a tqparent +but no child nodes. In either case, the tqparent node is the +DwEntity object that contains it. If it is an intermediate node, it must be of type multipart with DwBodyPart objects as child nodes, or of type message with a single DwMessage object as its child node. @@ -117,15 +117,15 @@ DwBody(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwBody object's string representation to the empty string -and sets its parent to NULL. +and sets its tqparent to NULL.

The second constructor is the copy constructor, which performs a deep copy -of aBody. The parent of the new DwBody object +of aBody. The tqparent of the new DwBody object is set to NULL.

The third constructor copies aStr to the DwBody object's string representation and sets -aParent as its parent. The virtual member function +aParent as its tqparent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -135,7 +135,7 @@ a class derived from DwEntity. DwBody& aBody)

This is the assignment operator, which performs a deep copy of -aBody. The parent node of the DwBody object +aBody. The tqparent node of the DwBody object is not changed.

virtual void Parse() @@ -150,7 +150,7 @@ collection of DwBodyPart objects. For a message DwBody, the parse method does nothing. This member function calls the Parse() member function of any objects it creates.

-Note: If the DwBody object has no parent node -- that is, +Note: If the DwBody object has no tqparent node -- that is, it is not contained by a DwEntity object -- then the parse method does nothing, since it is unable to determine the type of body.

@@ -169,7 +169,7 @@ method creates or updates the string representation from the broken-down representation. Only DwBody objects with content type of multipart or message require assembling. In either case, the DwBody object must be able to find the headers of the message -or body part that tqcontains it. Therefore, if the DwBody object +or body part that contains it. Therefore, if the DwBody object is not the child of a DwEntity (i.e., DwMessage or DwBodyPart) object, the DwBody cannot be assembled because the content type cannot diff --git a/mimelib/doc/bodypart.html b/mimelib/doc/bodypart.html index c74f716f..4021b4de 100644 --- a/mimelib/doc/bodypart.html +++ b/mimelib/doc/bodypart.html @@ -66,15 +66,15 @@ DwBodyPart(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwBodyPart object's string representation to the empty string -and sets its parent to NULL. +and sets its tqparent to NULL.

The second constructor is the copy constructor, which performs a deep copy -of aPart. The parent of the new +of aPart. The tqparent of the new DwBodyPart object is set to NULL.

The third constructor copies aStr to the DwBodyPart object's string representation and sets -aParent as its parent. The virtual member function +aParent as its tqparent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -84,7 +84,7 @@ a class derived from DwBody. (const DwBodyPart& aPart)

This is the assignment operator, which performs a deep copy of -aPart. The parent node of the DwBodyPart +aPart. The tqparent node of the DwBodyPart object is not changed.

virtual DwMessageComponent* @@ -120,7 +120,7 @@ This advanced function sets aPart as the next DwBodyPart object following this DwBodyPart in the list of DwBodyPart objects contained in a multipart DwBody. Since -DwBody tqcontains a member function for adding a +DwBody contains a member function for adding a DwBodyPart object to its list, this function should be avoided for most applications.

diff --git a/mimelib/doc/datetime.html b/mimelib/doc/datetime.html index 0516d929..8461b260 100644 --- a/mimelib/doc/datetime.html +++ b/mimelib/doc/datetime.html @@ -94,12 +94,12 @@ DwDateTime(const DwString& aStr, DwMessageComponent* aParent=0) The first constructor is the default constructor, which assigns the current date and time as reported by the operating system.

-The second constructor is the copy constructor. The parent of the new +The second constructor is the copy constructor. The tqparent of the new DwDateTime object is set to NULL.

The third constructor sets aStr as the DwDateTime object's string representation and sets -aParent as its parent. The virtual member function +aParent as its tqparent. The virtual member function Parse() should be called after this constructor to extract the date and time information from the string representation. Unless it is NULL, aParent should point to an object of @@ -130,7 +130,7 @@ This virtual function, inherited from DwMessageComponent, executes the assemble method for DwDateTime objects. It should be called whenever one of the object's attributes is changed in order to assemble the string representation from its broken-down representation. It -will be called automatically for this object by the parent object's +will be called automatically for this object by the tqparent object's Assemble() member function if the is-modified flag is set.

This function clears the is-modified flag. diff --git a/mimelib/doc/disptype.html b/mimelib/doc/disptype.html index c64b1dc1..9d6c71a5 100644 --- a/mimelib/doc/disptype.html +++ b/mimelib/doc/disptype.html @@ -90,15 +90,15 @@ DwDispositionType(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwDispositionType object's string representation to the empty -string and sets its parent to NULL. +string and sets its tqparent to NULL.

The second constructor is the copy constructor, which performs deep copy -of aDispType. The parent of the new +of aDispType. The tqparent of the new DwDispositionType object is set to NULL.

The third constructor copies aStr to the DwDispositionType object's string representation and sets -aParent as its parent. The virtual member function +aParent as its tqparent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -108,7 +108,7 @@ a class derived from DwField. = (const DwDispositionType& aDispType)

This is the assignment operator, which performs a deep copy of -aDispType. The parent node of the +aDispType. The tqparent node of the DwDipositionType object is not changed.

virtual void Parse() @@ -127,7 +127,7 @@ This virtual function, inherited from DwMessageComponent, executes the assemble method for DwDispositionType objects. It should be called whenever one of the object's attributes is changed in order to assemble the string representation from its broken-down representation. -It will be called automatically for this object by the parent object's +It will be called automatically for this object by the tqparent object's Assemble() member function if the is-modified flag is set.

This function clears the is-modified flag. diff --git a/mimelib/doc/entity.html b/mimelib/doc/entity.html index 9a2d0018..c2f8d316 100644 --- a/mimelib/doc/entity.html +++ b/mimelib/doc/entity.html @@ -47,15 +47,15 @@ protected: RFC-2045 defines an entity as either a message or a body part, both of which have a collection of headers and a body. In MIME++, an entity is represented by the class DwEntity, which -tqcontains both a DwHeaders object +contains both a DwHeaders object and a DwBody object.

In the tree (broken-down) representation of message, a DwEntity object may be either a root node, having child nodes -but no parent node, or an intermediate node, having both a parent node and +but no tqparent node, or an intermediate node, having both a tqparent node and child nodes. A DwEntity object that is a root node must also be a DwMessage object. If a -DwEntity object is an intermediate node, its parent must +DwEntity object is an intermediate node, its tqparent must be a DwBody object. The child nodes of a DwEntity object are the DwHeaders and DwBody objects it tqcontains. @@ -80,15 +80,15 @@ DwEntity(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwEntity object's string representation to the empty string -and sets its parent to NULL. +and sets its tqparent to NULL.

The second constructor is the copy constructor, which performs a deep copy -of aEntity. The parent of the new +of aEntity. The tqparent of the new DwEntity object is set to NULL.

The third constructor copies aStr to the DwEntity object's string representation and sets -aParent as its parent. The virtual member function +aParent as its tqparent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -98,7 +98,7 @@ a class derived from DwBody. (const DwEntity& aEntity)

This is the assignment operator, which performs a deep copy of -aEntity. The parent node of the DwEntity +aEntity. The tqparent node of the DwEntity object is not changed.

virtual void Parse() diff --git a/mimelib/doc/field.html b/mimelib/doc/field.html index 1a4a74b9..68d4a9ed 100644 --- a/mimelib/doc/field.html +++ b/mimelib/doc/field.html @@ -65,16 +65,16 @@ protected:

DwField represents a header field as described in RFC-822. -According to RFC-822, a field tqcontains a field name and a field body. In -MIME++, a DwField tqcontains three elements: a -DwString that tqcontains its field -name, a DwString that tqcontains its field body, and a +According to RFC-822, a field contains a field name and a field body. In +MIME++, a DwField contains three elements: a +DwString that contains its field +name, a DwString that contains its field body, and a DwFieldBody object that tqcontains a broken-down (that is, parsed) version of its field body.

In the tree (broken-down) representation of message, a -DwField object is always an intermediate node, having a parent -node and a single child node. The parent node is the +DwField object is always an intermediate node, having a tqparent +node and a single child node. The tqparent node is the DwHeaders object that tqcontains it. The child node is the DwFieldBody object it tqcontains.

@@ -87,7 +87,7 @@ get and set the DwFieldBody object, use

A DwField object can be included in a list of DwField objects; usually this is the list of -DwField objects maintained by its parent +DwField objects maintained by its tqparent DwHeaders object. To get the next DwField object in a list, use the member function Next().

@@ -100,16 +100,16 @@ DwField(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwField object's field name and field body to the empty string, -set its parent to NULL, and sets its +set its tqparent to NULL, and sets its DwFieldBody object to NULL.

The second constructor is the copy constructor, which performs a deep copy -of aField. The parent of the new DwField +of aField. The tqparent of the new DwField object is set to NULL.

The third constructor copies aStr to the DwField object's string representation and sets -aParent as its parent. The virtual member function +aParent as its tqparent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -119,7 +119,7 @@ a class derived from DwHeaders. (const DwField& aField)

This is the assignment operator, which performs a deep copy of -aField. The parent node of the DwField object +aField. The tqparent node of the DwField object is not changed.

virtual void Parse() @@ -212,7 +212,7 @@ aField)

This advanced function sets aField as the next field following this field in the list of fields contained in the headers. Since -DwHeaders tqcontains member functions for adding +DwHeaders contains member functions for adding DwField objects to its list, this function should be avoided for most applications.

diff --git a/mimelib/doc/fieldbdy.html b/mimelib/doc/fieldbdy.html index 47b9a6ac..1da30ab5 100644 --- a/mimelib/doc/fieldbdy.html +++ b/mimelib/doc/fieldbdy.html @@ -50,10 +50,10 @@ grammar specified by RFC-822. It is an abstract base class that defines the interface common to all structured field bodies.

In the tree (broken-down) representation of a message, a -DwFieldBody object may be either a leaf node, having a parent -but no child nodes, or an intermediate node, having a parent and one or more -child nodes. The parent node is the -DwField object that tqcontains it. +DwFieldBody object may be either a leaf node, having a tqparent +but no child nodes, or an intermediate node, having a tqparent and one or more +child nodes. The tqparent node is the +DwField object that contains it. Child nodes, if present, depend on the particular subclass of DwFieldBody that is instantiated. A DwAddressList object, for example, has @@ -80,15 +80,15 @@ DwFieldBody(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwFieldBody object's string representation to the empty string -and sets its parent to NULL. +and sets its tqparent to NULL.

The second constructor is the copy constructor, which performs a deep copy -of aFieldBody. The parent of the new +of aFieldBody. The tqparent of the new DwFieldBody object is set to NULL.

The third constructor copies aStr to the DwFieldBody object's string representation and sets -aParent as its parent. The virtual member function +aParent as its tqparent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -98,7 +98,7 @@ a class derived from DwField. (const DwFieldBody& aFieldBody)

This is the assignment operator, which performs a deep copy of -aFieldBody. The parent node of the +aFieldBody. The tqparent node of the DwFieldBody object is not changed.

void SetOffset(int aOffset) diff --git a/mimelib/doc/group.html b/mimelib/doc/group.html index 683ff3a9..27c8397e 100644 --- a/mimelib/doc/group.html +++ b/mimelib/doc/group.html @@ -51,15 +51,15 @@ protected:

DwGroup represents a group as described in RFC-822. -A group tqcontains a group name and a (possibly empty) list of -mailboxes. In MIME++, a DwGroup object tqcontains a +A group contains a group name and a (possibly empty) list of +mailboxes. In MIME++, a DwGroup object contains a string for the group name and a DwMailboxList object for the list of mailboxes.

In the tree (broken-down) representation of message, a DwGroup object may be only an intermediate node, having both -a parent and a single child node. Its parent node must be a +a tqparent and a single child node. Its tqparent node must be a DwField or a DwAddressList. Its child is a DwMailboxList. @@ -79,15 +79,15 @@ DwGroup(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwGroup object's string representation to the empty string -and sets its parent to NULL. +and sets its tqparent to NULL.

The second constructor is the copy constructor, which performs a deep copy -of aGroup. The parent of the new DwGroup +of aGroup. The tqparent of the new DwGroup object is set to NULL.

The third constructor copies aStr to the DwGroup object's string representation and sets -aParent as its parent. The virtual member function +aParent as its tqparent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -98,7 +98,7 @@ a class derived from DwField or (const DwGroup& aGroup)

This is the assignment operator, which performs a deep copy of -aGroup. The parent node of the DwGroup object +aGroup. The tqparent node of the DwGroup object is not changed.

virtual void Parse() diff --git a/mimelib/doc/headers.html b/mimelib/doc/headers.html index 35519c39..97b063ad 100644 --- a/mimelib/doc/headers.html +++ b/mimelib/doc/headers.html @@ -153,9 +153,9 @@ or body part), as described in RFC-822 and RFC-2045. A the individual header fields.

In the tree (broken-down) representation of a message, a -DwHeaders object is an intermediate node, having both a parent -node and several child nodes. The parent node is the -DwEntity object that tqcontains it. +DwHeaders object is an intermediate node, having both a tqparent +node and several child nodes. The tqparent node is the +DwEntity object that contains it. The child nodes are the DwField objects in the list it manages. (See the man page for DwMessageComponent for a discussion @@ -208,15 +208,15 @@ DwHeaders(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwHeaders object's string representation to the empty string -and sets its parent to NULL. +and sets its tqparent to NULL.

The second constructor is the copy constructor, which performs a deep copy -of aHeaders. The parent of the new +of aHeaders. The tqparent of the new DwHeaders object is set to NULL.

The third constructor copies aStr to the DwHeaders object's string representation and sets -aParent as its parent. The virtual member function +aParent as its tqparent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -226,7 +226,7 @@ a class derived from DwEntity. (const DwHeaders& aHeaders)

This is the assignment operator, which performs a deep copy of -aHeaders. The parent node of the +aHeaders. The tqparent node of the DwHeaders object is not changed.

virtual void Parse() @@ -416,7 +416,7 @@ function: most applications should use the

Adds a DwField object to the list. If a header field with -the same field name already exists, it is tqreplaced by the new header field. +the same field name already exists, it is replaced by the new header field.

DwHeaders takes responsibility for deleting the added DwField object. @@ -430,7 +430,7 @@ to add header fields.

Adds a DwField object to the list. If a header field with -the same field name already exists, it is not tqreplaced; thus, duplicate +the same field name already exists, it is not replaced; thus, duplicate header fields may occur when using this member function. (This is what you want for some header fields, such as the "Received" header field).

diff --git a/mimelib/doc/mailbox.html b/mimelib/doc/mailbox.html index 72b509cd..4a25dc4e 100644 --- a/mimelib/doc/mailbox.html +++ b/mimelib/doc/mailbox.html @@ -53,7 +53,7 @@ protected:

RFC-822 defines a mailbox as an entity that can be the recipient of a message. A mailbox is more specific than an address, which may be -either a mailbox or a group. An RFC-822 mailbox tqcontains a full name, +either a mailbox or a group. An RFC-822 mailbox contains a full name, a local-part, an optional route, and a domain. For example, in the mailbox

@@ -70,8 +70,8 @@ fact that a mailbox is also an address. A DwMailbox tqcontains strings representing the full name, local-part, route, and domain of a mailbox.

In the tree (broken-down) representation of message, a -DwMailbox object may be only a leaf node, having a parent -but no child nodes. Its parent node must be a +DwMailbox object may be only a leaf node, having a tqparent +but no child nodes. Its tqparent node must be a DwField, a DwAddressList, or a DwMailboxList object. @@ -94,15 +94,15 @@ DwMailbox(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwMailbox object's string representation to the empty string -and sets its parent to NULL. +and sets its tqparent to NULL.

The second constructor is the copy constructor, which performs a deep copy -of aMailbox. The parent of the new +of aMailbox. The tqparent of the new DwMailbox is set to NULL.

The third constructor copies aStr to the DwMailbox object's string representation and sets -aParent as its parent. The virtual member function +aParent as its tqparent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -112,7 +112,7 @@ a class derived from DwField. (const DwMailbox& aMailbox)

This is the assignment operator, which performs a deep copy of -aMailbox. The parent node of the +aMailbox. The tqparent node of the DwMailbox object is not changed.

virtual void Parse() diff --git a/mimelib/doc/mboxlist.html b/mimelib/doc/mboxlist.html index 541eae28..e68b41e5 100644 --- a/mimelib/doc/mboxlist.html +++ b/mimelib/doc/mboxlist.html @@ -71,16 +71,16 @@ DwMailboxList(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwMailboxList object's string representation to the empty -string and sets its parent to NULL. +string and sets its tqparent to NULL.

The second constructor is the copy constructor, which copies the string representation and all DwMailbox objects from -aList. The parent of the new +aList. The tqparent of the new DwMailboxList object is set to NULL.

The third constructor copies aStr to the DwMailboxList object's string representation and sets -aParent as its parent. The virtual member function +aParent as its tqparent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -90,7 +90,7 @@ a class derived from DwField. = (const DwMailboxList& aList)

This is the assignment operator, which performs a deep copy of -aList. The parent node of the +aList. The tqparent node of the DwMailboxList object is not changed.

virtual void Parse() diff --git a/mimelib/doc/mechansm.html b/mimelib/doc/mechansm.html index 9880b5fa..9e5f525f 100644 --- a/mimelib/doc/mechansm.html +++ b/mimelib/doc/mechansm.html @@ -59,15 +59,15 @@ DwMechanism(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwMechanism object's string representation to the empty string -and sets its parent to NULL. +and sets its tqparent to NULL.

The second constructor is the copy constructor, which copies the string -representation from aCte. The parent of the new +representation from aCte. The tqparent of the new DwMechanism object is set to NULL.

The third constructor copies aStr to the DwMechanism object's string representation and sets -aParent as its parent. The virtual member function +aParent as its tqparent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -77,7 +77,7 @@ a class derived from DwField. (const DwMechanism& aCte)

This is the assignment operator, which performs a deep copy of -aCte. The parent node of the DwMechanism +aCte. The tqparent node of the DwMechanism object is not changed.

virtual void Parse() @@ -96,7 +96,7 @@ This virtual function, inherited from DwMessageComponent, executes the assemble method for DwMechanism objects. It should be called whenever one of the object's attributes is changed in order to assemble the string representation. It will be called automatically for -this object by the parent object's Assemble() member function +this object by the tqparent object's Assemble() member function if the is-modified flag is set.

This function clears the is-modified flag. diff --git a/mimelib/doc/mediatyp.html b/mimelib/doc/mediatyp.html index 83e5c127..e603a269 100644 --- a/mimelib/doc/mediatyp.html +++ b/mimelib/doc/mediatyp.html @@ -84,7 +84,7 @@ type model.

DwMediaType has member functions that allow you to set or get the type and subtype as either enumerated values or as strings. It also -tqcontains a list of +contains a list of DwParameter objects that represent the parameters of the field body. You can use convenience functions to directly access the boundary parameter of a multipart media type, or to access the @@ -107,15 +107,15 @@ DwMediaType(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwMediaType object's string representation to the empty string -and sets its parent to NULL. +and sets its tqparent to NULL.

The second constructor is the copy constructor, which performs deep copy -of aMediaType. The parent of the new +of aMediaType. The tqparent of the new DwMediaType object is set to NULL.

The third constructor copies aStr to the DwMediaType object's string representation and sets -aParent as its parent. The virtual member function +aParent as its tqparent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -125,7 +125,7 @@ a class derived from DwField. (const DwMediaType& aMediaType)

This is the assignment operator, which performs a deep copy of -aMediaType. The parent node of the +aMediaType. The tqparent node of the DwMediaType object is not changed.

virtual void Parse() @@ -144,7 +144,7 @@ This virtual function, inherited from DwMessageComponent, executes the assemble method for DwMediaType objects. It should be called whenever one of the object's attributes is changed in order to assemble the string representation from its broken-down representation. -It will be called automatically for this object by the parent object's +It will be called automatically for this object by the tqparent object's Assemble() member function if the is-modified flag is set.

This function clears the is-modified flag. diff --git a/mimelib/doc/message.html b/mimelib/doc/message.html index 193236f8..1a3892f7 100644 --- a/mimelib/doc/message.html +++ b/mimelib/doc/message.html @@ -40,7 +40,7 @@ protected:

DwMessage represents an RFC-822/MIME message.

-A message tqcontains both a collection of header fields and a +A message contains both a collection of header fields and a body. In the terminology of RFC-2045, the general term for the headers-body combination is entity. In MIME++, DwMessage is a direct subclass of @@ -50,10 +50,10 @@ both a DwHeaders object and a

In the tree (broken-down) representation of message, a DwMessage object is almost always a root node, having child -nodes but no parent node. The child nodes are the +nodes but no tqparent node. The child nodes are the DwHeaders object and the DwBody object it tqcontains. A DwMessage may sometimes be an intermediate node. -In this special case, the parent node is a DwBody object +In this special case, the tqparent node is a DwBody object of type "message/*" and the DwMessage object represents an encapsulated message.

@@ -72,15 +72,15 @@ DwMessage(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwMessage object's string representation to the empty string -and sets its parent to NULL. +and sets its tqparent to NULL.

The second constructor is the copy constructor, which performs a deep copy -of aMessage. The parent of the new +of aMessage. The tqparent of the new DwMessage object is set to NULL.

The third constructor copies aStr to the DwMessage object's string representation and sets -aParent as its parent. The virtual member function +aParent as its tqparent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation.

@@ -88,7 +88,7 @@ in order to parse the string representation. (const DwMessage& aMessage)

This is the assignment operator, which performs a deep copy of -aMessage. The parent node of the +aMessage. The tqparent node of the DwMessage object is not changed.

virtual DwMessageComponent* diff --git a/mimelib/doc/msgcmp.html b/mimelib/doc/msgcmp.html index 2469c371..4eae3993 100644 --- a/mimelib/doc/msgcmp.html +++ b/mimelib/doc/msgcmp.html @@ -130,26 +130,26 @@ These features are the following: SetModified() which forces the is-modified flag to be set.

  • - A parent. Most message components are part of another component. A collection + A tqparent. Most message components are part of another component. A collection of headers is part of a message or body part, a header field is part of a collection of headers, a field-body is part of a header field, and so on. - The parent of a component is the component that tqcontains it. This tree structure - is important, since a component's parent must be parsed before the component + The tqparent of a component is the component that contains it. This tree structure + is important, since a component's tqparent must be parsed before the component can be. Also, a component's string representation must be assembled before - its parent's. To maintain consistency in the tree, whenever a component's - is-modified flag is set, the component notifies its parent to also set its + its tqparent's. To maintain consistency in the tree, whenever a component's + is-modified flag is set, the component notifies its tqparent to also set its is-modified flag. In this way, an is-modified flag set anywhere in the tree always propagates up to the root component.

  • - Children. The preceding discussion about a component's parent is relevant - to an understanding of a component's children. A component's parse method - calls the parse methods of its children after it has executed its own parse - method (and, in some cases, created all of its children). Also, a component - typically calls the assemble method of its children before it executes its + Children. The preceding discussion about a component's tqparent is relevant + to an understanding of a component's tqchildren. A component's parse method + calls the parse methods of its tqchildren after it has executed its own parse + method (and, in some cases, created all of its tqchildren). Also, a component + typically calls the assemble method of its tqchildren before it executes its own. A component's child may request that the component set its is-modified - flag. DwMessageComponent does not deal directly with children. - Derived classes bear all the responsibility for handling their children. + flag. DwMessageComponent does not deal directly with tqchildren. + Derived classes bear all the responsibility for handling their tqchildren.

    Public Member Functions @@ -163,18 +163,18 @@ DwMessageComponent(const DwString& aStr, DwMessageComponent* aParent=0)

    The first constructor is the default constructor, which sets the DwMessageComponent object's string representation to the -empty string and sets its parent to NULL. +empty string and sets its tqparent to NULL.

    The second constructor is the copy constructor, which performs a deep copy -of aCmp. The parent of the new +of aCmp. The tqparent of the new DwMessageComponent object is set to NULL.

    The third constructor copies aStr to the new DwMessageComponent object's string representation and sets -aParent as its parent. In typical cases, the virtual member +aParent as its tqparent. In typical cases, the virtual member function Parse() should be called immediately after this constructor to parse the new DwMessageComponent object and -all of its children into their broken-down representations. +all of its tqchildren into their broken-down representations.

    const DwMessageComponent& operator = (const DwMessageComponent& aCmp) @@ -189,11 +189,11 @@ A pure virtual function which provides an interface to the parse method. The parse method, implemented in derived classes, is responsible for extracting the broken-down representation from the string representation. In some derived classes, such as DwHeaders, the parse method is also responsible -for creating the children of the object. (In the case of -DwHeaders, the children created are the +for creating the tqchildren of the object. (In the case of +DwHeaders, the tqchildren created are the DwField objects that represent the fields contained in the headers.) The Parse() function always calls -the Parse() function of all of its children. +the Parse() function of all of its tqchildren.

    virtual void Assemble() = 0 @@ -203,11 +203,11 @@ The assemble method, implemented in derived classes, is responsible for creating the string representation from the broken-down representation. In other words, the assemble method is the opposite of the parse method. Before assembling its string representation, the assemble method calls the assemble method -of each of its children. In this way, the entire tree structure that represents +of each of its tqchildren. In this way, the entire tree structure that represents a message may be traversed. If the is-modifed flag for a DwMessageComponent is cleared, the Assemble() function will return immediately without calling -the Assemble() function of any of its children. +the Assemble() function of any of its tqchildren.

    virtual DwMessageComponent* Clone() const = 0 @@ -224,7 +224,7 @@ Sets the object's string representation. aCstr must be NUL-terminated. This member function does not invoke the parse method. Typically, the virtual member function Parse() should be called immediately after this member function to parse the -DwMessageComponent object and all of its children into their +DwMessageComponent object and all of its tqchildren into their broken-down representations. See also DwMessageComponent::Parse()

    @@ -241,14 +241,14 @@ string representation are consistent. See also DwMessageComponent* Parent()

    -Returns the DwMessageComponent object that is the parent +Returns the DwMessageComponent object that is the tqparent of this object.

    void SetParent(DwMessageComponent* aParent)

    Sets aParent as the DwMessageComponent object's -parent. +tqparent.

    DwBool IsModified() const @@ -260,7 +260,7 @@ Returns 1 if the is-modified flag is set for this

    Sets the is-modified (dirty) flag for this -DwMessageComponent object and notifies the object's parent +DwMessageComponent object and notifies the object's tqparent to also set its is-modified flag.

    int ClassId() const diff --git a/mimelib/doc/msgid.html b/mimelib/doc/msgid.html index da64d38a..0f5b7c36 100644 --- a/mimelib/doc/msgid.html +++ b/mimelib/doc/msgid.html @@ -49,12 +49,12 @@ protected:

    DwMsgId represents a msg-id as described in RFC-822. In the BNF grammar in RFC-822, a msg-id has a local-part and a -domain. In MIME++, a DwMsgId tqcontains strings that +domain. In MIME++, a DwMsgId contains strings that contain the local-part and the domain.

    In the tree (broken-down) representation of message, a -DwMsgId object may only be a leaf node, having a parent but -no child nodes. Its parent node must be a +DwMsgId object may only be a leaf node, having a tqparent but +no child nodes. Its tqparent node must be a DwField object.

    DwMsgId has member functions for getting or setting its @@ -71,15 +71,15 @@ DwMsgId(const DwString& aStr, DwMessageComponent* aParent=0)

    The first constructor is the default constructor, which sets the DwMsgId object's string representation to the empty string -and sets its parent to NULL. +and sets its tqparent to NULL.

    The second constructor is the copy constructor, which performs a deep copy -of aMsgId. The parent of the new DwMsgId +of aMsgId. The tqparent of the new DwMsgId object is set to NULL.

    The third constructor copies aStr to the DwMsgId object's string representation and sets -aParent as its parent. The virtual member function +aParent as its tqparent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of a class derived from @@ -89,7 +89,7 @@ in order to parse the string representation. Unless it is NULL, (const DwMsgId& aMsgId)

    This is the assignment operator, which performs a deep copy of -aMsgId. The parent node of the DwMsgId object +aMsgId. The tqparent node of the DwMsgId object is not changed.

    virtual void Parse() diff --git a/mimelib/doc/nntp.html b/mimelib/doc/nntp.html index 75b8b71f..b8cf8030 100644 --- a/mimelib/doc/nntp.html +++ b/mimelib/doc/nntp.html @@ -354,7 +354,7 @@ returns zero.

    int Quit()

    -Sends the NNTP QUIT command and returns the reply code received from the +Sends the NNTP TQUIT command and returns the reply code received from the server. If no response is received, perhaps because of an error, the function returns zero.

    diff --git a/mimelib/doc/param.html b/mimelib/doc/param.html index 786f65bc..3ca10ee8 100644 --- a/mimelib/doc/param.html +++ b/mimelib/doc/param.html @@ -69,15 +69,15 @@ DwParameter(const DwString& aStr, DwMessageComponent* aParent=0)

    The first constructor is the default constructor, which sets the DwParameter object's string representation to the empty string -and sets its parent to NULL. +and sets its tqparent to NULL.

    The second constructor is the copy constructor, which copies the string -representation, attribute, and value from aParam. The parent +representation, attribute, and value from aParam. The tqparent of the new DwParameter object is set to NULL.

    The third constructor copies aStr to the DwParameter object's string representation and sets -aParent as its parent. The virtual member function +aParent as its tqparent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of a class derived from @@ -102,7 +102,7 @@ This virtual function, inherited from DwMessageComponent, executes the assemble method for DwParameter objects. It should be called whenever one of the object's attributes is changed in order to assemble the string representation from its broken-down representation. -It will be called automatically for this object by the parent object's +It will be called automatically for this object by the tqparent object's Assemble() member function if the is-modified flag is set.

    virtual DwMessageComponent* diff --git a/mimelib/doc/pop.html b/mimelib/doc/pop.html index 5bb4ed67..f3cbc1cf 100644 --- a/mimelib/doc/pop.html +++ b/mimelib/doc/pop.html @@ -224,7 +224,7 @@ If no response is received, the function returns zero.

    int Quit()

    -Sends the QUIT command and returns the status code received from the server. +Sends the TQUIT command and returns the status code received from the server. If no response is received, the function returns zero.

    int Stat() diff --git a/mimelib/doc/string.html b/mimelib/doc/string.html index 7c2f4f23..fe16aed4 100644 --- a/mimelib/doc/string.html +++ b/mimelib/doc/string.html @@ -70,14 +70,14 @@ public: void swap(DwString& aStr); const char* c_str() const; const char* data() const; - size_t find(const DwString& aStr, size_t aPos=0) const; - size_t find(const char* aBuf, size_t aPos, size_t aLen) const; - size_t find(const char* aCstr, size_t aPos=0) const; - size_t find(char aChar, size_t aPos=0) const; - size_t rfind(const DwString& aStr, size_t aPos=npos) const; - size_t rfind(const char* aBuf, size_t aPos, size_t aLen) const; - size_t rfind(const char* aCstr, size_t aPos=npos) const; - size_t rfind(char aChar, size_t aPos=npos) const; + size_t tqfind(const DwString& aStr, size_t aPos=0) const; + size_t tqfind(const char* aBuf, size_t aPos, size_t aLen) const; + size_t tqfind(const char* aCstr, size_t aPos=0) const; + size_t tqfind(char aChar, size_t aPos=0) const; + size_t rtqfind(const DwString& aStr, size_t aPos=npos) const; + size_t rtqfind(const char* aBuf, size_t aPos, size_t aLen) const; + size_t rtqfind(const char* aCstr, size_t aPos=npos) const; + size_t rtqfind(char aChar, size_t aPos=npos) const; size_t find_first_of(const DwString& aStr, size_t aPos=0) const; size_t find_first_of(const char* aBuf, size_t aPos, size_t aLen) const; size_t find_first_of(const char* aCstr, size_t aPos=0) const; @@ -441,11 +441,11 @@ The characters in the returned string should not be modified, and should be considered invalid after any call to a non-const member function or another call to c_str().

    - size_t find(const DwString& + size_t tqfind(const DwString& aStr, size_t aPos=0) const
    -size_t find(const char* aBuf, size_t aPos, size_t aLen) const
    -size_t find(const char* aCstr, size_t aPos=0) const
    -size_t find(char aChar, size_t aPos=0) const
    +size_t tqfind(const char* aBuf, size_t aPos, size_t aLen) const
    +size_t tqfind(const char* aCstr, size_t aPos=0) const
    +size_t tqfind(char aChar, size_t aPos=0) const

    Performs a forward search for a sequence of characters in the DwString object. The return value is the position of the @@ -466,11 +466,11 @@ the sequence of characters in the NUL-terminated string The fourth version searches beginning at position aPos for the character aChar.

    - size_t rfind(const DwString& + size_t rtqfind(const DwString& aStr, size_t aPos=npos) const
    -size_t rfind(const char* aBuf, size_t aPos, size_t aLen) const
    -size_t rfind(const char* aCstr, size_t aPos=npos) const
    -size_t rfind(char aChar, size_t aPos=npos) const
    +size_t rtqfind(const char* aBuf, size_t aPos, size_t aLen) const
    +size_t rtqfind(const char* aCstr, size_t aPos=npos) const
    +size_t rtqfind(char aChar, size_t aPos=npos) const

    Performs a reverse search for a sequence of characters in the DwString object. The return value is the position of the @@ -579,7 +579,7 @@ The third version searches for any character not in the NUL-terminated string DwString substr(size_t aPos=0, size_t aLen=npos) const

    -Returns a string that tqcontains at most aLen characters from +Returns a string that contains at most aLen characters from the DwString object beginning at position aPos. The returned substring will not contain more characters than what are available in the superstring DwString object. diff --git a/mimelib/doc/text.html b/mimelib/doc/text.html index 3fc637ca..4a32ce30 100644 --- a/mimelib/doc/text.html +++ b/mimelib/doc/text.html @@ -53,15 +53,15 @@ DwText(const DwString& aStr, DwMessageComponent* aParent=0)

    The first constructor is the default constructor, which sets the DwText object's string representation to the empty string -and sets its parent to NULL. +and sets its tqparent to NULL.

    The second constructor is the copy constructor, which copies the string -representation from aText. The parent of the new +representation from aText. The tqparent of the new DwText object is set to NULL.

    The third constructor copies aStr to the DwText object's string representation and sets -aParent as its parent. The virtual member function +aParent as its tqparent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of a class derived from -- cgit v1.2.3