summaryrefslogtreecommitdiffstats
path: root/src/contacts/filters/qcontactdetailfilter_p.h
diff options
context:
space:
mode:
authorXizhi Zhu <xizhi.zhu@nokia.com>2011-08-10 15:08:50 +0300
committerXizhi Zhu <xizhi.zhu@nokia.com>2011-08-23 13:57:38 +0300
commitff95b1592bae300914e0e2a65d33b398f61391b1 (patch)
treeeceaee1d177252dfc2ab2dcad5f4bf20882cf01e /src/contacts/filters/qcontactdetailfilter_p.h
Import from latest QtMobility.
Diffstat (limited to 'src/contacts/filters/qcontactdetailfilter_p.h')
-rw-r--r--src/contacts/filters/qcontactdetailfilter_p.h135
1 files changed, 135 insertions, 0 deletions
diff --git a/src/contacts/filters/qcontactdetailfilter_p.h b/src/contacts/filters/qcontactdetailfilter_p.h
new file mode 100644
index 000000000..c7b5c4b11
--- /dev/null
+++ b/src/contacts/filters/qcontactdetailfilter_p.h
@@ -0,0 +1,135 @@
+/****************************************************************************
+**
+** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the Qt Mobility Components.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this
+** file. Please review the following information to ensure the GNU Lesser
+** General Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU General
+** Public License version 3.0 as published by the Free Software Foundation
+** and appearing in the file LICENSE.GPL included in the packaging of this
+** file. Please review the following information to ensure the GNU General
+** Public License version 3.0 requirements will be met:
+** http://www.gnu.org/copyleft/gpl.html.
+**
+** Other Usage
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#ifndef QCONTACTDETAILFILTER_P_H
+#define QCONTACTDETAILFILTER_P_H
+
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists purely as an
+// implementation detail. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
+#include "qcontactfilter_p.h"
+#include "qcontactfilter.h"
+
+#include <QString>
+#include <QVariant>
+
+QTPIM_BEGIN_NAMESPACE
+
+class QContactDetailFilterPrivate : public QContactFilterPrivate
+{
+public:
+ QContactDetailFilterPrivate()
+ : QContactFilterPrivate(),
+ m_flags(0)
+ {
+ }
+
+ QContactDetailFilterPrivate(const QContactDetailFilterPrivate& other)
+ : QContactFilterPrivate(other),
+ m_defId(other.m_defId),
+ m_fieldId(other.m_fieldId),
+ m_exactValue(other.m_exactValue),
+ m_flags(other.m_flags)
+ {
+ }
+
+ bool compare(const QContactFilterPrivate* other) const
+ {
+ const QContactDetailFilterPrivate *od = static_cast<const QContactDetailFilterPrivate*>(other);
+ if (m_defId != od->m_defId)
+ return false;
+ if (m_fieldId != od->m_fieldId)
+ return false;
+ if (m_exactValue != od->m_exactValue)
+ return false;
+ if (m_flags != od->m_flags)
+ return false;
+ return true;
+ }
+
+ QDataStream& outputToStream(QDataStream& stream, quint8 formatVersion) const
+ {
+ if (formatVersion == 1) {
+ stream << m_defId << m_fieldId << m_exactValue << static_cast<quint32>(m_flags);
+ }
+ return stream;
+ }
+
+ QDataStream& inputFromStream(QDataStream& stream, quint8 formatVersion)
+ {
+ if (formatVersion == 1) {
+ quint32 flags;
+ stream >> m_defId >> m_fieldId >> m_exactValue >> flags;
+ m_flags = QContactFilter::MatchFlags(flags);
+ }
+ return stream;
+ }
+#ifndef QT_NO_DEBUG_STREAM
+ QDebug& debugStreamOut(QDebug& dbg) const
+ {
+ dbg.nospace() << "QContactDetailFilter(";
+ dbg.nospace() << "detailDefinitionName=" << m_defId << ","
+ << "detailFieldName=" << m_fieldId << ","
+ << "value=" << m_exactValue << ","
+ << "matchFlags=" << static_cast<quint32>(m_flags);
+ dbg.nospace() << ")";
+ return dbg.maybeSpace();
+ }
+#endif
+ Q_IMPLEMENT_CONTACTFILTER_VIRTUALCTORS(QContactDetailFilter, QContactFilter::ContactDetailFilter)
+
+ QString m_defId;
+ QString m_fieldId;
+ QVariant m_exactValue;
+ QContactFilter::MatchFlags m_flags;
+};
+
+QTPIM_END_NAMESPACE
+
+#endif