Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
013aee5f
Commit
013aee5f
authored
Sep 21, 2008
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4: Faster/Slower buttons for whiners.
parent
b25d8309
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
2 deletions
+6
-2
modules/gui/qt4/Modules.am
modules/gui/qt4/Modules.am
+2
-0
modules/gui/qt4/components/interface_widgets.cpp
modules/gui/qt4/components/interface_widgets.cpp
+2
-2
modules/gui/qt4/pixmaps/faster.png
modules/gui/qt4/pixmaps/faster.png
+0
-0
modules/gui/qt4/pixmaps/slower.png
modules/gui/qt4/pixmaps/slower.png
+0
-0
modules/gui/qt4/vlc.qrc
modules/gui/qt4/vlc.qrc
+2
-0
No files found.
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