FreeRDP
Loading...
Searching...
No Matches
RDPSessionToolbar.h
1//
2// RDPSessionToolbar.h
3// iFreeRDP
4//
5// Created by byungho on 6/21/26.
6//
7
8#ifndef RDPSessionToolbar_h
9#define RDPSessionToolbar_h
10
11#import <UIKit/UIKit.h>
12
13// Session toolbar that only reacts to direct touches. Mouse/trackpad pointer input is
14// redirected to passthroughView (the remote session) instead of hitting the toolbar.
15@interface RDPSessionToolbar : UIToolbar
16
17@property(nonatomic, assign) UIView *passthroughView;
18
19@end
20
21#endif /* RDPSessionToolbar_h */