summaryrefslogtreecommitdiffstats
path: root/kopete/libkopete/kopetecontactproperty.cpp
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commitbcb704366cb5e333a626c18c308c7e0448a8e69f (patch)
treef0d6ab7d78ecdd9207cf46536376b44b91a1ca71 /kopete/libkopete/kopetecontactproperty.cpp
downloadtdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.tar.gz
tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/libkopete/kopetecontactproperty.cpp')
-rw-r--r--kopete/libkopete/kopetecontactproperty.cpp204
1 files changed, 204 insertions, 0 deletions
diff --git a/kopete/libkopete/kopetecontactproperty.cpp b/kopete/libkopete/kopetecontactproperty.cpp
new file mode 100644
index 00000000..87e176af
--- /dev/null
+++ b/kopete/libkopete/kopetecontactproperty.cpp
@@ -0,0 +1,204 @@
+/*
+ kopetecontactproperty.cpp
+
+ Kopete::Contact Property class
+
+ Copyright (c) 2004 by Stefan Gehn <metz AT gehn.net>
+ Kopete (c) 2004 by the Kopete developers <kopete-devel@kde.org>
+
+ *************************************************************************
+ * *
+ * This library is free software; you can redistribute it and/or *
+ * modify it under the terms of the GNU Lesser General Public *
+ * License as published by the Free Software Foundation; either *
+ * version 2 of the License, or (at your option) any later version. *
+ * *
+ *************************************************************************
+*/
+
+#include "kopetecontactproperty.h"
+#include <kdebug.h>
+#include "kopeteglobal.h"
+
+namespace Kopete
+{
+
+struct ContactPropertyTmplPrivate
+{
+ QString key;
+ QString label;
+ QString icon;
+ bool persistent;
+ bool richText;
+ bool privateProp;
+ unsigned int refCount;
+};
+
+ContactPropertyTmpl ContactPropertyTmpl::null;
+
+
+ContactPropertyTmpl::ContactPropertyTmpl()
+{
+ d = new ContactPropertyTmplPrivate;
+ d->refCount = 1;
+ d->persistent = false;
+ // Don't register empty template
+}
+
+ContactPropertyTmpl::ContactPropertyTmpl(const QString &key,
+ const QString &label, const QString &icon, bool persistent, bool richText, bool privateProp)
+{
+ ContactPropertyTmpl other = Kopete::Global::Properties::self()->tmpl(key);
+ if(other.isNull())
+ {
+// kdDebug(14000) << k_funcinfo << "Creating new template for key = '" << key << "'" << endl;
+
+ d = new ContactPropertyTmplPrivate;
+ d->refCount = 1;
+ d->key = key;
+ d->label = label;
+ d->icon = icon;
+ d->persistent = persistent;
+ d->richText = richText;
+ d->privateProp = privateProp;
+ Kopete::Global::Properties::self()->registerTemplate(key, (*this));
+ }
+ else
+ {
+// kdDebug(14000) << k_funcinfo << "Using existing template for key = '" << key << "'" << endl;
+ d = other.d;
+ d->refCount++;
+ }
+}
+
+ContactPropertyTmpl::ContactPropertyTmpl(const ContactPropertyTmpl &other)
+{
+ d = other.d;
+ d->refCount++;
+}
+
+ContactPropertyTmpl &ContactPropertyTmpl::operator=(
+ const ContactPropertyTmpl &other)
+{
+ d->refCount--;
+ if(d->refCount == 0)
+ {
+ if (!d->key.isEmpty()) // null property
+ Kopete::Global::Properties::self()->unregisterTemplate(d->key);
+ delete d;
+ }
+
+ d = other.d;
+ d->refCount++;
+
+ return *this;
+}
+
+ContactPropertyTmpl::~ContactPropertyTmpl()
+{
+ d->refCount--;
+ if(d->refCount == 0)
+ {
+ if (!d->key.isEmpty()) // null property
+ Kopete::Global::Properties::self()->unregisterTemplate(d->key);
+ delete d;
+ }
+}
+
+bool ContactPropertyTmpl::operator==(const ContactPropertyTmpl &other) const
+{
+ return (d && other.d &&
+ d->key == other.d->key &&
+ d->label == other.d->label &&
+ d->icon == other.d->key &&
+ d->persistent == other.d->persistent);
+}
+
+bool ContactPropertyTmpl::operator!=(const ContactPropertyTmpl &other) const
+{
+ return (!d || !other.d ||
+ d->key != other.d->key ||
+ d->label != other.d->label ||
+ d->icon != other.d->key ||
+ d->persistent != other.d->persistent);
+}
+
+
+const QString &ContactPropertyTmpl::key() const
+{
+ return d->key;
+}
+
+const QString &ContactPropertyTmpl::label() const
+{
+ return d->label;
+}
+
+const QString &ContactPropertyTmpl::icon() const
+{
+ return d->icon;
+}
+
+bool ContactPropertyTmpl::persistent() const
+{
+ return d->persistent;
+}
+
+bool ContactPropertyTmpl::isRichText() const
+{
+ return d->richText;
+}
+
+bool ContactPropertyTmpl::isPrivate() const
+{
+ return d->privateProp;
+}
+
+bool ContactPropertyTmpl::isNull() const
+{
+ return (!d || d->key.isNull());
+}
+
+
+// -----------------------------------------------------------------------------
+
+
+ContactProperty ContactProperty::null;
+
+ContactProperty::ContactProperty()
+{
+}
+
+ContactProperty::ContactProperty(const ContactPropertyTmpl &tmpl,
+ const QVariant &val)
+{
+ mTemplate = tmpl;
+ mValue = val;
+}
+
+ContactProperty::~ContactProperty()
+{
+ //kdDebug(14000) << k_funcinfo << "this = " << (void *)this << endl;
+}
+
+const QVariant &ContactProperty::value() const
+{
+ return mValue;
+}
+
+const ContactPropertyTmpl &ContactProperty::tmpl() const
+{
+ return mTemplate;
+}
+
+bool ContactProperty::isNull() const
+{
+ return mValue.isNull();
+}
+
+bool ContactProperty::isRichText() const
+{
+ return mTemplate.isRichText();
+}
+
+} // END namespace Kopete