transmission/macosx/BadgeView.m

129 lines
4.5 KiB
Mathematica
Raw Normal View History

/******************************************************************************
* $Id$
*
2008-01-02 16:55:05 +00:00
* Copyright (c) 2007-2008 Transmission authors and contributors
*
* 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 "BadgeView.h"
#import "NSStringAdditions.h"
#define BETWEEN_PADDING 2.0
@interface BadgeView (Private)
2007-12-05 18:23:51 +00:00
- (void) badge: (NSImage *) badge string: (NSString *) string atHeight: (float) height;
@end
@implementation BadgeView
- (id) initWithFrame: (NSRect) frame lib: (tr_handle *) lib
{
if ((self = [super initWithFrame: frame]))
{
fLib = lib;
2007-12-05 18:23:51 +00:00
fQuitting = NO;
}
return self;
}
2007-12-05 18:23:51 +00:00
- (void) setQuitting
{
fQuitting = YES;
}
- (void) dealloc
{
[fAttributes release];
[super dealloc];
}
- (void) drawRect: (NSRect) rect
{
[[NSImage imageNamed: @"NSApplicationIcon"] drawInRect: rect fromRect: NSZeroRect operation: NSCompositeSourceOver fraction: 1.0];
2007-12-05 18:23:51 +00:00
if (fQuitting)
{
2008-03-25 23:10:49 +00:00
NSImage * quitBadge = [NSImage imageNamed: @"QuitBadge.png"];
[self badge: quitBadge string: NSLocalizedString(@"Quitting", "Dock Badger -> quit")
atHeight: (rect.size.height - [quitBadge size].height) * 0.5];
2007-12-05 18:23:51 +00:00
return;
}
BOOL checkDownload = [[NSUserDefaults standardUserDefaults] boolForKey: @"BadgeDownloadRate"],
checkUpload = [[NSUserDefaults standardUserDefaults] boolForKey: @"BadgeUploadRate"];
if (checkDownload || checkUpload)
{
float downloadRate, uploadRate;
tr_torrentRates(fLib, &downloadRate, &uploadRate);
2007-12-06 14:25:27 +00:00
BOOL upload = checkUpload && uploadRate >= 0.1;
if (upload)
2008-01-17 06:53:40 +00:00
[self badge: [NSImage imageNamed: @"UploadBadge.png"] string: [NSString stringForSpeedAbbrev: uploadRate] atHeight: 0.0];
2008-01-17 06:57:51 +00:00
if (checkDownload && downloadRate >= 0.1)
{
2007-12-05 18:44:11 +00:00
//download rate above upload rate
2008-01-17 06:53:40 +00:00
float bottom = upload ? [[NSImage imageNamed: @"UploadBadge.png"] size].height + BETWEEN_PADDING : 0.0;
[self badge: [NSImage imageNamed: @"DownloadBadge.png"] string: [NSString stringForSpeedAbbrev: downloadRate]
atHeight: bottom];
}
}
}
@end
@implementation BadgeView (Private)
//dock icon must have locked focus
2007-12-05 18:23:51 +00:00
- (void) badge: (NSImage *) badge string: (NSString *) string atHeight: (float) height
{
if (!fAttributes)
{
NSShadow * stringShadow = [[NSShadow alloc] init];
[stringShadow setShadowOffset: NSMakeSize(2.0, -2.0)];
[stringShadow setShadowBlurRadius: 4.0];
fAttributes = [[NSDictionary alloc] initWithObjectsAndKeys:
[NSColor whiteColor], NSForegroundColorAttributeName,
[NSFont boldSystemFontOfSize: 26.0], NSFontAttributeName, stringShadow, NSShadowAttributeName, nil];
[stringShadow release];
}
2007-12-05 18:23:51 +00:00
NSRect badgeRect = NSZeroRect;
badgeRect.size = [badge size];
badgeRect.origin.y = height;
[badge drawInRect: badgeRect fromRect: NSZeroRect operation: NSCompositeSourceOver fraction: 1.0];
//string is in center of image
2007-12-05 18:23:51 +00:00
NSSize stringSize = [string sizeWithAttributes: fAttributes];
NSRect stringRect = badgeRect;
stringRect.origin.x += (badgeRect.size.width - stringSize.width) * 0.5;
2007-12-06 14:25:27 +00:00
stringRect.origin.y += (badgeRect.size.height - stringSize.height) * 0.5 + 1.0; //adjust for shadow
2007-12-05 18:23:51 +00:00
stringRect.size = stringSize;
[string drawInRect: stringRect withAttributes: fAttributes];
}
@end