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
9ac6fec0
Commit
9ac6fec0
authored
Oct 03, 2008
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: renamed getVoutView to voutView in order to make it conform to the cocoa naming scheme
parent
d4b55453
Changes
10
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
30 additions
and
29 deletions
+30
-29
NEWS
NEWS
+3
-0
modules/gui/macosx/controls.h
modules/gui/macosx/controls.h
+1
-1
modules/gui/macosx/controls.m
modules/gui/macosx/controls.m
+4
-6
modules/gui/macosx/embeddedwindow.m
modules/gui/macosx/embeddedwindow.m
+1
-1
modules/gui/macosx/fspanel.m
modules/gui/macosx/fspanel.m
+3
-3
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+1
-1
modules/gui/macosx/vlm.m
modules/gui/macosx/vlm.m
+1
-1
modules/gui/macosx/vout.h
modules/gui/macosx/vout.h
+3
-3
modules/gui/macosx/vout.m
modules/gui/macosx/vout.m
+6
-6
modules/gui/macosx/voutgl.m
modules/gui/macosx/voutgl.m
+7
-7
No files found.
NEWS
View file @
9ac6fec0
...
...
@@ -15,6 +15,9 @@ Stream output:
* Multiple bridge-in instances are now possible.
* bridge-in can be used to configure a placeholder stream.
Mac OS X Interface:
* Reveal-in-Finder functionality for locally stored items
Changes between 0.9.2 and 0.9.3:
--------------------------------
...
...
modules/gui/macosx/controls.h
View file @
9ac6fec0
...
...
@@ -56,7 +56,7 @@
}
-
(
void
)
controlTintChanged
;
-
(
id
)
getV
outView
;
-
(
id
)
v
outView
;
-
(
IBAction
)
play
:(
id
)
sender
;
-
(
IBAction
)
stop
:(
id
)
sender
;
...
...
modules/gui/macosx/controls.m
View file @
9ac6fec0
...
...
@@ -158,9 +158,7 @@
var_SetInteger
(
p_intf
->
p_libvlc
,
"key-action"
,
ACTIONID_PLAY_PAUSE
);
}
/* FIXME: I want to be Private */
-
(
id
)
getVoutView
-
(
id
)
voutView
{
id
window
;
id
voutView
=
nil
;
...
...
@@ -176,8 +174,8 @@
/* We have a detached vout */
else
if
(
[[
window
className
]
isEqualToString
:
@"VLCVoutWindow"
]
)
{
msg_Dbg
(
VLCIntf
,
"detached vout controls.m call
getV
outView"
);
voutView
=
[
window
getV
outView
];
msg_Dbg
(
VLCIntf
,
"detached vout controls.m call
v
outView"
);
voutView
=
[
window
v
outView
];
}
}
return
[[
voutView
retain
]
autorelease
];
...
...
@@ -189,7 +187,7 @@
var_SetInteger
(
p_intf
->
p_libvlc
,
"key-action"
,
ACTIONID_STOP
);
/* Close the window directly, because we do know that there
* won't be anymore video. It's currently waiting a bit. */
[[[
self
_
voutView
]
window
]
orderOut
:
self
];
[[[
self
voutView
]
window
]
orderOut
:
self
];
}
-
(
IBAction
)
faster
:(
id
)
sender
...
...
modules/gui/macosx/embeddedwindow.m
View file @
9ac6fec0
...
...
@@ -368,7 +368,7 @@
-
(
void
)
hasBecomeFullscreen
{
[
o_fullscreen_window
makeFirstResponder
:
[[[
VLCMain
sharedInstance
]
getControls
]
getV
outView
]];
[
o_fullscreen_window
makeFirstResponder
:
[[[
VLCMain
sharedInstance
]
getControls
]
v
outView
]];
[
o_fullscreen_window
makeKeyWindow
];
[
o_fullscreen_window
setAcceptsMouseMovedEvents
:
TRUE
];
...
...
modules/gui/macosx/fspanel.m
View file @
9ac6fec0
...
...
@@ -178,7 +178,7 @@
-
(
void
)
setActive
:(
id
)
noData
{
if
(
[[[[
VLCMain
sharedInstance
]
getControls
]
getV
outView
]
isFullscreen
]
)
if
(
[[[[
VLCMain
sharedInstance
]
getControls
]
v
outView
]
isFullscreen
]
)
{
b_nonActive
=
NO
;
[
self
fadeIn
];
...
...
@@ -244,8 +244,8 @@
-
(
void
)
mouseExited
:(
NSEvent
*
)
theEvent
{
/* give up our focus, so the vout may show us again without letting the user clicking it */
if
(
[[[[
VLCMain
sharedInstance
]
getControls
]
getV
outView
]
isFullscreen
]
)
[[[[[
VLCMain
sharedInstance
]
getControls
]
getV
outView
]
window
]
makeKeyWindow
];
if
(
[[[[
VLCMain
sharedInstance
]
getControls
]
v
outView
]
isFullscreen
]
)
[[[[[
VLCMain
sharedInstance
]
getControls
]
v
outView
]
window
]
makeKeyWindow
];
}
-
(
void
)
hideMouse
...
...
modules/gui/macosx/intf.m
View file @
9ac6fec0
...
...
@@ -1599,7 +1599,7 @@ static void * manage_cleanup( void * args )
[
self
setScrollField
:
aString
stopAfter
:
-
1
];
[[[
self
getControls
]
getFSPanel
]
setStreamTitle
:
aString
];
[[
o_controls
getV
outView
]
updateTitle
];
[[
o_controls
v
outView
]
updateTitle
];
[
o_playlist
updateRowSelection
];
p_intf
->
p_sys
->
b_current_title_update
=
FALSE
;
...
...
modules/gui/macosx/vlm.m
View file @
9ac6fec0
...
...
@@ -87,7 +87,7 @@ create_toolbar_item( NSString * o_itemIdent, NSString * o_name, NSString * o_des
return
o_toolbarItem
;
}
-
(
NSToolbarItem
*
)
toolbar
:
(
NSToolbar
*
)
o_
sprefs
_toolbar
-
(
NSToolbarItem
*
)
toolbar
:
(
NSToolbar
*
)
o_
vlm
_toolbar
itemForItemIdentifier
:
(
NSString
*
)
o_itemIdent
willBeInsertedIntoToolbar
:
(
BOOL
)
b_willBeInserted
{
...
...
modules/gui/macosx/vout.h
View file @
9ac6fec0
...
...
@@ -72,7 +72,7 @@
-
(
void
)
snapshot
;
-
(
id
)
getWindow
;
+
(
id
)
getV
outView
:
(
vout_thread_t
*
)
p_vout
subView
:
(
NSView
*
)
view
+
(
id
)
v
outView
:
(
vout_thread_t
*
)
p_vout
subView
:
(
NSView
*
)
view
frame
:
(
NSRect
*
)
s_frame
;
+
(
vout_thread_t
*
)
getRealVout
:
(
vout_thread_t
*
)
p_vout
;
...
...
@@ -127,5 +127,5 @@
-
(
id
)
initMainThread
:
(
id
)
sender
;
-
(
void
)
leaveFullscreen
;
-
(
void
)
enterFullscreen
;
-
(
id
)
getV
outView
;
-
(
id
)
v
outView
;
@end
modules/gui/macosx/vout.m
View file @
9ac6fec0
...
...
@@ -532,7 +532,7 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable,
(
[
o_event
modifierFlags
]
&
NSControlKeyMask
)
)
)
{
msg_Dbg
(
p_vout
,
"received NSRightMouseDown (generic method) or Ctrl clic"
);
[
NSMenu
popUpContextMenu
:
[[
VLCMain
sharedInstance
]
getVoutMenu
]
withEvent
:
o_event
forView
:
[[[
VLCMain
sharedInstance
]
getControls
]
getV
outView
]];
[
NSMenu
popUpContextMenu
:
[[
VLCMain
sharedInstance
]
getVoutMenu
]
withEvent
:
o_event
forView
:
[[[
VLCMain
sharedInstance
]
getControls
]
v
outView
]];
}
}
...
...
@@ -558,7 +558,7 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable,
if
(
p_vout
&&
[
o_event
type
]
==
NSRightMouseDown
)
{
msg_Dbg
(
p_vout
,
"received NSRightMouseDown (specific method)"
);
[
NSMenu
popUpContextMenu
:
[[
VLCMain
sharedInstance
]
getVoutMenu
]
withEvent
:
o_event
forView
:
[[[
VLCMain
sharedInstance
]
getControls
]
getV
outView
]];
[
NSMenu
popUpContextMenu
:
[[
VLCMain
sharedInstance
]
getVoutMenu
]
withEvent
:
o_event
forView
:
[[[
VLCMain
sharedInstance
]
getControls
]
v
outView
]];
}
[
super
mouseDown
:
o_event
];
...
...
@@ -603,7 +603,7 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable,
/* FIXME: this isn't the appropriate place, but we can't receive
* NSRightMouseDown some how */
msg_Dbg
(
p_vout
,
"received NSRightMouseUp"
);
[
NSMenu
popUpContextMenu
:
[[
VLCMain
sharedInstance
]
getVoutMenu
]
withEvent
:
o_event
forView
:
[[[
VLCMain
sharedInstance
]
getControls
]
getV
outView
]];
[
NSMenu
popUpContextMenu
:
[[
VLCMain
sharedInstance
]
getVoutMenu
]
withEvent
:
o_event
forView
:
[[[
VLCMain
sharedInstance
]
getControls
]
v
outView
]];
}
[
super
mouseUp
:
o_event
];
...
...
@@ -701,7 +701,7 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable,
return
(
vout_thread_t
*
)
p_vout
->
p_parent
;
}
+
(
id
)
getV
outView
:
(
vout_thread_t
*
)
p_vout
subView
:
(
NSView
*
)
view
+
(
id
)
v
outView
:
(
vout_thread_t
*
)
p_vout
subView
:
(
NSView
*
)
view
frame
:
(
NSRect
*
)
s_frame
{
vlc_value_t
value_drawable
;
...
...
@@ -1139,7 +1139,7 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable,
[
self
setLevel
:
NSStatusWindowLevel
];
}
-
(
id
)
getVoutView
// FIXME Naming scheme!
-
(
id
)
voutView
{
return
o_view
;
}
...
...
modules/gui/macosx/voutgl.m
View file @
9ac6fec0
...
...
@@ -320,7 +320,7 @@ static void Unlock( vout_thread_t * p_vout )
/* Spawn the window */
id
old_vout
=
p_vout
->
p_sys
->
o_vout_view
;
p_vout
->
p_sys
->
o_vout_view
=
[[
VLCVoutView
getV
outView
:
p_vout
p_vout
->
p_sys
->
o_vout_view
=
[[
VLCVoutView
v
outView
:
p_vout
subView:
p_vout
->
p_sys
->
o_glview
frame
:
nil
]
retain
];
[
old_vout
release
];
}
...
...
@@ -348,7 +348,7 @@ static void Unlock( vout_thread_t * p_vout )
if
(
p_vout
->
p_sys
->
b_saved_frame
)
{
id
old_vout
=
p_vout
->
p_sys
->
o_vout_view
;
p_vout
->
p_sys
->
o_vout_view
=
[[
VLCVoutView
getV
outView
:
p_vout
p_vout
->
p_sys
->
o_vout_view
=
[[
VLCVoutView
v
outView
:
p_vout
subView:
o_glview
frame:
&
p_vout
->
p_sys
->
s_frame
]
retain
];
[
old_vout
release
];
...
...
@@ -356,7 +356,7 @@ static void Unlock( vout_thread_t * p_vout )
else
{
id
old_vout
=
p_vout
->
p_sys
->
o_vout_view
;
p_vout
->
p_sys
->
o_vout_view
=
[[
VLCVoutView
getV
outView
:
p_vout
p_vout
->
p_sys
->
o_vout_view
=
[[
VLCVoutView
v
outView
:
p_vout
subView:
o_glview
frame
:
nil
]
retain
];
[
old_vout
release
];
}
...
...
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