transmission/macosx/FilePriorityCell.m

182 lines
6.5 KiB
Mathematica
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 "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 1.0
2007-09-16 01:02:06 +00:00
@implementation FilePriorityCell
- (instancetype) init
2007-09-16 01:02:06 +00:00
{
if ((self = [super init]))
{
self.trackingMode = NSSegmentSwitchTrackingSelectAny;
self.controlSize = NSMiniControlSize;
self.segmentCount = 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
}
[self setImage: [NSImage imageNamed: @"PriorityControlLow"] forSegment: 0];
[self setImage: [NSImage imageNamed: @"PriorityControlNormal"] forSegment: 1];
[self setImage: [NSImage imageNamed: @"PriorityControlHigh"] 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];
2007-09-16 01:02:06 +00:00
//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;
}
FileListNode * node = self.representedObject;
Torrent * torrent = node.torrent;
[torrent setFilePriority: priority forIndexes: node.indexes];
FileOutlineView * controlView = (FileOutlineView *)self.controlView;
controlView.needsDisplay = YES;
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;
if (NSMouseInRect(mouseLocation, cellFrame, controlView.flipped))
{
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];
}
- (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];
const NSUInteger count = priorities.count;
if (fHoverRow && count > 0)
2007-09-16 01:02:06 +00:00
{
2017-07-07 10:34:27 +00:00
[super setSelected: [priorities containsObject: @(TR_PRI_LOW)] forSegment: 0];
[super setSelected: [priorities containsObject: @(TR_PRI_NORMAL)] forSegment: 1];
[super setSelected: [priorities containsObject: @(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, 1u)];
CGFloat totalWidth;
2007-09-16 01:02:06 +00:00
if (count == 0)
{
//if ([self backgroundStyle] != NSBackgroundStyleDark)
{
NSImage * image = [[NSImage imageNamed: @"PriorityNormalTemplate"] 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;
2017-07-07 10:34:27 +00:00
if ([priorities containsObject: @(TR_PRI_LOW)])
{
NSImage * image = [[NSImage imageNamed: @"PriorityLowTemplate"] imageWithColor: priorityColor];
[images addObject: image];
totalWidth += image.size.width;
}
2017-07-07 10:34:27 +00:00
if ([priorities containsObject: @(TR_PRI_NORMAL)])
2007-10-20 19:25:14 +00:00
{
NSImage * image = [[NSImage imageNamed: @"PriorityNormalTemplate"] imageWithColor: priorityColor];
[images addObject: image];
totalWidth += image.size.width;
}
2017-07-07 10:34:27 +00:00
if ([priorities containsObject: @(TR_PRI_HIGH)])
{
NSImage * image = [[NSImage imageNamed: @"PriorityHighTemplate"] 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