FreeRDP
Loading...
Searching...
No Matches
RDPCursor.h
1//
2// RDPCursor.h
3// iFreeRDP
4//
5// Created by byungho on 6/19/26.
6//
7
8#ifndef RDPCursor_h
9#define RDPCursor_h
10
11#import <UIKit/UIKit.h>
12
13@interface RDPCursor : NSObject
14{
15 UIImage *_image;
16 CGPoint _hotspot;
17}
18
19@property(nonatomic, retain) UIImage *image;
20@property(nonatomic, assign) CGPoint hotspot;
21
22- (id)initWithRGBABytes:(const void *)bytes
23 width:(NSUInteger)width
24 height:(NSUInteger)height
25 hotspot:(CGPoint)hotspot;
26
27// default white cursor
28+ (RDPCursor *)defaultCursor;
29
30@end
31
32#endif /* RDPCursor_h */