2018-12-22 14:07:44 +00:00
|
|
|
import QtQuick 2.0
|
2018-12-22 14:13:53 +00:00
|
|
|
import QtQuick.Controls 2.3
|
2018-11-28 18:41:54 +00:00
|
|
|
import QtQuick.Dialogs 1.3
|
2018-12-22 14:26:34 +00:00
|
|
|
import QtQuick.Layouts 1.2
|
2018-12-22 14:21:42 +00:00
|
|
|
import QtQuick.Window 2.2
|
2018-11-28 18:41:54 +00:00
|
|
|
import Qt.labs.settings 1.0
|
|
|
|
import Qt.labs.platform 1.0 as LabsPlatform
|
|
|
|
import player 1.0
|
|
|
|
|
|
|
|
Item {
|
|
|
|
objectName: "buttonLayout"
|
|
|
|
id: layout
|
2018-11-29 08:25:54 +00:00
|
|
|
anchors.fill: controlsBar
|
2018-11-28 18:41:54 +00:00
|
|
|
|
|
|
|
PlayPauseButton {
|
|
|
|
id: playPauseButton
|
2018-12-03 08:21:45 +00:00
|
|
|
anchors.left: parent.left
|
2018-11-28 18:41:54 +00:00
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.bottom: parent.bottom
|
2018-11-30 16:42:19 +00:00
|
|
|
icon.height: parent.height / 2
|
|
|
|
icon.width: parent.height / 2
|
2018-11-28 18:41:54 +00:00
|
|
|
}
|
|
|
|
VolumeButton {
|
|
|
|
id: volumeButton
|
|
|
|
anchors.left: playPauseButton.right
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.bottom: parent.bottom
|
2018-11-30 16:42:19 +00:00
|
|
|
icon.height: parent.height / 2
|
|
|
|
icon.width: parent.height / 2
|
2018-11-28 18:41:54 +00:00
|
|
|
}
|
|
|
|
VolumeSlider {
|
|
|
|
anchors.left: volumeButton.right
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
}
|
|
|
|
|
|
|
|
PlaylistPrevButton {
|
|
|
|
id: playlistPrevButton
|
2018-11-29 08:25:54 +00:00
|
|
|
anchors.right: backwardButton.left
|
2018-11-28 18:41:54 +00:00
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.bottom: parent.bottom
|
2018-11-30 16:42:19 +00:00
|
|
|
icon.height: parent.height / 2
|
|
|
|
icon.width: parent.height / 2
|
2018-11-28 18:41:54 +00:00
|
|
|
}
|
2018-11-29 08:25:54 +00:00
|
|
|
BackwardButton {
|
|
|
|
id: backwardButton
|
|
|
|
anchors.right: timeLabel.left
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.bottom: parent.bottom
|
2018-11-30 16:42:19 +00:00
|
|
|
icon.height: parent.height / 2
|
|
|
|
icon.width: parent.height / 2
|
2018-11-29 08:25:54 +00:00
|
|
|
}
|
2018-11-28 18:41:54 +00:00
|
|
|
TimeLabel {
|
|
|
|
id: timeLabel
|
|
|
|
anchors.centerIn: parent
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
}
|
2018-11-29 08:25:54 +00:00
|
|
|
ForwardButton {
|
|
|
|
id: forwardButton
|
|
|
|
anchors.left: timeLabel.right
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.bottom: parent.bottom
|
2018-11-30 16:42:19 +00:00
|
|
|
icon.height: parent.height / 2
|
|
|
|
icon.width: parent.height / 2
|
2018-11-29 08:25:54 +00:00
|
|
|
}
|
2018-11-28 18:41:54 +00:00
|
|
|
PlaylistNextButton {
|
|
|
|
id: playlistNextButton
|
2018-11-29 08:25:54 +00:00
|
|
|
anchors.left: forwardButton.right
|
2018-11-28 18:41:54 +00:00
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.bottom: parent.bottom
|
2018-11-30 16:42:19 +00:00
|
|
|
icon.height: parent.height / 2
|
|
|
|
icon.width: parent.height / 2
|
2018-11-28 18:41:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
FullscreenButton {
|
|
|
|
id: fullscreenButton
|
|
|
|
anchors.right: settingsButton.left
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.bottom: parent.bottom
|
2018-11-30 16:42:19 +00:00
|
|
|
icon.height: parent.height / 2
|
|
|
|
icon.width: parent.height / 2
|
2018-11-28 18:41:54 +00:00
|
|
|
}
|
|
|
|
SettingsButton {
|
|
|
|
id: settingsButton
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.bottom: parent.bottom
|
2018-11-30 16:42:19 +00:00
|
|
|
icon.height: parent.height / 2
|
|
|
|
icon.width: parent.height / 2
|
2018-11-28 18:41:54 +00:00
|
|
|
}
|
|
|
|
}
|