Getting some functionality in switching slides

This commit is contained in:
Chris Cochrun 2022-03-11 07:04:23 -06:00
parent 1fa5aa8a0a
commit cc8f447166
7 changed files with 72 additions and 4 deletions

View file

@ -66,6 +66,11 @@ Item {
Layout.preferredWidth: 100
Layout.preferredHeight: 200
Layout.alignment: Qt.AlignRight
MouseArea {
anchors.fill: parent
onPressed: changeSlidePrevious()
cursorShape: Qt.PointingHandCursor
}
}
Presenter.Slide {
@ -77,6 +82,7 @@ Item {
text: root.text
imageSource: imagebackground
videoSource: vidbackground
preview: true
}
Kirigami.Icon {
@ -84,6 +90,11 @@ Item {
Layout.preferredWidth: 100
Layout.preferredHeight: 200
Layout.alignment: Qt.AlignLeft
MouseArea {
anchors.fill: parent
onPressed: changeSlideNext()
cursorShape: Qt.PointingHandCursor
}
}
Item {