1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-02 09:27:55 +01:00
Telegram/Telegraph/TGMediaPickerCell.h
2016-02-25 01:03:51 +01:00

22 lines
581 B
Objective-C

#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