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 "DragOverlayView.h"
|
|
|
|
|
2010-01-28 03:36:47 +00:00
|
|
|
#define PADDING 10.0
|
|
|
|
#define ICON_WIDTH 64.0
|
2007-10-13 13:54:19 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
@implementation DragOverlayView
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (instancetype)initWithFrame:(NSRect)frame
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
if ((self = [super initWithFrame:frame]))
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
|
|
|
//create attributes
|
2021-08-15 09:41:48 +00:00
|
|
|
NSShadow* stringShadow = [[NSShadow alloc] init];
|
2021-08-07 07:27:56 +00:00
|
|
|
stringShadow.shadowOffset = NSMakeSize(2.0, -2.0);
|
|
|
|
stringShadow.shadowBlurRadius = 4.0;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSFont *bigFont = [NSFont boldSystemFontOfSize:18.0], *smallFont = [NSFont systemFontOfSize:14.0];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSMutableParagraphStyle* paragraphStyle = [NSParagraphStyle.defaultParagraphStyle mutableCopy];
|
2021-08-07 07:27:56 +00:00
|
|
|
paragraphStyle.lineBreakMode = NSLineBreakByTruncatingMiddle;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
fMainLineAttributes = @{
|
|
|
|
NSForegroundColorAttributeName : NSColor.whiteColor,
|
|
|
|
NSFontAttributeName : bigFont,
|
|
|
|
NSShadowAttributeName : stringShadow,
|
|
|
|
NSParagraphStyleAttributeName : paragraphStyle
|
|
|
|
};
|
|
|
|
|
|
|
|
fSubLineAttributes = @{
|
|
|
|
NSForegroundColorAttributeName : NSColor.whiteColor,
|
|
|
|
NSFontAttributeName : smallFont,
|
|
|
|
NSShadowAttributeName : stringShadow,
|
|
|
|
NSParagraphStyleAttributeName : paragraphStyle
|
|
|
|
};
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)setOverlay:(NSImage*)icon mainLine:(NSString*)mainLine subLine:(NSString*)subLine
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2010-01-28 03:36:47 +00:00
|
|
|
//create badge
|
2021-08-15 09:41:48 +00:00
|
|
|
NSRect const badgeRect = NSMakeRect(0.0, 0.0, 325.0, 84.0);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
fBadge = [[NSImage alloc] initWithSize:badgeRect.size];
|
2007-12-04 06:03:38 +00:00
|
|
|
[fBadge lockFocus];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSBezierPath* bp = [NSBezierPath bezierPathWithRoundedRect:badgeRect xRadius:15.0 yRadius:15.0];
|
|
|
|
[[NSColor colorWithCalibratedWhite:0.0 alpha:0.75] set];
|
2010-01-28 03:36:47 +00:00
|
|
|
[bp fill];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-12-04 16:47:00 +00:00
|
|
|
//place icon
|
2021-08-15 09:41:48 +00:00
|
|
|
[icon drawInRect:NSMakeRect(PADDING, (NSHeight(badgeRect) - ICON_WIDTH) * 0.5, ICON_WIDTH, ICON_WIDTH) fromRect:NSZeroRect
|
|
|
|
operation:NSCompositeSourceOver
|
|
|
|
fraction:1.0];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
//place main text
|
2021-08-15 09:41:48 +00:00
|
|
|
NSSize const mainLineSize = [mainLine sizeWithAttributes:fMainLineAttributes];
|
|
|
|
NSSize const subLineSize = [subLine sizeWithAttributes:fSubLineAttributes];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSRect lineRect = NSMakeRect(
|
|
|
|
PADDING + ICON_WIDTH + 5.0,
|
|
|
|
(NSHeight(badgeRect) + (subLineSize.height + 2.0 - mainLineSize.height)) * 0.5,
|
|
|
|
NSWidth(badgeRect) - (PADDING + ICON_WIDTH + 2.0) - PADDING,
|
|
|
|
mainLineSize.height);
|
|
|
|
[mainLine drawInRect:lineRect withAttributes:fMainLineAttributes];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
//place sub text
|
2010-01-28 03:36:47 +00:00
|
|
|
lineRect.origin.y -= subLineSize.height + 2.0;
|
2007-09-16 01:02:06 +00:00
|
|
|
lineRect.size.height = subLineSize.height;
|
2021-08-15 09:41:48 +00:00
|
|
|
[subLine drawInRect:lineRect withAttributes:fSubLineAttributes];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
[fBadge unlockFocus];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-07 07:27:56 +00:00
|
|
|
self.needsDisplay = YES;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)drawRect:(NSRect)rect
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
|
|
|
if (fBadge)
|
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSRect const frame = self.frame;
|
|
|
|
NSSize const imageSize = fBadge.size;
|
|
|
|
[fBadge drawAtPoint:NSMakePoint((NSWidth(frame) - imageSize.width) * 0.5, (NSHeight(frame) - imageSize.height) * 0.5)
|
|
|
|
fromRect:NSZeroRect
|
|
|
|
operation:NSCompositeSourceOver
|
|
|
|
fraction:1.0];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|