1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-02 17:38:07 +01:00
Telegram/Telegraph/TGMediaPickerCell.h

22 lines
581 B
C
Raw Normal View History

2016-02-25 01:03:51 +01:00
#import "TGImageView.h"
#import "TGCheckButtonView.h"
@class TGMediaSelectionContext;
@class TGMediaEditingContext;
@interface TGMediaPickerCell : UICollectionViewCell
{
TGCheckButtonView *_checkButton;
}
@property (nonatomic, readonly) TGImageView *imageView;
- (void)setHidden:(bool)hidden animated:(bool)animated;
@property (nonatomic, strong) TGMediaSelectionContext *selectionContext;
@property (nonatomic, strong) TGMediaEditingContext *editingContext;
@property (nonatomic, readonly) NSObject *item;
- (void)setItem:(NSObject *)item signal:(SSignal *)signal;
@end