Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
454
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
e447d823
Commit
e447d823
authored
4 years ago
by
Prince Gupta
Committed by
Pierre Lamot
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
qml: allow different positioning of text in ControlBar
Signed-off-by:
Pierre Lamot
<
pierre@videolabs.io
>
parent
0b394551
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/gui/qt/player/qml/ControlBar.qml
+107
-37
107 additions, 37 deletions
modules/gui/qt/player/qml/ControlBar.qml
modules/gui/qt/player/qml/Player.qml
+3
-1
3 additions, 1 deletion
modules/gui/qt/player/qml/Player.qml
with
110 additions
and
38 deletions
modules/gui/qt/player/qml/ControlBar.qml
+
107
−
37
View file @
e447d823
...
...
@@ -31,8 +31,16 @@ import "qrc:///playlist/" as PL
Widgets.NavigableFocusScope
{
id
:
root
enum
TimeTextPosition
{
Hide
,
AboveSlider
,
LeftRightSlider
}
signal
showTrackBar
()
readonly
property
alias
sliderY
:
row2
.
y
property
int
textPosition
:
ControlBar
.
TimeTextPosition
.
AboveSlider
property
VLCColors
colors
:
VLCStyle
.
nightColors
property
bool
autoHide
:
_lockAutoHide
===
0
&&
!
lockAutoHide
property
bool
lockAutoHide
:
false
...
...
@@ -46,54 +54,76 @@ Widgets.NavigableFocusScope {
implicitHeight
:
columnLayout
.
implicitHeight
Component.onCompleted
:
{
// if initially textPosition = Hide, then _onTextPositionChanged isn't called
if
(
textPosition
===
ControlBar
.
TimeTextPosition
.
Hide
)
_layout
()
}
onTextPositionChanged
:
_layout
()
function
_layout
()
{
trackPositionSlider
.
visible
=
true
mediaTime
.
visible
=
true
mediaRemainingTime
.
visible
=
true
mediaTime
.
font
.
pixelSize
=
VLCStyle
.
fontSize_normal
mediaRemainingTime
.
font
.
pixelSize
=
VLCStyle
.
fontSize_normal
row2
.
Layout
.
leftMargin
=
0
row2
.
Layout
.
rightMargin
=
0
switch
(
textPosition
)
{
case
ControlBar.TimeTextPosition.Hide
:
row1
.
children
=
[]
row2
.
children
=
[
trackPositionSlider
]
mediaTime
.
visible
=
false
mediaRemainingTime
.
visible
=
false
break
;
case
ControlBar.TimeTextPosition.AboveSlider
:
var
spacer
=
Qt
.
createQmlObject
(
"
import QtQuick 2.11; Item {}
"
,
row1
,
"
ControlBar
"
)
row1
.
children
=
[
mediaTime
,
spacer
,
mediaRemainingTime
]
spacer
.
Layout
.
fillWidth
=
true
row2
.
children
=
[
trackPositionSlider
]
break
;
case
ControlBar.TimeTextPosition.LeftRightSlider
:
row1
.
children
=
[]
row2
.
children
=
[
mediaTime
,
trackPositionSlider
,
mediaRemainingTime
]
row2
.
Layout
.
leftMargin
=
VLCStyle
.
margin_xsmall
row2
.
Layout
.
rightMargin
=
VLCStyle
.
margin_xsmall
mediaTime
.
font
.
pixelSize
=
VLCStyle
.
fontSize_small
mediaRemainingTime
.
font
.
pixelSize
=
VLCStyle
.
fontSize_small
trackPositionSlider
.
Layout
.
alignment
=
Qt
.
AlignVCenter
break
;
default
:
console
.
assert
(
false
,
"
invalid text position
"
)
}
trackPositionSlider
.
Layout
.
fillWidth
=
true
row1
.
visible
=
row1
.
children
.
length
>
0
row2
.
visible
=
row2
.
children
.
length
>
0
}
ColumnLayout
{
id
:
columnLayout
anchors.fill
:
parent
spacing
:
VLCStyle
.
margin_small
RowLayout
{
id
:
row1
spacing
:
0
Layout.fillWidth
:
true
Layout.leftMargin
:
VLCStyle
.
margin_normal
Layout.rightMargin
:
VLCStyle
.
margin_normal
Label
{
text
:
player
.
time
.
toString
()
color
:
root
.
colors
.
playerFg
font.pixelSize
:
VLCStyle
.
fontSize_normal
Layout.alignment
:
Qt
.
AlignLeft
}
Item
{
Layout.fillWidth
:
true
}
Label
{
text
:
(
mainInterface
.
showRemainingTime
&&
player
.
remainingTime
.
valid
())
?
"
-
"
+
player
.
remainingTime
.
toString
()
:
player
.
length
.
toString
()
color
:
root
.
colors
.
playerFg
font.pixelSize
:
VLCStyle
.
fontSize_normal
Layout.alignment
:
Qt
.
AlignRight
MouseArea
{
anchors.fill
:
parent
onClicked
:
mainInterface
.
showRemainingTime
=
!
mainInterface
.
showRemainingTime
}
}
}
SliderBar
{
id
:
trackPositionSlider
backgroundColor
:
Qt
.
lighter
(
colors
.
playerBg
,
1.6180
)
progressBarColor
:
activeFocus
?
colors
.
accent
:
colors
.
playerControlBarFg
barHeight
:
VLCStyle
.
heightBar_xxsmall
Layout.alignment
:
Qt
.
AlignLeft
|
Qt
.
AlignTop
Layout.fillWidth
:
true
enabled
:
player
.
playingState
==
PlayerController
.
PLAYING_STATE_PLAYING
||
player
.
playingState
==
PlayerController
.
PLAYING_STATE_PAUSED
Keys.onDownPressed
:
playerButtonsLayout
.
focus
=
true
parentWindow
:
g_root
RowLayout
{
id
:
row2
colors
:
root
.
colors
spacing
:
VLCStyle
.
margin_xsmall
Layout.fillWidth
:
true
}
Item
{
...
...
@@ -123,6 +153,46 @@ Widgets.NavigableFocusScope {
}
}
Label
{
id
:
mediaTime
visible
:
false
text
:
player
.
time
.
toString
()
color
:
root
.
colors
.
playerFg
font.pixelSize
:
VLCStyle
.
fontSize_normal
}
Label
{
id
:
mediaRemainingTime
visible
:
false
text
:
(
mainInterface
.
showRemainingTime
&&
player
.
remainingTime
.
valid
())
?
"
-
"
+
player
.
remainingTime
.
toString
()
:
player
.
length
.
toString
()
color
:
root
.
colors
.
playerFg
font.pixelSize
:
VLCStyle
.
fontSize_normal
MouseArea
{
anchors.fill
:
parent
onClicked
:
mainInterface
.
showRemainingTime
=
!
mainInterface
.
showRemainingTime
}
}
SliderBar
{
id
:
trackPositionSlider
visible
:
false
backgroundColor
:
Qt
.
lighter
(
colors
.
playerBg
,
1.6180
)
progressBarColor
:
activeFocus
?
colors
.
accent
:
colors
.
playerControlBarFg
barHeight
:
VLCStyle
.
heightBar_xxsmall
enabled
:
player
.
playingState
==
PlayerController
.
PLAYING_STATE_PLAYING
||
player
.
playingState
==
PlayerController
.
PLAYING_STATE_PAUSED
parentWindow
:
g_root
colors
:
root
.
colors
Keys.onDownPressed
:
playerButtonsLayout
.
focus
=
true
}
PlayerControlBarModel
{
id
:
playerControlBarModel_left
mainCtx
:
mainctx
...
...
This diff is collapsed.
Click to expand it.
modules/gui/qt/player/qml/Player.qml
+
3
−
1
View file @
e447d823
...
...
@@ -35,7 +35,7 @@ Widgets.NavigableFocusScope {
property
var
_menu
:
undefined
property
bool
hasEmbededVideo
:
mainInterface
.
hasEmbededVideo
readonly
property
int
positionSliderY
:
controlBarView
.
y
+
VLCStyle
.
fontHeight_normal
+
VLCStyle
.
margin_small
readonly
property
int
positionSliderY
:
controlBarView
.
y
+
controlBarView
.
sliderY
readonly
property
string
coverSource
:
(
mainPlaylistController
.
currentItem
.
artwork
&&
mainPlaylistController
.
currentItem
.
artwork
.
toString
())
?
mainPlaylistController
.
currentItem
.
artwork
:
VLCStyle
.
noArtCover
...
...
@@ -419,6 +419,7 @@ Widgets.NavigableFocusScope {
id
:
controlBarView
property
var
autoHide
:
controlBarView
.
contentItem
.
autoHide
readonly
property
int
sliderY
:
contentItem
.
sliderY
anchors
{
bottom
:
parent
.
bottom
...
...
@@ -433,6 +434,7 @@ Widgets.NavigableFocusScope {
id
:
controllerMouseArea
property
alias
autoHide
:
controllerId
.
autoHide
readonly
property
alias
sliderY
:
controllerId
.
sliderY
height
:
controllerId
.
implicitHeight
+
controllerId
.
anchors
.
bottomMargin
width
:
controlBarView
.
width
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment