forked from qt-creator/qt-creator
Change-Id: Ie70e6f8c0e8d3ac316b98bc43f3cb7baecbb9d1b Reviewed-by: Henning Gründl <henning.gruendl@qt.io>
94 lines
2.6 KiB
QML
94 lines
2.6 KiB
QML
// Copyright (C) 2021 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.15
|
|
import HelperWidgets 2.0
|
|
import StudioControls 1.0 as StudioControls
|
|
import StudioTheme 1.0 as StudioTheme
|
|
|
|
Section {
|
|
id: root
|
|
caption: qsTr("Media Player")
|
|
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
|
|
property bool showAudioOutput: false
|
|
property bool showVideoOutput: false
|
|
|
|
// TODO position property, what should be the range?!
|
|
|
|
SectionLayout {
|
|
|
|
PropertyLabel {
|
|
text: qsTr("Source")
|
|
tooltip: qsTr("Adds an image from the local file system.")
|
|
}
|
|
|
|
SecondColumnLayout {
|
|
UrlChooser {
|
|
backendValue: backendValues.source
|
|
filter: "*.avi *.mp4 *.mpeg *.wav"
|
|
}
|
|
|
|
ExpandingSpacer {}
|
|
}
|
|
|
|
PropertyLabel { text: qsTr("Playback rate") }
|
|
|
|
SecondColumnLayout {
|
|
SpinBox {
|
|
implicitWidth: StudioTheme.Values.twoControlColumnWidth
|
|
+ StudioTheme.Values.actionIndicatorWidth
|
|
backendValue: backendValues.playbackRate
|
|
decimals: 1
|
|
minimumValue: -1000 // TODO correct range
|
|
maximumValue: 1000
|
|
}
|
|
|
|
ExpandingSpacer {}
|
|
}
|
|
|
|
PropertyLabel {
|
|
visible: root.showAudioOutput
|
|
text: qsTr("Audio output")
|
|
tooltip: qsTr("Target audio output.")
|
|
}
|
|
|
|
SecondColumnLayout {
|
|
visible: root.showAudioOutput
|
|
|
|
ItemFilterComboBox {
|
|
implicitWidth: StudioTheme.Values.singleControlColumnWidth
|
|
+ StudioTheme.Values.actionIndicatorWidth
|
|
width: implicitWidth
|
|
typeFilter: "QtQuick.AudioOutput"
|
|
backendValue: backendValues.audioOutput
|
|
}
|
|
|
|
ExpandingSpacer {}
|
|
}
|
|
|
|
PropertyLabel {
|
|
visible: root.showVideoOutput
|
|
text: qsTr("Video output")
|
|
tooltip: qsTr("Target video output.")
|
|
}
|
|
|
|
SecondColumnLayout {
|
|
visible: root.showVideoOutput
|
|
|
|
ItemFilterComboBox {
|
|
implicitWidth: StudioTheme.Values.singleControlColumnWidth
|
|
+ StudioTheme.Values.actionIndicatorWidth
|
|
width: implicitWidth
|
|
typeFilter: "QtQuick.VideoOutput"
|
|
backendValue: backendValues.videoOutput
|
|
}
|
|
|
|
ExpandingSpacer {}
|
|
}
|
|
}
|
|
}
|