transmission/macosx/FilePriorityCell.m

146 lines
5.4 KiB
Mathematica
Raw Normal View History

2007-09-16 01:02:06 +00:00
/******************************************************************************
* $Id$
*
2009-01-10 23:37:37 +00:00
* Copyright (c) 2007-2009 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"
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];
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;
}
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];
[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
}
- (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
{
2007-10-20 19:29:50 +00:00
Torrent * torrent = [(FileOutlineView *)controlView torrent];
FileListNode * node = [self representedObject];
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
{
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
{
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];
2008-11-01 15:22:32 +00:00
[image compositeToPoint: NSMakePoint(cellFrame.origin.x + (cellFrame.size.width - imageSize.width) * 0.5f,
cellFrame.origin.y + (cellFrame.size.height + imageSize.height) * 0.5f) operation: NSCompositeSourceOver];
2007-09-16 01:02:06 +00:00
}
}
@end