2008-05-23 19:32:35 +00:00
|
|
|
/******************************************************************************
|
2012-01-14 17:12:04 +00:00
|
|
|
* Copyright (c) 2008-2012 Transmission authors and contributors
|
2008-05-23 19:32:35 +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 "TrackerTableView.h"
|
2009-10-01 01:15:37 +00:00
|
|
|
#import "Torrent.h"
|
2009-09-28 23:18:26 +00:00
|
|
|
#import "TrackerNode.h"
|
2008-05-23 19:32:35 +00:00
|
|
|
|
|
|
|
@implementation TrackerTableView
|
|
|
|
|
2008-06-02 17:26:02 +00:00
|
|
|
- (void) mouseDown: (NSEvent *) event
|
|
|
|
{
|
|
|
|
[[self window] makeKeyWindow];
|
|
|
|
[super mouseDown: event];
|
|
|
|
}
|
|
|
|
|
2009-10-01 01:15:37 +00:00
|
|
|
- (void) setTorrent: (Torrent *) torrent
|
|
|
|
{
|
|
|
|
fTorrent = torrent;
|
|
|
|
}
|
|
|
|
|
2008-05-23 19:32:35 +00:00
|
|
|
- (void) setTrackers: (NSArray *) trackers
|
|
|
|
{
|
|
|
|
fTrackers = trackers;
|
|
|
|
}
|
|
|
|
|
2009-10-01 01:15:37 +00:00
|
|
|
- (void) copy: (id) sender
|
2009-09-28 23:18:26 +00:00
|
|
|
{
|
|
|
|
NSMutableArray * addresses = [NSMutableArray arrayWithCapacity: [fTrackers count]];
|
|
|
|
NSIndexSet * indexes = [self selectedRowIndexes];
|
|
|
|
for (NSUInteger i = [indexes firstIndex]; i != NSNotFound; i = [indexes indexGreaterThanIndex: i])
|
|
|
|
{
|
2017-07-08 09:16:01 +00:00
|
|
|
id item = fTrackers[i];
|
2010-02-05 02:51:42 +00:00
|
|
|
if (![item isKindOfClass: [TrackerNode class]])
|
2009-09-28 23:18:26 +00:00
|
|
|
{
|
2017-07-08 09:16:01 +00:00
|
|
|
for (++i; i < [fTrackers count] && [fTrackers[i] isKindOfClass: [TrackerNode class]]; ++i)
|
|
|
|
[addresses addObject: [(TrackerNode *)fTrackers[i] fullAnnounceAddress]];
|
2009-09-28 23:18:26 +00:00
|
|
|
--i;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
[addresses addObject: [(TrackerNode *)item fullAnnounceAddress]];
|
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2009-09-29 03:02:44 +00:00
|
|
|
NSString * text = [addresses componentsJoinedByString: @"\n"];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2009-09-28 23:18:26 +00:00
|
|
|
NSPasteboard * pb = [NSPasteboard generalPasteboard];
|
2011-10-06 00:30:40 +00:00
|
|
|
[pb clearContents];
|
2017-07-08 08:23:05 +00:00
|
|
|
[pb writeObjects: @[text]];
|
2009-09-28 23:18:26 +00:00
|
|
|
}
|
|
|
|
|
2009-10-01 01:15:37 +00:00
|
|
|
- (void) paste: (id) sender
|
|
|
|
{
|
2009-10-01 02:24:58 +00:00
|
|
|
NSAssert(fTorrent != nil, @"no torrent but trying to paste; should not be able to call this method");
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2009-10-01 02:24:58 +00:00
|
|
|
BOOL added = NO;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2017-07-08 08:23:05 +00:00
|
|
|
NSArray * items = [[NSPasteboard generalPasteboard] readObjectsForClasses: @[[NSString class]] options: nil];
|
2011-10-06 00:30:40 +00:00
|
|
|
NSAssert(items != nil, @"no string items to paste; should not be able to call this method");
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2011-10-06 00:30:40 +00:00
|
|
|
for (NSString * pbItem in items)
|
2009-10-01 02:24:58 +00:00
|
|
|
{
|
|
|
|
for (NSString * item in [pbItem componentsSeparatedByString: @"\n"])
|
|
|
|
if ([fTorrent addTrackerToNewTier: item])
|
|
|
|
added = YES;
|
2009-10-01 01:15:37 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2009-10-01 02:24:58 +00:00
|
|
|
//none added
|
|
|
|
if (!added)
|
|
|
|
NSBeep();
|
2009-10-01 01:15:37 +00:00
|
|
|
}
|
|
|
|
|
2009-09-28 23:18:26 +00:00
|
|
|
- (BOOL) validateMenuItem: (NSMenuItem *) menuItem
|
|
|
|
{
|
2009-09-29 03:02:44 +00:00
|
|
|
const SEL action = [menuItem action];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2009-09-28 23:18:26 +00:00
|
|
|
if (action == @selector(copy:))
|
|
|
|
return [self numberOfSelectedRows] > 0;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2009-10-01 01:15:37 +00:00
|
|
|
if (action == @selector(paste:))
|
2017-07-08 08:23:05 +00:00
|
|
|
return fTorrent && [[NSPasteboard generalPasteboard] canReadObjectForClasses: @[[NSString class]] options: nil];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2009-09-28 23:18:26 +00:00
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
2008-05-23 19:32:35 +00:00
|
|
|
@end
|