refractor: DeltaruneQuickshell -> Shell
28
Shell/Topbar/topbar/DarkDollarsDisplay.qml
Normal file
@@ -0,0 +1,28 @@
|
||||
import QtQuick
|
||||
|
||||
// import Quickshell
|
||||
|
||||
Item {
|
||||
Text {
|
||||
x: 1064 + 117
|
||||
y: 37 + 9
|
||||
color: "#ffffff"
|
||||
text: "D$ 4294"
|
||||
font.pixelSize: 64
|
||||
font.family: "8bitoperator JVE"
|
||||
}
|
||||
|
||||
// SystemClock {
|
||||
// id: clock
|
||||
// precision: SystemClock.Minutes
|
||||
// }
|
||||
|
||||
// Text {
|
||||
// x: 1064 + 117
|
||||
// y: 37 + 9 + 64
|
||||
// color: "#777777"
|
||||
// text: Qt.formatDateTime(clock.date, "dd/MM - hh:mm")
|
||||
// font.pixelSize: 32
|
||||
// font.family: "8bitoperator JVE"
|
||||
// }
|
||||
}
|
||||
34
Shell/Topbar/topbar/TopbarSettingIcon.qml
Normal file
@@ -0,0 +1,34 @@
|
||||
import QtQuick
|
||||
import Qt5Compat.GraphicalEffects
|
||||
|
||||
Item {
|
||||
id: item
|
||||
implicitWidth: 149
|
||||
implicitHeight: 108
|
||||
property url iconSource: "settings.png"
|
||||
property bool selected: false
|
||||
property bool showSoul: true
|
||||
readonly property color selectedColor: "#ffc90e"
|
||||
readonly property color unselectedColor: "#614e6b"
|
||||
state: selected ? "selected" : ""
|
||||
|
||||
Image {
|
||||
id: originalImage
|
||||
source: "./setting_icons/" + item.iconSource
|
||||
}
|
||||
|
||||
ColorOverlay {
|
||||
id: colorOverlay
|
||||
anchors.fill: originalImage
|
||||
source: originalImage
|
||||
color: item.selected ? item.selectedColor : item.unselectedColor
|
||||
}
|
||||
|
||||
Image {
|
||||
id: soul
|
||||
source: "./soul_small.png"
|
||||
x: 19
|
||||
y: 42
|
||||
visible: item.showSoul && item.selected
|
||||
}
|
||||
}
|
||||
BIN
Shell/Topbar/topbar/setting_icons/config.png
Normal file
|
After Width: | Height: | Size: 63 KiB |
BIN
Shell/Topbar/topbar/setting_icons/equip.png
Normal file
|
After Width: | Height: | Size: 63 KiB |
BIN
Shell/Topbar/topbar/setting_icons/item.png
Normal file
|
After Width: | Height: | Size: 63 KiB |
BIN
Shell/Topbar/topbar/setting_icons/power.png
Normal file
|
After Width: | Height: | Size: 63 KiB |
BIN
Shell/Topbar/topbar/setting_names/config.png
Normal file
|
After Width: | Height: | Size: 162 KiB |
BIN
Shell/Topbar/topbar/setting_names/equip.png
Normal file
|
After Width: | Height: | Size: 162 KiB |
BIN
Shell/Topbar/topbar/setting_names/item.png
Normal file
|
After Width: | Height: | Size: 162 KiB |
BIN
Shell/Topbar/topbar/setting_names/power.png
Normal file
|
After Width: | Height: | Size: 162 KiB |
BIN
Shell/Topbar/topbar/soul_small.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |