Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
013aee5f
Commit
013aee5f
authored
Sep 21, 2008
by
Jean-Baptiste Kempf
Browse files
Qt4: Faster/Slower buttons for whiners.
parent
b25d8309
Changes
5
Hide whitespace changes
Inline
Side-by-side
modules/gui/qt4/Modules.am
View file @
013aee5f
...
...
@@ -101,6 +101,8 @@ res_DEPENDENCIES = \
pixmaps/noart.png \
pixmaps/pause_16px.png \
pixmaps/pause.png \
pixmaps/faster.png \
pixmaps/slower.png \
pixmaps/play_16px.png \
pixmaps/playlist/add.png \
pixmaps/playlist/playlist.png \
...
...
modules/gui/qt4/components/interface_widgets.cpp
View file @
013aee5f
...
...
@@ -518,14 +518,14 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i,
slowerButton
->
setMaximumSize
(
QSize
(
26
,
20
)
);
slowerButton
->
setFocusPolicy
(
Qt
::
NoFocus
);
BUTTON_SET_ACT
(
slowerButton
,
"
-
"
,
qtr
(
"Slower"
),
slower
()
);
BUTTON_SET_ACT
_I
(
slowerButton
,
""
,
slower
,
qtr
(
"Slower"
),
slower
()
);
fasterButton
=
new
QToolButton
;
fasterButton
->
setAutoRaise
(
true
);
fasterButton
->
setMaximumSize
(
QSize
(
26
,
20
)
);
fasterButton
->
setFocusPolicy
(
Qt
::
NoFocus
);
BUTTON_SET_ACT
(
fasterButton
,
"
+
"
,
qtr
(
"Faster"
),
faster
()
);
BUTTON_SET_ACT
_I
(
fasterButton
,
""
,
faster
,
qtr
(
"Faster"
),
faster
()
);
/* advanced Controls handling */
b_advancedVisible
=
b_advControls
;
...
...
modules/gui/qt4/pixmaps/faster.png
0 → 100644
View file @
013aee5f
274 Bytes
modules/gui/qt4/pixmaps/slower.png
0 → 100644
View file @
013aee5f
275 Bytes
modules/gui/qt4/vlc.qrc
View file @
013aee5f
...
...
@@ -74,6 +74,8 @@
<file
alias=
"pause_b"
>
pixmaps/pause.png
</file>
<file
alias=
"play"
>
pixmaps/play_16px.png
</file>
<file
alias=
"play_b"
>
pixmaps/play.png
</file>
<file
alias=
"faster"
>
pixmaps/faster.png
</file>
<file
alias=
"slower"
>
pixmaps/slower.png
</file>
<file
alias=
"previous"
>
pixmaps/previous_16px.png
</file>
<file
alias=
"previous_b"
>
pixmaps/previous.png
</file>
<file
alias=
"stop"
>
pixmaps/stop_16px.png
</file>
...
...
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