1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
use crate::common::*;
use crate::AppKit::*;
use crate::Foundation::*;
use crate::GameController::*;
extern_protocol!(
pub unsafe trait GCRelativeInput: NSObjectProtocol {
#[method(deltaDidChangeHandler)]
unsafe fn deltaDidChangeHandler(
&self,
) -> *mut Block<
(
NonNull<ProtocolObject<dyn GCPhysicalInputElement>>,
NonNull<ProtocolObject<dyn GCRelativeInput>>,
c_float,
),
(),
>;
#[method(setDeltaDidChangeHandler:)]
unsafe fn setDeltaDidChangeHandler(
&self,
delta_did_change_handler: Option<
&Block<
(
NonNull<ProtocolObject<dyn GCPhysicalInputElement>>,
NonNull<ProtocolObject<dyn GCRelativeInput>>,
c_float,
),
(),
>,
>,
);
#[method(delta)]
unsafe fn delta(&self) -> c_float;
#[method(isAnalog)]
unsafe fn isAnalog(&self) -> bool;
#[method(lastDeltaTimestamp)]
unsafe fn lastDeltaTimestamp(&self) -> NSTimeInterval;
#[method(lastDeltaLatency)]
unsafe fn lastDeltaLatency(&self) -> NSTimeInterval;
}
unsafe impl ProtocolType for dyn GCRelativeInput {}
);