/* 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"
@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, nonnull) NSString *info;
@property (nonatomic, nonnull) NSString *scale;
@property (nonatomic) NSUInteger pictureCount;
@property (nonatomic) NSUInteger selectedIndex;
@end