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
f1fbc026
Commit
f1fbc026
authored
4 years ago
by
Fatih Uzunoğlu
Committed by
Pierre Lamot
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
qml: adapt model changes in ToolbarEditor
Signed-off-by:
Pierre Lamot
<
pierre@videolabs.io
>
parent
0ff5281c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/gui/qt/dialogs/toolbar/qml/ToolbarEditor.qml
+16
-92
16 additions, 92 deletions
modules/gui/qt/dialogs/toolbar/qml/ToolbarEditor.qml
with
16 additions
and
92 deletions
modules/gui/qt/dialogs/toolbar/qml/ToolbarEditor.qml
+
16
−
92
View file @
f1fbc026
...
...
@@ -89,6 +89,8 @@ Rectangle{
currentIndex
:
bar
.
currentIndex
RowLayout
{
id
:
mainPlayerLayout
Layout.preferredHeight
:
VLCStyle
.
heightBar_large
*
1.25
Layout.fillWidth
:
true
...
...
@@ -110,6 +112,9 @@ Rectangle{
font.pixelSize
:
VLCStyle
.
fontSize_xxlarge
}
readonly
property
string
identifier
:
"
MainPlayer
"
property
var
model
:
mainInterface
.
controlbarProfileModel
.
currentModel
.
getModel
(
identifier
)
EditorDNDView
{
id
:
playerBtnDND_left
Layout.fillHeight
:
true
...
...
@@ -119,7 +124,7 @@ Rectangle{
Layout.leftMargin
:
VLCStyle
.
margin_xsmall
Layout.rightMargin
:
VLCStyle
.
margin_xsmall
model
:
playerControlBarM
odel
_
left
model
:
mainPlayerLayout
.
m
odel
.
left
Text
{
anchors.fill
:
parent
...
...
@@ -153,7 +158,7 @@ Rectangle{
Layout.leftMargin
:
VLCStyle
.
margin_xsmall
Layout.rightMargin
:
VLCStyle
.
margin_xsmall
model
:
playerControlBarM
odel
_
center
model
:
mainPlayerLayout
.
m
odel
.
center
Text
{
anchors.fill
:
parent
...
...
@@ -187,7 +192,7 @@ Rectangle{
Layout.leftMargin
:
VLCStyle
.
margin_xsmall
Layout.rightMargin
:
VLCStyle
.
margin_xsmall
model
:
playerControlBarM
odel
_
right
model
:
mainPlayerLayout
.
m
odel
.
right
Text
{
anchors.fill
:
parent
...
...
@@ -203,9 +208,14 @@ Rectangle{
}
RowLayout
{
id
:
miniPlayerLayout
Layout.preferredHeight
:
VLCStyle
.
heightBar_large
*
1.25
Layout.fillWidth
:
true
readonly
property
string
identifier
:
"
MiniPlayer
"
property
var
model
:
mainInterface
.
controlbarProfileModel
.
currentModel
.
getModel
(
identifier
)
EditorDNDView
{
id
:
miniPlayerBtnDND_left
Layout.fillHeight
:
true
...
...
@@ -215,7 +225,7 @@ Rectangle{
Layout.leftMargin
:
VLCStyle
.
margin_xsmall
Layout.rightMargin
:
VLCStyle
.
margin_xsmall
model
:
miniPlayer
M
odel
_
left
model
:
miniPlayer
Layout
.
m
odel
.
left
Text
{
anchors.fill
:
parent
...
...
@@ -249,7 +259,7 @@ Rectangle{
Layout.leftMargin
:
VLCStyle
.
margin_xsmall
Layout.rightMargin
:
VLCStyle
.
margin_xsmall
model
:
miniPlayer
M
odel
_
center
model
:
miniPlayer
Layout
.
m
odel
.
center
Text
{
anchors.fill
:
parent
...
...
@@ -283,7 +293,7 @@ Rectangle{
Layout.leftMargin
:
VLCStyle
.
margin_xsmall
Layout.rightMargin
:
VLCStyle
.
margin_xsmall
model
:
miniPlayer
M
odel
_
right
model
:
miniPlayer
Layout
.
m
odel
.
right
Text
{
anchors.fill
:
parent
...
...
@@ -328,96 +338,10 @@ Rectangle{
}
}
function
getProfileConfig
(){
return
"
%1#%2#%3 | %4#%5#%6
"
.
arg
(
playerControlBarModel_left
.
getConfig
())
.
arg
(
playerControlBarModel_center
.
getConfig
())
.
arg
(
playerControlBarModel_right
.
getConfig
())
.
arg
(
miniPlayerModel_left
.
getConfig
())
.
arg
(
miniPlayerModel_center
.
getConfig
())
.
arg
(
miniPlayerModel_right
.
getConfig
())
}
Connections
{
target
:
toolbareditor
onUpdatePlayerModel
:
{
playerBtnDND_left
.
currentIndex
=
-
1
playerBtnDND_center
.
currentIndex
=
-
1
playerBtnDND_right
.
currentIndex
=
-
1
miniPlayerBtnDND_left
.
currentIndex
=
-
1
miniPlayerBtnDND_center
.
currentIndex
=
-
1
miniPlayerBtnDND_right
.
currentIndex
=
-
1
if
(
toolbarName
==
"
MainPlayerToolbar-left
"
)
playerControlBarModel_left
.
reloadConfig
(
config
)
else
if
(
toolbarName
==
"
MainPlayerToolbar-center
"
)
playerControlBarModel_center
.
reloadConfig
(
config
)
else
if
(
toolbarName
==
"
MainPlayerToolbar-right
"
)
playerControlBarModel_right
.
reloadConfig
(
config
)
else
if
(
toolbarName
==
"
MiniPlayerToolbar-left
"
)
miniPlayerModel_left
.
reloadConfig
(
config
)
else
if
(
toolbarName
==
"
MiniPlayerToolbar-center
"
)
miniPlayerModel_center
.
reloadConfig
(
config
)
else
if
(
toolbarName
==
"
MiniPlayerToolbar-right
"
)
miniPlayerModel_right
.
reloadConfig
(
config
)
}
onSaveConfig
:
{
miniPlayerModel_left
.
saveConfig
()
miniPlayerModel_center
.
saveConfig
()
miniPlayerModel_right
.
saveConfig
()
playerControlBarModel_left
.
saveConfig
()
playerControlBarModel_center
.
saveConfig
()
playerControlBarModel_right
.
saveConfig
()
}
}
PlayerControlBarModel
{
id
:
playerControlBarModel_left
mainCtx
:
mainctx
configName
:
"
MainPlayerToolbar-left
"
}
PlayerControlBarModel
{
id
:
playerControlBarModel_center
mainCtx
:
mainctx
configName
:
"
MainPlayerToolbar-center
"
}
PlayerControlBarModel
{
id
:
playerControlBarModel_right
mainCtx
:
mainctx
configName
:
"
MainPlayerToolbar-right
"
}
PlayerControlBarModel
{
id
:
miniPlayerModel_left
mainCtx
:
mainctx
configName
:
"
MiniPlayerToolbar-left
"
}
PlayerControlBarModel
{
id
:
miniPlayerModel_center
mainCtx
:
mainctx
configName
:
"
MiniPlayerToolbar-center
"
}
PlayerControlBarModel
{
id
:
miniPlayerModel_right
mainCtx
:
mainctx
configName
:
"
MiniPlayerToolbar-right
"
}
Player.ControlButtons
{
id
:
controlButtons
}
PlaylistControllerModel
{
id
:
mainPlaylistController
playlistPtr
:
mainctx
.
playlist
}
EditorDummyButton
{
id
:
buttonDragItem
visible
:
false
...
...
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