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
1c7da3ea
Commit
1c7da3ea
authored
Aug 02, 2004
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Fixed hotkey/OSD behaviour for OS X. Also prevents code duplicity.
Testing would be welcomed very much.
parent
18dd0278
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
77 additions
and
147 deletions
+77
-147
modules/gui/macosx/controls.m
modules/gui/macosx/controls.m
+56
-131
modules/gui/macosx/intf.h
modules/gui/macosx/intf.h
+1
-0
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+2
-2
modules/gui/macosx/vout.m
modules/gui/macosx/vout.m
+18
-14
No files found.
modules/gui/macosx/controls.m
View file @
1c7da3ea
...
...
@@ -44,120 +44,73 @@
-
(
IBAction
)
play
:(
id
)
sender
{
vlc_value_t
val
;
playlist_t
*
p_playlist
;
intf_thread_t
*
p_intf
=
VLCIntf
;
input_thread_t
*
p_input
=
vlc_object_find
(
p_intf
,
VLC_OBJECT_INPUT
,
FIND_ANYWHERE
);
val
.
i_int
=
PLAYING_S
;
if
(
p_input
)
{
var_Get
(
p_input
,
"state"
,
&
val
);
}
if
(
p_input
&&
val
.
i_int
!=
PAUSE_S
)
{
vout_OSDMessage
(
p_intf
,
DEFAULT_CHAN
,
_
(
"Pause"
)
);
val
.
i_int
=
PAUSE_S
;
var_Set
(
p_input
,
"state"
,
val
);
}
else
{
p_playlist
=
vlc_object_find
(
p_intf
,
VLC_OBJECT_PLAYLIST
,
playlist_t
*
p_playlist
=
vlc_object_find
(
p_intf
,
VLC_OBJECT_PLAYLIST
,
FIND_ANYWHERE
);
if
(
p_playlist
)
{
vlc_mutex_lock
(
&
p_playlist
->
object_lock
);
if
(
p_playlist
->
i_size
)
if
(
p_playlist
->
i_size
<=
0
)
{
vlc_mutex_unlock
(
&
p_playlist
->
object_lock
);
vout_OSDMessage
(
p_intf
,
DEFAULT_CHAN
,
_
(
"Play"
)
);
playlist_Play
(
p_playlist
);
vlc_object_release
(
p_playlist
);
[
o_open
openFileGeneric
:
nil
];
}
else
{
vlc_mutex_unlock
(
&
p_playlist
->
object_lock
);
vlc_object_release
(
p_playlist
);
[
o_open
openFileGeneric
:
nil
];
}
}
}
if
(
p_input
)
vlc_object_release
(
p_input
);
val
.
i_int
=
config_GetInt
(
p_intf
,
"key-play-pause"
);
var_Set
(
p_intf
->
p_vlc
,
"key-pressed"
,
val
);
}
-
(
IBAction
)
stop
:(
id
)
sender
{
vlc_value_t
val
;
intf_thread_t
*
p_intf
=
VLCIntf
;
playlist_t
*
p_playlist
=
vlc_object_find
(
p_intf
,
VLC_OBJECT_PLAYLIST
,
FIND_ANYWHERE
);
if
(
p_playlist
!=
NULL
)
{
vout_OSDMessage
(
p_intf
,
DEFAULT_CHAN
,
_
(
"Stop"
)
);
playlist_Stop
(
p_playlist
);
vlc_object_release
(
p_playlist
);
}
val
.
i_int
=
config_GetInt
(
p_intf
,
"key-stop"
);
var_Set
(
p_intf
->
p_vlc
,
"key-pressed"
,
val
);
}
-
(
IBAction
)
faster
:(
id
)
sender
{
vlc_value_t
val
;
intf_thread_t
*
p_intf
=
VLCIntf
;
input_thread_t
*
p_input
=
vlc_object_find
(
p_intf
,
VLC_OBJECT_INPUT
,
FIND_ANYWHERE
);
if
(
p_input
!=
NULL
)
{
vlc_value_t
val
;
val
.
b_bool
=
VLC_TRUE
;
var_Set
(
p_input
,
"rate-faster"
,
val
);
vout_OSDMessage
(
p_intf
,
DEFAULT_CHAN
,
_
(
"Faster"
)
);
vlc_object_release
(
p_input
);
}
val
.
i_int
=
config_GetInt
(
p_intf
,
"key-faster"
);
var_Set
(
p_intf
->
p_vlc
,
"key-pressed"
,
val
);
}
-
(
IBAction
)
slower
:(
id
)
sender
{
vlc_value_t
val
;
intf_thread_t
*
p_intf
=
VLCIntf
;
input_thread_t
*
p_input
=
vlc_object_find
(
p_intf
,
VLC_OBJECT_INPUT
,
FIND_ANYWHERE
);
if
(
p_input
!=
NULL
)
{
vlc_value_t
val
;
val
.
b_bool
=
VLC_TRUE
;
var_Set
(
p_input
,
"rate-slower"
,
val
);
vout_OSDMessage
(
p_intf
,
DEFAULT_CHAN
,
_
(
"Slower"
)
);
vlc_object_release
(
p_input
);
}
val
.
i_int
=
config_GetInt
(
p_intf
,
"key-slower"
);
var_Set
(
p_intf
->
p_vlc
,
"key-pressed"
,
val
);
}
-
(
IBAction
)
prev
:(
id
)
sender
{
vlc_value_t
val
;
intf_thread_t
*
p_intf
=
VLCIntf
;
playlist_t
*
p_playlist
=
vlc_object_find
(
p_intf
,
VLC_OBJECT_PLAYLIST
,
FIND_ANYWHERE
);
if
(
p_playlist
)
{
playlist_Prev
(
p_playlist
);
vlc_object_release
(
p_playlist
);
vout_OSDMessage
(
p_intf
,
DEFAULT_CHAN
,
_
(
"Previous"
)
);
}
val
.
i_int
=
config_GetInt
(
p_intf
,
"key-prev"
);
var_Set
(
p_intf
->
p_vlc
,
"key-pressed"
,
val
);
}
-
(
IBAction
)
next
:(
id
)
sender
{
vlc_value_t
val
;
intf_thread_t
*
p_intf
=
VLCIntf
;
playlist_t
*
p_playlist
=
vlc_object_find
(
p_intf
,
VLC_OBJECT_PLAYLIST
,
FIND_ANYWHERE
);
if
(
p_playlist
)
{
playlist_Next
(
p_playlist
);
vlc_object_release
(
p_playlist
);
vout_OSDMessage
(
p_intf
,
DEFAULT_CHAN
,
_
(
"Next"
)
);
}
val
.
i_int
=
config_GetInt
(
p_intf
,
"key-next"
);
var_Set
(
p_intf
->
p_vlc
,
"key-pressed"
,
val
);
}
-
(
IBAction
)
random
:(
id
)
sender
{
intf_thread_t
*
p_intf
=
VLCIntf
;
vlc_value_t
val
;
intf_thread_t
*
p_intf
=
VLCIntf
;
playlist_t
*
p_playlist
=
vlc_object_find
(
p_intf
,
VLC_OBJECT_PLAYLIST
,
FIND_ANYWHERE
);
if
(
p_playlist
==
NULL
)
...
...
@@ -184,8 +137,8 @@
-
(
IBAction
)
repeat
:(
id
)
sender
{
intf_thread_t
*
p_intf
=
VLCIntf
;
vlc_value_t
val
;
intf_thread_t
*
p_intf
=
VLCIntf
;
playlist_t
*
p_playlist
=
vlc_object_find
(
p_intf
,
VLC_OBJECT_PLAYLIST
,
FIND_ANYWHERE
);
if
(
p_playlist
==
NULL
)
...
...
@@ -216,8 +169,8 @@
-
(
IBAction
)
loop
:(
id
)
sender
{
intf_thread_t
*
p_intf
=
VLCIntf
;
vlc_value_t
val
;
intf_thread_t
*
p_intf
=
VLCIntf
;
playlist_t
*
p_playlist
=
vlc_object_find
(
p_intf
,
VLC_OBJECT_PLAYLIST
,
FIND_ANYWHERE
);
if
(
p_playlist
==
NULL
)
...
...
@@ -248,71 +201,45 @@
-
(
IBAction
)
forward
:(
id
)
sender
{
vlc_value_t
val
;
intf_thread_t
*
p_intf
=
VLCIntf
;
input_thread_t
*
p_input
=
vlc_object_find
(
p_intf
,
VLC_OBJECT_INPUT
,
FIND_ANYWHERE
);
if
(
p_input
!=
NULL
)
{
vlc_value_t
time
;
time
.
i_time
=
10
*
1000000
;
var_Set
(
p_input
,
"time-offset"
,
time
);
vout_OSDMessage
(
p_intf
,
DEFAULT_CHAN
,
_
(
"Jump +10 Seconds"
)
);
vlc_object_release
(
p_input
);
}
val
.
i_int
=
config_GetInt
(
p_intf
,
"key-jump+10sec"
);
var_Set
(
p_intf
->
p_vlc
,
"key-pressed"
,
val
);
}
-
(
IBAction
)
backward
:(
id
)
sender
{
vlc_value_t
val
;
intf_thread_t
*
p_intf
=
VLCIntf
;
input_thread_t
*
p_input
=
vlc_object_find
(
p_intf
,
VLC_OBJECT_INPUT
,
FIND_ANYWHERE
);
if
(
p_input
!=
NULL
)
{
vlc_value_t
time
;
time
.
i_time
=
-
10
*
1000000
;
var_Set
(
p_input
,
"time-offset"
,
time
);
vout_OSDMessage
(
p_intf
,
DEFAULT_CHAN
,
_
(
"Jump -10 Seconds"
)
);
vlc_object_release
(
p_input
);
}
val
.
i_int
=
config_GetInt
(
p_intf
,
"key-jump-10sec"
);
var_Set
(
p_intf
->
p_vlc
,
"key-pressed"
,
val
);
}
-
(
IBAction
)
volumeUp
:(
id
)
sender
{
vlc_value_t
val
;
intf_thread_t
*
p_intf
=
VLCIntf
;
if
(
p_intf
->
p_sys
->
b_mute
)
{
[
self
mute
:
nil
];
}
aout_VolumeUp
(
p_intf
,
1
,
NULL
);
val
.
i_int
=
config_GetInt
(
p_intf
,
"key-vol-up"
);
var_Set
(
p_intf
->
p_vlc
,
"key-pressed"
,
val
);
[
self
updateVolumeSlider
];
}
-
(
IBAction
)
volumeDown
:(
id
)
sender
{
vlc_value_t
val
;
intf_thread_t
*
p_intf
=
VLCIntf
;
if
(
p_intf
->
p_sys
->
b_mute
)
{
[
self
mute
:
nil
];
}
aout_VolumeDown
(
p_intf
,
1
,
NULL
);
val
.
i_int
=
config_GetInt
(
p_intf
,
"key-vol-down"
);
var_Set
(
p_intf
->
p_vlc
,
"key-pressed"
,
val
);
[
self
updateVolumeSlider
];
}
-
(
IBAction
)
mute
:(
id
)
sender
{
vlc_value_t
val
;
intf_thread_t
*
p_intf
=
VLCIntf
;
audio_volume_t
i_volume
;
aout_VolumeMute
(
p_intf
,
&
i_volume
);
p_intf
->
p_sys
->
b_mute
=
(
i_volume
==
0
);
val
.
i_int
=
config_GetInt
(
p_intf
,
"key-vol-mute"
);
var_Set
(
p_intf
->
p_vlc
,
"key-pressed"
,
val
);
[
self
updateVolumeSlider
];
}
...
...
@@ -332,9 +259,6 @@
aout_VolumeGet
(
p_intf
,
&
i_volume
);
[
o_volumeslider
setFloatValue
:
(
float
)(
i_volume
/
AOUT_VOLUME_STEP
)];
vout_OSDMessage
(
p_intf
,
DEFAULT_CHAN
,
"Vol %d%%"
,
i_volume
*
200
/
AOUT_VOLUME_MAX
);
}
-
(
IBAction
)
windowAction
:(
id
)
sender
...
...
@@ -670,13 +594,14 @@
else
if
(
[[
o_mi
title
]
isEqualToString
:
_NS
(
"Step Forward"
)]
||
[[
o_mi
title
]
isEqualToString
:
_NS
(
"Step Backward"
)]
)
{
bEnabled
=
FALSE
;
if
(
p_playlist
!=
NULL
&&
p_input
!=
NULL
)
{
bEnabled
=
TRUE
;
/* FIXME p_input seekable */
}
else
var_Get
(
p_input
,
"seekable"
,
&
val
);
if
(
val
.
b_bool
)
{
bEnabled
=
FALSE
;
bEnabled
=
TRUE
;
}
}
}
else
if
(
[[
o_mi
title
]
isEqualToString
:
_NS
(
"Mute"
)]
)
...
...
modules/gui/macosx/intf.h
View file @
1c7da3ea
...
...
@@ -27,6 +27,7 @@
#include <vlc/intf.h>
#include <vlc/vout.h>
#include <vlc/aout.h>
#include <vlc/input.h>
#include <Cocoa/Cocoa.h>
...
...
modules/gui/macosx/intf.m
View file @
1c7da3ea
...
...
@@ -271,7 +271,7 @@ static VLCMain *_o_sharedMainInstance = nil;
-
(
id
)
init
{
if
(
_o_sharedMainInstance
)
{
if
(
_o_sharedMainInstance
)
{
[
self
dealloc
];
}
else
{
_o_sharedMainInstance
=
[
super
init
];
...
...
@@ -1082,7 +1082,7 @@ static VLCMain *_o_sharedMainInstance = nil;
-
(
void
)
playStatusUpdated
:(
int
)
i_status
{
if
(
i_status
)
if
(
i_status
!=
PAUSE_S
)
{
[
o_btn_play
setImage
:
o_img_pause
];
[
o_btn_play
setAlternateImage
:
o_img_pause_pressed
];
...
...
modules/gui/macosx/vout.m
View file @
1c7da3ea
...
...
@@ -1149,14 +1149,15 @@ static void QTFreePicture( vout_thread_t *p_vout, picture_t *p_pic )
-
(
BOOL
)
canBecomeKeyWindow
{
return
(
YES
)
;
return
YES
;
}
/*
/* Sometimes crashes VLC....
- (BOOL)performKeyEquivalent:(NSEvent *)o_event
{
return [[VLCMain sharedInstance] hasDefinedShortcutKey:o_event];
}
*/
}
*/
-
(
void
)
keyDown
:(
NSEvent
*
)
o_event
{
unichar
key
=
0
;
...
...
@@ -1189,13 +1190,9 @@ static void QTFreePicture( vout_thread_t *p_vout, picture_t *p_pic )
}
else
if
(
key
==
' '
)
{
playlist_t
*
p_playlist
=
vlc_object_find
(
p_vout
,
VLC_OBJECT_PLAYLIST
,
FIND_ANYWHERE
);
if
(
p_playlist
!=
NULL
)
{
playlist_Pause
(
p_playlist
);
vlc_object_release
(
p_playlist
);
}
vlc_value_t
val
;
val
.
i_int
=
config_GetInt
(
p_vout
,
"key-play-pause"
);
var_Set
(
p_vout
->
p_vlc
,
"key-pressed"
,
val
);
}
else
{
...
...
@@ -1212,7 +1209,14 @@ static void QTFreePicture( vout_thread_t *p_vout, picture_t *p_pic )
-
(
void
)
updateTitle
{
NSMutableString
*
o_title
;
playlist_t
*
p_playlist
=
vlc_object_find
(
p_vout
,
VLC_OBJECT_PLAYLIST
,
playlist_t
*
p_playlist
;
if
(
p_vout
==
NULL
)
{
return
;
}
p_playlist
=
vlc_object_find
(
p_vout
,
VLC_OBJECT_PLAYLIST
,
FIND_ANYWHERE
);
if
(
p_playlist
==
NULL
)
...
...
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