2020-12-23 15:24:37 +04:00

25 lines
789 B
Objective-C

#import <LegacyComponents/TGImageView.h>
#import <LegacyComponents/TGCheckButtonView.h>
@class TGMediaSelectionContext;
@class TGMediaEditingContext;
@class TGMediaAssetsPallete;
@interface TGMediaPickerCell : UICollectionViewCell
@property (nonatomic, readonly) TGImageView *imageView;
@property (nonatomic, readonly) TGCheckButtonView *checkButton;
@property (nonatomic, readonly) UIImageView *typeIconView;
- (void)setHidden:(bool)hidden animated:(bool)animated;
@property (nonatomic, strong) TGMediaSelectionContext *selectionContext;
@property (nonatomic, strong) TGMediaEditingContext *editingContext;
@property (nonatomic, strong) TGMediaAssetsPallete *pallete;
@property (nonatomic, readonly) NSObject *item;
- (void)setItem:(NSObject *)item signal:(SSignal *)signal;
@end