This file is indexed.

/usr/lib/x86_64-linux-gnu/qt5/qml/org/kde/plasma/mediacenter/elements/categoriesbar/CategoriesBar.qml is in plasma-mediacenter 4:5.5.5-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
import QtQuick 2.0
import org.kde.plasma.core 2.0 as PlasmaCore
import org.kde.plasma.components 2.0 as PlasmaComponents

Rectangle {

    id: categoriesBarRoot

    property alias backendsModel: categoriesList.model
    property QtObject backendObject

    signal backendSelected

    color: theme.viewBackgroundColor

    CategoriesList {
        id: categoriesList
        anchors.horizontalCenter: parent.horizontalCenter
        anchors.verticalCenter: parent.verticalCenter
        height: parent.height * 0.5
        width: parent.width
        clip: true
        focus: true
    }

    onActiveFocusChanged: {
        if(activeFocus) {
            categoriesList.focus = true;
        }
    }
}