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.
session-ios/Signal/src/ViewControllers/ConversationView/Cells/OWSBubbleView.h

32 lines
724 B
C

7 years ago
//
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
//
NS_ASSUME_NONNULL_BEGIN
extern const CGFloat kOWSMessageCellCornerRadius;
extern const CGFloat kBubbleVRounding;
extern const CGFloat kBubbleHRounding;
extern const CGFloat kBubbleThornSideInset;
extern const CGFloat kBubbleThornVInset;
extern const CGFloat kBubbleTextHInset;
extern const CGFloat kBubbleTextVInset;
7 years ago
@class OWSBubbleStrokeView;
7 years ago
@interface OWSBubbleView : UIView
7 years ago
@property (nonatomic, weak, nullable) OWSBubbleStrokeView *bubbleStrokeView;
7 years ago
@property (nonatomic) BOOL isOutgoing;
@property (nonatomic) BOOL hideTail;
@property (nonatomic, nullable) UIColor *bubbleColor;
7 years ago
- (UIBezierPath *)maskPath;
7 years ago
@end
NS_ASSUME_NONNULL_END