transmission/macosx/InfoWindowController.m

513 lines
18 KiB
Mathematica
Raw Normal View History

2007-09-16 01:02:06 +00:00
/******************************************************************************
* $Id$
*
2010-01-01 21:12:04 +00:00
* Copyright (c) 2006-2010 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 "InfoWindowController.h"
#import "InfoViewController.h"
#import "InfoGeneralViewController.h"
#import "InfoActivityViewController.h"
#import "InfoTrackersViewController.h"
#import "InfoPeersViewController.h"
#import "InfoFileViewController.h"
#import "InfoOptionsViewController.h"
#import "InfoTabButtonCell.h"
2009-08-29 23:16:25 +00:00
#import "NSApplicationAdditions.h"
2007-09-16 01:02:06 +00:00
#import "NSStringAdditions.h"
#import "Torrent.h"
2007-09-16 01:02:06 +00:00
#define TAB_INFO_IDENT @"Info"
#define TAB_ACTIVITY_IDENT @"Activity"
2008-02-22 01:36:30 +00:00
#define TAB_TRACKER_IDENT @"Tracker"
2007-09-16 01:02:06 +00:00
#define TAB_PEERS_IDENT @"Peers"
#define TAB_FILES_IDENT @"Files"
#define TAB_OPTIONS_IDENT @"Options"
#define TAB_MIN_HEIGHT 250
2007-09-16 01:02:06 +00:00
#define INVALID -99
typedef enum
{
TAB_GENERAL_TAG = 0,
2007-12-17 16:06:20 +00:00
TAB_ACTIVITY_TAG = 1,
TAB_TRACKERS_TAG = 2,
2008-02-22 01:36:30 +00:00
TAB_PEERS_TAG = 3,
TAB_FILE_TAG = 4,
2008-02-22 01:36:30 +00:00
TAB_OPTIONS_TAG = 5
} tabTag;
2007-09-16 01:02:06 +00:00
@interface InfoWindowController (Private)
- (void) resetInfo;
- (void) resetInfoForTorrent: (NSNotification *) notification;
2007-09-16 01:02:06 +00:00
@end
@implementation InfoWindowController
- (id) init
{
self = [super initWithWindowNibName: @"InfoWindow"];
return self;
}
2007-11-07 02:25:58 +00:00
- (void) awakeFromNib
2007-09-16 01:02:06 +00:00
{
//window location and size
NSPanel * window = (NSPanel *)[self window];
const CGFloat windowHeight = NSHeight([window frame]);
[window setFrameAutosaveName: @"InspectorWindow"];
[window setFrameUsingName: @"InspectorWindow"];
NSRect windowRect = [window frame];
windowRect.origin.y -= windowHeight - NSHeight(windowRect);
windowRect.size.height = windowHeight;
[window setFrame: windowRect display: NO];
2007-09-16 01:02:06 +00:00
[window setBecomesKeyOnlyIfNeeded: YES];
//set tab tooltips
2010-03-06 23:31:40 +00:00
[fTabMatrix setToolTip: NSLocalizedString(@"General Info", "Inspector -> tab") forCell: [fTabMatrix cellWithTag: TAB_GENERAL_TAG]];
[fTabMatrix setToolTip: NSLocalizedString(@"Activity", "Inspector -> tab") forCell: [fTabMatrix cellWithTag: TAB_ACTIVITY_TAG]];
[fTabMatrix setToolTip: NSLocalizedString(@"Trackers", "Inspector -> tab") forCell: [fTabMatrix cellWithTag: TAB_TRACKERS_TAG]];
[fTabMatrix setToolTip: NSLocalizedString(@"Peers", "Inspector -> tab") forCell: [fTabMatrix cellWithTag: TAB_PEERS_TAG]];
[fTabMatrix setToolTip: NSLocalizedString(@"Files", "Inspector -> tab") forCell: [fTabMatrix cellWithTag: TAB_FILE_TAG]];
[fTabMatrix setToolTip: NSLocalizedString(@"Options", "Inspector -> tab") forCell: [fTabMatrix cellWithTag: TAB_OPTIONS_TAG]];
//set selected tab
fCurrentTabTag = INVALID;
2007-09-16 01:02:06 +00:00
NSString * identifier = [[NSUserDefaults standardUserDefaults] stringForKey: @"InspectorSelected"];
2008-11-02 01:07:01 +00:00
NSInteger tag;
if ([identifier isEqualToString: TAB_INFO_IDENT])
tag = TAB_GENERAL_TAG;
else if ([identifier isEqualToString: TAB_ACTIVITY_IDENT])
tag = TAB_ACTIVITY_TAG;
2008-02-22 01:36:30 +00:00
else if ([identifier isEqualToString: TAB_TRACKER_IDENT])
tag = TAB_TRACKERS_TAG;
else if ([identifier isEqualToString: TAB_PEERS_IDENT])
tag = TAB_PEERS_TAG;
else if ([identifier isEqualToString: TAB_FILES_IDENT])
tag = TAB_FILE_TAG;
else if ([identifier isEqualToString: TAB_OPTIONS_IDENT])
tag = TAB_OPTIONS_TAG;
else //safety
{
[[NSUserDefaults standardUserDefaults] setObject: TAB_INFO_IDENT forKey: @"InspectorSelected"];
tag = TAB_GENERAL_TAG;
}
[fTabMatrix selectCellWithTag: tag];
[self setTab: nil];
2007-09-16 01:02:06 +00:00
//set blank inspector
[self setInfoForTorrents: [NSArray array]];
2007-09-16 01:02:06 +00:00
//allow for update notifications
NSNotificationCenter * nc = [NSNotificationCenter defaultCenter];
[nc addObserver: self selector: @selector(resetInfoForTorrent:) name: @"ResetInspector" object: nil];
2007-09-16 01:02:06 +00:00
[nc addObserver: self selector: @selector(updateInfoStats) name: @"UpdateStats" object: nil];
[nc addObserver: self selector: @selector(updateOptions) name: @"UpdateOptions" object: nil];
2007-09-16 01:02:06 +00:00
}
- (void) dealloc
{
[[NSNotificationCenter defaultCenter] removeObserver: self];
if ([fViewController respondsToSelector: @selector(saveViewSize)])
[fViewController saveViewSize];
[fGeneralViewController dealloc];
[fActivityViewController dealloc];
[fTrackersViewController dealloc];
[fPeersViewController dealloc];
[fFileViewController dealloc];
[fOptionsViewController dealloc];
2007-09-16 01:02:06 +00:00
[fTorrents release];
2007-09-16 01:02:06 +00:00
[super dealloc];
}
- (void) setInfoForTorrents: (NSArray *) torrents
2007-09-16 01:02:06 +00:00
{
if (fTorrents && [fTorrents isEqualToArray: torrents])
return;
2007-09-16 01:02:06 +00:00
[fTorrents release];
fTorrents = [torrents retain];
[self resetInfo];
2007-09-16 01:02:06 +00:00
}
2007-10-07 15:55:27 +00:00
- (NSRect) windowWillUseStandardFrame: (NSWindow *) window defaultFrame: (NSRect) defaultFrame
2007-09-16 01:02:06 +00:00
{
2007-10-07 15:55:27 +00:00
NSRect windowRect = [window frame];
windowRect.size.width = [window minSize].width;
return windowRect;
}
2010-03-07 02:28:50 +00:00
- (NSSize) windowWillResize: (NSWindow *) window toSize: (NSSize) proposedFrameSize
{
2010-03-07 02:28:50 +00:00
//this is an edge-case - just stop the animation
[fPeersViewController stopWebSeedAnimation];
return proposedFrameSize;
2010-03-07 02:28:50 +00:00
}
- (void) windowWillClose: (NSNotification *) notification
{
if ([NSApp isOnSnowLeopardOrBetter] && fCurrentTabTag == TAB_FILE_TAG
&& ([QLPreviewPanelSL sharedPreviewPanelExists] && [[QLPreviewPanelSL sharedPreviewPanel] isVisible]))
[[QLPreviewPanelSL sharedPreviewPanel] reloadData];
}
2007-10-07 15:55:27 +00:00
- (void) setTab: (id) sender
{
const NSInteger oldTabTag = fCurrentTabTag;
2008-02-27 02:06:46 +00:00
fCurrentTabTag = [fTabMatrix selectedTag];
if (fCurrentTabTag == oldTabTag)
return;
2008-02-27 02:06:46 +00:00
//take care of old view
2008-11-02 01:07:01 +00:00
CGFloat oldHeight = 0;
if (oldTabTag != INVALID)
2008-02-27 02:06:46 +00:00
{
//deselect old tab item
[(InfoTabButtonCell *)[fTabMatrix cellWithTag: oldTabTag] setSelectedTab: NO];
if ([fViewController respondsToSelector: @selector(saveViewSize)])
[fViewController saveViewSize];
if ([fViewController respondsToSelector: @selector(clearView)])
[fViewController clearView];
NSView * oldView = [fViewController view];
oldHeight = NSHeight([oldView frame]);
2008-02-27 02:06:46 +00:00
//remove old view
2008-02-27 02:06:46 +00:00
[oldView removeFromSuperview];
}
//set new tab item
NSString * identifier;
2007-10-07 15:55:27 +00:00
switch (fCurrentTabTag)
{
case TAB_GENERAL_TAG:
if (!fGeneralViewController)
{
fGeneralViewController = [[InfoGeneralViewController alloc] init];
[fGeneralViewController setInfoForTorrents: fTorrents];
}
fViewController = fGeneralViewController;
2007-10-07 15:55:27 +00:00
identifier = TAB_INFO_IDENT;
break;
case TAB_ACTIVITY_TAG:
if (!fActivityViewController)
{
fActivityViewController = [[InfoActivityViewController alloc] init];
[fActivityViewController setInfoForTorrents: fTorrents];
}
fViewController = fActivityViewController;
2007-10-07 15:55:27 +00:00
identifier = TAB_ACTIVITY_IDENT;
break;
case TAB_TRACKERS_TAG:
if (!fTrackersViewController)
{
fTrackersViewController = [[InfoTrackersViewController alloc] init];
[fTrackersViewController setInfoForTorrents: fTorrents];
}
fViewController = fTrackersViewController;
2008-02-22 01:36:30 +00:00
identifier = TAB_TRACKER_IDENT;
break;
2007-10-07 15:55:27 +00:00
case TAB_PEERS_TAG:
if (!fPeersViewController)
{
fPeersViewController = [[InfoPeersViewController alloc] init];
[fPeersViewController setInfoForTorrents: fTorrents];
}
fViewController = fPeersViewController;
2007-10-07 15:55:27 +00:00
identifier = TAB_PEERS_IDENT;
break;
case TAB_FILE_TAG:
if (!fFileViewController)
{
fFileViewController = [[InfoFileViewController alloc] init];
[fFileViewController setInfoForTorrents: fTorrents];
}
fViewController = fFileViewController;
2007-10-07 15:55:27 +00:00
identifier = TAB_FILES_IDENT;
break;
case TAB_OPTIONS_TAG:
if (!fOptionsViewController)
{
fOptionsViewController = [[InfoOptionsViewController alloc] init];
[fOptionsViewController setInfoForTorrents: fTorrents];
}
fViewController = fOptionsViewController;
2007-10-07 15:55:27 +00:00
identifier = TAB_OPTIONS_IDENT;
break;
default:
2009-10-11 17:17:29 +00:00
NSAssert1(NO, @"Unknown info tab selected: %d", fCurrentTabTag);
2007-10-07 15:55:27 +00:00
return;
}
2008-02-27 02:06:46 +00:00
2007-10-07 15:55:27 +00:00
[[NSUserDefaults standardUserDefaults] setObject: identifier forKey: @"InspectorSelected"];
2007-09-16 01:02:06 +00:00
2007-10-07 15:55:27 +00:00
NSWindow * window = [self window];
[window setTitle: [NSString stringWithFormat: @"%@ - %@", [fViewController title],
NSLocalizedString(@"Torrent Inspector", "Inspector -> title")]];
2007-10-07 15:55:27 +00:00
//selected tab item
[(InfoTabButtonCell *)[fTabMatrix selectedCell] setSelectedTab: YES];
2007-09-16 01:02:06 +00:00
NSView * view = [fViewController view];
[fViewController updateInfo];
2007-10-07 15:55:27 +00:00
NSRect windowRect = [window frame], viewRect = [view frame];
2007-09-16 01:02:06 +00:00
CGFloat difference = (NSHeight(viewRect) - oldHeight) * [window userSpaceScaleFactor];
windowRect.origin.y -= difference;
windowRect.size.height += difference;
2010-03-14 02:59:37 +00:00
if ([fViewController respondsToSelector: @selector(saveViewSize)]) //a little bit hacky, but avoids requiring an extra method
{
[window setMinSize: NSMakeSize([window minSize].width, NSHeight(windowRect) - NSHeight(viewRect) + TAB_MIN_HEIGHT)];
[window setMaxSize: NSMakeSize(FLT_MAX, FLT_MAX)];
}
else
{
[window setMinSize: NSMakeSize([window minSize].width, NSHeight(windowRect))];
[window setMaxSize: NSMakeSize(FLT_MAX, NSHeight(windowRect))];
}
2010-03-14 02:59:37 +00:00
viewRect.size.width = NSWidth(windowRect);
[view setFrame: viewRect];
2007-10-07 03:05:55 +00:00
[window setFrame: windowRect display: YES animate: oldTabTag != INVALID];
[[window contentView] addSubview: view];
if ([NSApp isOnSnowLeopardOrBetter] && (fCurrentTabTag == TAB_FILE_TAG || oldTabTag == TAB_FILE_TAG)
&& ([QLPreviewPanelSL sharedPreviewPanelExists] && [[QLPreviewPanelSL sharedPreviewPanel] isVisible]))
[[QLPreviewPanelSL sharedPreviewPanel] reloadData];
2007-09-16 01:02:06 +00:00
}
- (void) setNextTab
{
2008-11-02 01:07:01 +00:00
NSInteger tag = [fTabMatrix selectedTag]+1;
if (tag >= [fTabMatrix numberOfColumns])
tag = 0;
[fTabMatrix selectCellWithTag: tag];
[self setTab: nil];
2007-09-16 01:02:06 +00:00
}
- (void) setPreviousTab
{
2008-11-02 01:07:01 +00:00
NSInteger tag = [fTabMatrix selectedTag]-1;
if (tag < 0)
tag = [fTabMatrix numberOfColumns]-1;
[fTabMatrix selectCellWithTag: tag];
[self setTab: nil];
2007-09-16 01:02:06 +00:00
}
- (void) updateInfoStats
{
[fViewController updateInfo];
}
- (void) updateOptions
{
[fOptionsViewController updateOptions];
}
- (NSArray *) quickLookURLs
{
return [fFileViewController quickLookURLs];
}
- (BOOL) canQuickLook
{
if (fCurrentTabTag != TAB_FILE_TAG || ![[self window] isVisible] || ![NSApp isOnSnowLeopardOrBetter])
return NO;
return [fFileViewController canQuickLook];
}
#warning uncomment (in header too)
- (NSRect) quickLookSourceFrameForPreviewItem: (id /*<QLPreviewItem>*/) item
{
return [fFileViewController quickLookSourceFrameForPreviewItem: item];
}
2007-10-07 15:55:27 +00:00
@end
@implementation InfoWindowController (Private)
- (void) resetInfo
{
const NSUInteger numberSelected = [fTorrents count];
if (numberSelected != 1)
{
if (numberSelected > 0)
{
[fImageView setImage: [NSImage imageNamed: NSImageNameMultipleDocuments]];
[fNameField setStringValue: [NSString stringWithFormat: NSLocalizedString(@"%d Torrents Selected",
"Inspector -> selected torrents"), numberSelected]];
uint64_t size = 0;
NSUInteger fileCount = 0, magnetCount = 0;
for (Torrent * torrent in fTorrents)
{
size += [torrent size];
fileCount += [torrent fileCount];
if ([torrent isMagnet])
++magnetCount;
}
NSMutableArray * fileStrings = [NSMutableArray arrayWithCapacity: 2];
if (fileCount > 0)
{
NSString * fileString;
if (fileCount == 1)
fileString = NSLocalizedString(@"1 file", "Inspector -> selected torrents");
else
fileString = [NSString stringWithFormat: NSLocalizedString(@"%d files", "Inspector -> selected torrents"), fileCount];
[fileStrings addObject: fileString];
}
if (magnetCount > 0)
{
NSString * magnetString;
if (magnetCount == 1)
magnetString = NSLocalizedString(@"1 magnetized transfer", "Inspector -> selected torrents");
else
magnetString = [NSString stringWithFormat: NSLocalizedString(@"%d magnetized transfers",
"Inspector -> selected torrents"), magnetCount];
[fileStrings addObject: magnetString];
}
NSString * fileString = [fileStrings componentsJoinedByString: @" + "];
if (magnetCount < numberSelected)
{
[fBasicInfoField setStringValue: [NSString stringWithFormat: @"%@, %@", fileString,
[NSString stringWithFormat: NSLocalizedString(@"%@ total", "Inspector -> selected torrents"),
[NSString stringForFileSize: size]]]];
2010-03-07 02:28:50 +00:00
[fBasicInfoField setToolTip: [NSString stringWithFormat: NSLocalizedString(@"%llu bytes",
"Inspector -> selected torrents"), size]];
}
else
{
[fBasicInfoField setStringValue: fileString];
[fBasicInfoField setToolTip: nil];
}
}
else
{
[fImageView setImage: [NSImage imageNamed: @"NSApplicationIcon"]];
[fNameField setStringValue: NSLocalizedString(@"No Torrents Selected", "Inspector -> selected torrents")];
[fBasicInfoField setStringValue: @""];
[fBasicInfoField setToolTip: @""];
}
[fNameField setToolTip: nil];
}
else
{
Torrent * torrent = [fTorrents objectAtIndex: 0];
if ([NSApp isOnSnowLeopardOrBetter])
[fImageView setImage: [torrent icon]];
else
{
NSImage * icon = [[torrent icon] copy];
[icon setFlipped: NO];
[fImageView setImage: icon];
[icon release];
}
NSString * name = [torrent name];
[fNameField setStringValue: name];
[fNameField setToolTip: name];
if (![torrent isMagnet])
{
NSString * basicString = [NSString stringForFileSize: [torrent size]];
if ([torrent isFolder])
{
NSString * fileString;
2010-03-07 02:28:50 +00:00
const NSInteger fileCount = [torrent fileCount];
if (fileCount == 1)
fileString = NSLocalizedString(@"1 file", "Inspector -> selected torrents");
else
fileString= [NSString stringWithFormat: NSLocalizedString(@"%d files", "Inspector -> selected torrents"), fileCount];
basicString = [NSString stringWithFormat: @"%@, %@", fileString, basicString];
}
[fBasicInfoField setStringValue: basicString];
[fBasicInfoField setToolTip: [NSString stringWithFormat: NSLocalizedString(@"%llu bytes", "Inspector -> selected torrents"),
[torrent size]]];
}
else
{
[fBasicInfoField setStringValue: NSLocalizedString(@"Magnetized transfer", "Inspector -> selected torrents")];
[fBasicInfoField setToolTip: nil];
}
}
[fGeneralViewController setInfoForTorrents: fTorrents];
[fActivityViewController setInfoForTorrents: fTorrents];
[fTrackersViewController setInfoForTorrents: fTorrents];
[fPeersViewController setInfoForTorrents: fTorrents];
[fFileViewController setInfoForTorrents: fTorrents];
[fOptionsViewController setInfoForTorrents: fTorrents];
[fViewController updateInfo];
}
- (void) resetInfoForTorrent: (NSNotification *) notification
{
if (fTorrents && [fTorrents containsObject: [notification object]])
[self resetInfo];
}
2010-10-15 23:38:11 +00:00
- (void) swipeWithEvent:(NSEvent *) event
{
if ([event deltaX] < 0.0)
[self setNextTab];
else if ([event deltaX] > 0.0)
[self setPreviousTab];
}
@end