This file is indexed.

/usr/lib/kde4/imports/org/kde/SlideoutPanelContainer.qml is in kdepim-runtime 4:4.13.0-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
/*
    Copyright (c) 2010 Volker Krause <vkrause@kde.org>

    This library 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 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 Library General Public
    License for more details.

    You should have received a copy of the GNU Library General Public License
    along with this library; see the file COPYING.LIB.  If not, write to the
    Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301, USA.
*/

import Qt 4.7

/**
 * Container for a set of SlideoutPanels.
 * It ensures that only one of them is expanded at any given time.
 */
Item {
  id: _slideoutPanelContainer

  /** Margin of the panels regarding the container on the three sides where it is not docked to the edge. */
  property int margin: 20

  /** Collapse all panels. */
  function collapseOthers(obj)
  {
    for ( var i = 0; i < children.length; ++i ) {
      // Does not work:
      // if (children[i] != obj)
      if (!children[i].noCollapse)
        children[i].collapse();
    }
  }

  Component.onCompleted:
  {
    for ( var i = 0; i < children.length; ++i ) {
      var panel = children[i];
      panel.expanded.connect( this, collapseOthers );
      panel.anchors.fill = _slideoutPanelContainer;
      panel.anchors.rightMargin = margin;
      panel.anchors.topMargin = margin;
      panel.anchors.bottomMargin = margin;
      /*
      if ( i >= 1 ) {
        var prevPanel = children[i - 1];
        panel.collapsedPosition = prevPanel.collapsedPosition + prevPanel.collapsedHeight
      } */
    }
    /*
    // limit the height of the last panel to the available space
    if ( children.length > 0 ) {
      var lastPanel = children[ children.length - 1 ];
      if ( children.length > 1 ) {
        var prevPanel = children[ children.length - 2 ];
        lastPanel.collapsedHeight = Math.min( lastPanel.collapsedHeight, height - prevPanel.collapsedPosition - prevPanel.collapsedHeight - lastPanel.anchors.topMargin - lastPanel.anchors.bottomMargin );
      } else {
        lastPanel.collapsedHeight = Math.min( lastPanel.collapsedHeight, height - lastPanel.anchors.topMargin - lastPanel.anchors.bottomMargin );
      }
    } */
  }
}