summaryrefslogtreecommitdiffstats
path: root/macosx/HBThumbnailItemView.h
blob: 0e57ba34487649adbee99fb4a2dfbcf9b34535fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 Copyright (C) 2017 Apple Inc. All Rights Reserved.
 See LICENSE.txt for this sample’s licensing information
 
 Abstract:
 Custom NSScrubberItemView used to display an image.
 */

#import <Cocoa/Cocoa.h>
#import "HBPreviewGenerator.h"

@interface HBThumbnailItemView : NSScrubberItemView

@property (nonatomic) NSImage *thumbnail;
@property (nonatomic) NSUInteger thumbnailIndex;
@property (nonatomic, weak) HBPreviewGenerator *generator;


@end