Swiftgram/LegacyComponents/TGMediaPickerGalleryPhotoItem.m
2017-07-28 16:50:06 +03:00

37 lines
678 B
Objective-C

#import "TGMediaPickerGalleryPhotoItem.h"
#import "TGMediaPickerGalleryPhotoItemView.h"
#import "TGMediaAsset+TGMediaEditableItem.h"
@implementation TGMediaPickerGalleryPhotoItem
@synthesize selectionContext;
@synthesize editingContext;
- (NSString *)uniqueId
{
return self.asset.identifier;
}
- (id<TGMediaSelectableItem>)selectableMediaItem
{
return self.asset;
}
- (id<TGMediaEditableItem>)editableMediaItem
{
return self.asset;
}
- (TGPhotoEditorTab)toolbarTabs
{
return TGPhotoEditorCropTab | TGPhotoEditorToolsTab | TGPhotoEditorPaintTab | TGPhotoEditorTimerTab;
}
- (Class)viewClass
{
return [TGMediaPickerGalleryPhotoItemView class];
}
@end