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
cd305426
Commit
cd305426
authored
4 years ago
by
Benjamin Arnaud
Committed by
Pierre Lamot
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
qt/playlist_controller: Add the 'insert' function
Signed-off-by:
Pierre Lamot
<
pierre@videolabs.io
>
parent
f474d6e0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/gui/qt/playlist/playlist_controller.cpp
+19
-0
19 additions, 0 deletions
modules/gui/qt/playlist/playlist_controller.cpp
modules/gui/qt/playlist/playlist_controller.hpp
+2
-0
2 additions, 0 deletions
modules/gui/qt/playlist/playlist_controller.hpp
with
21 additions
and
0 deletions
modules/gui/qt/playlist/playlist_controller.cpp
+
19
−
0
View file @
cd305426
...
...
@@ -24,6 +24,7 @@
#include
"playlist_controller_p.hpp"
#include
"vlc_player.h"
#include
"vlc_url.h"
#include
"util/qmlinputitem.hpp"
#include
<algorithm>
#include
<QVariant>
#include
<QDesktopServices>
...
...
@@ -441,6 +442,24 @@ PlaylistControllerModel::remove(const QVector<PlaylistItem> &items, ssize_t inde
throw
std
::
bad_alloc
();
}
void
PlaylistControllerModel
::
insert
(
int
index
,
const
QVariantList
&
items
)
{
QVector
<
vlc
::
playlist
::
Media
>
medias
;
for
(
const
QVariant
&
variant
:
items
)
{
if
(
variant
.
canConvert
<
QmlInputItem
>
()
==
false
)
continue
;
const
QmlInputItem
&
item
=
variant
.
value
<
QmlInputItem
>
();
medias
.
push_back
(
vlc
::
playlist
::
Media
(
item
.
item
.
get
()));
}
insert
(
index
,
medias
,
false
);
}
void
PlaylistControllerModel
::
shuffle
()
{
...
...
This diff is collapsed.
Click to expand it.
modules/gui/qt/playlist/playlist_controller.hpp
+
2
−
0
View file @
cd305426
...
...
@@ -112,6 +112,8 @@ public:
void
move
(
const
QVector
<
PlaylistItem
>
&
,
size_t
target
,
ssize_t
indexHint
);
void
remove
(
const
QVector
<
PlaylistItem
>
&
,
ssize_t
indexHint
);
Q_INVOKABLE
void
insert
(
int
index
,
const
QVariantList
&
items
/* QList<QmlInputItem> */
);
Q_INVOKABLE
void
shuffle
();
void
sort
(
const
QVector
<
vlc_playlist_sort_criterion
>
&
);
...
...
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