This file is indexed.

/usr/share/kde4/apps/plasma/plasmoids/org.kde.appletstrip/contents/ui/MoveButton.qml is in plasma-widgets-active 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
/*
 *   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 Qt 4.7
import org.kde.plasma.core 0.1 as PlasmaCore

PlasmaCore.SvgItem {
    id: button
    width: actionSize
    height: actionSize
    svg: iconsSvg
    elementId: "move"
    z: applet.z + 1
    property real columnSize: main.width/appletColumns

    Timer {
        id: scrollTimer
        interval: 20
        repeat: true
        running: false
        property bool reverse: true
        onTriggered: {
            if (reverse) {
                if (appletsFlickable.contentX > 0) {
                    appletsFlickable.contentX -= 10
                } else {
                    running = false
                }
            } else {
                if (appletsFlickable.contentX < appletsFlickable.contentWidth-main.width) {
                    appletsFlickable.contentX += 10
                } else {
                    running = false
                }
            }
        }
    }

    MouseArea {
        anchors.fill: parent
        anchors.leftMargin: -10
        anchors.topMargin: -10
        anchors.rightMargin: -10
        anchors.bottomMargin: -10

        drag.target: plasmoidContainer
        drag.minimumX: 0
        drag.maximumX: mainRow.width
        drag.minimumY: 0
        drag.maximumY: 0

        onPressed: {
            plasmoidContainer.z = 2000
            var index = Math.round(plasmoidContainer.mapToItem(appletsRow, 0, 0).x/(columnSize))
            spacer.visible = true
            appletsRow.remove(plasmoidContainer)
            appletsRow.insertAt(spacer, index)

            //the parent is changed, the coordinate system as well with it
            plasmoidContainer.x -= appletsFlickable.contentX
        }

        onReleased: {
            plasmoidContainer.z = 0
            var index = Math.round(plasmoidContainer.mapToItem(appletsRow, 0, 0).x/(columnSize))
            //remap again plasmoidContainer position to new parent
            plasmoidContainer.x += appletsFlickable.contentX
            appletsRow.insertAt(plasmoidContainer, index)
            appletsRow.remove(spacer)
            spacer.visible = false
            scrollTimer.running = false
            appletsRow.saveOrder()
        }

        onPositionChanged: {
            var index = Math.round(plasmoidContainer.mapToItem(appletsRow, 0, 0).x/(columnSize))

            appletsRow.insertAt(spacer, index)

            if (plasmoidContainer.x < (columnSize/3)) {
                scrollTimer.reverse = true
                scrollTimer.running = true
            } else if (plasmoidContainer.x > (main.width - columnSize/3)) {
                scrollTimer.reverse = false
                scrollTimer.running = true
            } else {
                scrollTimer.running = false
            }
        }

    }
}