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
458
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
5fc36e5b
Commit
5fc36e5b
authored
4 years ago
by
Fatih Uzunoğlu
Committed by
Pierre Lamot
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
qt: add 'count' property to PlayerControlbarModel
Signed-off-by:
Pierre Lamot
<
pierre@videolabs.io
>
parent
4b4ff85c
No related branches found
Branches containing commit
No related tags found
Loading
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/gui/qt/player/playercontrolbarmodel.cpp
+4
-0
4 additions, 0 deletions
modules/gui/qt/player/playercontrolbarmodel.cpp
modules/gui/qt/player/playercontrolbarmodel.hpp
+3
-0
3 additions, 0 deletions
modules/gui/qt/player/playercontrolbarmodel.hpp
with
7 additions
and
0 deletions
modules/gui/qt/player/playercontrolbarmodel.cpp
+
4
−
0
View file @
5fc36e5b
...
...
@@ -74,6 +74,10 @@ static const QVector<PlayerControlBarModel::IconToolButton> MINI_TB_DEFAULT[defa
PlayerControlBarModel
::
PlayerControlBarModel
(
QObject
*
_parent
)
:
QAbstractListModel
(
_parent
)
{
configName
=
"MainPlayerToolbar"
;
connect
(
this
,
&
QAbstractListModel
::
rowsInserted
,
this
,
&
PlayerControlBarModel
::
countChanged
);
connect
(
this
,
&
QAbstractListModel
::
rowsRemoved
,
this
,
&
PlayerControlBarModel
::
countChanged
);
connect
(
this
,
&
QAbstractListModel
::
modelReset
,
this
,
&
PlayerControlBarModel
::
countChanged
);
}
void
PlayerControlBarModel
::
saveConfig
()
...
...
This diff is collapsed.
Click to expand it.
modules/gui/qt/player/playercontrolbarmodel.hpp
+
3
−
0
View file @
5fc36e5b
...
...
@@ -29,6 +29,8 @@ class PlayerControlBarModel : public QAbstractListModel
Q_OBJECT
Q_PROPERTY
(
QmlMainContext
*
mainCtx
READ
getMainCtx
WRITE
setMainCtx
NOTIFY
ctxChanged
)
Q_PROPERTY
(
QString
configName
READ
getConfigName
WRITE
setConfigName
NOTIFY
configNameChanged
)
Q_PROPERTY
(
int
count
READ
rowCount
NOTIFY
countChanged
)
public:
explicit
PlayerControlBarModel
(
QObject
*
_parent
=
nullptr
);
...
...
@@ -104,6 +106,7 @@ public:
signals
:
void
ctxChanged
(
QmlMainContext
*
);
void
configNameChanged
(
QString
);
void
countChanged
();
protected
:
intf_thread_t
*
p_intf
=
nullptr
;
...
...
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