/* HBPictureHUDController.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 "HBHUD.h"
NS_ASSUME_NONNULL_BEGIN
@protocol HBPictureHUDControllerDelegate
- (void)displayPreviewAtIndex:(NSUInteger)idx;
- (void)toggleScaleToScreen;
- (void)showPictureSettings;
- (void)createMoviePreviewWithPictureIndex:(NSUInteger)index duration:(NSUInteger)duration;
@end
@interface HBPictureHUDController : NSViewController
@property (nonatomic, nullable, assign) id delegate;
@property (nonatomic, copy) NSString *info;
@property (nonatomic, copy) NSString *scale;
@property (nonatomic) NSUInteger pictureCount;
@property (nonatomic) NSUInteger selectedIndex;
@end
NS_ASSUME_NONNULL_END