// // OnScreenControls.h // Limelight // // Created by Diego Waxemberg on 12/28/14. // Copyright (c) 2014 Limelight Stream. All rights reserved. // #import @interface OnScreenControls : NSObject typedef NS_ENUM(NSInteger, OnScreenControlsLevel) { OnScreenControlsLevelOff, OnScreenControlsLevelSimple, OnScreenControlsLevelFull }; - (id) initWithView:(UIView*)view; - (BOOL) handleTouchDownEvent:(NSSet*)touches; - (BOOL) handleTouchUpEvent:(NSSet*)touches; - (BOOL) handleTouchMovedEvent:(NSSet*)touches; - (void) setLevel:(OnScreenControlsLevel)level; @end