mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2026-02-16 10:31:02 +00:00
25 lines
553 B
Objective-C
25 lines
553 B
Objective-C
//
|
|
// StreamView.h
|
|
// Moonlight
|
|
//
|
|
// Created by Cameron Gutman on 10/19/14.
|
|
// Copyright (c) 2014 Moonlight Stream. All rights reserved.
|
|
//
|
|
|
|
#import "ControllerSupport.h"
|
|
|
|
@protocol EdgeDetectionDelegate <NSObject>
|
|
|
|
- (void) edgeSwiped;
|
|
|
|
@end
|
|
|
|
@interface StreamView : OSView <UITextFieldDelegate>
|
|
|
|
@property (nonatomic, retain) IBOutlet UITextField* keyInputField;
|
|
|
|
- (void) setupOnScreenControls:(ControllerSupport*)controllerSupport swipeDelegate:(id<EdgeDetectionDelegate>)swipeDelegate;
|
|
- (void) setMouseDeltaFactors:(float)x y:(float)y;
|
|
|
|
@end
|