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
#![allow(unused_imports)]
#![allow(clippy::all)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
    # [wasm_bindgen (extends = MouseEvent , extends = UiEvent , extends = Event , extends = :: js_sys :: Object , js_name = WheelEvent , typescript_type = "WheelEvent")]
    #[derive(Debug, Clone, PartialEq, Eq)]
    #[doc = "The `WheelEvent` class."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WheelEvent)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `WheelEvent`*"]
    pub type WheelEvent;
    # [wasm_bindgen (structural , method , getter , js_class = "WheelEvent" , js_name = deltaX)]
    #[doc = "Getter for the `deltaX` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WheelEvent/deltaX)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `WheelEvent`*"]
    pub fn delta_x(this: &WheelEvent) -> f64;
    # [wasm_bindgen (structural , method , getter , js_class = "WheelEvent" , js_name = deltaY)]
    #[doc = "Getter for the `deltaY` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WheelEvent/deltaY)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `WheelEvent`*"]
    pub fn delta_y(this: &WheelEvent) -> f64;
    # [wasm_bindgen (structural , method , getter , js_class = "WheelEvent" , js_name = deltaZ)]
    #[doc = "Getter for the `deltaZ` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WheelEvent/deltaZ)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `WheelEvent`*"]
    pub fn delta_z(this: &WheelEvent) -> f64;
    # [wasm_bindgen (structural , method , getter , js_class = "WheelEvent" , js_name = deltaMode)]
    #[doc = "Getter for the `deltaMode` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WheelEvent/deltaMode)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `WheelEvent`*"]
    pub fn delta_mode(this: &WheelEvent) -> u32;
    #[wasm_bindgen(catch, constructor, js_class = "WheelEvent")]
    #[doc = "The `new WheelEvent(..)` constructor, creating a new instance of `WheelEvent`."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WheelEvent/WheelEvent)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `WheelEvent`*"]
    pub fn new(type_: &str) -> Result<WheelEvent, JsValue>;
    #[cfg(feature = "WheelEventInit")]
    #[wasm_bindgen(catch, constructor, js_class = "WheelEvent")]
    #[doc = "The `new WheelEvent(..)` constructor, creating a new instance of `WheelEvent`."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WheelEvent/WheelEvent)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `WheelEvent`, `WheelEventInit`*"]
    pub fn new_with_event_init_dict(
        type_: &str,
        event_init_dict: &WheelEventInit,
    ) -> Result<WheelEvent, JsValue>;
}
impl WheelEvent {
    #[doc = "The `WheelEvent.DOM_DELTA_PIXEL` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `WheelEvent`*"]
    pub const DOM_DELTA_PIXEL: u32 = 0u64 as u32;
    #[doc = "The `WheelEvent.DOM_DELTA_LINE` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `WheelEvent`*"]
    pub const DOM_DELTA_LINE: u32 = 1u64 as u32;
    #[doc = "The `WheelEvent.DOM_DELTA_PAGE` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `WheelEvent`*"]
    pub const DOM_DELTA_PAGE: u32 = 2u64 as u32;
}