some basic work for updating the videoeditor and video sql system

This commit is contained in:
Chris Cochrun 2022-09-06 20:36:25 -05:00
parent 7c6e5cf314
commit 396cf7a9f8
4 changed files with 110 additions and 1 deletions

View file

@ -136,7 +136,7 @@ Controls.Page {
presentation.textIndex = 0;
presentation.changeSlide();
print("Slide changed to: " + item.name);
print("Slide Cchanged to: " + item.name);
}
function editSwitch(item) {

View file

@ -143,6 +143,46 @@ Item {
/* onEditingFinished: updateTitle(text); */
}
RowLayout {
Layout.preferredWidth: 300
Layout.fillWidth: true
Layout.leftMargin: 20
Layout.rightMargin: 20
Controls.Label {
Layout.fillHeight: true
Layout.leftMargin: 20
Layout.rightMargin: 20
text: videoLengthSlider.first.value
}
Controls.Label {
Layout.fillHeight: true
Layout.leftMargin: 20
Layout.rightMargin: 20
text: videoLengthSlider.second.value
}
}
Controls.RangeSlider {
id: videoLengthSlider
Layout.preferredWidth: 300
Layout.fillWidth: true
Layout.leftMargin: 20
Layout.rightMargin: 20
to: videoPreview.duration
from: 0
first.value: 0
second.value: to
}
Item {
id: empty
Layout.fillHeight: true