Refactor and add white version

This commit is contained in:
Kai Folf 2023-04-08 09:15:40 +07:00
parent 4d693199b9
commit ae8e31f7f8
No known key found for this signature in database
34 changed files with 95 additions and 50 deletions

View file

@ -0,0 +1,10 @@
import QtQuick 2.0
import org.kde.plasma.configuration 2.0
ConfigModel {
ConfigCategory {
name: i18n("General")
icon: "configure"
source: "configGeneral.qml"
}
}

View file

@ -1 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0 http://www.kde.org/standards/kcfg/1.0/kcfg.xsd">
<kcfgfile name=""/>
<group name="General">
<entry name="sharkleColor" type="String">
<default>black</default>
</entry>
</group>
</kcfg>

View file

Before

Width:  |  Height:  |  Size: 7.8 KiB

After

Width:  |  Height:  |  Size: 7.8 KiB

View file

Before

Width:  |  Height:  |  Size: 7.8 KiB

After

Width:  |  Height:  |  Size: 7.8 KiB

View file

Before

Width:  |  Height:  |  Size: 7.8 KiB

After

Width:  |  Height:  |  Size: 7.8 KiB

View file

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 7.9 KiB

View file

Before

Width:  |  Height:  |  Size: 7.8 KiB

After

Width:  |  Height:  |  Size: 7.8 KiB

View file

Before

Width:  |  Height:  |  Size: 8.2 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

View file

Before

Width:  |  Height:  |  Size: 8.2 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

View file

Before

Width:  |  Height:  |  Size: 8.3 KiB

After

Width:  |  Height:  |  Size: 8.3 KiB

View file

Before

Width:  |  Height:  |  Size: 8.2 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

View file

Before

Width:  |  Height:  |  Size: 8.3 KiB

After

Width:  |  Height:  |  Size: 8.3 KiB

View file

Before

Width:  |  Height:  |  Size: 8.2 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

View file

Before

Width:  |  Height:  |  Size: 8.2 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

View file

Before

Width:  |  Height:  |  Size: 9 KiB

After

Width:  |  Height:  |  Size: 9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View file

@ -0,0 +1,22 @@
// configGeneral.qml
import QtQuick 2.0
import QtQuick.Controls 2.5
import QtQuick.Layouts 1.12
import org.kde.kirigami 2.4 as Kirigami
Item {
id: page
property alias cfg_sharkleColor: sharkleColor.currentText
Kirigami.FormLayout {
anchors.left: parent.left
anchors.right: parent.right
ComboBox {
id: sharkleColor
Kirigami.FormData.label: "Sharkle Color:"
model: ["Black", "White"]
}
}
}

View file

@ -5,10 +5,9 @@ import QtMultimedia 5.15
import org.kde.plasma.plasmoid 2.0 import org.kde.plasma.plasmoid 2.0
import org.kde.plasma.core 2.0 as PlasmaCore import org.kde.plasma.core 2.0 as PlasmaCore
import org.kde.plasma.components 3.0 as PlasmaComponents3
Item { Item {
Plasmoid.backgroundHints: "NoBackground" Plasmoid.backgroundHints: PlasmaCore.Types.NoBackground
Plasmoid.fullRepresentation: Item { Plasmoid.fullRepresentation: Item {
Layout.minimumWidth: 100 Layout.minimumWidth: 100
Layout.minimumHeight: 100 Layout.minimumHeight: 100
@ -19,57 +18,34 @@ Item {
property int talkIndex: 0 property int talkIndex: 0
property int soundIndex: 0 property int soundIndex: 0
property bool isIdle: true property bool isIdle: true
property string sharkleColor: Plasmoid.configuration.sharkleColor.toLowerCase()
Item {
width: Math.min(parent.width, parent.height)
height: Math.min(parent.width, parent.height)
Image {
id: idle
anchors.fill: parent
source: "../images/idle/" + imageIndex + ".png"
visible: isIdle
}
Image {
id: hello
anchors.fill: parent
source: "../images/hello/" + (imageIndex%4) + ".png"
visible: !isIdle
}
Image {
id: talk
width: parent.width
height: parent.height
anchors.right: idle.left
anchors.rightMargin: -60
anchors.bottom: idle.top
anchors.bottomMargin: -60
source: "../images/talk/" + (talkIndex) + ".png"
visible: !isIdle
}
Timer { Timer {
id: animationTimer
interval: 100 interval: 100
running: true running: true
repeat: true repeat: true
onTriggered: { onTriggered: {
// Loop 0 to 7 // Loop frame 0 to 7
imageIndex = (imageIndex + 1) % 8 imageIndex = (imageIndex + 1) % 8
// Loop 0 to 1, change every 8 frames // Loop frame 0 to 1, every 8 iterations
talkIndex = imageIndex == 0 ? !talkIndex : talkIndex talkIndex = imageIndex == 0 ? !talkIndex : talkIndex
} }
} }
Timer { Timer {
id: idleTimer id: idleTimer
interval: 1600 interval: 1600
running: false running: false
repeat: false repeat: false
onTriggered: { onTriggered: {
// Set to idle // Set animation to idle
imageIndex = 0 imageIndex = 0
isIdle = true isIdle = true
} }
} }
MediaPlayer { MediaPlayer {
id: mediaplayer id: mediaplayer
source: "../sounds/" + soundIndex + ".wav" source: "../sounds/" + soundIndex + ".wav"
@ -77,7 +53,7 @@ Item {
MouseArea { MouseArea {
anchors.fill: parent anchors.fill: parent
onClicked: { onClicked: {
// Set to hello // Set animation to hello
isIdle = false isIdle = false
idleTimer.restart() idleTimer.restart()
@ -86,7 +62,35 @@ Item {
mediaplayer.play() mediaplayer.play()
} }
} }
}
}
}
Item {
id: imageContainer
width: Math.min(parent.width, parent.height)
height: Math.min(parent.width, parent.height)
Image {
id: idleImage
anchors.fill: parent
source: "../images/" + sharkleColor + "/idle/" + imageIndex + ".png"
visible: isIdle
}
Image {
id: helloImage
anchors.fill: parent
source: "../images/" + sharkleColor + "/hello/" + (imageIndex%4) + ".png"
visible: !isIdle
}
Image {
id: talkImage
width: parent.width
height: parent.height
anchors.right: idleImage.left
anchors.rightMargin: -60
anchors.bottom: idleImage.top
anchors.bottomMargin: -60
source: "../images/" + sharkleColor + "/talk/" + (talkIndex) + ".png"
visible: !isIdle
}
}
}
}