mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-17 19:09:56 +00:00
25 lines
397 B
Objective-C
25 lines
397 B
Objective-C
//
|
|
// BITImageAnnotation.h
|
|
// HockeySDK
|
|
//
|
|
// Created by Moritz Haarmann on 24.02.14.
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface BITImageAnnotation : UIView {
|
|
BOOL _selected;
|
|
}
|
|
|
|
@property (nonatomic) CGSize movedDelta;
|
|
@property (nonatomic, weak) UIImage *sourceImage;
|
|
@property (nonatomic) CGRect imageFrame;
|
|
|
|
-(BOOL)resizable;
|
|
|
|
- (void)setSelected:(BOOL)selected;
|
|
- (BOOL)isSelected;
|
|
|
|
@end
|