mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-14 10:20:11 +00:00
git-subtree-dir: submodules/LegacyComponents git-subtree-mainline: 608630530451e02e5aec48389d144dbf7a3625b9 git-subtree-split: d5594346161c1b7f203d1e87068bbe77bcaac019
23 lines
729 B
Objective-C
23 lines
729 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;
|
|
- (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
|