Refactor OSC handling

This commit is contained in:
Cameron Gutman
2019-10-22 00:16:20 -04:00
parent 26fac5b56e
commit 967ddd7d68
5 changed files with 51 additions and 17 deletions

View File

@@ -7,6 +7,7 @@
//
#import "ControllerSupport.h"
#import "OnScreenControls.h"
@protocol EdgeDetectionDelegate <NSObject>
@@ -18,8 +19,9 @@
@property (nonatomic, retain) IBOutlet UITextField* keyInputField;
- (void) setupStreamView;
- (void) setupOnScreenControls:(ControllerSupport*)controllerSupport swipeDelegate:(id<EdgeDetectionDelegate>)swipeDelegate;
- (void) setupStreamView:(ControllerSupport*)controllerSupport swipeDelegate:(id<EdgeDetectionDelegate>)swipeDelegate;
- (void) showOnScreenControls;
- (void) setMouseDeltaFactors:(float)x y:(float)y;
- (OnScreenControlsLevel) getCurrentOscState;
@end