This file is indexed.

/usr/include/KTp/Widgets/contact-view-widget.h is in libktpcommoninternalsprivate-dev 0.8.1-4.

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
/*
 * Copyright (C) 2011 David Edmundson <kde@davidedmundson.co.uk>
 * Copyright (C) 2012 Daniele E. Domenichelli <daniele.domenichelli@gmail.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 CONTACT_VIEW_WIDGET_H
#define CONTACT_VIEW_WIDGET_H

#include <QtGui/QWidget>
#include <QtGui/QListView>

#include <TelepathyQt/Types>

#include <KTp/contact.h>
#include <KTp/ktp-export.h>

class KLineEdit;
class QItemSelection;
class QListView;

namespace KTp
{
class ContactsFilterModel;
class ContactsListModel;

class KTP_EXPORT ContactViewWidget : public QWidget
{
    Q_OBJECT
    Q_DISABLE_COPY(ContactViewWidget)

    Q_PROPERTY(QString displayNameFilter
               READ displayNameFilter
               RESET clearDisplayNameFilter
               WRITE setDisplayNameFilter
               NOTIFY displayNameFilterChanged)
    Q_PROPERTY(QSize iconSize
               READ iconSize
               WRITE setIconSize
               NOTIFY iconSizeChanged)
    Q_PROPERTY(QListView::ViewMode viewMode
               READ viewMode
               WRITE setViewMode)
public:
    explicit ContactViewWidget(ContactsListModel *model, QWidget *parent = 0);
    virtual ~ContactViewWidget();

    virtual QString displayNameFilter() const;
    Q_SLOT virtual void clearDisplayNameFilter();
    Q_SLOT virtual void setDisplayNameFilter(const QString &displayNameFilter);
    Q_SIGNAL void displayNameFilterChanged(const QString &displayNameFilter);

    virtual QSize iconSize() const;
    Q_SLOT virtual void setIconSize(const QSize &iconSize);
    Q_SIGNAL void iconSizeChanged(const QSize &iconSize);

    virtual KTp::ContactsFilterModel* filter() const;
    virtual KLineEdit* contactFilterLineEdit() const;

    virtual bool hasSelection() const;
    virtual Tp::AccountPtr selectedAccount() const;
    virtual KTp::ContactPtr selectedContact() const;

    void setViewMode(QListView::ViewMode);
    QListView::ViewMode viewMode() const;

Q_SIGNALS:
    void selectionChanged(const Tp::AccountPtr &selectedAccount, const KTp::ContactPtr &selectedContact);
    void contactDoubleClicked(const Tp::AccountPtr &account, const KTp::ContactPtr &contact);

private:
    class Private;
    Private * const d;

    Q_PRIVATE_SLOT(d, void _k_onSelectionChanged(const QItemSelection &currentSelection,
                                                 const QItemSelection &previousSelection));
    Q_PRIVATE_SLOT(d, void _k_onDoubleClicked(const QModelIndex &index));

}; // class ContactViewWidget

} // namespace KTp

#endif // CONTACT_VIEW_WIDGET_H