32 lines
798 B
QML
32 lines
798 B
QML
import QtQuick
|
|
|
|
Item {
|
|
id: dialogboxroot
|
|
implicitHeight: 378
|
|
implicitWidth: 1334
|
|
readonly property int text_x: 350 - 275
|
|
readonly property int text_y: 55
|
|
readonly property int font_size: 48
|
|
property string text: "(The power of Hyprland shines within you...)"
|
|
|
|
Image {
|
|
source: "./frame.png"
|
|
}
|
|
Text {
|
|
text: dialogboxroot.text
|
|
font.family: "8-bit Operator+"
|
|
font.pixelSize: dialogboxroot.font_size
|
|
color: "#04047C"
|
|
x: dialogboxroot.text_x + 2
|
|
y: dialogboxroot.text_y + 2
|
|
}
|
|
Text {
|
|
text: dialogboxroot.text
|
|
font.family: "8-bit Operator+"
|
|
font.pixelSize: dialogboxroot.font_size
|
|
color: "#ffffff"
|
|
x: dialogboxroot.text_x
|
|
y: dialogboxroot.text_y
|
|
}
|
|
}
|