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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use objc2::__framework_prelude::*;
use objc2_foundation::*;

use crate::*;

#[deprecated]
pub const DOM_DOM_DELTA_PIXEL: c_uint = 0x00;
#[deprecated]
pub const DOM_DOM_DELTA_LINE: c_uint = 0x01;
#[deprecated]
pub const DOM_DOM_DELTA_PAGE: c_uint = 0x02;

extern_class!(
    #[derive(Debug, PartialEq, Eq, Hash)]
    #[cfg(all(
        feature = "DOMEvent",
        feature = "DOMMouseEvent",
        feature = "DOMObject",
        feature = "DOMUIEvent",
        feature = "WebScriptObject"
    ))]
    #[deprecated]
    pub struct DOMWheelEvent;

    #[cfg(all(
        feature = "DOMEvent",
        feature = "DOMMouseEvent",
        feature = "DOMObject",
        feature = "DOMUIEvent",
        feature = "WebScriptObject"
    ))]
    unsafe impl ClassType for DOMWheelEvent {
        #[inherits(DOMUIEvent, DOMEvent, DOMObject, WebScriptObject, NSObject)]
        type Super = DOMMouseEvent;
        type Mutability = InteriorMutable;
    }
);

#[cfg(all(
    feature = "DOMEvent",
    feature = "DOMMouseEvent",
    feature = "DOMObject",
    feature = "DOMUIEvent",
    feature = "WebScriptObject"
))]
unsafe impl NSCopying for DOMWheelEvent {}

#[cfg(all(
    feature = "DOMEvent",
    feature = "DOMMouseEvent",
    feature = "DOMObject",
    feature = "DOMUIEvent",
    feature = "WebScriptObject"
))]
unsafe impl NSObjectProtocol for DOMWheelEvent {}

extern_methods!(
    #[cfg(all(
        feature = "DOMEvent",
        feature = "DOMMouseEvent",
        feature = "DOMObject",
        feature = "DOMUIEvent",
        feature = "WebScriptObject"
    ))]
    unsafe impl DOMWheelEvent {
        #[method(wheelDeltaX)]
        pub unsafe fn wheelDeltaX(&self) -> c_int;

        #[method(wheelDeltaY)]
        pub unsafe fn wheelDeltaY(&self) -> c_int;

        #[deprecated]
        #[method(wheelDelta)]
        pub unsafe fn wheelDelta(&self) -> c_int;

        #[deprecated]
        #[method(isHorizontal)]
        pub unsafe fn isHorizontal(&self) -> bool;

        #[cfg(feature = "DOMAbstractView")]
        #[method(initWheelEvent:wheelDeltaY:view:screenX:screenY:clientX:clientY:ctrlKey:altKey:shiftKey:metaKey:)]
        pub unsafe fn initWheelEvent_wheelDeltaY_view_screenX_screenY_clientX_clientY_ctrlKey_altKey_shiftKey_metaKey(
            &self,
            wheel_delta_x: c_int,
            wheel_delta_y: c_int,
            view: Option<&DOMAbstractView>,
            screen_x: c_int,
            screen_y: c_int,
            client_x: c_int,
            client_y: c_int,
            ctrl_key: bool,
            alt_key: bool,
            shift_key: bool,
            meta_key: bool,
        );
    }
);

extern_methods!(
    /// Methods declared on superclass `DOMObject`
    #[cfg(all(
        feature = "DOMEvent",
        feature = "DOMMouseEvent",
        feature = "DOMObject",
        feature = "DOMUIEvent",
        feature = "WebScriptObject"
    ))]
    unsafe impl DOMWheelEvent {
        #[deprecated]
        #[method_id(@__retain_semantics Init init)]
        pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
    }
);

extern_methods!(
    /// Methods declared on superclass `NSObject`
    #[cfg(all(
        feature = "DOMEvent",
        feature = "DOMMouseEvent",
        feature = "DOMObject",
        feature = "DOMUIEvent",
        feature = "WebScriptObject"
    ))]
    unsafe impl DOMWheelEvent {
        #[method_id(@__retain_semantics New new)]
        pub unsafe fn new() -> Retained<Self>;
    }
);