summaryrefslogtreecommitdiffstats
path: root/src/imports/contacts/qdeclarativecontactcollection_p.h
diff options
context:
space:
mode:
authorRenato Araujo Oliveira Filho <renato.filho@canonical.com>2015-01-19 17:08:23 -0300
committerRenato Araujo Oliveira Filho <renato.filho@canonical.com>2015-02-06 11:58:38 +0000
commit86aa56275c33be673f60f3c2b51d4f719de9315c (patch)
tree1a536662e27c456e2afb1b4012e5922c9b3d6043 /src/imports/contacts/qdeclarativecontactcollection_p.h
parentc08717fb6b3975273ffc5c8036a6b8aa0b87d679 (diff)
Add QContactCollection.
The QContactCollection class represents a collection of contacts in a manager. This class was implemented based on QOrganizerCollection. Change-Id: I5377f9043a66726182b7a0ed7f40733ffe08b619 Reviewed-by: Matthew Vogt <matthew.vogt@qinetic.com.au> Reviewed-by: Christopher Adams <chris.adams@jollamobile.com>
Diffstat (limited to 'src/imports/contacts/qdeclarativecontactcollection_p.h')
-rw-r--r--src/imports/contacts/qdeclarativecontactcollection_p.h120
1 files changed, 120 insertions, 0 deletions
diff --git a/src/imports/contacts/qdeclarativecontactcollection_p.h b/src/imports/contacts/qdeclarativecontactcollection_p.h
new file mode 100644
index 000000000..1fe9a7ff7
--- /dev/null
+++ b/src/imports/contacts/qdeclarativecontactcollection_p.h
@@ -0,0 +1,120 @@
+/****************************************************************************
+**
+** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the QtContacts module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia. For licensing terms and
+** conditions see http://qt.digia.com/licensing. For further information
+** use the contact form at http://qt.digia.com/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, 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, Digia gives you certain additional
+** rights. These rights are described in the Digia 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.
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#ifndef QDECLARATIVECONTACTCOLLECTION_H
+#define QDECLARATIVECONTACTCOLLECTION_H
+
+#include <QtCore/qurl.h>
+
+#include <QtGui/qcolor.h>
+
+#include <QtQml/qqml.h>
+
+#include <QtContacts/qcontactcollection.h>
+
+QTCONTACTS_USE_NAMESPACE
+
+QT_BEGIN_NAMESPACE
+
+class QDeclarativeContactCollection : public QObject
+{
+ Q_OBJECT
+
+ Q_ENUMS(MetaDataKey)
+ Q_PROPERTY(QString collectionId READ id WRITE setId NOTIFY valueChanged)
+ Q_PROPERTY(QString name READ name WRITE setName NOTIFY valueChanged)
+ Q_PROPERTY(QString description READ description WRITE setDescription NOTIFY valueChanged)
+ Q_PROPERTY(QColor color READ color WRITE setColor NOTIFY valueChanged)
+ Q_PROPERTY(QColor secondaryColor READ secondaryColor WRITE setSecondaryColor NOTIFY valueChanged)
+ Q_PROPERTY(QUrl image READ image WRITE setImage NOTIFY valueChanged)
+
+public:
+ enum MetaDataKey {
+ KeyName = QContactCollection::KeyName,
+ KeyDescription = QContactCollection::KeyDescription,
+ KeyColor = QContactCollection::KeyColor,
+ KeySecondaryColor = QContactCollection::KeySecondaryColor,
+ KeyImage = QContactCollection::KeyImage,
+ KeyExtended = QContactCollection::KeyExtended
+ };
+
+ QDeclarativeContactCollection(QObject *parent = 0);
+
+ QString id() const;
+ void setId(const QString &id);
+
+ QString name() const;
+ void setName(const QString &name);
+
+ QString description() const;
+ void setDescription(const QString &description);
+
+ QColor color() const;
+ void setColor(const QColor &color);
+
+ QColor secondaryColor() const;
+ void setSecondaryColor(const QColor &secondaryColor);
+
+ QUrl image() const;
+ void setImage(const QUrl &url);
+
+ Q_INVOKABLE void setMetaData(QContactCollection::MetaDataKey key, const QVariant &value);
+ Q_INVOKABLE QVariant metaData(QContactCollection::MetaDataKey key) const;
+
+ Q_INVOKABLE void setExtendedMetaData(const QString &key, const QVariant &value);
+ Q_INVOKABLE QVariant extendedMetaData(const QString &key) const;
+
+ // used by model
+ QContactCollection collection() const;
+ void setCollection(const QContactCollection & collection);
+
+Q_SIGNALS:
+ void valueChanged();
+
+private:
+ QContactCollection d;
+};
+
+QT_END_NAMESPACE
+
+QML_DECLARE_TYPE(QDeclarativeContactCollection)
+
+#endif // QDECLARATIVECONTACTCOLLECTION_H