summaryrefslogtreecommitdiffstats
path: root/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents
diff options
context:
space:
mode:
Diffstat (limited to 'usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents')
-rw-r--r--usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/defaults14
-rw-r--r--usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/previews/splash.pngbin21537 -> 0 bytes
-rw-r--r--usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/README1
-rw-r--r--usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/Splash.qml174
-rw-r--r--usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/background.pngbin1765454 -> 0 bytes
-rw-r--r--usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble1.pngbin600 -> 0 bytes
-rw-r--r--usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble2.pngbin592 -> 0 bytes
-rw-r--r--usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble3.pngbin527 -> 0 bytes
-rw-r--r--usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble4.pngbin494 -> 0 bytes
-rw-r--r--usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble5.pngbin442 -> 0 bytes
-rw-r--r--usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/logo.pngbin11545 -> 0 bytes
11 files changed, 0 insertions, 189 deletions
diff --git a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/defaults b/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/defaults
deleted file mode 100644
index 1dfe182..0000000
--- a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/defaults
+++ /dev/null
@@ -1,14 +0,0 @@
-[kdeglobals][KDE]
-widgetStyle=breeze
-
-[kdeglobals][General]
-ColorScheme=Breeze
-
-[kdeglobals][Icons]
-Theme=breeze
-
-[plasmarc][Theme]
-name=default
-
-[kcminputrc][Mouse]
-cursorTheme=breeze_cursors
diff --git a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/previews/splash.png b/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/previews/splash.png
deleted file mode 100644
index b932b69..0000000
--- a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/previews/splash.png
+++ /dev/null
Binary files differ
diff --git a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/README b/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/README
deleted file mode 100644
index 719d87d..0000000
--- a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/README
+++ /dev/null
@@ -1 +0,0 @@
-Mageia KSplash
diff --git a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/Splash.qml b/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/Splash.qml
deleted file mode 100644
index 4fe84fc..0000000
--- a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/Splash.qml
+++ /dev/null
@@ -1,174 +0,0 @@
-/* vim:set foldenable foldmethod=marker:
- *
- * 2014 by DarkBeastOfPrey
- * Copyright (C) 2011 Ivan Cukic <ivan.cukic(at)kde.org>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2,
- * or (at your option) any later version, as published by the Free
- * Software Foundation
- *
- * 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 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 2.2
-
-Item {
- id: main
-
- width: screenSize.width
- height: screenSize.height
- // width: 300
- // height: 300
-
- /* property declarations --------------------------{{{ */
- property int stage
- /* }}} */
-
- /* signal declarations ----------------------------{{{ */
-
- /* }}} */
-
- /* JavaScript functions ---------------------------{{{ */
- onStageChanged: {
- if (stage == 1) {
- mageia.opacity = 0.25
- bubble1.opacity = 0.25
- }
- if (stage == 2) {
- mageia.opacity = 1
- bubble1.opacity = 1
- bubble2.opacity = 1
- }
- if (stage == 3) {
- bubble3.opacity = 1
- }
- if (stage == 4) {
- bubble4.opacity = 1
- }
- if (stage == 5) {
- bubble5.opacity = 1
- }
- if (stage == 6) {
- }
- }
- /* }}} */
-
- /* object properties ------------------------------{{{ */
-
- /* }}} */
-
- /* child objects ----------------------------------{{{ */
-
- Image {
- id: background
- source: "images/background.png"
- anchors.fill: parent
-
- anchors {
- top: parent.top
- left: parent.left
- right: parent.right
- bottom: parent.bottom
-
- }
- opacity: 1
- }
-
- Image {
- id: bubble1
- smooth: true
-
- x: (parent.width) /4 + 30
- y: (parent.height) / 2 - 70
-
- source: "images/bubble1.png"
-
- opacity: 0
- Behavior on opacity { NumberAnimation { duration: 3000; easing { type: Easing.InOutQuad } } }
- }
-
- Image {
- id: bubble2
- smooth: true
-
- x: (parent.width) /4 + 30
- y: (parent.height) / 2 - 70
-
- source: "images/bubble2.png"
-
- opacity: 0
- Behavior on opacity { NumberAnimation { duration: 3000; easing { type: Easing.InOutQuad } } }
- }
-
- Image {
- id: bubble3
- smooth: true
-
- x: (parent.width) /4 + 30
- y: (parent.height) / 2 - 70
-
- source: "images/bubble3.png"
-
- opacity: 0
- Behavior on opacity { NumberAnimation { duration: 3000; easing { type: Easing.InOutQuad } } }
- }
-
- Image {
- id: bubble4
- smooth: true
-
- x: (parent.width) /4 + 30
- y: (parent.height) / 2 - 70
-
- source: "images/bubble4.png"
-
- opacity: 0
- Behavior on opacity { NumberAnimation { duration: 3000; easing { type: Easing.InOutQuad } } }
- }
-
- Image {
- id: bubble5
- smooth: true
-
- x: (parent.width) /4 + 30
- y: (parent.height) / 2 - 70
-
- source: "images/bubble5.png"
-
- opacity: 0
- Behavior on opacity { NumberAnimation { duration: 3000; easing { type: Easing.InOutQuad } } }
- }
-
- Image {
- id: mageia
- smooth: true
-
- x: (parent.width) / 4
- y: (parent.height) / 2
-
- source: "images/logo.png"
-
- opacity: 0
- Behavior on opacity { NumberAnimation { duration: 3000; easing { type: Easing.InOutQuad } } }
- }
-
- /* }}} */
-
- /* stages -----------------------------------------{{{ */
-
- /* }}} */
-
- /* transitions ------------------------------------{{{ */
-
- /* }}} */
-}
-
diff --git a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/background.png b/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/background.png
deleted file mode 100644
index 378bf38..0000000
--- a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/background.png
+++ /dev/null
Binary files differ
diff --git a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble1.png b/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble1.png
deleted file mode 100644
index 84c6888..0000000
--- a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble1.png
+++ /dev/null
Binary files differ
diff --git a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble2.png b/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble2.png
deleted file mode 100644
index 4a661ab..0000000
--- a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble2.png
+++ /dev/null
Binary files differ
diff --git a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble3.png b/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble3.png
deleted file mode 100644
index d34a20a..0000000
--- a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble3.png
+++ /dev/null
Binary files differ
diff --git a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble4.png b/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble4.png
deleted file mode 100644
index f93046d..0000000
--- a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble4.png
+++ /dev/null
Binary files differ
diff --git a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble5.png b/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble5.png
deleted file mode 100644
index 1549e65..0000000
--- a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/bubble5.png
+++ /dev/null
Binary files differ
diff --git a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/logo.png b/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/logo.png
deleted file mode 100644
index dce2b6a..0000000
--- a/usr/share/plasma/look-and-feel/org.mageia.breeze.desktop/contents/splash/images/logo.png
+++ /dev/null
Binary files differ