diff options
author | Damiano Galassi <[email protected]> | 2017-11-12 12:41:42 +0100 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2017-11-12 12:41:42 +0100 |
commit | 2ce11e0c322fe78c0d7c62ac4b7a00178fd6ae46 (patch) | |
tree | c06a9794e8803fb77f3084893fdd07b06368e46f /macosx/HBSummaryViewController.h | |
parent | 2c750474608acba5da55f76b518f45f83d9757cb (diff) |
MacGui: show a preview image in the summary tab.
Diffstat (limited to 'macosx/HBSummaryViewController.h')
-rw-r--r-- | macosx/HBSummaryViewController.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/macosx/HBSummaryViewController.h b/macosx/HBSummaryViewController.h index 912fb2f3f..e34c472c4 100644 --- a/macosx/HBSummaryViewController.h +++ b/macosx/HBSummaryViewController.h @@ -7,9 +7,15 @@ #import <Cocoa/Cocoa.h> @class HBJob; +@class HBPreviewGenerator; + +NS_ASSUME_NONNULL_BEGIN @interface HBSummaryViewController : NSViewController -@property (nonatomic, readwrite, weak) HBJob *job; +@property (nonatomic, readwrite, weak, nullable) HBJob *job; +@property (nonatomic, readwrite, weak, nullable) HBPreviewGenerator *generator; @end + +NS_ASSUME_NONNULL_END |