summaryrefslogtreecommitdiffabout
path: root/kabc/vcard/Enum.cpp
Side-by-side diff
Diffstat (limited to 'kabc/vcard/Enum.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--kabc/vcard/Enum.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kabc/vcard/Enum.cpp b/kabc/vcard/Enum.cpp
index cc48b5a..036324c 100644
--- a/kabc/vcard/Enum.cpp
+++ b/kabc/vcard/Enum.cpp
@@ -1,80 +1,80 @@
/*
libvcard - vCard parsing library for vCard version 3.0
Copyright (C) 1998 Rik Hemsley rik@kde.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-#include <qcstring.h>
+#include <q3cstring.h>
#include <ctype.h>
#include <VCardEnum.h>
using namespace VCARD;
// There are 31 possible types, not including extensions.
- const QCString
+ const Q3CString
VCARD::paramNames [] =
{
"NAME",
"PROFILE",
"SOURCE",
"FN",
"N",
"NICKNAME",
"PHOTO",
"BDAY",
"ADR",
"LABEL",
"TEL",
"EMAIL",
"MAILER",
"TZ",
"GEO",
"TITLE",
"ROLE",
"LOGO",
"AGENT",
"ORG",
"CATEGORIES",
"NOTE",
"PRODID",
"REV",
"SORT-STRING",
"SOUND",
"UID",
"URL",
"VERSION",
"CLASS",
"KEY"
};
const ParamType
VCARD::paramTypesTable[] = {
ParamNone, // NAME
ParamNone, // PROFILE
ParamSource, // SOURCE
ParamText, // FN
ParamText, // N
ParamText, // NICKNAME
ParamImage, // PHOTO (inline/refer)
ParamDate, // BDAY ("VALUE = "date-time/date)
ParamAddrText, // ADR (adr-param/text-param)
ParamAddrText, // LABEL (adr-param/text-param)
ParamTel, // TEL
@@ -177,105 +177,105 @@ VCARD::EntityTypeToValueType(EntityType e)
case EntityTelephone: t = ValueTel; break;
//---------------------------------------------------------------//
case EntityKey: t = ValueTextBin; break;
//---------------------------------------------------------------//
case EntityOrganisation: t = ValueOrg; break;
//---------------------------------------------------------------//
case EntityN: t = ValueN; break;
//---------------------------------------------------------------//
case EntityTimeZone: t = ValueUTC; break;
//---------------------------------------------------------------//
case EntityClass: t = ValueClass; break;
//---------------------------------------------------------------//
case EntityGeo: t = ValueGeo; break;
//---------------------------------------------------------------//
case EntitySource:
case EntityURL: t = ValueURI; break;
//---------------------------------------------------------------//
case EntityPhoto:
case EntityLogo: t = ValueImage; break;
//---------------------------------------------------------------//
case EntityBirthday:
case EntityRevision: t = ValueDate; break;
//---------------------------------------------------------------//
case EntityCategories:
case EntityNickname: t = ValueTextList; break;
//---------------------------------------------------------------//
case EntityLabel:
case EntityExtension:
case EntityEmail:
case EntityTitle:
case EntityRole:
case EntityFullName:
case EntityMailer:
case EntityProductID:
case EntityName:
case EntitySortString:
case EntityVersion:
case EntityProfile:
case EntityUID:
case EntityNote:
default: t = ValueText; break;
//---------------------------------------------------------------//
}
return t;
}
- QCString
+ Q3CString
VCARD::EntityTypeToParamName(EntityType e)
{
if ( e > EntityUnknown ) e = EntityUnknown;
return paramNames[ int( e ) ];
}
EntityType
-VCARD::EntityNameToEntityType(const QCString & s)
+VCARD::EntityNameToEntityType(const Q3CString & s)
{
if (s.isEmpty()) return EntityUnknown;
EntityType t(EntityUnknown);
switch (s[0]) {
case 'A':
if (s == "ADR")
t = EntityAddress;
else if (s == "AGENT")
t = EntityAgent;
break;
case 'B':
if (s == "BDAY")
t = EntityBirthday;
break;
case 'C':
if (s == "CATEGORIES")
t = EntityCategories;
else if (s == "CLASS")
t = EntityClass;
break;
case 'E':
if (s == "EMAIL")
t = EntityEmail;
break;
case 'F':
if (s == "FN")
t = EntityFullName;
break;
case 'G':
if (s == "GEO")
t = EntityGeo;
break;
case 'K':
if (s == "KEY")
t = EntityKey;
break;
case 'L':
if (s == "LABEL")