mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
130 lines
2.8 KiB
Objective-C
130 lines
2.8 KiB
Objective-C
//
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "OWSBubbleStrokeView.h"
|
|
#import "OWSBubbleView.h"
|
|
#import <SignalMessaging/UIView+OWS.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface OWSBubbleStrokeView ()
|
|
|
|
@property (nonatomic) CAShapeLayer *shapeLayer;
|
|
|
|
@property (nonatomic, weak) OWSBubbleView *bubbleView;
|
|
|
|
@end
|
|
|
|
#pragma mark -
|
|
|
|
@implementation OWSBubbleStrokeView
|
|
|
|
- (instancetype)init
|
|
{
|
|
self = [super init];
|
|
if (!self) {
|
|
return self;
|
|
}
|
|
|
|
self.opaque = NO;
|
|
self.backgroundColor = [UIColor clearColor];
|
|
|
|
self.shapeLayer = [CAShapeLayer new];
|
|
[self.layer addSublayer:self.shapeLayer];
|
|
|
|
return self;
|
|
}
|
|
|
|
- (void)setStrokeColor:(UIColor *)strokeColor
|
|
{
|
|
_strokeColor = strokeColor;
|
|
|
|
[self updateLayers];
|
|
}
|
|
|
|
- (void)setStrokeThickness:(CGFloat)strokeThickness
|
|
{
|
|
_strokeThickness = strokeThickness;
|
|
|
|
[self updateLayers];
|
|
}
|
|
|
|
- (void)setFrame:(CGRect)frame
|
|
{
|
|
BOOL didChange = !CGRectEqualToRect(self.frame, frame);
|
|
|
|
[super setFrame:frame];
|
|
|
|
if (didChange) {
|
|
[self updateLayers];
|
|
}
|
|
}
|
|
|
|
- (void)setBounds:(CGRect)bounds
|
|
{
|
|
BOOL didChange = !CGRectEqualToRect(self.bounds, bounds);
|
|
|
|
[super setBounds:bounds];
|
|
|
|
if (didChange) {
|
|
[self updateLayers];
|
|
}
|
|
}
|
|
|
|
- (void)setCenter:(CGPoint)center
|
|
{
|
|
[super setCenter:center];
|
|
|
|
[self updateLayers];
|
|
}
|
|
|
|
- (void)updateLayers
|
|
{
|
|
if (!self.shapeLayer) {
|
|
return;
|
|
}
|
|
|
|
// Prevent the shape layer from animating changes.
|
|
[CATransaction begin];
|
|
[CATransaction setDisableActions:YES];
|
|
|
|
// Don't fill the shape layer; we just want a stroke around the border.
|
|
self.shapeLayer.fillColor = [UIColor clearColor].CGColor;
|
|
|
|
[CATransaction commit];
|
|
|
|
self.clipsToBounds = YES;
|
|
|
|
if (!self.bubbleView) {
|
|
return;
|
|
}
|
|
|
|
UIBezierPath *bezierPath = [UIBezierPath new];
|
|
|
|
UIBezierPath *boundsBezierPath = [UIBezierPath bezierPathWithRect:self.bounds];
|
|
[bezierPath appendPath:boundsBezierPath];
|
|
|
|
UIBezierPath *bubbleBezierPath = [self.bubbleView maskPath];
|
|
// We need to convert between coordinate systems using layers, not views.
|
|
CGPoint bubbleOffset = [self.layer convertPoint:CGPointZero fromLayer:self.bubbleView.layer];
|
|
CGAffineTransform transform = CGAffineTransformMakeTranslation(bubbleOffset.x, bubbleOffset.y);
|
|
[bubbleBezierPath applyTransform:transform];
|
|
[bezierPath appendPath:bubbleBezierPath];
|
|
|
|
// Prevent the shape layer from animating changes.
|
|
[CATransaction begin];
|
|
[CATransaction setDisableActions:YES];
|
|
|
|
self.shapeLayer.strokeColor = self.strokeColor.CGColor;
|
|
self.shapeLayer.lineWidth = self.strokeThickness;
|
|
self.shapeLayer.zPosition = 100.f;
|
|
self.shapeLayer.path = bezierPath.CGPath;
|
|
|
|
[CATransaction commit];
|
|
}
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|