FreeRDP
Loading...
Searching...
No Matches
RDPSessionView.h
1/*
2 RDP Session View
3
4 Copyright 2013 Thincast Technologies GmbH, Author: Martin Fleisz
5
6 This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
7 If a copy of the MPL was not distributed with this file, You can obtain one at
8 http://mozilla.org/MPL/2.0/.
9 */
10
11#import <UIKit/UIKit.h>
12#import "RDPSession.h"
13
14@class RDPCursor;
15
16@interface RDPSessionView : UIView
17{
18 RDPSession *_session;
19}
20
21@property(nonatomic, assign) BOOL hardwareKeyboardActive;
22
23- (void)setSession:(RDPSession *)session;
24- (void)prepareForBitmapContextChange;
25- (void)setNeedsDisplayInRemoteRect:(CGRect)rect;
26- (void)setRemoteCursor:(RDPCursor *)cursor;
27- (void)setRemoteCursorPosition:(CGPoint)position;
28- (void)showRemoteCursor;
29- (void)hideRemoteCursor;
30- (void)setDefaultRemoteCursor;
31
32@end