HandBrake/macosx/HBPreviewController.h

25 lines
638 B
C
Raw Permalink Normal View History

2009-01-12 00:07:38 +00:00
/* $Id: HBPreviewController.h,v 1.6 2005/04/14 20:40:05 titer Exp $
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. */
2009-01-12 00:07:38 +00:00
#import <Cocoa/Cocoa.h>
@class HBPreviewGenerator;
@class HBPicture;
@class HBController;
2009-01-12 00:07:38 +00:00
NS_ASSUME_NONNULL_BEGIN
@interface HBPreviewController : NSWindowController <NSWindowDelegate>
@property (nonatomic, strong, nullable) HBPreviewGenerator *generator;
@property (nonatomic, strong, nullable) HBPicture *picture;
2009-01-12 00:07:38 +00:00
@property (nonatomic, assign) HBController *documentController;
2009-01-12 00:07:38 +00:00
@end
NS_ASSUME_NONNULL_END