/usr/share/kde4/apps/kdevelop/splash.qml is in kdevelop-data 4:4.7.3-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 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 | /***************************************************************************
* Copyright 2013 Sven Brauch <svenbrauch@gmail.com> *
* *
* 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 of the *
* License, 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 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.1
// The background image for the splash is still a bitmap, provided by QSplashScreen.
// This widget has a transprent background and appears above that pixmap.
// Thus, if for some reason this doesn't work, the user still has a splash screen
// with a kdev logo and name.
Rectangle {
id: root
// this property is updated from C++
property int progress: 0
// color for the non-colored rectangles
property string defaultColor: "#3E3E3E"
// amount of rectangles in each column
property variant counts: [22, 20, 21, 19, 17, 19, 20, 17, 18, 15, 16, 15, 14, 16, 13, 11, 12, 10, 12,
11, 8, 10, 6, 8, 9, 5, 7, 6, 4, 5, 6, 3, 5, 4, 2, 3, 2, 1, 2, 1]
// "active" colors for the rectangles
// only half as many colors, use each color twice.
// TODO could try if it looks nicer with one color each
property variant activeColors: ["#960A0A", "#B40F0F", "#FF4000", "#FF8400", "#FFDD00", "#CDEC00", "#99FF00", "#4CB700", "#1DB300", "#076813",
"#08BA5B", "#00DA99", "#00B5E7", "#085BBB", "#2A5CFF", "#7044FF", "#9625FF", "#F013FF", "#FF2CC0", "#FF1A1D"]
// this size is a fallback, it's scaled in the c++ code actually,
// but this is the real splash size, so it's useful for testing in qmlviewer
width: 475
height: 301
anchors.fill: parent
gradient: Gradient {
GradientStop { position: 0.0; color: "#0A0A0A" }
GradientStop { position: 0.5; color: "#1F1F1F" }
GradientStop { position: 1.0; color: "#0A0A0A" }
}
// scanlines always look fancy
ListView {
anchors.fill: parent
model: Math.floor(parent.height / 2)
spacing: 2
delegate: Rectangle {
width: root.width
height: 1
color: "#555555"
opacity: 0.10
}
}
// draw the rectangles
ListView {
x: -40
y: -52
height: root.height
width: root.width
// this is needed to make the columns fill the widget from the bottom upwards
rotation: 180
spacing: 4
// draw one column per entry in the root.counts list
model: root.counts
orientation: ListView.Horizontal
// this delegate draws one column of rectangles
delegate: Column {
opacity: 0.75
property string color
property int count
color: (1-root.progress/100.0) * root.counts.length <= index ? activeColors[Math.floor(index/2)] : root.defaultColor
count: root.counts[index]
x: 6
y: 12
spacing: 4
Repeater {
model: parent.count
delegate: Rectangle {
color: parent.color
width: 6
height: 6
}
}
}
}
// text in the upper right corner
Text {
anchors.margins: 6
anchors.left: parent.left
anchors.top: parent.top
color: "white"
opacity: 0.65
text: "KDevelop Integrated Development Environment – http://kdevelop.org<br>" + root.progress+"%"
}
// icon in the lower left corner
Image {
id: icon
anchors {
bottom: parent.bottom
left: parent.left
margins: 6
}
width: 48
height: width
source: appIcon
}
// Text next to the icon
Text {
anchors {
left: icon.right
bottom: parent.bottom
margins: 8
}
height: icon.height
width: parent.width - icon.width
color: "white"
verticalAlignment: Text.AlignVCenter
font {
pointSize: 26
bold: true
family: "sans"
}
style: Text.Raised;
styleColor: "black"
text: "KDevelop " + appVersionMajor + "." + appVersionMinor +
"<span style='font-size:15px;'> ." + appVersionPatch + "</span>"
}
}
|