/* HBPicture+UIAdditions.h $ This file is part of the HandBrake source code. Homepage: . It may be used under the terms of the GNU General Public License. */ #import #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