From d6c07925417eaea27c85996bc243f93e27b1bcd0 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Tue, 23 May 2017 11:18:45 +0100 Subject: remove cocoa frontend The cocoa frontend has been broken for a few years and we have no maintainer. It was removed from the CI six months ago and has already bitrotted so it cannot be compiled. --- .../PSMTabBarControl/PSMTabDragWindowController.m | 111 --------------------- 1 file changed, 111 deletions(-) delete mode 100644 frontends/cocoa/PSMTabBarControl/PSMTabDragWindowController.m (limited to 'frontends/cocoa/PSMTabBarControl/PSMTabDragWindowController.m') diff --git a/frontends/cocoa/PSMTabBarControl/PSMTabDragWindowController.m b/frontends/cocoa/PSMTabBarControl/PSMTabDragWindowController.m deleted file mode 100644 index 3a6e8c663..000000000 --- a/frontends/cocoa/PSMTabBarControl/PSMTabDragWindowController.m +++ /dev/null @@ -1,111 +0,0 @@ -// -// PSMTabDragWindowController.m -// PSMTabBarControl -// -// Created by Kent Sutherland on 6/18/07. -// Copyright 2007 Kent Sutherland. All rights reserved. -// - -#import "PSMTabDragWindowController.h" -#import "PSMTabDragWindow.h" -#import "PSMTabDragView.h" - -@implementation PSMTabDragWindowController - -- (id)initWithImage:(NSImage *)image styleMask:(NSUInteger)styleMask tearOffStyle:(PSMTabBarTearOffStyle)tearOffStyle { - PSMTabDragWindow *window = [PSMTabDragWindow dragWindowWithImage:image styleMask:styleMask]; - if((self = [super initWithWindow:window])) { - _view = [[window dragView] retain]; - _tearOffStyle = tearOffStyle; - - if(tearOffStyle == PSMTabBarTearOffMiniwindow) { - [window setBackgroundColor:[NSColor clearColor]]; - [window setHasShadow:YES]; - } - - [window setAlphaValue:kPSMTabDragWindowAlpha]; - } - return self; -} - -- (void)dealloc { - if(_timer) { - [_timer invalidate]; - } - - if(_animation) { - [_animation release]; - } - - [_view release]; - [super dealloc]; -} - -- (NSImage *)image { - return [_view image]; -} - -- (NSImage *)alternateImage { - return [_view alternateImage]; -} - -- (void)setAlternateImage:(NSImage *)image { - [_view setAlternateImage:image]; -} - -- (BOOL)isAnimating { - return _animation != nil; -} - -- (void)switchImages { - if(_tearOffStyle != PSMTabBarTearOffMiniwindow || ![_view alternateImage]) { - return; - } - - CGFloat progress = 0; - _showingAlternate = !_showingAlternate; - - if(_animation) { - //An animation already exists, get the current progress - progress = 1.0f - [_animation currentProgress]; - [_animation stopAnimation]; - [_animation release]; - } - - //begin animating - _animation = [[NSAnimation alloc] initWithDuration:0.25 animationCurve:NSAnimationEaseInOut]; - [_animation setAnimationBlockingMode:NSAnimationNonblocking]; - [_animation setCurrentProgress:progress]; - [_animation startAnimation]; - - _originalWindowFrame = [[self window] frame]; - - if(_timer) { - [_timer invalidate]; - } - _timer = [NSTimer scheduledTimerWithTimeInterval:1.0f / 30.0f target:self selector:@selector(animateTimer:) userInfo:nil repeats:YES]; -} - -- (void)animateTimer:(NSTimer *)timer { - NSRect frame = _originalWindowFrame; - NSImage *currentImage = _showingAlternate ?[_view alternateImage] :[_view image]; - NSSize size = [currentImage size]; - NSPoint mousePoint = [NSEvent mouseLocation]; - CGFloat animationValue = [_animation currentValue]; - - frame.size.width = _originalWindowFrame.size.width + (size.width - _originalWindowFrame.size.width) * animationValue; - frame.size.height = _originalWindowFrame.size.height + (size.height - _originalWindowFrame.size.height) * animationValue; - frame.origin.x = mousePoint.x - (frame.size.width / 2); - frame.origin.y = mousePoint.y - (frame.size.height / 2); - - [_view setFadeValue:_showingAlternate ? 1.0f - animationValue : animationValue]; - [[self window] setFrame:frame display:YES]; - - if(![_animation isAnimating]) { - [_animation release], _animation = nil; - [timer invalidate]; - _timer = nil; - } -} - -@end -- cgit v1.2.3