/* HBPreviewGenerator.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 @class HBCore; @class HBJob; @protocol HBPreviewGeneratorDelegate - (void) didCreateMovieAtURL: (NSURL *) fileURL; - (void) didCancelMovieCreation; - (void) updateProgress: (double) progress info: (NSString *) progressInfo; @end @interface HBPreviewGenerator : NSObject @property (nonatomic, assign) id delegate; - (instancetype)initWithCore:(HBCore *)core job:(HBJob *)job; /* Still image generator */ - (NSImage *) imageAtIndex: (NSUInteger) index shouldCache: (BOOL) cache; - (NSUInteger) imagesCount; - (void) purgeImageCache; /* Video generator */ - (BOOL) createMovieAsyncWithImageIndex: (NSUInteger) index andDuration: (NSUInteger) duration; - (void) cancel; @end