2009-01-12 00:07:38 +00:00
|
|
|
/* $Id: HBPreviewController.h,v 1.6 2005/04/14 20:40:05 titer Exp $
|
|
|
|
|
2013-11-04 07:09:50 +00:00
|
|
|
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>
|
|
|
|
|
2015-02-04 11:18:25 +00:00
|
|
|
@class HBPreviewGenerator;
|
2015-07-27 08:51:30 +00:00
|
|
|
@class HBPicture;
|
2016-01-15 19:44:27 +01:00
|
|
|
@class HBController;
|
2009-01-12 00:07:38 +00:00
|
|
|
|
2019-08-12 10:19:00 +02:00
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
2014-12-20 18:56:10 +00:00
|
|
|
@interface HBPreviewController : NSWindowController <NSWindowDelegate>
|
2010-08-05 16:45:00 +00:00
|
|
|
|
2019-08-12 10:19:00 +02:00
|
|
|
@property (nonatomic, strong, nullable) HBPreviewGenerator *generator;
|
|
|
|
@property (nonatomic, strong, nullable) HBPicture *picture;
|
2009-01-12 00:07:38 +00:00
|
|
|
|
2016-01-15 19:44:27 +01:00
|
|
|
@property (nonatomic, assign) HBController *documentController;
|
|
|
|
|
2009-01-12 00:07:38 +00:00
|
|
|
@end
|
2019-08-12 10:19:00 +02:00
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|