mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
22 lines
576 B
Objective-C
22 lines
576 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@interface TGPhotoEditorSliderView : UIControl
|
|
|
|
@property (nonatomic, copy) void(^interactionEnded)(void);
|
|
|
|
@property (nonatomic, assign) UIInterfaceOrientation interfaceOrientation;
|
|
|
|
@property (nonatomic, assign) CGFloat minimumValue;
|
|
@property (nonatomic, assign) CGFloat maximumValue;
|
|
|
|
@property (nonatomic, assign) CGFloat startValue;
|
|
@property (nonatomic, assign) CGFloat value;
|
|
|
|
@property (nonatomic, readonly) bool isTracking;
|
|
|
|
- (void)setValue:(CGFloat)value animated:(BOOL)animated;
|
|
|
|
@end
|
|
|
|
extern const CGFloat TGPhotoEditorSliderViewMargin;
|