Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
212b20dd
Commit
212b20dd
authored
Apr 17, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4: override playlist configuration on request, _not_ on exit
Fixes #6346.
parent
7eb61415
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
12 deletions
+21
-12
modules/gui/qt4/input_manager.cpp
modules/gui/qt4/input_manager.cpp
+21
-12
No files found.
modules/gui/qt4/input_manager.cpp
View file @
212b20dd
...
...
@@ -977,11 +977,6 @@ MainInputManager::~MainInputManager()
var_DelCallback
(
THEPL
,
"item-current"
,
PLItemChanged
,
this
);
var_DelCallback
(
THEPL
,
"playlist-item-append"
,
PLItemAppended
,
this
);
var_DelCallback
(
THEPL
,
"playlist-item-deleted"
,
PLItemRemoved
,
this
);
/* Save some interface state in configuration, at module quit */
config_PutInt
(
p_intf
,
"random"
,
var_GetBool
(
THEPL
,
"random"
)
);
config_PutInt
(
p_intf
,
"loop"
,
var_GetBool
(
THEPL
,
"loop"
)
);
config_PutInt
(
p_intf
,
"repeat"
,
var_GetBool
(
THEPL
,
"repeat"
)
);
}
vout_thread_t
*
MainInputManager
::
getVout
()
...
...
@@ -1125,7 +1120,7 @@ void MainInputManager::pause()
void
MainInputManager
::
toggleRandom
()
{
var_ToggleBool
(
THEPL
,
"random"
);
config_PutInt
(
p_intf
,
"random"
,
var_ToggleBool
(
THEPL
,
"random"
)
);
}
void
MainInputManager
::
notifyRandom
(
bool
value
)
...
...
@@ -1144,15 +1139,29 @@ void MainInputManager::notifyRepeatLoop(bool)
void
MainInputManager
::
loopRepeatLoopStatus
()
{
/* Toggle Normal -> Loop -> Repeat -> Normal ... */
if
(
var_GetBool
(
THEPL
,
"repeat"
)
)
var_SetBool
(
THEPL
,
"repeat"
,
false
);
else
if
(
var_GetBool
(
THEPL
,
"loop"
)
)
bool
loop
=
var_GetBool
(
THEPL
,
"loop"
);
bool
repeat
=
var_GetBool
(
THEPL
,
"repeat"
);
if
(
repeat
)
{
loop
=
false
;
repeat
=
false
;
}
else
if
(
loop
)
{
var_SetBool
(
THEPL
,
"loop"
,
false
)
;
var_SetBool
(
THEPL
,
"repeat"
,
true
)
;
loop
=
false
;
repeat
=
true
;
}
else
var_SetBool
(
THEPL
,
"loop"
,
true
);
{
loop
=
true
;
//repeat = false;
}
var_SetBool
(
THEPL
,
"loop"
,
loop
);
var_SetBool
(
THEPL
,
"repeat"
,
repeat
);
config_PutInt
(
p_intf
,
"loop"
,
loop
);
config_PutInt
(
p_intf
,
"repeat"
,
repeat
);
}
void
MainInputManager
::
activatePlayQuit
(
bool
b_exit
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment