// // Copyright (c) 2018 Open Whisper Systems. All rights reserved. // #import "OWSBubbleView.h" NS_ASSUME_NONNULL_BEGIN extern const CGFloat kOWSMessageCellCornerRadius; @class OWSBubbleView; @protocol OWSBubbleViewPartner - (void)updateLayers; - (void)setBubbleView:(OWSBubbleView *)bubbleView; @end #pragma mark - @interface OWSBubbleView : UIView @property (nonatomic, nullable) UIColor *bubbleColor; @property (nonatomic, nullable, weak) id delegate; - (UIBezierPath *)maskPath; #pragma mark - Coordination - (void)addPartnerView:(id)view; - (void)clearPartnerViews; - (void)updatePartnerViews; + (CGFloat)minWidth; @end NS_ASSUME_NONNULL_END