mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 15:08:53 +00:00
macos: Set activation policy in osxvideosink and glimagesink
Upon creating a window, glimagesink and osxvideosink now set the policy to NSApplicationActivationPolicyRegular, which lets us show an icon in the Dock for convenience and appear in the top menu bar like other apps. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6103>
This commit is contained in:
parent
a3c474acf4
commit
2f4e8d14cf
2 changed files with 18 additions and 9 deletions
|
@ -236,6 +236,8 @@ gst_gl_window_cocoa_create_window (GstGLWindowCocoa *window_cocoa)
|
|||
gst_gl_window_cocoa_set_window_handle (window,
|
||||
(guintptr) priv->external_view);
|
||||
|
||||
[NSApp setActivationPolicy:NSApplicationActivationPolicyRegular];
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
|
|
@ -96,7 +96,6 @@ static void
|
|||
gst_osx_video_sink_call_from_main_thread(GstOSXVideoSink *osxvideosink,
|
||||
NSObject * object, SEL function, NSObject *data, BOOL waitUntilDone)
|
||||
{
|
||||
|
||||
NSThread *thread;
|
||||
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
||||
|
||||
|
@ -285,6 +284,10 @@ gst_osx_video_sink_osxwindow_create (GstOSXVideoSink * osxvideosink, gint width,
|
|||
@selector(createInternalWindow), nil, YES);
|
||||
GST_INFO_OBJECT (osxvideosink, "No superview, creating an internal window.");
|
||||
}
|
||||
|
||||
gst_osx_video_sink_call_from_main_thread (osxvideosink, osxvideosink->osxvideosinkobject,
|
||||
@selector(setActivationPolicy), nil, YES);
|
||||
|
||||
[osxwindow->gstview setNavigation: GST_NAVIGATION(osxvideosink)];
|
||||
[osxvideosink->osxwindow->gstview setKeepAspectRatio: osxvideosink->keep_par];
|
||||
|
||||
|
@ -800,6 +803,11 @@ gst_osx_video_sink_get_type (void)
|
|||
return YES;
|
||||
}
|
||||
|
||||
- (void) setActivationPolicy
|
||||
{
|
||||
[NSApp setActivationPolicy: NSApplicationActivationPolicyRegular];
|
||||
}
|
||||
|
||||
- (void) setView: (NSView*)view
|
||||
{
|
||||
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
||||
|
@ -994,7 +1002,6 @@ no_texture_buffer:
|
|||
static gboolean
|
||||
plugin_init (GstPlugin * plugin)
|
||||
{
|
||||
|
||||
if (!gst_element_register (plugin, "osxvideosink",
|
||||
GST_RANK_MARGINAL, GST_TYPE_OSX_VIDEO_SINK))
|
||||
return FALSE;
|
||||
|
|
Loading…
Reference in a new issue