/* HBHUD.h $
This file is part of the HandBrake source code.
Homepage: .
It may be used under the terms of the GNU General Public License. */
#import
@protocol HBHUD
/// Whether the hud can be hidden or not;
- (BOOL)canBeHidden;
// Responder chains is nice and good, but NSViewController
// are not automatically inserted in the responder chain prior 10.10
// and are removed when the view is hidden, so let's deliver the
// events manually.
- (BOOL)HB_keyDown:(NSEvent *)event;
- (BOOL)HB_scrollWheel:(NSEvent *)theEvent;
@end