This file is indexed.

/usr/share/kde4/apps/plasma/packages/org.kde.active.imageviewer/contents/ui/FullScreenDelegate.qml is in plasma-active-imageviewer 2.0+git2012021101-0ubuntu4~ppa3.

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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/*
 *   Copyright 2011 Marco Martin <mart@kde.org>
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU Library General Public License as
 *   published by the Free Software Foundation; either version 2, or
 *   (at your option) any later version.
 *
 *   This program 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 Library General Public License for more details
 *
 *   You should have received a copy of the GNU Library General Public
 *   License along with this program; if not, write to the
 *   Free Software Foundation, Inc.,
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

import QtQuick 1.0
import org.kde.plasma.core 0.1 as PlasmaCore
import org.kde.plasma.mobilecomponents 0.1 as MobileComponents
import org.kde.qtextracomponents 0.1
import Qt.labs.gestures 1.0

Flickable {
    id: mainFlickable
    width: fullList.width
    height: fullList.height
    contentWidth: mainImage.width*mainImage.scale
    contentHeight: mainImage.height*mainImage.scale
    onContentHeightChanged: interactiveTimer.restart()
    property alias source: mainImage.source
    property string label: model["label"]

    //defer interactive decision; set interactive when disabled: it will make it spit out an eventual mouse grabber
    Timer {
        id: interactiveTimer
        interval: 200
        repeat: false
        running: true
        onTriggered: {
            mainFlickable.enabled = false
            mainFlickable.interactive = contentWidth > width || contentHeight > height
            mainFlickable.enabled = true
        }
    }

    ParallelAnimation {
        id: zoomAnim
        function zoom(factor)
        {
            if (factor < 1 && mainImage.scale < 0.2) {
                return
            } else if (factor > 1 && mainImage.scale > 8) {
                return
            }

            contentXAnim.to = Math.max(0, Math.min(mainFlickable.contentWidth-mainFlickable.width, (mainFlickable.contentX * factor)))
            contentYAnim.to = Math.max(0, Math.min(mainFlickable.contentHeight-mainFlickable.height, (mainFlickable.contentY * factor)))
            scaleAnim.to = mainImage.scale * factor
            zoomAnim.running = true
        }
        NumberAnimation {
            id: scaleAnim
            duration: 250
            easing.type: Easing.InOutQuad
            target: mainImage
            property: "scale"
        }
        NumberAnimation {
            id: contentXAnim
            duration: 250
            easing.type: Easing.InOutQuad
            target: mainFlickable
            property: "contentX"
        }
        NumberAnimation {
            id: contentYAnim
            duration: 250
            easing.type: Easing.InOutQuad
            target: mainFlickable
            property: "contentY"
        }
    }

    Connections {
        target: imageViewer
        onZoomIn: {
            zoomAnim.zoom(1.4)
        }
        onZoomOut: {
            zoomAnim.zoom(0.6)
        }
    }

    Item {
        id: imageMargin
        width: Math.max(mainFlickable.width, mainImage.width * mainImage.scale)
        height: Math.max(mainFlickable.height, mainImage.height * mainImage.scale)
        clip: true
        GestureArea {
            anchors.fill: parent
            onPinch: {
                mainImage.scale = scaleFactor
            }

            Image {
                id: mainImage

                asynchronous: true
                anchors.centerIn: parent
                onStatusChanged: {
                    if (status != Image.Ready) {
                        return
                    }

                    loadingText.visible = false

                    // do not try to load an empty mainImage.source or it will mess up with mainImage.scale
                    // and make the next valid url fail to load.
                    if (fullList.width < 1 || fullList.height < 1) {
                        return
                    }

                    mainImage.scale = Math.min(1, mainFlickable.height/(scale*height))
                    mainImage.scale = Math.min(scale, Math.min(1, mainFlickable.width/(scale*width)))
 
                    if (mainImage.width > mainImage.height && mainImage.width > mainFlickable.width) {
                        mainImage.sourceSize.width = mainFlickable.width
                        mainImage.sourceSize.height = 0
                    }
                    if (mainImage.height > mainImage.width && mainImage.height > mainFlickable.height) {
                        mainImage.sourceSize.width = 0
                        mainImage.sourceSize.height = mainFlickable.height
                    }
                }
            }

            Text {
                id: loadingText
                font.pointSize: 18
                anchors.centerIn: mainImage
                text: i18n("Loading...")
                color: "gray"
            }

            MouseArea {
                anchors.fill: parent
                onClicked: {
                    if (viewerPage.state == "toolsOpen") {
                        viewerPage.state = "toolsClosed"
                    } else {
                        viewerPage.state = "toolsOpen"
                    }
                }
            }
        }
    }
}