mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-23 19:50:47 +00:00
25 lines
789 B
Objective-C
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
|