transmission/macosx/FilePriorityCell.m

184 lines
6.9 KiB
Mathematica
Raw Normal View History

2007-09-16 01:02:06 +00:00
/******************************************************************************
* $Id$
*
* Copyright (c) 2007-2011 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"
#import "FileOutlineView.h"
#import "FileListNode.h"
#import "NSImageAdditions.h"
2007-09-16 01:02:06 +00:00
#import "Torrent.h"
#define IMAGE_OVERLAP 3.0
2007-09-16 01:02:06 +00:00
@implementation FilePriorityCell
- (id) init
{
if ((self = [super init]))
{
[self setTrackingMode: NSSegmentSwitchTrackingSelectAny];
[self setControlSize: NSMiniControlSize];
[self setSegmentCount: 3];
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-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];
fHoverRow = NO;
2007-09-16 01:02:06 +00:00
}
return self;
}
- (id) copyWithZone: (NSZone *) zone
{
id value = [super copyWithZone: zone];
[value setRepresentedObject: [self representedObject]];
return value;
}
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
Torrent * torrent = [(FileListNode *)[self representedObject] torrent];
[torrent setFilePriority: priority forIndexes: [(FileListNode *)[self representedObject] indexes]];
FileOutlineView * controlView = (FileOutlineView *)[self controlView];
2007-10-20 19:38:10 +00:00
[controlView reloadData];
2007-09-16 01:02:06 +00:00
}
- (void) addTrackingAreasForView: (NSView *) controlView inRect: (NSRect) cellFrame withUserInfo: (NSDictionary *) userInfo
mouseLocation: (NSPoint) mouseLocation
{
NSTrackingAreaOptions options = NSTrackingEnabledDuringMouseDrag | NSTrackingMouseEnteredAndExited | NSTrackingActiveAlways;
2008-01-12 03:53:41 +00:00
if (NSMouseInRect(mouseLocation, cellFrame, [controlView isFlipped]))
{
options |= NSTrackingAssumeInside;
2008-01-12 03:53:41 +00:00
[controlView setNeedsDisplayInRect: cellFrame];
}
2008-01-12 03:53:41 +00:00
NSTrackingArea * area = [[NSTrackingArea alloc] initWithRect: cellFrame options: options owner: controlView userInfo: userInfo];
[controlView addTrackingArea: area];
[area release];
}
- (void) setHovered: (BOOL) hovered
{
fHoverRow = hovered;
}
2007-09-16 01:02:06 +00:00
- (void) drawWithFrame: (NSRect) cellFrame inView: (NSView *) controlView
{
FileListNode * node = [self representedObject];
Torrent * torrent = [node torrent];
NSSet * priorities = [torrent filePrioritiesForIndexes: [node indexes]];
2007-09-16 01:02:06 +00:00
const NSUInteger count = [priorities count];
if (fHoverRow && count > 0)
2007-09-16 01:02:06 +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
{
NSMutableArray * images = [NSMutableArray arrayWithCapacity: MAX(count, 1)];
CGFloat totalWidth;
2007-09-16 01:02:06 +00:00
if (count == 0)
{
//if ([self backgroundStyle] != NSBackgroundStyleDark)
{
NSImage * image = [[NSImage imageNamed: @"PriorityNormalTemplate.png"] imageWithColor: [NSColor lightGrayColor]];
[images addObject: image];
totalWidth = [image size].width;
}
}
2007-09-16 01:02:06 +00:00
else
{
NSColor * priorityColor = [self backgroundStyle] == NSBackgroundStyleDark ? [NSColor whiteColor] : [NSColor darkGrayColor];
totalWidth = 0.0;
if ([priorities containsObject: [NSNumber numberWithInteger: TR_PRI_LOW]])
{
NSImage * image = [[NSImage imageNamed: @"PriorityLowTemplate.png"] imageWithColor: priorityColor];
[images addObject: image];
totalWidth += [image size].width;
}
if ([priorities containsObject: [NSNumber numberWithInteger: TR_PRI_NORMAL]])
2007-10-20 19:25:14 +00:00
{
NSImage * image = [[NSImage imageNamed: @"PriorityNormalTemplate.png"] imageWithColor: priorityColor];
[images addObject: image];
totalWidth += [image size].width;
}
if ([priorities containsObject: [NSNumber numberWithInteger: TR_PRI_HIGH]])
{
NSImage * image = [[NSImage imageNamed: @"PriorityHighTemplate.png"] imageWithColor: priorityColor];
[images addObject: image];
totalWidth += [image size].width;
2007-10-20 19:25:14 +00:00
}
2007-09-16 01:02:06 +00:00
}
if (count > 1)
totalWidth -= IMAGE_OVERLAP * (count-1);
CGFloat currentWidth = floor(NSMidX(cellFrame) - totalWidth * 0.5);
for (NSImage * image in images)
{
const NSSize imageSize = [image size];
const NSRect imageRect = NSMakeRect(currentWidth, floor(NSMidY(cellFrame) - imageSize.height * 0.5), imageSize.width, imageSize.height);
[image drawInRect: imageRect fromRect: NSZeroRect operation: NSCompositeSourceOver fraction: 1.0 respectFlipped: YES hints: nil];
currentWidth += imageSize.width - IMAGE_OVERLAP;
}
2007-09-16 01:02:06 +00:00
}
}
@end