blob: ed1ebe80ac91d22176bfa73b7876d78e671b357b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/* HBPicture+UIAdditions.h $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr/>.
It may be used under the terms of the GNU General Public License. */
#import <Foundation/Foundation.h>
#import "HBPicture.h"
@interface HBPicture (UIAdditions)
/**
* UI enabled bindings
*/
@property (nonatomic, readonly) NSString *info;
@property (nonatomic, readonly) NSString *shortInfo;
@property (nonatomic, readonly) NSString *summary;
@property (nonatomic, readonly) int maxWidth;
@property (nonatomic, readonly) int maxHeight;
@property (nonatomic, readonly) int maxTopCrop;
@property (nonatomic, readonly) int maxBottomCrop;
@property (nonatomic, readonly) int maxLeftCrop;
@property (nonatomic, readonly) int maxRightCrop;
@property (nonatomic, readonly, getter=isKeepDisplayAspectEditable) BOOL keepDisplayAspectEditable;
@property (nonatomic, readonly, getter=isCustomAnamorphicEnabled) BOOL customAnamorphicEnabled;
@end
|