1 /*  HBPlayerHUDController.h $
2 
3  This file is part of the HandBrake source code.
4  Homepage: <http://handbrake.fr/>.
5  It may be used under the terms of the GNU General Public License. */
6 
7 #import <Cocoa/Cocoa.h>
8 #import "HBPlayer.h"
9 #import "HBHUD.h"
10 
11 NS_ASSUME_NONNULL_BEGIN
12 
13 @protocol HBPlayerHUDControllerDelegate <NSObject>
14 
15 - (void)stopPlayer;
16 
17 @end
18 
19 @interface HBPlayerHUDController : NSViewController <HBHUD>
20 
21 @property (nonatomic, nullable, assign) id<HBPlayerHUDControllerDelegate> delegate;
22 @property (nonatomic, nullable) id<HBPlayer> player;
23 
24 @end
25 
26 NS_ASSUME_NONNULL_END
27 
28