2007-09-16 01:02:06 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* $Id$
|
|
|
|
*
|
2010-01-01 21:12:04 +00:00
|
|
|
* Copyright (c) 2007-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 "FilePriorityCell.h"
|
2007-10-20 19:13:52 +00:00
|
|
|
#import "FileOutlineView.h"
|
2008-05-22 18:39:49 +00:00
|
|
|
#import "FileListNode.h"
|
2009-08-29 23:10:53 +00:00
|
|
|
#import "NSApplicationAdditions.h"
|
2007-09-16 01:02:06 +00:00
|
|
|
#import "Torrent.h"
|
|
|
|
|
|
|
|
@implementation FilePriorityCell
|
|
|
|
|
|
|
|
- (id) init
|
|
|
|
{
|
|
|
|
if ((self = [super init]))
|
|
|
|
{
|
|
|
|
[self setTrackingMode: NSSegmentSwitchTrackingSelectAny];
|
|
|
|
[self setControlSize: NSMiniControlSize];
|
|
|
|
[self setSegmentCount: 3];
|
|
|
|
|
2008-10-12 21:38:13 +00:00
|
|
|
for (NSInteger i = 0; i < [self segmentCount]; i++)
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
|
|
|
[self setLabel: @"" forSegment: i];
|
2008-11-01 15:22:32 +00:00
|
|
|
[self setWidth: 9.0f forSegment: i]; //9 is minimum size to get proper look
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
2008-01-11 22:05:40 +00:00
|
|
|
|
2008-01-16 05:50:24 +00:00
|
|
|
[self setImage: [NSImage imageNamed: @"PriorityControlLow.png"] forSegment: 0];
|
|
|
|
[self setImage: [NSImage imageNamed: @"PriorityControlNormal.png"] forSegment: 1];
|
|
|
|
[self setImage: [NSImage imageNamed: @"PriorityControlHigh.png"] forSegment: 2];
|
2008-01-12 03:39:26 +00:00
|
|
|
|
|
|
|
fHoverRow = NO;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2008-11-01 15:22:32 +00:00
|
|
|
- (void) setSelected: (BOOL) flag forSegment: (NSInteger) segment
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
|
|
|
[super setSelected: flag forSegment: segment];
|
|
|
|
|
|
|
|
//only for when clicking manually
|
2008-11-01 15:22:32 +00:00
|
|
|
NSInteger priority;
|
2007-10-20 19:38:10 +00:00
|
|
|
switch (segment)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
priority = TR_PRI_LOW;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
priority = TR_PRI_NORMAL;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
priority = TR_PRI_HIGH;
|
|
|
|
break;
|
|
|
|
}
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2007-10-20 19:38:10 +00:00
|
|
|
FileOutlineView * controlView = (FileOutlineView *)[self controlView];
|
|
|
|
Torrent * torrent = [controlView torrent];
|
2008-05-22 18:39:49 +00:00
|
|
|
[torrent setFilePriority: priority forIndexes: [(FileListNode *)[self representedObject] indexes]];
|
2007-10-20 19:38:10 +00:00
|
|
|
[controlView reloadData];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2008-01-15 03:33:44 +00:00
|
|
|
- (void) addTrackingAreasForView: (NSView *) controlView inRect: (NSRect) cellFrame withUserInfo: (NSDictionary *) userInfo
|
2008-01-12 03:39:26 +00:00
|
|
|
mouseLocation: (NSPoint) mouseLocation
|
|
|
|
{
|
|
|
|
NSTrackingAreaOptions options = NSTrackingEnabledDuringMouseDrag | NSTrackingMouseEnteredAndExited | NSTrackingActiveAlways;
|
2008-01-15 03:33:44 +00:00
|
|
|
|
2008-01-12 03:53:41 +00:00
|
|
|
if (NSMouseInRect(mouseLocation, cellFrame, [controlView isFlipped]))
|
2008-01-12 03:39:26 +00:00
|
|
|
{
|
|
|
|
options |= NSTrackingAssumeInside;
|
2008-01-12 03:53:41 +00:00
|
|
|
[controlView setNeedsDisplayInRect: cellFrame];
|
2008-01-12 03:39:26 +00:00
|
|
|
}
|
|
|
|
|
2008-01-12 03:53:41 +00:00
|
|
|
NSTrackingArea * area = [[NSTrackingArea alloc] initWithRect: cellFrame options: options owner: controlView userInfo: userInfo];
|
2008-01-12 03:39:26 +00:00
|
|
|
[controlView addTrackingArea: area];
|
|
|
|
[area release];
|
|
|
|
}
|
|
|
|
|
2008-03-25 03:17:35 +00:00
|
|
|
- (void) setHovered: (BOOL) hovered
|
2008-01-12 03:39:26 +00:00
|
|
|
{
|
2008-03-25 03:17:35 +00:00
|
|
|
fHoverRow = hovered;
|
2008-01-12 03:39:26 +00:00
|
|
|
}
|
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
- (void) drawWithFrame: (NSRect) cellFrame inView: (NSView *) controlView
|
|
|
|
{
|
2007-10-20 19:29:50 +00:00
|
|
|
Torrent * torrent = [(FileOutlineView *)controlView torrent];
|
2008-05-22 18:39:49 +00:00
|
|
|
FileListNode * node = [self representedObject];
|
|
|
|
NSSet * priorities = [torrent filePrioritiesForIndexes: [node indexes]];
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2008-10-12 21:38:13 +00:00
|
|
|
const NSUInteger count = [priorities count];
|
2008-01-12 03:39:26 +00:00
|
|
|
if (fHoverRow && count > 0)
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2008-12-26 21:31:00 +00:00
|
|
|
[super setSelected: [priorities containsObject: [NSNumber numberWithInteger: TR_PRI_LOW]] forSegment: 0];
|
|
|
|
[super setSelected: [priorities containsObject: [NSNumber numberWithInteger: TR_PRI_NORMAL]] forSegment: 1];
|
|
|
|
[super setSelected: [priorities containsObject: [NSNumber numberWithInteger: TR_PRI_HIGH]] forSegment: 2];
|
2007-09-16 01:02:06 +00:00
|
|
|
|
|
|
|
[super drawWithFrame: cellFrame inView: controlView];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
NSImage * image;
|
|
|
|
if (count == 0)
|
2007-12-04 16:47:00 +00:00
|
|
|
image = [NSImage imageNamed: @"PriorityNone.png"];
|
2007-09-16 01:02:06 +00:00
|
|
|
else if (count > 1)
|
2007-12-04 16:47:00 +00:00
|
|
|
image = [NSImage imageNamed: @"PriorityMixed.png"];
|
2007-09-16 01:02:06 +00:00
|
|
|
else
|
|
|
|
{
|
2008-12-26 21:31:00 +00:00
|
|
|
switch ([[priorities anyObject] integerValue])
|
2007-10-20 19:25:14 +00:00
|
|
|
{
|
|
|
|
case TR_PRI_NORMAL:
|
2007-12-04 16:47:00 +00:00
|
|
|
image = [NSImage imageNamed: @"PriorityNormal.png"];
|
2007-10-20 19:25:14 +00:00
|
|
|
break;
|
|
|
|
case TR_PRI_LOW:
|
2007-12-04 16:47:00 +00:00
|
|
|
image = [NSImage imageNamed: @"PriorityLow.png"];
|
2007-10-20 19:25:14 +00:00
|
|
|
break;
|
|
|
|
case TR_PRI_HIGH:
|
2007-12-04 16:47:00 +00:00
|
|
|
image = [NSImage imageNamed: @"PriorityHigh.png"];
|
2007-10-20 19:25:14 +00:00
|
|
|
break;
|
|
|
|
}
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NSSize imageSize = [image size];
|
2009-12-19 19:17:09 +00:00
|
|
|
NSRect imageRect = NSMakeRect(NSMidX(cellFrame) - imageSize.width * 0.5, NSMidY(cellFrame) - imageSize.height * 0.5,
|
2009-08-29 15:49:30 +00:00
|
|
|
imageSize.width, imageSize.height);
|
2009-08-29 23:10:53 +00:00
|
|
|
|
|
|
|
if ([NSApp isOnSnowLeopardOrBetter])
|
|
|
|
[image drawInRect: imageRect fromRect: NSZeroRect operation: NSCompositeSourceOver fraction: 1.0
|
|
|
|
respectFlipped: YES hints: nil];
|
|
|
|
else
|
|
|
|
{
|
2009-10-27 23:23:02 +00:00
|
|
|
image = [image copy];
|
2009-08-29 23:10:53 +00:00
|
|
|
[image setFlipped: YES];
|
|
|
|
[image drawInRect: imageRect fromRect: NSZeroRect operation: NSCompositeSourceOver fraction: 1.0];
|
2009-10-27 23:23:57 +00:00
|
|
|
[image release];
|
2009-08-29 23:10:53 +00:00
|
|
|
}
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|