Swiftgram/submodules/LegacyComponents/Sources/TGPhotoStickerEntityView.h
Ilya Laktyushin 7741978b7e Video Editing
2020-05-23 13:26:53 +03:00

22 lines
589 B
Objective-C

#import <LegacyComponents/TGPhotoPaintEntityView.h>
#import <LegacyComponents/TGPhotoPaintStickerEntity.h>
@interface TGPhotoStickerSelectionView : TGPhotoPaintEntitySelectionView
@end
@protocol TGPhotoPaintStickersContext;
@interface TGPhotoStickerEntityView : TGPhotoPaintEntityView
@property (nonatomic, readonly) TGPhotoPaintStickerEntity *entity;
@property (nonatomic, readonly) bool isMirrored;
- (instancetype)initWithEntity:(TGPhotoPaintStickerEntity *)entity context:(id<TGPhotoPaintStickersContext>)context;
- (void)mirror;
- (UIImage *)image;
- (CGRect)realBounds;
@end