some adjustments to cmake and more layout of window

This commit is contained in:
Chris Cochrun 2022-02-11 16:41:36 -06:00
parent 640eeb7349
commit 3bcd9af77a
8 changed files with 2691 additions and 109 deletions

View file

@ -12,6 +12,7 @@ Item {
anchors.fill: parent
property real textSize: 50
property bool editMode: false
property bool dropShadow: false
property url imageSource: ""
property url videoSource: ""
@ -48,6 +49,14 @@ Item {
fillMode: Image.PreserveAspectCrop
clip: true
}
FastBlur {
id: imageBlue
anchors.fill: parent
source: backgroundImage
radius: blurRadius
Controls.Label {
id: lyrics
text: "This is some test lyrics" // change to song lyrics of current verse
@ -68,6 +77,7 @@ Item {
color: "#80000000"
visible: true
}
}
}
}