mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
20 lines
698 B
Objective-C
20 lines
698 B
Objective-C
#import "TGPhotoEditorTabController.h"
|
|
|
|
#import <LegacyComponents/LegacyComponentsContext.h>
|
|
|
|
@class PGPhotoEditor;
|
|
@class TGPhotoEditorPreviewView;
|
|
|
|
@protocol TGPhotoPaintStickersContext;
|
|
|
|
@interface TGPhotoDrawingController : TGPhotoEditorTabController
|
|
|
|
@property (nonatomic, copy) void (^requestDismiss)(void);
|
|
@property (nonatomic, copy) void (^requestApply)(void);
|
|
|
|
- (instancetype)initWithContext:(id<LegacyComponentsContext>)context photoEditor:(PGPhotoEditor *)photoEditor previewView:(TGPhotoEditorPreviewView *)previewView entitiesView:(TGPhotoEntitiesContainerView *)entitiesView stickersContext:(id<TGPhotoPaintStickersContext>)stickersContext;
|
|
|
|
- (TGPaintingData *)paintingData;
|
|
|
|
@end
|