/usr/include/KTp/Models/accounts-model-item.h is in libktpcommoninternalsprivate-dev 0.3.1-0ubuntu1.
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 | /*
* Accounts model item, represents an account in the contactlist tree
* This file is based on TelepathyQtYell Models
*
* Copyright (C) 2010 Collabora Ltd. <info@collabora.co.uk>
* Copyright (C) 2011 Martin Klapetek <martin dot klapetek at gmail dot com>
*
* 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 St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef TELEPATHY_ACCOUNTS_MODEL_ITEM_H
#define TELEPATHY_ACCOUNTS_MODEL_ITEM_H
#include <TelepathyQt/Constants>
#include <TelepathyQt/Contact>
#include <TelepathyQt/Types>
#include <QtCore/QVariant> //needed for declare metatype
#include <KTp/ktp-export.h>
#include <KTp/Models/tree-node.h>
class KTP_EXPORT AccountsModelItem : public TreeNode
{
Q_OBJECT
Q_DISABLE_COPY(AccountsModelItem)
public:
AccountsModelItem(const Tp::AccountPtr &account);
virtual ~AccountsModelItem();
Q_INVOKABLE virtual QVariant data(int role) const;
virtual bool setData(int role, const QVariant &value);
Q_INVOKABLE Tp::AccountPtr account() const;
void setEnabled(bool value);
Q_INVOKABLE void setNickname(const QString &value);
Q_INVOKABLE void setAutomaticPresence(int type, const QString &status, const QString &statusMessage);
Q_INVOKABLE void setRequestedPresence(int type, const QString &status, const QString &statusMessage);
void clearContacts();
void countOnlineContacts();
Q_SIGNALS:
void connectionStatusChanged(const QString &accountId, int status);
private Q_SLOTS:
void addKnownContacts();
void onRemoved();
void onChanged();
void onStatusChanged(Tp::ConnectionStatus status);
void onNewConnection();
void onConnectionChanged(const Tp::ConnectionPtr &connection);
void onContactManagerStateChanged(Tp::ContactListState state);
void onContactsChanged(const Tp::Contacts &added,
const Tp::Contacts &removed);
private:
struct Private;
friend struct Private;
Private *mPriv;
};
Q_DECLARE_METATYPE(AccountsModelItem*);
#endif // TELEPATHY_ACCOUNTS_MODEL_ITEM_H
|