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
f369d2b3
Commit
f369d2b3
authored
Dec 19, 2008
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4: icons for skip and eject buttons.
parent
657a734b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
4 deletions
+16
-4
modules/gui/qt4/components/controller.cpp
modules/gui/qt4/components/controller.cpp
+8
-0
modules/gui/qt4/components/controller.hpp
modules/gui/qt4/components/controller.hpp
+8
-4
No files found.
modules/gui/qt4/components/controller.cpp
View file @
f369d2b3
...
...
@@ -661,6 +661,14 @@ void AbstractController::doAction( int id_action )
frame
();
break
;
case
REVERSE_ACTION
:
reverse
();
break
;
case
SKIP_BACK_ACTION
:
var_SetInteger
(
p_intf
->
p_libvlc
,
"key-pressed"
,
ACTIONID_JUMP_BACKWARD_SHORT
);
break
;
case
SKIP_FW_ACTION
:
var_SetInteger
(
p_intf
->
p_libvlc
,
"key-pressed"
,
ACTIONID_JUMP_FORWARD_SHORT
);
break
;
default:
msg_Dbg
(
p_intf
,
"Action: %i"
,
id_action
);
break
;
...
...
modules/gui/qt4/components/controller.hpp
View file @
f369d2b3
...
...
@@ -76,6 +76,8 @@ typedef enum buttonType_e
ATOB_BUTTON
,
FRAME_BUTTON
,
REVERSE_BUTTON
,
SKIP_BACK_BUTTON
,
SKIP_FW_BUTTON
,
BUTTON_MAX
,
SPLITTER
=
0x20
,
...
...
@@ -97,7 +99,7 @@ typedef enum buttonType_e
static
const
QString
nameL
[
BUTTON_MAX
]
=
{
"Play"
,
"Stop"
,
"Open"
,
"Previous"
,
"Next"
,
"Slower"
,
"Faster"
,
"Fullscreen"
,
"De-Fullscreen"
,
"Extended panel"
,
"Playlist"
,
"Snapshot"
,
"Record"
,
"A->B Loop"
,
"Frame By Frame"
,
"Reverse"
};
"Frame By Frame"
,
"Reverse"
,
"Skip backward"
,
"Skip forward"
};
static
const
QString
tooltipL
[
BUTTON_MAX
]
=
{
I_PLAY_TOOLTIP
,
_
(
"Stop playback"
),
_
(
"Open a media"
),
_
(
"Previous media in the playlist"
),
...
...
@@ -105,11 +107,11 @@ static const QString tooltipL[BUTTON_MAX] = { I_PLAY_TOOLTIP,
_
(
"Toggle the video in fullscreen"
),
_
(
"Toggle the video out fullscreen"
),
_
(
"Show extended settings"
),
_
(
"Show playlist"
),
_
(
"Take a snapshot"
),
_
(
"Record"
),
_
(
"Loop from point A to point B continuously."
),
_
(
"Frame by frame"
),
_
(
"Reverse"
)
};
static
const
QString
iconL
[
BUTTON_MAX
]
=
{
":/play_b"
,
":/stop_b"
,
""
,
_
(
"Frame by frame"
),
_
(
"Reverse"
)
,
_
(
"Skip backward"
),
_
(
"Skip forward"
)
};
static
const
QString
iconL
[
BUTTON_MAX
]
=
{
":/play_b"
,
":/stop_b"
,
"
:/eject
"
,
":/previous_b"
,
":/next_b"
,
":/slower"
,
":/faster"
,
":/fullscreen"
,
":/defullscreen"
,
":/extended"
,
":/playlist"
,
":/snapshot"
,
":/record"
,
":/atob_nob"
,
":/frame"
,
":/reverse"
};
":/atob_nob"
,
":/frame"
,
":/reverse"
,
":/skip_back"
,
":/skip_fw"
};
typedef
enum
actionType_e
{
...
...
@@ -127,6 +129,8 @@ typedef enum actionType_e
FRAME_ACTION
,
ATOB_ACTION
,
REVERSE_ACTION
,
SKIP_BACK_ACTION
,
SKIP_FW_ACTION
,
}
actionType_e
;
enum
...
...
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