summaryrefslogtreecommitdiffabout
path: root/libkcal
Side-by-side diff
Diffstat (limited to 'libkcal') (more/less context) (ignore whitespace changes)
-rw-r--r--libkcal/person.cpp8
-rw-r--r--libkcal/person.h1
2 files changed, 8 insertions, 1 deletions
diff --git a/libkcal/person.cpp b/libkcal/person.cpp
index aca28c2..858805d 100644
--- a/libkcal/person.cpp
+++ b/libkcal/person.cpp
@@ -28,49 +28,55 @@ using namespace KCal;
Person::Person( const QString &fullName )
{
int emailPos = fullName.find( '<' );
if ( emailPos < 0 ) {
setEmail(fullName);
} else {
setEmail(fullName.mid( emailPos + 1, fullName.length() - 1 ));
setName(fullName.left( emailPos - 2 ));
}
}
Person::Person( const QString &name, const QString &email )
{
setName(name);
setEmail(email);
}
bool KCal::operator==( const Person& p1, const Person& p2 )
{
return ( p1.name() == p2.name() &&
p1.email() == p2.email() );
}
-
+QString Person::realName() const
+{
+ int ccc = mName.find (',');
+ if ( ccc < 0 )
+ return mName;
+ return mName.mid( ccc+1 ).stripWhiteSpace() + " " + mName.left( ccc ).stripWhiteSpace();
+}
QString Person::fullName() const
{
if( mName.isEmpty() ) {
return mEmail;
} else {
if( mEmail.isEmpty() )
return mName;
else
return mName + " <" + mEmail + ">";
}
}
void Person::setName(const QString &name)
{
mName = name;
}
void Person::setEmail(const QString &email)
{
if (email.left(7).lower() == "mailto:") {
mEmail = email.mid(7);
} else {
mEmail = email;
}
diff --git a/libkcal/person.h b/libkcal/person.h
index c46c5f0..3cec153 100644
--- a/libkcal/person.h
+++ b/libkcal/person.h
@@ -14,37 +14,38 @@
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
#ifndef KCAL_PERSON_H
#define KCAL_PERSON_H
#include <qstring.h>
namespace KCal {
class Person
{
public:
Person() {}
Person( const QString &fullName );
Person( const QString &name, const QString &email );
QString fullName( ) const;
void setName(const QString &);
QString name() const { return mName; }
+ QString realName() const;
void setEmail(const QString &);
QString email() const { return mEmail; }
private:
QString mName;
QString mEmail;
};
bool operator==( const Person& p1, const Person& p2 );
}
#endif