Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
0f98a479
Commit
0f98a479
authored
Jun 01, 2006
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Manage navigation buttons, status and text
parent
4a935b11
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
53 additions
and
4 deletions
+53
-4
modules/gui/qt4/input_manager.cpp
modules/gui/qt4/input_manager.cpp
+39
-1
modules/gui/qt4/input_manager.hpp
modules/gui/qt4/input_manager.hpp
+3
-0
modules/gui/qt4/util/input_slider.cpp
modules/gui/qt4/util/input_slider.cpp
+11
-3
No files found.
modules/gui/qt4/input_manager.cpp
View file @
0f98a479
...
...
@@ -46,19 +46,57 @@ void InputManager::setInput( input_thread_t *_p_input )
void
InputManager
::
update
()
{
/// \todo Emit the signals only if it changed
if
(
!
p_input
||
p_input
->
b_die
)
return
;
if
(
p_input
->
b_dead
)
{
emit
positionUpdated
(
0.0
,
0
,
0
);
emit
navigationChanged
(
0
);
emit
statusChanged
(
0
);
// 0 = STOPPED, 1 = PAUSE, 2 = PLAY
}
/* Update position */
mtime_t
i_length
,
i_time
;
float
f_pos
;
i_length
=
var_GetTime
(
p_input
,
"length"
)
/
1000000
;
i_time
=
var_GetTime
(
p_input
,
"time"
)
/
1000000
;
f_pos
=
var_GetFloat
(
p_input
,
"position"
);
emit
positionUpdated
(
f_pos
,
i_time
,
i_length
);
/* Update disc status */
vlc_value_t
val
;
var_Change
(
p_input
,
"title"
,
VLC_VAR_CHOICESCOUNT
,
&
val
,
NULL
);
if
(
val
.
i_int
>
0
)
{
vlc_value_t
val
;
var_Change
(
p_input
,
"chapter"
,
VLC_VAR_CHOICESCOUNT
,
&
val
,
NULL
);
if
(
val
.
i_int
>
0
)
emit
navigationChanged
(
1
);
// 1 = chapter, 2 = title, 3 = NO
else
emit
navigationChanged
(
2
);
}
else
{
emit
navigationChanged
(
0
);
}
/* Update text */
QString
text
;
if
(
p_input
->
input
.
p_item
->
p_meta
&&
p_input
->
input
.
p_item
->
p_meta
->
psz_nowplaying
&&
*
p_input
->
input
.
p_item
->
p_meta
->
psz_nowplaying
)
{
text
.
sprintf
(
"%s - %s"
,
p_input
->
input
.
p_item
->
p_meta
->
psz_nowplaying
,
p_input
->
input
.
p_item
->
psz_name
);
}
else
{
text
.
sprintf
(
"%s"
,
p_input
->
input
.
p_item
->
psz_name
);
}
emit
nameChanged
(
text
);
}
void
InputManager
::
sliderUpdate
(
float
new_pos
)
...
...
modules/gui/qt4/input_manager.hpp
View file @
0f98a479
...
...
@@ -45,6 +45,9 @@ public slots:
signals:
/// Send new position, new time and new length
void
positionUpdated
(
float
,
int
,
int
);
void
nameChanged
(
QString
);
void
navigationChanged
(
int
);
void
statusChanged
(
int
);
};
...
...
modules/gui/qt4/util/input_slider.cpp
View file @
0f98a479
...
...
@@ -43,9 +43,17 @@ InputSlider::InputSlider( Qt::Orientation q,QWidget *_parent ) :
void
InputSlider
::
setPosition
(
float
pos
,
int
a
,
int
b
)
{
mymove
=
true
;
setValue
(
(
int
)(
pos
*
1000.0
)
);
mymove
=
false
;
if
(
pos
==
0.0
)
{
setEnabled
(
false
);
}
else
{
setEnabled
(
true
);
mymove
=
true
;
setValue
(
(
int
)(
pos
*
1000.0
)
);
mymove
=
false
;
}
}
void
InputSlider
::
userDrag
(
int
new_value
)
...
...
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