transmission/macosx/DragOverlayWindow.mm

202 lines
6.5 KiB
Plaintext
Raw Normal View History

2007-09-16 01:02:06 +00:00
/******************************************************************************
2012-01-14 17:12:04 +00:00
* Copyright (c) 2007-2012 Transmission authors and contributors
2007-09-16 01:02:06 +00:00
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*****************************************************************************/
#import "DragOverlayWindow.h"
#import "DragOverlayView.h"
#import "NSStringAdditions.h"
#include <libtransmission/transmission.h>
#include <libtransmission/torrent-metainfo.h>
@interface DragOverlayWindow (Private)
- (void)resizeWindow;
@end
2007-09-16 01:02:06 +00:00
@implementation DragOverlayWindow
- (instancetype)initWithLib:(tr_session*)lib forWindow:(NSWindow*)window
2007-09-16 01:02:06 +00:00
{
if ((self = ([super initWithContentRect:window.frame
styleMask:NSWindowStyleMaskBorderless
backing:NSBackingStoreBuffered
defer:NO])))
2007-09-16 01:02:06 +00:00
{
fLib = lib;
self.backgroundColor = [NSColor colorWithCalibratedWhite:0.0 alpha:0.5];
self.alphaValue = 0.0;
self.opaque = NO;
self.hasShadow = NO;
DragOverlayView* view = [[DragOverlayView alloc] initWithFrame:self.frame];
self.contentView = view;
self.releasedWhenClosed = NO;
self.ignoresMouseEvents = YES;
fFadeInAnimation = [[NSViewAnimation alloc] initWithViewAnimations:@[
@{ NSViewAnimationTargetKey : self, NSViewAnimationEffectKey : NSViewAnimationFadeInEffect }
]];
fFadeInAnimation.duration = 0.15;
fFadeInAnimation.animationBlockingMode = NSAnimationNonblockingThreaded;
fFadeOutAnimation = [[NSViewAnimation alloc] initWithViewAnimations:@[
@{ NSViewAnimationTargetKey : self, NSViewAnimationEffectKey : NSViewAnimationFadeOutEffect }
]];
fFadeOutAnimation.duration = 0.5;
fFadeOutAnimation.animationBlockingMode = NSAnimationNonblockingThreaded;
[window addChildWindow:self ordered:NSWindowAbove];
[NSNotificationCenter.defaultCenter addObserver:self selector:@selector(resizeWindow) name:NSWindowDidResizeNotification
object:window];
2007-09-16 01:02:06 +00:00
}
return self;
}
- (void)dealloc
2007-09-16 01:02:06 +00:00
{
[NSNotificationCenter.defaultCenter removeObserver:self];
2007-09-16 01:02:06 +00:00
}
- (void)setTorrents:(NSArray*)files
2007-09-16 01:02:06 +00:00
{
uint64_t size = 0;
2008-11-01 22:08:02 +00:00
NSInteger count = 0;
NSString* name;
2008-11-01 22:08:02 +00:00
NSInteger fileCount = 0;
for (NSString* file in files)
2007-09-16 01:02:06 +00:00
{
if ([[NSWorkspace.sharedWorkspace typeOfFile:file error:NULL] isEqualToString:@"org.bittorrent.torrent"] ||
[file.pathExtension caseInsensitiveCompare:@"torrent"] == NSOrderedSame)
2007-09-16 01:02:06 +00:00
{
auto metainfo = tr_torrent_metainfo{};
if (metainfo.parseTorrentFile(file.UTF8String))
2007-09-16 01:02:06 +00:00
{
++count;
size += metainfo.totalSize();
auto const n_files = std::size(metainfo.files());
fileCount += n_files;
if (n_files == 1)
{
name = @(metainfo.name().c_str());
}
2007-09-16 01:02:06 +00:00
}
}
}
2007-09-16 01:02:06 +00:00
if (count <= 0)
{
2007-09-16 01:02:06 +00:00
return;
}
2007-09-16 01:02:06 +00:00
//set strings and icon
NSString* secondString = [NSString stringForFileSize:size];
if (count > 1)
2007-09-16 01:02:06 +00:00
{
NSString* fileString;
2007-09-16 01:02:06 +00:00
if (fileCount == 1)
{
2008-04-07 13:25:55 +00:00
fileString = NSLocalizedString(@"1 file", "Drag overlay -> torrents");
}
2007-09-16 01:02:06 +00:00
else
{
fileString = [NSString stringWithFormat:NSLocalizedString(@"%@ files", "Drag overlay -> torrents"),
[NSString formattedUInteger:fileCount]];
}
secondString = [NSString stringWithFormat:@"%@, %@", fileString, secondString];
2007-09-16 01:02:06 +00:00
}
NSImage* icon;
2007-09-16 01:02:06 +00:00
if (count == 1)
{
icon = [NSWorkspace.sharedWorkspace iconForFileType:name ? name.pathExtension : NSFileTypeForHFSTypeCode(kGenericFolderIcon)];
}
2007-09-16 01:02:06 +00:00
else
{
name = [NSString stringWithFormat:NSLocalizedString(@"%@ Torrent Files", "Drag overlay -> torrents"),
[NSString formattedUInteger:count]];
secondString = [secondString stringByAppendingString:@" total"];
icon = [NSImage imageNamed:@"TransmissionDocument.icns"];
2007-09-16 01:02:06 +00:00
}
[self.contentView setOverlay:icon mainLine:name subLine:secondString];
2007-09-16 01:02:06 +00:00
[self fadeIn];
}
- (void)setFile:(NSString*)file
2007-09-16 01:02:06 +00:00
{
[self.contentView setOverlay:[NSImage imageNamed:@"CreateLarge"]
mainLine:NSLocalizedString(@"Create a Torrent File", "Drag overlay -> file")
subLine:file];
2007-09-16 01:02:06 +00:00
[self fadeIn];
}
- (void)setURL:(NSString*)url
2007-09-16 01:02:06 +00:00
{
[self.contentView setOverlay:[NSImage imageNamed:@"Globe"] mainLine:NSLocalizedString(@"Web Address", "Drag overlay -> url")
subLine:url];
2007-09-16 01:02:06 +00:00
[self fadeIn];
}
- (void)fadeIn
2007-09-16 01:02:06 +00:00
{
//stop other animation and set to same progress
if (fFadeOutAnimation.animating)
2007-09-16 01:02:06 +00:00
{
[fFadeOutAnimation stopAnimation];
fFadeInAnimation.currentProgress = 1.0 - fFadeOutAnimation.currentProgress;
2007-09-16 01:02:06 +00:00
}
[fFadeInAnimation startAnimation];
}
- (void)fadeOut
2007-09-16 01:02:06 +00:00
{
//stop other animation and set to same progress
if (fFadeInAnimation.animating)
2007-09-16 01:02:06 +00:00
{
[fFadeInAnimation stopAnimation];
fFadeOutAnimation.currentProgress = 1.0 - fFadeInAnimation.currentProgress;
2007-09-16 01:02:06 +00:00
}
if (self.alphaValue > 0.0)
{
[fFadeOutAnimation startAnimation];
}
2007-09-16 01:02:06 +00:00
}
@end
@implementation DragOverlayWindow (Private)
- (void)resizeWindow
{
[self setFrame:self.parentWindow.frame display:NO];
}
@end