/usr/include/KF5/KPeople/kpeople/personsmodel.h is in libkf5people-dev 5.28.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | /*
Persons Model
Copyright (C) 2012 Martin Klapetek <martin.klapetek@gmail.com>
Copyright (C) 2012 Aleix Pol Gonzalez <aleixpol@blue-systems.com>
Copyright (C) 2013 David Edmundson <davidedmundson@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.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef PERSONS_MODEL_H
#define PERSONS_MODEL_H
#include <kpeople/kpeople_export.h>
#include <QAbstractItemModel>
#include "global.h"
namespace KPeople
{
class ContactItem;
class PersonItem;
class MetaContact;
class PersonsModelPrivate;
/**
* This class creates a model of all known contacts from all sources
* Contacts are represented as a tree where the top level represents a "person" which is an
* amalgamation of all the sub-contacts
*/
class KPEOPLE_EXPORT PersonsModel : public QAbstractItemModel
{
Q_OBJECT
/** specifies whether the model has already been initialized */
Q_PROPERTY(bool isInitialized READ isInitialized NOTIFY modelInitialized)
public:
enum Role {
FormattedNameRole = Qt::DisplayRole,//QString best name for this person
PhotoRole = Qt::DecorationRole, //QPixmap best photo for this person
PersonUriRole = Qt::UserRole, //QString ID of this person
PersonVCardRole, //AbstractContact::Ptr
ContactsVCardRole, //AbstractContact::List (FIXME or map?)
GroupsRole, ///groups QStringList
UserRole = Qt::UserRole + 0x1000 ///< in case it's needed to extend, use this one to start from
};
Q_ENUMS(Role)
PersonsModel(QObject *parent = 0);
virtual ~PersonsModel();
virtual int columnCount(const QModelIndex &parent = QModelIndex()) const Q_DECL_OVERRIDE;
virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const Q_DECL_OVERRIDE;
virtual QModelIndex index(int row, int column = 0, const QModelIndex &parent = QModelIndex()) const Q_DECL_OVERRIDE;
virtual QModelIndex parent(const QModelIndex &index) const Q_DECL_OVERRIDE;
virtual int rowCount(const QModelIndex &parent = QModelIndex()) const Q_DECL_OVERRIDE;
virtual QHash<int, QByteArray> roleNames() const Q_DECL_OVERRIDE;
/** @returns the index for a given @p personUri */
QModelIndex indexForPersonUri(const QString &personUri) const;
/** Returns if all the backends have been initialized yet. */
bool isInitialized() const;
/** Helper class to ease model access through QML */
Q_SCRIPTABLE QVariant get(int row, int role);
/**
* Makes it possible to access custom properties that are not available to the model
*
* @returns the property for the contact at @p index defined by the @p key
*/
QVariant contactCustomProperty(const QModelIndex &index, const QString &key) const;
Q_SIGNALS:
/** Will emit when the model is finally initialized. @p success will specify if it succeeded */
void modelInitialized(bool success);
private:
Q_DISABLE_COPY(PersonsModel)
QScopedPointer<PersonsModelPrivate> const d_ptr;
Q_DECLARE_PRIVATE(PersonsModel)
};
}
#endif // PERSONS_MODEL_H
|