Commit aefb8674 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* Center the FSPanel properly on the selected screen.

parent dc0416e2
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
BOOL b_keptVisible; BOOL b_keptVisible;
BOOL b_alreadyCounting; BOOL b_alreadyCounting;
int i_timeToKeepVisibleInSec; int i_timeToKeepVisibleInSec;
int i_outputScreen;
BOOL b_displayed; BOOL b_displayed;
BOOL b_voutWasUpdated; BOOL b_voutWasUpdated;
......
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
backing:(NSBackingStoreType)bufferingType backing:(NSBackingStoreType)bufferingType
defer:(BOOL)flag defer:(BOOL)flag
{ {
id win=[super initWithContentRect:contentRect styleMask:NSTexturedBackgroundWindowMask backing:bufferingType defer:flag]; id win = [super initWithContentRect:contentRect styleMask:NSTexturedBackgroundWindowMask backing:bufferingType defer:flag];
[win setOpaque:NO]; [win setOpaque:NO];
[win setHasShadow: NO]; [win setHasShadow: NO];
[win setBackgroundColor:[NSColor clearColor]]; [win setBackgroundColor:[NSColor clearColor]];
...@@ -50,37 +50,20 @@ ...@@ -50,37 +50,20 @@
/* let the window sit on top of everything else and start out completely transparent */ /* let the window sit on top of everything else and start out completely transparent */
[win setLevel:NSFloatingWindowLevel]; [win setLevel:NSFloatingWindowLevel];
[win setAlphaValue:0.0]; [win setAlphaValue:0.0];
/* centre the panel in the lower third of the screen */
NSPoint theCoordinate;
NSRect theScreensFrame;
NSRect theWindowsFrame;
int i_outputScreen;
i_outputScreen = var_GetInteger( VLCIntf, "video-device" );
if( i_outputScreen <=0 || i_outputScreen > (signed int)[[NSScreen screens] count] )
/* invalid preferences or none specified, using main screen */
theScreensFrame = [[NSScreen mainScreen] frame];
else
/* user-defined screen */
theScreensFrame = [[[NSScreen screens] objectAtIndex: i_outputScreen] frame];
theWindowsFrame = [win frame]; [win center];
theCoordinate.x = (theScreensFrame.size.width - theWindowsFrame.size.width) / 2;
theCoordinate.y = (theScreensFrame.size.height / 3) - theWindowsFrame.size.height;
[win setFrameTopLeftPoint: theCoordinate];
return win; return win;
} }
- (void)awakeFromNib - (void)awakeFromNib
{ {
[self setContentView:[[VLCFSPanelView alloc] initWithFrame: [self frame]]]; [self setContentView:[[VLCFSPanelView alloc] initWithFrame: [self frame]]];
BOOL isInside=(NSPointInRect([NSEvent mouseLocation],[self frame])); BOOL isInside = (NSPointInRect([NSEvent mouseLocation],[self frame]));
[[self contentView] addTrackingRect:[[self contentView] bounds] owner:self userData:nil assumeInside:isInside]; [[self contentView] addTrackingRect:[[self contentView] bounds] owner:self userData:nil assumeInside:isInside];
if (isInside) if (isInside)
[self mouseEntered:NULL]; [self mouseEntered:NULL];
if (!isInside) if (!isInside)
[self mouseExited:NULL]; [self mouseExited:NULL];
} }
/* Windows created with NSBorderlessWindowMask normally can't be key, but we want ours to be */ /* Windows created with NSBorderlessWindowMask normally can't be key, but we want ours to be */
...@@ -102,6 +85,29 @@ ...@@ -102,6 +85,29 @@
[super dealloc]; [super dealloc];
} }
-(void)center
{
/* centre the panel in the lower third of the screen */
NSPoint theCoordinate;
NSRect theScreensFrame;
NSRect theWindowsFrame;
i_outputScreen = var_GetInteger( VLCIntf->p_vlc, "video-device" );
if( i_outputScreen <= 0 || i_outputScreen > (signed int)[[NSScreen screens] count] )
/* invalid preferences or none specified, using main screen */
theScreensFrame = [[NSScreen mainScreen] frame];
else
/* user-defined screen */
theScreensFrame = [[[NSScreen screens] objectAtIndex: i_outputScreen-1] frame];
theWindowsFrame = [self frame];
theCoordinate.x = (theScreensFrame.size.width - theWindowsFrame.size.width) / 2 + theScreensFrame.origin.x;
theCoordinate.y = (theScreensFrame.size.height / 3) - theWindowsFrame.size.height + theScreensFrame.origin.y;
[self setFrameTopLeftPoint: theCoordinate];
}
- (void)setPlay - (void)setPlay
{ {
[[self contentView] setPlay]; [[self contentView] setPlay];
...@@ -198,6 +204,9 @@ ...@@ -198,6 +204,9 @@
- (void)fadeIn - (void)fadeIn
{ {
if( i_outputScreen != var_GetInteger( VLCIntf->p_vlc, "video-device" ) )
[self center];
if( [self alphaValue] < 1.0 ) if( [self alphaValue] < 1.0 )
{ {
if (![self fadeTimer]) if (![self fadeTimer])
...@@ -407,20 +416,14 @@ ...@@ -407,20 +416,14 @@
- (void)setPlay - (void)setPlay
{ {
NSImage *image; [o_play setImage:[NSImage imageNamed:@"fs_play"]];
image = [NSImage imageNamed:@"fs_play"]; [o_play setAlternateImage: [NSImage imageNamed:@"fs_play_highlight"]];
[o_play setImage:image];
image = [NSImage imageNamed:@"fs_play_highlight"];
[o_play setAlternateImage:image];
} }
- (void)setPause - (void)setPause
{ {
NSImage *image; [o_play setImage: [NSImage imageNamed:@"fs_pause"]];
image = [NSImage imageNamed:@"fs_pause"]; [o_play setAlternateImage: [NSImage imageNamed:@"fs_pause_highlight"]];
[o_play setImage:image];
image = [NSImage imageNamed:@"fs_pause_highlight"];
[o_play setAlternateImage:image];
} }
- (void)setStreamTitle:(NSString *)o_title - (void)setStreamTitle:(NSString *)o_title
......
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