Commit 300571b2 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

Mac OS X gui: Make sure the embedded window don't get shown before it is resized, if it was hidden.

parent 7da0bc9c
...@@ -101,6 +101,9 @@ ...@@ -101,6 +101,9 @@
BOOL b_used; BOOL b_used;
} }
- (BOOL)setVout: (vout_thread_t *) p_arg_vout subView: (NSView *) view
frame: (NSRect *)s_arg_frame showWindow: (BOOL)b_show_window;
- (void)setUsed: (BOOL)b_new_used; - (void)setUsed: (BOOL)b_new_used;
- (BOOL)isUsed; - (BOOL)isUsed;
......
...@@ -861,14 +861,14 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable, ...@@ -861,14 +861,14 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable,
} }
- (BOOL)setVout: (vout_thread_t *) p_arg_vout subView: (NSView *) view - (BOOL)setVout: (vout_thread_t *) p_arg_vout subView: (NSView *) view
frame: (NSRect *) s_arg_frame frame: (NSRect *)s_arg_frame showWindow: (BOOL)b_show_window
{ {
BOOL b_return; BOOL b_return;
b_return = [super setVout: p_arg_vout subView: view frame: s_arg_frame]; b_return = [super setVout: p_arg_vout subView: view frame: s_arg_frame];
if( b_return ) if( b_return )
{ {
o_window = [self window]; o_window = [self window];
if (b_show_window)
[o_window makeKeyAndOrderFront: self]; [o_window makeKeyAndOrderFront: self];
[o_window setAcceptsMouseMovedEvents: TRUE]; [o_window setAcceptsMouseMovedEvents: TRUE];
...@@ -882,6 +882,13 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable, ...@@ -882,6 +882,13 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable,
return b_return; return b_return;
} }
- (BOOL)setVout: (vout_thread_t *) p_arg_vout subView: (NSView *) view
frame: (NSRect *) s_arg_frame
{
return [self setVout: p_arg_vout subView: view frame:s_arg_frame showWindow: YES];
}
- (void)setUsed: (BOOL)b_new_used - (void)setUsed: (BOOL)b_new_used
{ {
b_used = b_new_used; b_used = b_new_used;
...@@ -911,7 +918,7 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable, ...@@ -911,7 +918,7 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable,
- (BOOL)setVout: (vout_thread_t *) p_arg_vout subView: (NSView *) view - (BOOL)setVout: (vout_thread_t *) p_arg_vout subView: (NSView *) view
frame: (NSRect *) s_arg_frame frame: (NSRect *) s_arg_frame
{ {
BOOL b_return = [super setVout: p_arg_vout subView: view frame: s_arg_frame]; BOOL b_return = [super setVout: p_arg_vout subView: view frame: s_arg_frame showWindow: NO];
/* o_window needs to point to our o_embeddedwindow, super might have set it /* o_window needs to point to our o_embeddedwindow, super might have set it
* to the fullscreen window that o_embeddedwindow setups during fullscreen */ * to the fullscreen window that o_embeddedwindow setups during fullscreen */
...@@ -922,10 +929,16 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable, ...@@ -922,10 +929,16 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable,
[o_window setAlphaValue: var_GetFloat( p_vout, "macosx-opaqueness" )]; [o_window setAlphaValue: var_GetFloat( p_vout, "macosx-opaqueness" )];
[self updateTitle]; [self updateTitle];
if(!([o_window isFullscreen])) /* Make the window the front and key window before animating */
if ([o_window isVisible] && (![o_window isFullscreen]))
[o_window makeKeyAndOrderFront: self]; [o_window makeKeyAndOrderFront: self];
[self scaleWindowWithFactor: 1.0 animate: [o_window isVisible] && (![o_window isFullscreen])]; [self scaleWindowWithFactor: 1.0 animate: [o_window isVisible] && (![o_window isFullscreen])];
/* Make sure our window is visible, if we are not in fullscreen */
if (![o_window isFullscreen])
[o_window makeKeyAndOrderFront: self];
} }
return b_return; return b_return;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment